/** Shopify CDN: Minification failed

Line 32:0 All "@import" rules must come first
Line 3178:0 All "@import" rules must come first

**/
/* START_SECTION:header (INDEX:13) */
/* ============================================================
   MinerHub Header — CSS
   Brand palette: navy #0A1628 / gold #F5A32A / cyan #00C8FF
   ============================================================ */

:root {
  --mh-navy:       #0A1628;
  --mh-navy-mid:   #0D1F3C;
  --mh-navy-light: #12284F;
  --mh-gold:       #F5A32A;
  --mh-gold-dim:   #C07E15;
  --mh-cyan:       #00C8FF;
  --mh-cyan-dim:   #008FBF;
  --mh-white:      #FFFFFF;
  --mh-silver:     #C8D6E8;
  --mh-muted:      #5A7298;
  --mh-border:     rgba(255,255,255,0.07);
  --mh-h: 68px;
  --mh-announce-h: 38px;
  --mh-font-display: 'Rajdhani', 'Arial Black', sans-serif;
  --mh-font-body:    'Exo 2', 'Arial', sans-serif;
  --mh-transition:   0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Exo+2:wght@300;400;500;600&display=swap');

/* ── Announcement Bar ─────────────────────────────── */
.mh-announcement {
  background: var(--mh-navy);
  border-bottom: 1px solid var(--mh-gold);
  height: var(--mh-announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 100;
  font-family: var(--mh-font-body);
  font-size: 13px;
  font-weight: 500;
}

.mh-announcement__inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mh-announcement__pulse {
  width: 7px;
  height: 7px;
  background: var(--mh-gold);
  border-radius: 50%;
  animation: mh-pulse 2s ease-in-out infinite;
}

@keyframes mh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.mh-announcement__text,
.mh-announcement__text:visited {
  color: var(--mh-silver);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.mh-announcement__text:hover { color: var(--mh-gold); }

.mh-announcement__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mh-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--mh-transition);
}
.mh-announcement__close:hover { color: var(--mh-white); }

/* ── Header Shell ─────────────────────────────────── */
.mh-header {
  background: var(--mh-navy);
  border-bottom: 1px solid var(--mh-border);
  position: relative;
  z-index: 200;
  font-family: var(--mh-font-body);
  transition: background var(--mh-transition), box-shadow var(--mh-transition);
}

.mh-header--sticky {
  position: sticky;
  top: 0;
  z-index: 300;
}

.mh-header--scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(245,163,42,0.15);
}

.mh-header--transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.mh-header--transparent.mh-header--scrolled {
  background: rgba(10, 22, 40, 0.95);
  border-bottom-color: var(--mh-border);
}

/* ── Circuit trace accent bar ─────────────────────── */
.mh-circuit-bar {
  height: 3px;
  background: var(--mh-navy-mid);
  position: relative;
  overflow: hidden;
}

.mh-circuit-bar__track {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 2px;
  animation: mh-trace 4s ease-in-out infinite;
}

.mh-circuit-bar__track--gold {
  background: var(--mh-gold);
  width: 30%;
  animation-delay: 0s;
}

.mh-circuit-bar__track--cyan {
  background: var(--mh-cyan);
  width: 20%;
  animation-delay: 1.5s;
  opacity: 0.7;
}

@keyframes mh-trace {
  0%   { left: -35%; }
  100% { left: 110%; }
}

.mh-circuit-bar__node {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mh-gold);
  opacity: 0.6;
}
.mh-circuit-bar__node--1 { left: 20%; }
.mh-circuit-bar__node--2 { left: 50%; background: var(--mh-cyan); }
.mh-circuit-bar__node--3 { left: 80%; }

/* ── Header Inner ─────────────────────────────────── */
.mh-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0 24px;
  height: var(--mh-h);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Logo ─────────────────────────────────────────── */
.mh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.mh-logo__img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform var(--mh-transition);
}
.mh-logo:hover .mh-logo__img { transform: scale(1.06) rotate(-2deg); }

.mh-logo__wordmark {
  font-family: var(--mh-font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}
.mh-logo__miner { color: var(--mh-white); }
.mh-logo__hub   { color: var(--mh-gold); }

/* ── Nav ──────────────────────────────────────────── */
.mh-nav { display: flex; justify-content: center; }

.mh-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mh-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--mh-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mh-silver);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--mh-transition), background var(--mh-transition);
  position: relative;
}

.mh-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--mh-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.mh-nav__link:hover,
.mh-nav__link:focus-visible {
  color: var(--mh-white);
  background: rgba(255,255,255,0.05);
}

.mh-nav__link--active,
.mh-nav__link:hover { color: var(--mh-white); }
.mh-nav__link--active::after,
.mh-nav__link:hover::after { transform: scaleX(1); }

.mh-nav__link[aria-expanded='true'] {
  color: var(--mh-gold);
  background: rgba(245,163,42,0.08);
}
.mh-nav__link[aria-expanded='true']::after { transform: scaleX(1); }

.mh-nav__caret {
  transition: transform var(--mh-transition);
  flex-shrink: 0;
}
.mh-nav__link[aria-expanded='true'] .mh-nav__caret { transform: rotate(180deg); }

/* ── Mega Menu ─────────────────────────────────────── */
.mh-mega {
  /* Positioned relative to its nav item, not the full header */
  position: absolute;
  top: calc(100% + 6px);  /* small gap below header bottom edge */
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: max-content;
  min-width: 540px;
  max-width: 680px;
  background: linear-gradient(160deg, #0D1F3C 0%, #091220 100%);
  border: 1px solid rgba(245,163,42,0.2);
  border-top-width: 2px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.3);
  z-index: 400;
  pointer-events: none;
  opacity: 0;
  /* Invisible bridge: covers the gap between nav button and panel
     so mouse can travel from trigger → panel without closing */
  padding-top: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  visibility: hidden;
}

/* Invisible hover bridge fills the gap between button bottom and panel top */
.mh-mega::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.mh-nav__item--mega:hover .mh-mega,
.mh-nav__item--mega .mh-nav__link[aria-expanded='true'] + .mh-mega {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  visibility: visible;
}

/* Nav item needs position:relative as the anchor for the dropdown */
.mh-nav__item--mega {
  position: relative;
}

.mh-mega__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  padding: 0;
}

.mh-mega__col {
  padding: 24px 20px;
  border-right: 1px solid var(--mh-border);
}
.mh-mega__col:last-child { border-right: none; }

/* Featured card col */
.mh-mega__featured-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(245,163,42,0.06);
  border: 1px solid rgba(245,163,42,0.15);
  text-decoration: none;
  transition: background var(--mh-transition), border-color var(--mh-transition);
  position: relative;
}
.mh-mega__featured-card:hover {
  background: rgba(245,163,42,0.12);
  border-color: rgba(245,163,42,0.35);
}

.mh-mega__featured-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,163,42,0.08);
  border-radius: 8px;
  border: 1px solid rgba(245,163,42,0.2);
}

.mh-mega__featured-title {
  display: block;
  font-family: var(--mh-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--mh-white);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.mh-mega__featured-desc {
  display: block;
  font-size: 12px;
  color: var(--mh-muted);
  line-height: 1.4;
}

.mh-mega__arrow {
  position: absolute;
  bottom: 14px;
  right: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--mh-transition), transform var(--mh-transition);
}
.mh-mega__featured-card:hover .mh-mega__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Col labels */
.mh-mega__col-label {
  font-family: var(--mh-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mh-muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--mh-border);
}

/* Mega links */
.mh-mega__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mh-mega__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--mh-transition);
}
.mh-mega__link:hover { background: rgba(255,255,255,0.05); }
.mh-mega__link strong {
  display: block;
  font-family: var(--mh-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--mh-white);
  margin-bottom: 1px;
}
.mh-mega__link em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--mh-muted);
  letter-spacing: 0.03em;
}

.mh-mega__link--brand {
  padding: 6px 10px;
}
.mh-mega__link--brand span {
  font-size: 13px;
  color: var(--mh-silver);
  font-family: var(--mh-font-body);
  font-weight: 400;
  transition: color var(--mh-transition);
}
.mh-mega__link--brand:hover span { color: var(--mh-gold); }

/* Dot indicators */
.mh-mega__link-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.mh-mega__link-dot--gold  { background: var(--mh-gold); }
.mh-mega__link-dot--cyan  { background: var(--mh-cyan); }

/* Promo column */
.mh-mega__col--promo { background: rgba(0,0,0,0.2); }

.mh-mega__promo {
  padding: 20px;
  background: rgba(245,163,42,0.06);
  border: 1px solid rgba(245,163,42,0.2);
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mh-mega__promo--cyan {
  background: rgba(0,200,255,0.05);
  border-color: rgba(0,200,255,0.2);
}

.mh-mega__promo-badge {
  font-family: var(--mh-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mh-navy);
  background: var(--mh-gold);
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
}
.mh-mega__promo-badge--cyan {
  background: var(--mh-cyan);
  color: var(--mh-navy);
}

.mh-mega__promo-text {
  font-size: 13px;
  color: var(--mh-silver);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.mh-mega__promo-cta {
  font-family: var(--mh-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--mh-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--mh-transition);
}
.mh-mega__promo-cta:hover { color: var(--mh-white); }
.mh-mega__promo-cta--cyan { color: var(--mh-cyan); }
.mh-mega__promo-cta--cyan:hover { color: var(--mh-white); }

/* Mega overlay */
.mh-mega-overlay {
  position: fixed;
  inset: 0;
  top: calc(var(--mh-h) + 3px);
  background: rgba(0,0,0,0.6);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mh-mega-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Right Actions ─────────────────────────────────── */
.mh-header__right {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.mh-action {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 6px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--mh-silver);
  text-decoration: none;
  font-size: 13px;
  font-family: var(--mh-font-body);
  font-weight: 400;
  transition: color var(--mh-transition), background var(--mh-transition);
  position: relative;
}
.mh-action:hover {
  color: var(--mh-white);
  background: rgba(255,255,255,0.06);
}

.mh-action--cart {
  background: rgba(245,163,42,0.1);
  border: 1px solid rgba(245,163,42,0.2);
  color: var(--mh-gold);
  padding: 7px 12px;
}
.mh-action--cart:hover {
  background: rgba(245,163,42,0.18);
  border-color: rgba(245,163,42,0.4);
  color: var(--mh-gold);
}

.mh-action__label {
  font-size: 12px;
  color: var(--mh-muted);
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  background: var(--mh-gold);
  color: var(--mh-navy);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--mh-font-body);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  animation: mh-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes mh-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* ── Hamburger ─────────────────────────────────────── */
.mh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--mh-transition);
}
.mh-hamburger:hover { background: rgba(255,255,255,0.06); }

.mh-hamburger__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--mh-silver);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
  transform-origin: center;
}
.mh-hamburger[aria-expanded='true'] .mh-hamburger__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mh-hamburger[aria-expanded='true'] .mh-hamburger__bar:nth-child(2) {
  opacity: 0; width: 0;
}
.mh-hamburger[aria-expanded='true'] .mh-hamburger__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}



/* ── Search Modal ─────────────────────────────────── */
.mh-search-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.mh-search-modal[hidden] { display: none; }

.mh-search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 26, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.mh-search-modal__box {
  position: relative;
  z-index: 1;
  background: var(--mh-navy-mid);
  border: 1px solid rgba(245,163,42,0.2);
  border-radius: 12px;
  width: min(640px, calc(100vw - 32px));
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  animation: mh-slide-down 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes mh-slide-down {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mh-search-modal__form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--mh-border);
}

.mh-search-modal__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mh-muted);
}

.mh-search-modal__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--mh-font-body);
  font-size: 16px;
  color: var(--mh-white);
  padding: 0;
}
.mh-search-modal__input::placeholder { color: var(--mh-muted); }

.mh-search-modal__clear {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mh-muted);
  padding: 2px;
  display: flex;
  align-items: center;
  transition: color var(--mh-transition);
}
.mh-search-modal__clear:hover { color: var(--mh-white); }

.mh-search-modal__close {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--mh-border);
  cursor: pointer;
  color: var(--mh-muted);
  padding: 6px 10px;
  border-radius: 6px;
  font-family: var(--mh-font-body);
  font-size: 11px;
  letter-spacing: 0.05em;
  transition: color var(--mh-transition), border-color var(--mh-transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.mh-search-modal__close:hover { color: var(--mh-white); border-color: rgba(255,255,255,0.2); }

.mh-search-modal__suggestions { padding: 16px 20px 20px; }

.mh-search-modal__suggestions-label {
  font-family: var(--mh-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mh-muted);
  margin: 0 0 12px;
}

.mh-search-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mh-search-chip {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(245,163,42,0.2);
  background: rgba(245,163,42,0.05);
  color: var(--mh-silver);
  font-size: 12px;
  font-family: var(--mh-font-body);
  text-decoration: none;
  transition: background var(--mh-transition), border-color var(--mh-transition), color var(--mh-transition);
}
.mh-search-chip:hover {
  background: rgba(245,163,42,0.12);
  border-color: rgba(245,163,42,0.4);
  color: var(--mh-gold);
}

/* ── Mobile Drawer ─────────────────────────────────── */
.mh-drawer {
  position: fixed;
  inset: 0;
  z-index: 600;
}
.mh-drawer[hidden] { display: none; }

.mh-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mh-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--mh-navy);
  border-right: 1px solid rgba(245,163,42,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: mh-drawer-in 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes mh-drawer-in {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

.mh-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--mh-border);
  background: var(--mh-navy-mid);
}

.mh-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mh-muted);
  padding: 6px;
  display: flex;
  align-items: center;
  transition: color var(--mh-transition);
}
.mh-drawer__close:hover { color: var(--mh-white); }

.mh-drawer__list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  flex: 1;
  overflow-y: auto;
}

.mh-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  font-family: var(--mh-font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mh-silver);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--mh-transition), background var(--mh-transition);
}
.mh-drawer__link:hover { color: var(--mh-white); background: rgba(255,255,255,0.04); }

.mh-drawer__caret { transition: transform var(--mh-transition); }
.mh-drawer__accordion-trigger[aria-expanded='true'] { color: var(--mh-gold); }
.mh-drawer__accordion-trigger[aria-expanded='true'] .mh-drawer__caret { transform: rotate(180deg); }

.mh-drawer__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--mh-border);
}

.mh-drawer__sub-link {
  display: block;
  padding: 10px 20px 10px 32px;
  font-family: var(--mh-font-body);
  font-size: 13px;
  color: var(--mh-muted);
  text-decoration: none;
  transition: color var(--mh-transition);
  position: relative;
}
.mh-drawer__sub-link::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: var(--mh-gold);
  opacity: 0.5;
}
.mh-drawer__sub-link:hover { color: var(--mh-gold); }

.mh-drawer__footer {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(245,163,42,0.15);
  background: var(--mh-navy-mid);
}

.mh-drawer__footer-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-family: var(--mh-font-body);
  font-size: 13px;
  color: var(--mh-silver);
  text-decoration: none;
  border-right: 1px solid var(--mh-border);
  transition: color var(--mh-transition), background var(--mh-transition);
}
.mh-drawer__footer-link:last-child { border-right: none; }
.mh-drawer__footer-link:hover { color: var(--mh-gold); background: rgba(245,163,42,0.05); }

/* ── Responsive ────────────────────────────────────── */
@media screen and (max-width: 960px) {
  .mh-nav { display: none; }
  .mh-hamburger { display: flex; }
  .mh-header__inner { grid-template-columns: auto 1fr auto; }
  .mh-header__left { gap: 8px; display: flex; align-items: center; }
}

@media screen and (max-width: 480px) {
  .mh-action__label { display: none; }
  .mh-header__inner { padding: 0 12px; }
  /* Logo wordmark stays visible on mobile — font-size reduced */
  .mh-logo__wordmark { font-size: 18px; }
  .mh-logo__img { width: 32px; height: 32px; }
  .mh-logo { gap: 6px; }
}

/* ── Focus styles ─────────────────────────────────── */
*:focus-visible {
  outline: 2px solid var(--mh-gold);
  outline-offset: 2px;
}

/* ── BTC Live Price Ticker ────────────────────────── */
.mh-btc-ticker {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mh-font-body);
  white-space: nowrap;
}

/* Desktop ticker — inside mh-header__right, before search/cart */
.mh-btc-ticker--desktop {
  padding: 5px 10px;
  border: 1px solid rgba(245, 163, 42, 0.25);
  border-radius: 6px;
  background: rgba(245, 163, 42, 0.06);
  margin-right: 6px;
  transition: border-color var(--mh-transition), background var(--mh-transition);
}
.mh-btc-ticker--desktop:hover {
  border-color: rgba(245, 163, 42, 0.5);
  background: rgba(245, 163, 42, 0.1);
}

/* Hide desktop ticker on mobile — ONLY show in drawer */
@media screen and (max-width: 989px) {
  .mh-btc-ticker--desktop { display: none !important; }
}

.mh-btc-ticker__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mh-btc-ticker__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mh-gold);
  text-transform: uppercase;
}

.mh-btc-ticker__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--mh-white);
  letter-spacing: 0.01em;
  min-width: 72px;
  text-align: right;
}

.mh-btc-ticker__change {
  font-size: 11px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 3px;
  min-width: 44px;
  text-align: center;
  transition: color 0.4s, background 0.4s;
}
.mh-btc-ticker__change--up {
  color: #00e676;
  background: rgba(0, 230, 118, 0.1);
}
.mh-btc-ticker__change--down {
  color: #ff5252;
  background: rgba(255, 82, 82, 0.1);
}
.mh-btc-ticker__change--neutral {
  color: var(--mh-muted);
  background: transparent;
}

/* Blink animation on price update */
@keyframes mh-btc-flash {
  0%   { opacity: 1; }
  30%  { opacity: 0.3; }
  60%  { opacity: 1; }
}
.mh-btc-ticker__price--flash {
  animation: mh-btc-flash 0.5s ease;
}

/* Mobile drawer ticker */
.mh-drawer__item--ticker {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
  padding: 8px 16px 12px;
}

.mh-btc-ticker--mobile {
  width: 100%;
  padding: 12px 16px;
  gap: 12px;
  background: rgba(245, 163, 42, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(245, 163, 42, 0.18);
  justify-content: flex-start;
}

.mh-btc-ticker__mobile-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.mh-btc-ticker__mobile-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mh-gold);
  text-transform: uppercase;
}

.mh-btc-ticker__mobile-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mh-btc-ticker--mobile .mh-btc-ticker__price {
  font-size: 18px;
  min-width: auto;
  text-align: left;
}

.mh-btc-ticker--mobile .mh-btc-ticker__change {
  font-size: 12px;
  min-width: auto;
}

/* Live indicator dot */
.mh-btc-ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mh-cyan);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--mh-cyan);
  animation: mh-pulse 2s ease-in-out infinite;
}
/* END_SECTION:header */
/* START_SECTION:mh-faq (INDEX:33) */
/* ============================================================
   MH FAQ SECTION – CSS
   ============================================================ */
.mhfaq__section {
  background: #0D1F3C;
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

/* Circuit-grid background texture */
.mhfaq__section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* Ambient glow – bottom left */
.mhfaq__section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,163,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mhfaq__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.mhfaq__header {
  text-align: center;
  margin-bottom: 36px;
}

.mhfaq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', 'Barlow Condensed', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #00C8FF;
  margin-bottom: 12px;
}
/* Centered: decorative lines on both sides */
.mhfaq__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(270deg, #00C8FF, transparent);
}
.mhfaq__eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, #00C8FF, transparent);
}

.mhfaq__title {
  font-family: 'Rajdhani', 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0 0 10px;
}
.mhfaq__title span { color: #F5A32A; }

.mhfaq__subtitle {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  color: #C8D4E8;
  opacity: 0.7;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Accordion List ── */
.mhfaq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── Individual Item ── */
.mhfaq__item {
  border: 1px solid rgba(0,200,255,0.14);
  border-radius: 6px;
  background: rgba(10,22,40,0.7);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  /* Reveal */
  opacity: 0;
  transform: translateY(16px);
}
.mhfaq__item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s cubic-bezier(0.22,0.61,0.36,1),
    transform 0.5s cubic-bezier(0.22,0.61,0.36,1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.mhfaq__item.is-open {
  border-color: rgba(245,163,42,0.45);
  box-shadow: 0 0 24px rgba(245,163,42,0.08), 0 4px 32px rgba(0,0,0,0.4);
}

/* ── Question button ── */
.mhfaq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}
.mhfaq__question:hover {
  background: rgba(245,163,42,0.05);
}

/* Number badge */
.mhfaq__num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 4px;
  border: 1px solid rgba(0,200,255,0.3);
  background: rgba(0,200,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00C8FF;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.mhfaq__item.is-open .mhfaq__num {
  background: rgba(245,163,42,0.18);
  border-color: rgba(245,163,42,0.6);
  color: #F5A32A;
}

.mhfaq__question-text {
  flex: 1;
  font-family: 'Rajdhani', 'Barlow Condensed', Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  line-height: 1.3;
  transition: color 0.2s;
}
.mhfaq__item.is-open .mhfaq__question-text { color: #F5A32A; }

/* Chevron icon */
.mhfaq__chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: #00C8FF;
  transition: transform 0.35s cubic-bezier(0.22,0.61,0.36,1), color 0.2s;
}
.mhfaq__item.is-open .mhfaq__chevron {
  transform: rotate(180deg);
  color: #F5A32A;
}

/* ── Answer panel ── */
.mhfaq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.22,0.61,0.36,1);
}
.mhfaq__item.is-open .mhfaq__answer-wrap {
  grid-template-rows: 1fr;
}
.mhfaq__answer-inner {
  overflow: hidden;
}
.mhfaq__answer {
  padding: 0 24px 24px 68px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #C8D4E8;
}
.mhfaq__answer p { margin: 0 0 10px; }
.mhfaq__answer p:last-child { margin-bottom: 0; }
.mhfaq__answer a {
  color: #00C8FF;
  text-decoration: underline;
  text-decoration-color: rgba(0,200,255,0.35);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.mhfaq__answer a:hover {
  color: #F5A32A;
  text-decoration-color: rgba(245,163,42,0.5);
}

/* Gold accent line left of open answer */
.mhfaq__answer-inner {
  position: relative;
}
.mhfaq__item.is-open .mhfaq__answer-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 24px;
  width: 2px;
  height: calc(100% - 24px);
  background: linear-gradient(180deg, #F5A32A 0%, rgba(245,163,42,0) 100%);
  border-radius: 2px;
}

/* ── CTA strip ── */
.mhfaq__cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.mhfaq__cta-text {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  color: #C8D4E8;
  opacity: 0.7;
}
.mhfaq__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F5A32A;
  color: #0A1628;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(245,163,42,0.3);
}
.mhfaq__cta-btn:hover {
  background: #ffc44d;
  box-shadow: 0 6px 28px rgba(245,163,42,0.5);
  transform: translateY(-2px);
}
.mhfaq__cta-btn svg { width: 15px; height: 15px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .mhfaq__inner { padding: 0 16px; }
  .mhfaq__section { padding: 48px 0 64px; }
  .mhfaq__answer { padding: 0 16px 20px 52px; }
  .mhfaq__question { padding: 18px 16px; gap: 12px; }
  .mhfaq__question-text { font-size: 15px; }
}
@media (max-width: 480px) {
  .mhfaq__answer { padding: 0 16px 20px 16px; }
  .mhfaq__item.is-open .mhfaq__answer-inner::before { left: 16px; }
}
/* END_SECTION:mh-faq */
/* START_SECTION:mh-featured-collection (INDEX:34) */
/* ================================================================
   MinerHub — Featured Collection Section  (mh-featured-collection)
   ================================================================ */

/* ── Variables ────────────────────────────────────────────────── */
.mhfc {
  --navy:        #07111F;
  --navy-base:   #0A1628;
  --navy-mid:    #0D1F3C;
  --navy-card:   #0E1D35;
  --navy-hover:  #111F3A;
  --gold:        #F5A32A;
  --gold-dim:    rgba(245,163,42,0.12);
  --gold-glow:   rgba(245,163,42,0.22);
  --gold-border: rgba(245,163,42,0.2);
  --cyan:        #00C8FF;
  --cyan-dim:    rgba(0,200,255,0.1);
  --cyan-border: rgba(0,200,255,0.18);
  --white:       #FFFFFF;
  --silver:      #C8D6E8;
  --muted:       #8A9BB5;
  --dim:         #5A7298;
  --border:      rgba(255,255,255,0.07);
  --red:         #ef4444;
  --green:       #10b981;
  --font-display: 'Rajdhani', 'Arial Black', sans-serif;
  --font-body:    'Exo 2', Arial, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.0, 0, 0.2, 1);
}

/* ── Section shell ────────────────────────────────────────────── */
.mhfc {
  position: relative;
  background: var(--navy-base);
  padding: 80px 0 96px;
  overflow: hidden;
  font-family: var(--font-body);
}

.mhfc__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ── Background decorations ───────────────────────────────────── */
.mhfc__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.mhfc__bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Animated trace lines */
.mhfc__trace {
  position: absolute;
  height: 1px;
  pointer-events: none;
}
.mhfc__trace--1 {
  top: 15%;
  left: -30%;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.3), transparent);
  animation: mhfc-trace 8s linear infinite;
}
.mhfc__trace--2 {
  top: 65%;
  left: -20%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.25), transparent);
  animation: mhfc-trace 11s linear infinite 3s;
}
.mhfc__trace--3 {
  top: 85%;
  left: -40%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.15), transparent);
  animation: mhfc-trace 14s linear infinite 6s;
}
@keyframes mhfc-trace {
  0%   { transform: translateX(0); }
  100% { transform: translateX(250%); }
}

/* ── Reveal animation ─────────────────────────────────────────── */
.mhfc__reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.mhfc__reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section header — centred ─────────────────────────────────── */
.mhfc__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  margin-bottom: 40px;
}

/* Label row */
.mhfc__label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.mhfc__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: mhfc-blink 2.4s ease-in-out infinite;
}
.mhfc__label-dot--cyan {
  background: var(--cyan);
  animation-delay: 1.2s;
}
@keyframes mhfc-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.mhfc__label-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Heading */
.mhfc__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.mhfc__heading-accent {
  font-style: normal;
  color: var(--gold);
}

/* Animated rule — centred symmetrical */
.mhfc__heading-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
  max-width: 480px;
}
.mhfc__rule-track {
  width: 160px;
  height: 3px;
  background: rgba(245,163,42,0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.mhfc__rule-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 2px;
  transition: width 1s var(--ease-out) 0.3s;
}
.mhfc__reveal.is-visible .mhfc__rule-fill { width: 100%; }
.mhfc__rule-node {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
/* Mirror track on left side for symmetry */
.mhfc__rule-line--left {
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.15));
  border-radius: 2px;
}

.mhfc__subheading {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 24px;
  text-align: center;
}

/* Header actions row (view all + count badge) */
.mhfc__header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* View all link */
.mhfc__view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 7px;
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.mhfc__view-all:hover {
  background: rgba(245,163,42,0.2);
  border-color: rgba(245,163,42,0.5);
  gap: 10px;
  box-shadow: 0 4px 20px rgba(245,163,42,0.2);
}
.mhfc__view-all svg {
  transition: transform 0.22s var(--ease);
}
.mhfc__view-all:hover svg { transform: translateX(3px); }

/* Count badge */
.mhfc__count-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.mhfc__count-number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.mhfc__count-label {
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Filter bar — centred ─────────────────────────────────────── */
.mhfc__filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.mhfc__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  text-transform: uppercase;
}
.mhfc__filter-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-dim);
}
.mhfc__filter-btn--active,
.mhfc__filter-btn[aria-pressed='true'] {
  border-color: var(--gold-border);
  background: var(--gold-dim);
  color: var(--gold);
}
.mhfc__filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  font-size: 10px;
  color: var(--dim);
  font-weight: 600;
}
.mhfc__filter-btn--active .mhfc__filter-count,
.mhfc__filter-btn[aria-pressed='true'] .mhfc__filter-count {
  background: rgba(245,163,42,0.2);
  color: var(--gold);
}

/* Hidden via filter */
.mhfc__card[data-hidden='true'] {
  display: none;
}

/* ── Product grid ─────────────────────────────────────────────── */
.mhfc__grid {
  display: grid;
  grid-template-columns: repeat(var(--mhfc-cols, 4), 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .mhfc__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 740px) {
  .mhfc__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 420px) {
  .mhfc__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ── Product card ─────────────────────────────────────────────── */
.mhfc__card {
  position: relative;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.mhfc__card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.4),
    0 0 0 1px rgba(245,163,42,0.08),
    inset 0 1px 0 rgba(245,163,42,0.06);
}
.mhfc__card--sold-out {
  opacity: 0.6;
}
.mhfc__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ── Image zone ───────────────────────────────────────────────── */
.mhfc__img-zone {
  position: relative;
  aspect-ratio: 1;
  background: var(--navy-mid);
  overflow: hidden;
  flex-shrink: 0;
}

/* Scanlines */
.mhfc__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 4px
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 5;
}
.mhfc__card:hover .mhfc__scanlines { opacity: 1; }

/* Corner brackets */
.mhfc__bracket {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 8;
  opacity: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.mhfc__bracket--tl { top: 10px;  left: 10px;  border-top: 1.5px solid var(--gold);  border-left: 1.5px solid var(--gold);  transform: translate(-4px, -4px); }
.mhfc__bracket--tr { top: 10px;  right: 10px; border-top: 1.5px solid var(--gold);  border-right: 1.5px solid var(--gold); transform: translate(4px, -4px); }
.mhfc__bracket--bl { bottom: 10px; left: 10px;  border-bottom: 1.5px solid var(--cyan); border-left: 1.5px solid var(--cyan);  transform: translate(-4px, 4px); }
.mhfc__bracket--br { bottom: 10px; right: 10px; border-bottom: 1.5px solid var(--cyan); border-right: 1.5px solid var(--cyan); transform: translate(4px, 4px); }
.mhfc__card:hover .mhfc__bracket {
  opacity: 1;
  transform: translate(0, 0);
}

/* Status light */
.mhfc__status-light {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  z-index: 10;
}
.mhfc__status-ring {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--green);
}
.mhfc__status-light--on .mhfc__status-ring {
  background: var(--green);
  box-shadow: 0 0 6px rgba(16,185,129,0.7);
  animation: mhfc-blink 2s ease-in-out infinite;
}
.mhfc__status-light--off .mhfc__status-ring {
  background: var(--red);
  box-shadow: 0 0 4px rgba(239,68,68,0.5);
}

/* Badges */
.mhfc__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mhfc__badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
}
.mhfc__badge--sale    { background: rgba(239,68,68,0.18); border: 1px solid rgba(239,68,68,0.4); color: #f87171; }
.mhfc__badge--new     { background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold); }
.mhfc__badge--home    { background: var(--cyan-dim); border: 1px solid var(--cyan-border); color: var(--cyan); }
.mhfc__badge--stock   { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: #10b981; }

/* Product images */
.mhfc__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
}
.mhfc__img--hover {
  display: none;
}
.mhfc__card:hover .mhfc__img--primary {
  transform: scale(1.04);
}
.mhfc__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-mid);
}
.mhfc__placeholder-svg {
  width: 64px;
  height: 64px;
  opacity: 0.15;
}

/* Quick-add overlay */
.mhfc__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(7,17,31,0.95) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.28s var(--ease);
  z-index: 12;
}
.mhfc__card:hover .mhfc__quick-add { transform: translateY(0); }
.mhfc__qa-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 7px;
  border: none;
  background: linear-gradient(135deg, var(--gold) 0%, #E8920A 100%);
  color: #07111F;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.mhfc__qa-btn:hover {
  box-shadow: 0 4px 16px rgba(245,163,42,0.4);
}
.mhfc__qa-btn.adding {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}

/* ── Card body ────────────────────────────────────────────────── */
.mhfc__body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Meta row */
.mhfc__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.mhfc__vendor {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
}
.mhfc__algo-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--dim);
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

/* Title */
.mhfc__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--silver);
  line-height: 1.3;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.mhfc__card:hover .mhfc__title { color: var(--white); }

/* Spec ticker */
.mhfc__spec-ticker {
  overflow: hidden;
  margin-bottom: 12px;
  height: 22px;
  position: relative;
}
.mhfc__spec-ticker::before,
.mhfc__spec-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 16px;
  z-index: 2;
  pointer-events: none;
}
.mhfc__spec-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-card), transparent);
}
.mhfc__spec-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-card), transparent);
}
.mhfc__card:hover .mhfc__spec-ticker::before,
.mhfc__card:hover .mhfc__spec-ticker::after {
  background: none;
}
.mhfc__spec-ticker-track {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.mhfc__spec-ticker-track::-webkit-scrollbar { display: none; }
.mhfc__spec-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.mhfc__spec-key {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--dim);
  text-transform: uppercase;
}
.mhfc__spec-val {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--font-display);
}
.mhfc__spec-item--gold .mhfc__spec-val { color: var(--gold); }
.mhfc__spec-item--cyan .mhfc__spec-val  { color: var(--cyan); }
.mhfc__spec-divider {
  font-size: 6px;
  color: var(--dim);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Price row */
.mhfc__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.mhfc__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.mhfc__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.mhfc__price--sale { color: #f87171; }
.mhfc__price--unavail {
  font-size: 14px;
  color: var(--dim);
  font-weight: 500;
}
.mhfc__price-compare {
  font-size: 12px;
  color: var(--dim);
  text-decoration: line-through;
}

/* Availability dot */
.mhfc__avail-dot {
  position: relative;
  width: 10px;
  height: 10px;
}
.mhfc__avail-ring {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(16,185,129,0.5);
  animation: mhfc-blink 2.5s ease-in-out infinite;
}

/* CTA bar */
.mhfc__cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.mhfc__cta-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s;
}
.mhfc__card:hover .mhfc__cta-text { color: var(--gold); }
.mhfc__cta-bar svg {
  color: var(--dim);
  transition: color 0.2s, transform 0.2s;
}
.mhfc__card:hover .mhfc__cta-bar svg {
  color: var(--gold);
  transform: translateX(3px);
}

/* ── Diagonal slash accent ────────────────────────────────────── */
.mhfc__slash {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, transparent 50%, rgba(245,163,42,0.12) 50%);
  border-radius: 0 0 12px 0;
  pointer-events: none;
  transition: background 0.25s;
}
.mhfc__card:hover .mhfc__slash {
  background: linear-gradient(135deg, transparent 50%, rgba(245,163,42,0.28) 50%);
}

/* ── Placeholder cards ────────────────────────────────────────── */
.mhfc__card--placeholder {
  pointer-events: none;
}
.mhfc__placeholder-bar {
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.04) 100%);
  background-size: 200% 100%;
  animation: mhfc-shimmer 1.8s ease-in-out infinite;
}
@keyframes mhfc-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Footer CTA — centred ─────────────────────────────────────── */
.mhfc__footer {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.mhfc__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 36px;
  border-radius: 10px;
  border: 1px solid var(--gold-border);
  background: linear-gradient(135deg, rgba(245,163,42,0.08) 0%, rgba(0,200,255,0.04) 100%);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.mhfc__footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,163,42,0.12) 0%, rgba(0,200,255,0.06) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}
.mhfc__footer-cta:hover::before { opacity: 1; }
.mhfc__footer-cta:hover {
  border-color: rgba(245,163,42,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,163,42,0.15), 0 0 0 1px rgba(245,163,42,0.08);
}
.mhfc__footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.mhfc__footer-cta-inner > span:first-child {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mhfc__footer-cta-count {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.mhfc__footer-arrow {
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.mhfc__footer-cta:hover .mhfc__footer-arrow { transform: translateX(5px); }

/* ── Empty state ──────────────────────────────────────────────── */
.mhfc__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 24px;
  text-align: center;
}
.mhfc__empty-text {
  font-size: 14px;
  color: var(--dim);
  max-width: 400px;
  line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .mhfc { padding: 60px 0 72px; }
  .mhfc__inner { padding: 0 20px; }
  .mhfc__header { margin-bottom: 32px; }
  .mhfc__heading { font-size: 38px; }
}
@media (max-width: 640px) {
  .mhfc { padding: 48px 0 60px; }
  .mhfc__inner { padding: 0 16px; }
  .mhfc__header-actions { flex-direction: column; align-items: center; }
  .mhfc__view-all { width: 100%; justify-content: center; }
  .mhfc__footer-cta { padding: 14px 24px; }
  .mhfc__footer-cta-inner > span:first-child { font-size: 15px; }
}

/* ── Focus styles ─────────────────────────────────────────────── */
.mhfc__card-link:focus-visible,
.mhfc__qa-btn:focus-visible,
.mhfc__view-all:focus-visible,
.mhfc__footer-cta:focus-visible,
.mhfc__filter-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* END_SECTION:mh-featured-collection */
/* START_SECTION:mh-footer (INDEX:35) */
/* ─── Reset & base ──────────────────────────────────── */
.mhf * { box-sizing: border-box; }
.mhf a { text-decoration: none; }
.mhf ul { list-style: none; margin: 0; padding: 0; }

/* ─── Variables ─────────────────────────────────────── */
.mhf {
  --mhf-navy:       #0A1628;
  --mhf-navy-mid:   #0D1F3C;
  --mhf-navy-light: #112240;
  --mhf-gold:       #F5A32A;
  --mhf-gold-dim:   rgba(245,163,42,0.15);
  --mhf-cyan:       #00C8FF;
  --mhf-cyan-dim:   rgba(0,200,255,0.12);
  --mhf-white:      #FFFFFF;
  --mhf-silver:     #CBD5E1;
  --mhf-muted:      #64748B;
  --mhf-border:     rgba(0,200,255,0.18);
  --mhf-radius:     6px;
  --mhf-font:       'Helvetica Neue', Arial, sans-serif;
}

/* ─── Wrapper ───────────────────────────────────────── */
.mhf {
  font-family: var(--mhf-font);
  background: var(--mhf-navy);
  position: relative;
  overflow: hidden;
}

/* ─── Circuit trace SVG background ─────────────────── */
.mhf__circuit-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}

/* ─── Top glow divider (cyan border matching header) ── */
.mhf__top-border {
  position: relative;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--mhf-cyan) 20%,
    var(--mhf-gold) 50%,
    var(--mhf-cyan) 80%,
    transparent 100%
  );
  box-shadow: 0 0 16px rgba(0,200,255,0.5), 0 0 32px rgba(245,163,42,0.25);
}

/* ─── Newsletter strip ──────────────────────────────── */
.mhf__newsletter {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--mhf-navy-light) 0%, rgba(0,200,255,0.05) 100%);
  border-bottom: 1px solid var(--mhf-border);
  padding: 40px 0;
}
.mhf__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.mhf__newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.mhf__newsletter-text h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--mhf-white);
  text-transform: uppercase;
}
.mhf__newsletter-text h3 span { color: var(--mhf-gold); }
.mhf__newsletter-text p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--mhf-silver);
  line-height: 1.5;
}
.mhf__newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 440px;
  min-width: 260px;
}
.mhf__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--mhf-border);
  border-right: none;
  border-radius: var(--mhf-radius) 0 0 var(--mhf-radius);
  color: var(--mhf-white);
  font-size: 14px;
  font-family: var(--mhf-font);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.mhf__newsletter-input::placeholder { color: var(--mhf-muted); }
.mhf__newsletter-input:focus {
  border-color: var(--mhf-cyan);
  background: rgba(0,200,255,0.05);
}
.mhf__newsletter-btn {
  padding: 12px 22px;
  background: var(--mhf-gold);
  border: none;
  border-radius: 0 var(--mhf-radius) var(--mhf-radius) 0;
  color: var(--mhf-navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: var(--mhf-font);
}
.mhf__newsletter-btn:hover {
  background: #FFB740;
  box-shadow: 0 0 16px rgba(245,163,42,0.4);
}

/* ─── Main footer grid ──────────────────────────────── */
.mhf__main {
  position: relative;
  z-index: 1;
  padding: 60px 0 48px;
}
.mhf__grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ─── Brand column ──────────────────────────────────── */
.mhf__brand {}

/* Logo — exact match to header */
.mhf__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}
.mhf__logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(0,200,255,0.5)) drop-shadow(0 0 4px rgba(245,163,42,0.4));
}
.mhf__logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.mhf__logo-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}
.mhf__logo-name .miner { color: var(--mhf-white); }
.mhf__logo-name .hub { color: var(--mhf-gold); }
.mhf__logo-tagline {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--mhf-cyan);
  text-transform: uppercase;
}

.mhf__brand-desc {
  font-size: 13.5px;
  color: var(--mhf-silver);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Social icons */
.mhf__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mhf__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--mhf-radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--mhf-border);
  color: var(--mhf-silver);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.mhf__social-link:hover {
  color: var(--mhf-white);
  transform: translateY(-2px);
}
.mhf__social-link--facebook:hover {
  background: rgba(24,119,242,0.2);
  border-color: #1877F2;
  box-shadow: 0 0 12px rgba(24,119,242,0.3);
  color: #5B9CF6;
}
.mhf__social-link--x:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
  color: var(--mhf-white);
}

/* ─── Link columns ──────────────────────────────────── */
.mhf__col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mhf-gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--mhf-gold-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mhf__col-heading::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mhf-gold);
  box-shadow: 0 0 6px var(--mhf-gold);
  flex-shrink: 0;
}
.mhf__links li {
  margin-bottom: 2px;
}
.mhf__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--mhf-silver);
  transition: color 0.2s, padding-left 0.2s;
  text-decoration: none;
  position: relative;
}
.mhf__link::before {
  content: '›';
  color: var(--mhf-cyan);
  opacity: 0;
  font-size: 14px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.mhf__link:hover {
  color: var(--mhf-white);
  padding-left: 10px;
}
.mhf__link:hover::before { opacity: 1; }

.mhf__link-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mhf__link-badge--new {
  background: rgba(0,200,255,0.15);
  color: var(--mhf-cyan);
  border: 1px solid rgba(0,200,255,0.3);
}
.mhf__link-badge--hot {
  background: rgba(245,163,42,0.15);
  color: var(--mhf-gold);
  border: 1px solid rgba(245,163,42,0.3);
}

/* ─── Contact info block ────────────────────────────── */
.mhf__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.mhf__contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--mhf-cyan-dim);
  border: 1px solid rgba(0,200,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mhf-cyan);
}
.mhf__contact-label {
  font-size: 11px;
  color: var(--mhf-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}
.mhf__contact-value {
  font-size: 13.5px;
  color: var(--mhf-silver);
}
.mhf__contact-value a {
  color: var(--mhf-silver);
  transition: color 0.2s;
  text-decoration: none;
}
.mhf__contact-value a:hover { color: var(--mhf-cyan); }

/* ─── Bottom bar ────────────────────────────────────── */
.mhf__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--mhf-border);
  padding: 20px 0;
}
.mhf__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.mhf__copyright {
  font-size: 12.5px;
  color: var(--mhf-muted);
}
.mhf__copyright span { color: var(--mhf-silver); }
.mhf__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.mhf__legal-link {
  font-size: 12px;
  color: var(--mhf-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.mhf__legal-link:hover { color: var(--mhf-cyan); }

.mhf__au-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--mhf-radius);
  background: var(--mhf-gold-dim);
  border: 1px solid rgba(245,163,42,0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--mhf-gold);
  text-transform: uppercase;
}
.mhf__au-badge svg { flex-shrink: 0; }

/* ─── Responsive ────────────────────────────────────── */
@media screen and (max-width: 1024px) {
  .mhf__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media screen and (max-width: 640px) {
  .mhf__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mhf__newsletter-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .mhf__newsletter-form { max-width: 100%; }
  .mhf__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .mhf__logo-icon { width: 40px; height: 40px; }
  .mhf__logo-name { font-size: 19px; }
}
/* END_SECTION:mh-footer */
/* START_SECTION:mh-recent-posts (INDEX:36) */
/* ── Design tokens ───────────────────────────────────────────── */
.mhrp__section {
  --navy:         #0A1628;
  --navy-mid:     #0D1F3C;
  --navy-card:    #0F2444;
  --navy-border:  rgba(0,200,255,0.12);
  --gold:         #F5A32A;
  --gold-dim:     rgba(245,163,42,0.15);
  --gold-glow:    rgba(245,163,42,0.35);
  --cyan:         #00C8FF;
  --cyan-dim:     rgba(0,200,255,0.10);
  --cyan-glow:    rgba(0,200,255,0.30);
  --text-primary: #E8EDF2;
  --text-muted:   #7A92B0;
  --text-faint:   #3D5270;
  --radius-card:  4px;
  --radius-tag:   2px;
  --ease-out:     cubic-bezier(0.22,1,0.36,1);
}

/* ── Section wrapper ─────────────────────────────────────────── */
.mhrp__section {
  position: relative;
  background: linear-gradient(180deg, #0A1628 0%, #0D1F3C 50%, #0A1628 100%);
  overflow: hidden;
  padding: 96px 0 104px;
}

/* ── Background ──────────────────────────────────────────────── */
.mhrp__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.mhrp__circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}
.mhrp__trace {
  stroke-width: 1;
  fill: none;
  stroke-dashoffset: 0;
  animation: mhrp-trace-flow 8s linear infinite;
}
.mhrp__trace--gold   { stroke: #F5A32A; }
.mhrp__trace--cyan   { stroke: #00C8FF; }
.mhrp__trace--delay1 { animation-delay: -3s; }
.mhrp__trace--delay2 { animation-delay: -5.5s; }
@keyframes mhrp-trace-flow {
  to { stroke-dashoffset: -40; }
}
.mhrp__node {
  animation: mhrp-node-pulse 3s ease-in-out infinite;
}
.mhrp__node--gold { fill: #F5A32A; animation-delay: 0s; }
.mhrp__node--cyan { fill: #00C8FF; animation-delay: 1.5s; }
@keyframes mhrp-node-pulse {
  0%, 100% { opacity: 0.6; r: 3; }
  50%       { opacity: 1;   r: 5; }
}
.mhrp__dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,200,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Container ───────────────────────────────────────────────── */
.mhrp__container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section header ──────────────────────────────────────────── */
.mhrp__header {
  text-align: center;
  margin-bottom: 64px;
}
.mhrp__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.mhrp__label-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}
.mhrp__heading {
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.mhrp__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 24px;
}
.mhrp__rule-line {
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan) 60%, transparent);
  position: relative;
}
.mhrp__rule-line::after {
  content: '';
  position: absolute;
  inset: -1px 0;
  background: inherit;
  filter: blur(3px);
  opacity: 0.5;
}
.mhrp__subheading {
  font-family: 'Exo 2', 'Rajdhani', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Article grid ────────────────────────────────────────────── */
.mhrp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

/* ── Card ────────────────────────────────────────────────────── */
.mhrp__card {
  position: relative;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
  cursor: pointer;
}
.mhrp__card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,255,0.35);
}
.mhrp__card:hover .mhrp__glow-border {
  opacity: 1;
}
.mhrp__card:hover .mhrp__bracket {
  opacity: 1;
  transform: scale(1);
}
.mhrp__card:hover .mhrp__img {
  transform: scale(1.04);
}

/* Invisible full-card link overlay */
.mhrp__card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* ── Glow border ─────────────────────────────────────────────── */
.mhrp__glow-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow:
    inset 0 0 0 1px rgba(0,200,255,0.4),
    0 0 24px rgba(0,200,255,0.12),
    0 0 48px rgba(0,200,255,0.06);
}

/* ── Image zone ──────────────────────────────────────────────── */
.mhrp__img-zone {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
  background: #0A1628;
}
.mhrp__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.mhrp__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D1F3C;
}
.mhrp__img--placeholder svg {
  width: 100%;
  height: 100%;
}

/* Scanline overlay */
.mhrp__img-zone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* Bottom gradient on image */
.mhrp__img-zone::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10,22,40,0.85), transparent);
  z-index: 1;
  pointer-events: none;
}

/* ── Corner brackets ─────────────────────────────────────────── */
.mhrp__bracket {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}
.mhrp__bracket--tl { top: 8px;  left: 8px;  border-top: 2px solid var(--cyan); border-left:  2px solid var(--cyan); }
.mhrp__bracket--tr { top: 8px;  right: 8px; border-top: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.mhrp__bracket--bl { bottom: 8px; left: 8px;  border-bottom: 2px solid var(--cyan); border-left:  2px solid var(--cyan); }
.mhrp__bracket--br { bottom: 8px; right: 8px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }

/* ── Badge (read time) ───────────────────────────────────────── */
.mhrp__badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(10,22,40,0.85);
  border: 1px solid rgba(245,163,42,0.3);
  padding: 3px 8px;
  border-radius: var(--radius-tag);
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  backdrop-filter: blur(4px);
}

/* ── Category tag ────────────────────────────────────────────── */
.mhrp__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  background: rgba(0,200,255,0.15);
  border: 1px solid rgba(0,200,255,0.35);
  padding: 3px 9px;
  border-radius: var(--radius-tag);
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cyan);
  backdrop-filter: blur(4px);
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Card body ───────────────────────────────────────────────── */
.mhrp__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 24px;
  position: relative;
  z-index: 3;
}

/* ── Meta ────────────────────────────────────────────────────── */
.mhrp__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.mhrp__date,
.mhrp__author {
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.mhrp__meta-sep { color: var(--text-faint); font-size: 10px; }

/* ── Title ───────────────────────────────────────────────────── */
.mhrp__title {
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.mhrp__title-link {
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 3;
  transition: color 0.2s ease;
}
.mhrp__card:hover .mhrp__title-link { color: var(--cyan); }

/* ── Excerpt ─────────────────────────────────────────────────── */
.mhrp__excerpt {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 20px;
  flex: 1;
}

/* ── CTA ─────────────────────────────────────────────────────── */
.mhrp__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  position: relative;
  z-index: 3;
  align-self: flex-start;
  transition: gap 0.25s var(--ease-out), color 0.2s ease;
}
.mhrp__cta:hover {
  gap: 12px;
  color: var(--cyan);
}
.mhrp__cta-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s var(--ease-out);
}
.mhrp__cta:hover .mhrp__cta-arrow { transform: translateX(4px); }

/* ── View All ────────────────────────────────────────────────── */
.mhrp__footer { text-align: center; }
.mhrp__view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  background: var(--gold);
  color: #0A1628;
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s var(--ease-out);
}
.mhrp__view-all:hover {
  transform: translateY(-2px);
  color: #0A1628;
}
.mhrp__view-all-track {
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.mhrp__view-all:hover .mhrp__view-all-track { transform: scaleX(1); }
.mhrp__view-all-text,
.mhrp__view-all-arrow {
  position: relative;
  z-index: 1;
}
.mhrp__view-all-arrow { display: flex; align-items: center; }

/* ── Empty state ─────────────────────────────────────────────── */
.mhrp__empty {
  text-align: center;
  padding: 64px 24px;
  border: 1px dashed rgba(0,200,255,0.2);
  border-radius: var(--radius-card);
  background: rgba(0,200,255,0.03);
}
.mhrp__empty-icon { margin-bottom: 20px; }
.mhrp__empty-text {
  font-family: 'Exo 2', sans-serif;
  color: var(--text-muted);
  font-size: 14px;
}

/* ── Scroll reveal ───────────────────────────────────────────── */
.mhrp__reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.mhrp__reveal.mhrp--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .mhrp__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 640px) {
  .mhrp__section { padding: 64px 0 72px; }
  .mhrp__header  { margin-bottom: 40px; }
  .mhrp__grid    { grid-template-columns: 1fr; gap: 16px; }
  .mhrp__card-body { padding: 16px 18px 20px; }
  .mhrp__title   { font-size: 15px; }
}
/* END_SECTION:mh-recent-posts */
/* START_SECTION:minerhub-hero (INDEX:38) */
/* ============================================================
   MinerHub Hero — CSS
   Palette: navy #0A1628 / gold #F5A32A / cyan #00C8FF
   Fonts: Rajdhani (display) · Exo 2 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Exo+2:wght@300;400;500;600&display=swap');

.mh-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0A1628;
}

/* ── Background ───────────────────────────────────── */
.mh-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mh-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* Multi-layer overlay:
   - Strong left-side dark fade so text is readable
   - Subtle bottom fade for strip integration
   - Keeps right side (hardware) visible */
.mh-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 22, 40, 0.97) 0%,
      rgba(10, 22, 40, 0.93) 25%,
      rgba(10, 22, 40, 0.75) 48%,
      rgba(10, 22, 40, 0.25) 65%,
      rgba(10, 22, 40, 0.05) 80%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 22, 40, 0.6) 0%,
      transparent 30%
    );
}

/* ── Inner layout ─────────────────────────────────── */
.mh-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 48px 80px;
}

.mh-hero__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Eyebrow ──────────────────────────────────────── */
.mh-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  animation: mh-hero-fadein 0.7s ease both;
  animation-delay: 0.05s;
}

.mh-hero__eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F5A32A;
  flex-shrink: 0;
}

.mh-hero__eyebrow-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5A32A;
}

/* ── Heading ──────────────────────────────────────── */
.mh-hero__heading {
  font-family: 'Rajdhani', 'Arial Black', sans-serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 0 0 20px;
  animation: mh-hero-fadein 0.75s ease both;
  animation-delay: 0.15s;
}

/* Gold highlight on last word via span — added via JS below */
.mh-hero__heading .mh-gold {
  color: #F5A32A;
}

/* ── Subheading ───────────────────────────────────── */
.mh-hero__sub {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  color: #C8D6E8;
  margin: 0 0 28px;
  max-width: 480px;
  animation: mh-hero-fadein 0.75s ease both;
  animation-delay: 0.25s;
}

/* ── Trust badges ─────────────────────────────────── */
.mh-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  animation: mh-hero-fadein 0.75s ease both;
  animation-delay: 0.35s;
}

.mh-hero__badge {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #C8D6E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 5px 14px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── CTA buttons ──────────────────────────────────── */
.mh-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  animation: mh-hero-fadein 0.75s ease both;
  animation-delay: 0.45s;
}

.mh-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.mh-hero__btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.mh-hero__btn:hover svg {
  transform: translateX(3px);
}

/* Primary — gold fill */
.mh-hero__btn--primary {
  background: #F5A32A;
  color: #0A1628;
  border: 2px solid #F5A32A;
}

.mh-hero__btn--primary:hover {
  background: #E8921A;
  border-color: #E8921A;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(245, 163, 42, 0.35);
}

/* Secondary — outlined cyan */
.mh-hero__btn--secondary {
  background: rgba(0, 200, 255, 0.08);
  color: #00C8FF;
  border: 2px solid rgba(0, 200, 255, 0.45);
}

.mh-hero__btn--secondary:hover {
  background: rgba(0, 200, 255, 0.16);
  border-color: #00C8FF;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 200, 255, 0.2);
}

/* ── Collection shortcut links ────────────────────── */
.mh-hero__collections {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  animation: mh-hero-fadein 0.75s ease both;
  animation-delay: 0.55s;
}

.mh-hero__collections-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5A7298;
}

.mh-hero__collection-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mh-hero__collection-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #8A9BB5;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.18s ease;
  position: relative;
  padding-bottom: 1px;
}

.mh-hero__collection-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #F5A32A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.mh-hero__collection-link:hover {
  color: #F5A32A;
}

.mh-hero__collection-link:hover::after {
  transform: scaleX(1);
}

.mh-hero__collection-link:nth-child(even)::after {
  background: #00C8FF;
}

.mh-hero__collection-link:nth-child(even):hover {
  color: #00C8FF;
}

/* ── Bottom circuit strip ─────────────────────────── */
.mh-hero__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #091220;
  overflow: hidden;
  z-index: 2;
}

.mh-hero__strip-track {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 2px;
  animation: mh-trace 4s ease-in-out infinite;
}

.mh-hero__strip-track--gold {
  background: #F5A32A;
  width: 35%;
  animation-delay: 0s;
}

.mh-hero__strip-track--cyan {
  background: #00C8FF;
  width: 22%;
  animation-delay: 1.8s;
  opacity: 0.75;
}

@keyframes mh-trace {
  0%   { left: -40%; }
  100% { left: 115%; }
}

/* ── Entry animations ─────────────────────────────── */
@keyframes mh-hero-fadein {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ───────────────────────────────────── */
@media screen and (max-width: 960px) {
  .mh-hero {
    min-height: 520px;
  }

  .mh-hero__bg-img {
    object-position: 70% center;
  }

  .mh-hero__overlay {
    background:
      linear-gradient(
        115deg,
        rgba(10, 22, 40, 0.97) 0%,
        rgba(10, 22, 40, 0.90) 35%,
        rgba(10, 22, 40, 0.65) 60%,
        rgba(10, 22, 40, 0.15) 100%
      ),
      linear-gradient(
        to top,
        rgba(10, 22, 40, 0.7) 0%,
        transparent 35%
      );
  }

  .mh-hero__inner {
    padding: 56px 32px 64px;
  }

  .mh-hero__content {
    max-width: 520px;
  }
}

@media screen and (max-width: 640px) {
  .mh-hero {
    min-height: auto;
  }

  /* On mobile: push hardware image to background fully,
     cover the whole section with darker overlay so text pops */
  .mh-hero__bg-img {
    object-position: 75% center;
  }

  .mh-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.80) 0%,
        rgba(10, 22, 40, 0.75) 40%,
        rgba(10, 22, 40, 0.92) 100%
      );
  }

  .mh-hero__inner {
    padding: 40px 20px 52px;
  }

  .mh-hero__content {
    max-width: 100%;
  }

  .mh-hero__eyebrow {
    gap: 8px;
    margin-bottom: 14px;
  }

  .mh-hero__eyebrow-text {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .mh-hero__heading {
    font-size: clamp(30px, 9vw, 44px);
    margin-bottom: 16px;
  }

  .mh-hero__sub {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .mh-hero__badges {
    margin-bottom: 24px;
    gap: 6px;
  }

  .mh-hero__badge {
    font-size: 11px;
    padding: 4px 11px;
  }

  .mh-hero__ctas {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .mh-hero__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .mh-hero__collections {
    gap: 6px 12px;
  }

  .mh-hero__collections-label {
    width: 100%;
  }

  .mh-hero__collection-links {
    gap: 8px 12px;
  }

  .mh-hero__collection-link {
    font-size: 12px;
  }
}

/* ── Reduced motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mh-hero__eyebrow,
  .mh-hero__heading,
  .mh-hero__sub,
  .mh-hero__badges,
  .mh-hero__ctas,
  .mh-hero__collections {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .mh-hero__strip-track {
    animation: none;
  }
}

/* ── Focus styles ─────────────────────────────────── */
.mh-hero__btn:focus-visible,
.mh-hero__collection-link:focus-visible {
  outline: 2px solid #F5A32A;
  outline-offset: 3px;
}
/* END_SECTION:minerhub-hero */
/* START_SNIPPET:background-media (INDEX:148) */
@media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
/* END_SNIPPET:background-media */
/* START_SNIPPET:product-media-gallery-content-styles (INDEX:203) */
media-gallery:where(.media-gallery--grid) .media-gallery__grid {
    display: none;
  }

  media-gallery.media-gallery--grid .media-gallery__grid .product-media-container {
    /* Needed for safari to stretch to full grid height */
    height: 100%;
  }

  @media screen and (min-width: 750px) {
    .media-gallery--two-column .media-gallery__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Display grid view as a carousel on mobile, grid on desktop */
    media-gallery:is(.media-gallery--grid) slideshow-component {
      display: none;
    }

    media-gallery:where(.media-gallery--grid) .media-gallery__grid {
      display: grid;
    }
  }

  .product-media-container__zoom-button {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: var(--layer-flat);
    cursor: zoom-in;
    background-color: transparent;

    &:hover {
      background-color: transparent;
    }
  }

  slideshow-slide.product-media-container--tallest {
    content-visibility: visible;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

  .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-in;
  }
/* END_SNIPPET:product-media-gallery-content-styles */
/* START_SNIPPET:quick-add-modal-styles (INDEX:207) */
#quick-add-dialog {
    display: contents;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal {
      width: var(--quick-add-modal-width);
      height: var(--quick-add-modal-height);
      max-width: none;
    }
  }

  .quick-add-modal {
    padding: 0;
    border: var(--style-border-popover);
    overflow: hidden;
    box-shadow: 0 5px 30px rgb(0 0 0 / var(--opacity-15));

    @media screen and (max-width: 749px) {
      position: fixed;
      margin: auto 0 0 0;
      min-height: unset;
      max-width: 100%;
      border-radius: 0;
      overflow: clip;
      height: fit-content;
    }
  }

  .quick-add-modal[open] {
    @media screen and (max-width: 750px) {
      border-top-left-radius: var(--style-border-radius-popover);
      border-top-right-radius: var(--style-border-radius-popover);
    }
  }

  .quick-add-modal[open] {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .quick-add-modal .view-more-details__wrapper {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal__close {
    position: absolute;
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    transition: transform 0.15s var(--animation-timing-bounce);
    z-index: var(--layer-raised);
    overflow: visible;
    transform-origin: center;
  }

  .quick-add-modal__close:active {
    transform: scale(0.99) translateY(1px);
  }

  .quick-add-modal__close {
    &:focus-visible {
      outline: none;
    }

    &:focus-visible::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: calc(var(--style-border-radius-popover) - var(--margin-2xs));
      outline: var(--focus-outline-width) solid currentColor;
    }
  }

  .quick-add-modal__content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 100% 1fr;
    position: relative;
    overflow-y: auto;
    max-height: 100vh;
    flex-grow: 1;

    @media screen and (max-width: 749px) {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      padding-inline: var(--padding-xl);
      padding-block: var(--padding-xl);
      gap: var(--gap-lg);
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      height: auto; /* Prevent a bug in Safari where height:fit-content is not respected */
      max-height: 100vh;
    }
  }

  .quick-add-modal__content .media-gallery--grid .media-gallery__grid {
    grid-template-columns: 1fr;
  }

  .quick-add-modal__content .media-gallery--grid.media-gallery--two-column .product-media-container:first-child {
    grid-column: auto;
  }

  .quick-add-modal__content {
    /* One column */
    .media-gallery--grid:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--two-column:not(.media-gallery--large-first-image)
      .product-media-container:nth-of-type(odd)
      .product-media > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media > *,
        /* Carousel */
      .media-gallery--carousel slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
  }

  .quick-add-modal__content .view-more-details__wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .view-more-details__wrapper .view-more-details {
    display: flex;
    align-items: center;
    width: fit-content;
  }

  .quick-add-modal__content .product-header {
    @media screen and (max-width: 749px) {
      display: flex;
      flex-direction: column;
      grid-column: 2 / -1;
      grid-row: 1;
      padding-right: var(--padding-2xl);
    }
  }

  .quick-add-modal__content .product-header a:not(product-price *) {
    @media screen and (max-width: 749px) {
      font-size: var(--font-size--md);
      font-weight: 500;
      color: inherit;
      width: fit-content;
    }
  }

  .quick-add-modal__content variant-picker,
  .quick-add-modal__content product-form-component {
    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .quick-add-modal__content .product-media-container__zoom-button {
    cursor: default;
  }

  .quick-add-modal__content .product-details {
    grid-column: 4 / -1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    position: relative;

    dialog[open] & {
      animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
      animation-delay: 0.1s;
    }

    @media screen and (max-width: 749px) {
      grid-column: 2 / span 2;
      grid-row: span 1;
      max-height: 100%;
      height: 100%;
    }
  }

  @property --quick-add-modal-mask-start {
    syntax: '<length>';
    initial-value: 0px;
    inherits: false;
  }

  @property --quick-add-modal-mask-end {
    syntax: '<length>';
    initial-value: 0px;
    inherits: true;
  }

  @keyframes detect-scroll {
    from,
    to {
      --can-scroll: ;
    }
  }

  @supports (animation-timeline: scroll(self)) {
    dialog[open] .quick-add-modal__content .product-details {
      mask-image: linear-gradient(to bottom, transparent 0%, #000 var(--quick-add-modal-mask-start), #000 100%);
      animation: 0.3s var(--animation-timing-fade-in) 0.1s both fadeSlideIn, scrollStart 1s linear both,
        scrollEnd 1s linear both, detect-scroll 1ms linear none;
      animation-timeline: auto, scroll(self), scroll(self), scroll(self);
      animation-range: normal, 0px 48px, calc(100% - 48px) 100%, 0% 100%;
    }
  }

  @keyframes scrollStart {
    from {
      --quick-add-modal-mask-start: 0px;
    }
    to {
      --quick-add-modal-mask-start: 48px;
    }
  }

  @keyframes scrollEnd {
    from {
      --quick-add-modal-mask-end: 0px;
    }
    to {
      --quick-add-modal-mask-end: 48px;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    flex-grow: 1;
    width: auto;
  }

  .quick-add-modal__content > * {
    min-height: 0;
  }

  .quick-add-modal__content .product-details :is(.view-product-title, .buy-buttons-block) {
    flex: 0 0 auto;
  }
  .quick-add-modal__content .product-details :is(.buy-buttons-block) {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    padding-bottom: var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) {
    position: static;
    padding-bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) > product-form-component {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form)::before {
    display: none;
  }

  .quick-add-modal__content .product-details .buy-buttons-block__bar {
    display: block;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-block: var(--gap-md) var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  @supports (animation-timeline: scroll(self)) {
    .quick-add-modal__content .product-details :is(.buy-buttons-block)::before,
    .quick-add-modal__content .product-details .buy-buttons-block__bar::before {
      --mask-if-scroll: var(--can-scroll) var(--quick-add-modal-mask-end);
      --mask-if-no-scroll: 48px;
      --quick-add-modal-mask-end-progressive-enhanced: var(--mask-if-scroll, var(--mask-if-no-scroll));
      height: calc(var(--gap-2xs) + 48px);
    }
  }

  .quick-add-modal__content .product-details .variant-picker {
    flex: 0 0 auto;

    padding-block: min(var(--gap-2xl), var(--gap));
    margin-block-end: calc(var(--focus-outline-offset) + var(--focus-outline-width));
  }

  .quick-add-modal__content .variant-option--swatches {
    padding-inline-start: var(--padding-2xs);
  }

  .quick-add-modal__content .variant-option--swatches legend {
    margin-inline-start: calc(-1 * var(--padding-2xs));
  }

  .quick-add-modal__content:not(:has(.product-information__media)) .product-details {
    grid-column: 1 / -1;
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
    padding-block: 0;
    margin-block-end: 12px;

    /* Prevent overlap between title and close button */
    padding-inline-end: calc(var(--padding-2xl) + calc(var(--minimum-touch-target) / 2));
  }

  .quick-add-modal__content .view-product-title a {
    color: inherit;
    text-decoration: none;
    text-align: left;
    font-size: var(--font-size--2xl);
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s var(--animation-easing);
  }

  .quick-add-modal__content .product-details product-price {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price.text-block--align-center {
    margin-inline: 0;
  }

  .quick-add-modal__content .product-details product-price.text-center {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price > * {
    text-align: left;
  }

  .quick-add-modal__content
    .product-details
    *:not(
      .group-block,
      .group-block-content,
      .buy-buttons-block,
      .buy-buttons-block *,
      .view-product-title,
      .view-product-title *,
      variant-picker,
      variant-picker *,
      product-price,
      product-price *,
      product-inventory,
      product-inventory *,
      .view-more-details__wrapper,
      .view-more-details__wrapper *
    ) {
    @media screen and (min-width: 750px) {
      /* stylelint-disable-next-line declaration-no-important */
      display: none !important;
    }
  }

  .quick-add-modal__content
    .group-block:not(
      :has(
          .buy-buttons-block,
          .buy-buttons-block *,
          .view-product-title,
          .view-product-title *,
          variant-picker,
          variant-picker *,
          product-price,
          product-price *,
          product-inventory,
          product-inventory *,
          .view-more-details__wrapper,
          .view-more-details__wrapper *
        ),
      .buy-buttons-block
    ) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .group-block-content {
      gap: 0;
    }

    .quick-add-modal__content .media-gallery__grid {
      gap: min(var(--gap-2xs), var(--image-gap));
      border-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media img {
      border-radius: 0;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    padding-block: var(--padding-3xl) 0;
  }

  .quick-add-modal__content :where(.product-details > .group-block > .group-block-content > *) {
    padding-inline: var(--padding-3xl);
  }

  .quick-add-modal__content slideshow-slide:not([aria-hidden='false']) {
    content-visibility: auto;
  }

  .quick-add-modal__content .product-information__media {
    width: 100%;
    grid-column: 1 / span 1;
    grid-row: 1;
    position: relative;
    top: 0;
    animation: fadeIn 0.4s var(--animation-timing-fade-in) both;

    @media screen and (min-width: 750px) {
      position: sticky;
      grid-column: 1 / 4;
      width: var(--quick-add-modal-gallery-width);
      overflow-y: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media media-gallery {
    pointer-events: none;

    @media screen and (min-width: 750px) {
      position: absolute;
      inset: 0;
    }
  }

  .quick-add-modal media-gallery {
    padding: 0;
  }

  .quick-add-modal__content .product-information__media slideshow-arrows {
    display: none;
  }

  .quick-add-modal__content .product-information__media slideshow-container {
    display: block;
  }

  .quick-add-modal__content .product-information__media slideshow-slides {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    overflow: visible;
    scroll-snap-type: none;
  }

  .quick-add-modal__content .product-information__media slideshow-slide {
    width: 100%;
    flex: none;
    scroll-snap-align: unset;
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--animation-easing);
  }

  .quick-add-modal__content .product-information__media slideshow-slide[aria-hidden='true'] {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(1) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(2) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.05s;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(3) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.1s;
  }

  .quick-add-modal__content .product-information__media :is(slideshow-controls, slideshow-controls[thumbnails]) {
    display: none;
  }

  .quick-add-modal__content .sticky-content,
  .quick-add-modal__content .sticky-content--desktop {
    top: 0;
  }

  .quick-add-modal__content .text-block.rte:not(product-price),
  .quick-add-modal__content .view-more-details__wrapper {
    display: none;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* END_SNIPPET:quick-add-modal-styles */
/* START_SNIPPET:resource-card (INDEX:211) */
.resource-card {
    --resource-card-secondary-image-opacity: 0;
    --resource-card-primary-image-opacity: calc(1 - var(--resource-card-secondary-image-opacity));

    display: flex;
    flex-direction: column;
    row-gap: var(--padding-xs);
    position: relative;
    text-decoration: none;
    height: 100%;
    opacity: 0;
    animation: fadeIn var(--animation-speed-medium) var(--animation-timing-fade-in) forwards;
  }

  .resource-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .resource-card__content {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground);
    gap: var(--padding-3xs);

    .price {
      font-weight: 500;
    }

    .volume-pricing-note {
      display: block;
      margin-top: var(--padding-3xs);
      font-family: var(--font-body--family);
      font-weight: normal;
      font-size: min(0.85em, var(--font-paragraph--size));
      line-height: normal;
      letter-spacing: normal;
      text-transform: none;
      color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    }
  }

  .resource-card[data-resource-type='article'] .resource-card__content,
  .resource-card[data-resource-type='page'] .resource-card__content {
    gap: var(--padding-xs);
  }

  .resource-card__image {
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    object-fit: cover;
    border-radius: var(--resource-card-corner-radius);
    opacity: var(--resource-card-primary-image-opacity);
  }

  .resource-card__image--secondary {
    position: absolute;
    top: 0;
    opacity: var(--resource-card-secondary-image-opacity);
    border-radius: var(--resource-card-corner-radius);
  }

  .resource-card__media:empty {
    display: none;
  }

  .resource-card__image-placeholder {
    padding: var(--padding-sm);
    font-size: var(--font-size--lg);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    border-radius: var(--resource-card-corner-radius);
    color: var(--color-foreground);
  }

  .resource-card__title {
    margin-block: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .resource-card__title.paragraph {
    line-height: 1.3;
  }

  .resource-card--overlay {
    height: 100%;

    &::before {
      content: '';
      position: absolute;
      inset: 50% 0 0;
      background: var(--gradient-image-overlay);
      border-radius: var(--resource-card-corner-radius);
      pointer-events: none;
      z-index: var(--layer-flat);
    }
  }

  .resource-card--overlay .resource-card__image {
    height: 100%;
  }

  .resource-card--overlay .resource-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: var(--padding-lg) var(--padding-lg) var(--padding-sm);
    z-index: var(--layer-raised);
  }

  .resource-card--overlay .resource-card__title {
    color: var(--color-white);
  }

  /* Collection images */
  .resource-card__image-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-2xs);
  }

  .resource-card__collection-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--card-corner-radius) - (var(--padding-xs) / 2));
  }

  .resource-card__subtext {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-block-start: 0;
  }

  .resource-card__subtext.paragraph {
    font-size: var(--font-size--body-sm);
    line-height: var(--line-height--body-tight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .resource-card:has(.resource-card__image--secondary) {
    &:hover,
    &:focus {
      --resource-card-secondary-image-opacity: 1;
    }
  }
/* END_SNIPPET:resource-card */
/* START_SNIPPET:search-modal (INDEX:216) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

  .search-modal__content {
    /* Approx set the top so when the content is at max height, the modal is centered */
    --modal-top-margin: calc(50dvh - var(--modal-max-height) / 2 - 2rem);
    --modal-width: 66dvw;

    padding: 0;
    border: var(--style-border-popover);

    @media screen and (min-width: 750px) {
      width: var(--modal-width);
      margin-block-start: var(--modal-top-margin);
      overflow: hidden;
    }
  }

  /* Hide the default dialog backdrop on small screens */
  @media screen and (max-width: 749px) {
    .search-modal__content::backdrop {
      display: none;
    }
  }

  .dialog-modal[open].search-modal__content {
    transform-origin: bottom center;
    animation: search-element-slide-in-bottom 300ms var(--ease-out-quad) forwards;
    border-radius: var(--search-border-radius);
    box-shadow: var(--shadow-popover);

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal.search-modal__content.dialog-closing {
    animation: search-element-slide-out-bottom 200ms var(--ease-out-quad) forwards;
  }

  .search-modal__content[open] {
    display: flex;
  }

  .search-modal__content :is(.predictive-search-dropdown, .predictive-search-form__content-wrapper) {
    position: relative;
  }

  .dialog-modal
    .predictive-search-form__header:has(
      .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
    )::before {
    content: '';
    position: absolute;
    right: calc(var(--padding-sm) + var(--minimum-touch-target));
    top: 0;
    bottom: 0;
    width: var(--border-width-sm);
    background-color: var(--color-border);
  }

  .dialog-modal
    .predictive-search-form__header:has(.predictive-search__reset-button:not(.predictive-search__reset-button[hidden]))
    > .predictive-search__close-modal-button {
    &::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .dialog-modal
      .predictive-search-form__header:has(
        .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
      )::before {
      right: calc(var(--padding-2xl) * 2);
    }
  }

  predictive-search-component {
    --resource-card-corner-radius: var(--product-corner-radius);

    display: flex;
    width: 100%;
    position: relative;
    margin-inline: auto;
    align-items: center;
    background-color: var(--color-background);
    z-index: var(--layer-heightened);
  }

  .predictive-search-form__footer {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    @media screen and (min-width: 750px) {
      --to-top-gradient-background: linear-gradient(
        to top,
        rgb(var(--color-background-rgb) / var(--opacity-90)),
        rgb(var(--color-background-rgb) / var(--opacity-80)),
        rgb(var(--color-background-rgb) / var(--opacity-40)),
        transparent
      );

      padding-block: var(--padding-xs) var(--padding-lg);
      background-image: var(--to-top-gradient-background);
    }
  }

  predictive-search-component:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    .predictive-search-form__footer {
    display: block;
  }

  .predictive-search-form {
    position: relative;
    width: 100%;
    align-self: flex-start;
  }

  .predictive-search-form__content {
    max-height: 50dvh;
    overflow-y: auto;
    background-color: var(--color-background);

    /* Firefox */
    scrollbar-width: none;

    /* Webkit browsers */
    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-form__content-wrapper {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: var(--layer-raised);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--search-border-radius) var(--search-border-radius);
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    transform: translateZ(0);
    will-change: transform, opacity;
    overflow: hidden;

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }

    @media screen and (min-width: 750px) {
      max-height: var(--modal-max-height);
    }
  }

  /* Add new rule to apply bottom padding only when search button exists */
  .predictive-search-form__content-wrapper:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    > .predictive-search-form__content {
    padding-block-end: var(--padding-6xl);
  }

  .predictive-search-form__header-inner {
    background: var(--color-background);
    border: var(--search-border-width) solid var(--color-border);
    color: var(--color-foreground);
    border-radius: var(--style-border-radius-popover);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
      border: none;
    }
  }

  .predictive-search-form__header-inner:focus-within {
    outline-offset: var(--focus-outline-offset);

    @media screen and (min-width: 750px) {
      outline: var(--focus-outline-width) solid var(--color-primary);
    }
  }

  .predictive-search-form__header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    align-items: center;
    background-color: var(--color-input-background);
    border: var(--search-border-width) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);

    @media screen and (max-width: 749px) {
      padding: var(--padding-2xs) var(--padding-sm);
    }
  }

  .predictive-search-form__header:focus-within,
  .predictive-search-form__header-inner:focus-within,
  .predictive-search-form__header-inner:has(.search-input:is(:focus, :focus-visible)) {
    outline: none;
    box-shadow: none;
    /* stylelint-disable-next-line declaration-no-important */
    border-color: var(--color-border) !important;
  }

  input.search-input {
    border-radius: var(--style-border-radius-inputs);
    padding-block: var(--padding-sm);
    font-size: var(--font-size--md);
    width: 100%;
    color: var(--color-foreground);
    padding-inline: calc(var(--margin-lg) + var(--icon-size-lg)) 0;
    background: transparent;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: none;
    border: 0;
  }

  .search-input::placeholder {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .search-input,
  .search-input:is(:focus, :focus-visible, :focus-within),
  .predictive-search-form__header *:is(:focus, :focus-visible) {
    outline: none;
    box-shadow: none;
  }

  .search-input:hover {
    background-color: transparent;
  }

  .predictive-search__icon {
    position: absolute;
    left: var(--margin-xl);
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));

    @media screen and (min-width: 750px) {
      left: var(--margin-md);
    }
  }

  .predictive-search__icon > svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    padding: 0;
    margin-inline-end: var(--margin-md);
    background: transparent;
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-out),
      visibility var(--animation-speed-medium) var(--animation-timing-fade-out);

    &:hover {
      color: var(--color-foreground);
    }

    &:active {
      transform: scale(0.9);
      transition: transform 100ms var(--animation-timing-active);
    }

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  .predictive-search__reset-button[hidden] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .predictive-search__reset-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: background-color var(--animation-speed-medium) ease-in-out,
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    border-radius: 50%;

    &:hover {
      background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
    }
  }

  .predictive-search__reset-button:active .predictive-search__reset-button-icon {
    transform: scale(0.85);
    transition-timing-function: var(--animation-timing-active);
    transition-duration: 100ms;
  }

  .predictive-search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button-text {
    display: none;
  }

  .predictive-search__search-button {
    margin: auto;
    z-index: var(--layer-raised);
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce),
      box-shadow var(--animation-speed-medium) var(--animation-timing-hover);
    transform-origin: center;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgb(0 0 0 / var(--opacity-5));
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
      box-shadow: none;
    }
  }

  .predictive-search__close-modal-button {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    margin-inline-start: var(--margin-sm);
    padding: 0;
    box-shadow: none;

    &:active {
      transform: scale(0.8);
      transition: transform 100ms var(--animation-timing-active);
    }

    .svg-wrapper,
    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  .predictive-search__close-modal-button:hover {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;
  }
/* END_SNIPPET:search-modal */
/* START_SNIPPET:section (INDEX:218) */
.section-wrapper {
    --section-height-offset: 0px;
  }

  .section[data-shopify-visual-preview] {
    min-height: var(--section-preview-height);
    padding-top: 0;
  }

  .section[data-shopify-visual-preview] .custom-section-background {
    display: none;
  }

  body:has(> #header-group > .header-section > #header-component[transparent]):not(
      :has(> #header-group > .header-section + .shopify-section)
    )
    > main
    > .section-wrapper:first-child {
    --section-height-offset: var(--header-group-height, 0);
  }

  .custom-section-background {
    grid-column: 1 / -1;
  }

  .custom-section-content {
    z-index: var(--layer-flat);
  }
/* END_SNIPPET:section */
/* START_SNIPPET:skip-to-content-link (INDEX:220) */
.skip-to-content-link {
    position: absolute;
    left: -99999px;
  }

  .skip-to-content-link:focus {
    z-index: var(--layer-temporary);
    overflow: auto;
    width: auto;
    height: auto;
    padding: var(--padding-lg) var(--padding-4xl);
    left: var(--margin-lg);
    top: var(--margin-lg);
    background-color: var(--color-background);
    box-shadow: 0 0 0 var(--focus-outline-offset) var(--color-background);
  }
/* END_SNIPPET:skip-to-content-link */
