/** Shopify CDN: Minification failed

Line 1905:0 All "@import" rules must come first
Line 2546:0 All "@import" rules must come first

**/
/* START_SECTION:header (INDEX:13) */
/* ============================================================
   MinerHub Header — Redesigned CSS v2
   Brand palette: navy #0A1628 / gold #F5A32A / cyan #00C8FF
   Aesthetic: Industrial-tech · precision-machined · luminous
   ============================================================ */

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

:root {
  --mh-navy:          #060e1c;
  --mh-navy-mid:      #0A1628;
  --mh-navy-panel:    #0D1F3C;
  --mh-navy-light:    #122040;
  --mh-navy-hover:    #162545;
  --mh-gold:          #F5A32A;
  --mh-gold-bright:   #FFB84D;
  --mh-gold-dim:      #B87A14;
  --mh-gold-glow:     rgba(245,163,42,0.18);
  --mh-cyan:          #00C8FF;
  --mh-cyan-bright:   #40D8FF;
  --mh-cyan-dim:      #0099CC;
  --mh-cyan-glow:     rgba(0,200,255,0.15);
  --mh-white:         #FFFFFF;
  --mh-silver:        #C8D6E8;
  --mh-silver-dim:    #8FACC8;
  --mh-muted:         #4A6285;
  --mh-border:        rgba(255,255,255,0.06);
  --mh-border-gold:   rgba(245,163,42,0.18);
  --mh-border-cyan:   rgba(0,200,255,0.15);
  --mh-h:             72px;
  --mh-announce-h:    36px;
  --mh-font-display:  'Orbitron', 'Rajdhani', 'Arial Black', sans-serif;
  --mh-font-ui:       'Rajdhani', sans-serif;
  --mh-font-body:     'Exo 2', 'Arial', sans-serif;
  --mh-ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --mh-ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --mh-transition:    0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Announcement Bar ─────────────────────────────── */
.mh-announcement {
  background: linear-gradient(90deg, #030912 0%, var(--mh-navy-mid) 15%, var(--mh-navy-mid) 85%, #030912 100%);
  border-bottom: 1px solid rgba(245,163,42,0.3);
  height: var(--mh-announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  font-family: var(--mh-font-body);
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
}

/* Subtle scan line shimmer across announcement bar */
.mh-announcement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 3px,
    rgba(0,200,255,0.012) 3px,
    rgba(0,200,255,0.012) 4px
  );
  pointer-events: none;
}

/* Glowing left/right corner accents */
.mh-announcement::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(245,163,42,0.4) 20%,
    rgba(0,200,255,0.6) 50%,
    rgba(245,163,42,0.4) 80%,
    transparent 100%
  );
}

.mh-announcement__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.mh-announcement__pulse {
  width: 6px;
  height: 6px;
  background: var(--mh-cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--mh-cyan), 0 0 12px rgba(0,200,255,0.4);
  animation: mh-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes mh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px var(--mh-cyan), 0 0 12px rgba(0,200,255,0.4); }
  50%       { opacity: 0.5; transform: scale(0.65); box-shadow: 0 0 3px var(--mh-cyan); }
}

.mh-announcement__text,
.mh-announcement__text:visited {
  color: var(--mh-silver-dim);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  transition: color var(--mh-transition);
}
.mh-announcement__text:hover { color: var(--mh-gold); }

.mh-announcement__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mh-muted);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--mh-transition), opacity var(--mh-transition);
  opacity: 0.6;
  z-index: 2;
}
.mh-announcement__close:hover { color: var(--mh-white); opacity: 1; }

/* ── Header Shell ─────────────────────────────────── */
.mh-header {
  background: linear-gradient(180deg, #08111f 0%, var(--mh-navy-mid) 100%);
  border-bottom: 1px solid rgba(245,163,42,0.12);
  position: relative;
  z-index: 200;
  font-family: var(--mh-font-body);
  transition: background var(--mh-transition), box-shadow var(--mh-transition), border-color var(--mh-transition);
  /* Subtle noise texture for depth */
  background-size: 200px 200px;
}

/* Inset top edge glow line */
.mh-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,200,255,0.25) 30%,
    rgba(245,163,42,0.35) 50%,
    rgba(0,200,255,0.25) 70%,
    transparent 100%
  );
  pointer-events: none;
}

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

.mh-header--scrolled {
  background: rgba(6, 14, 28, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(245,163,42,0.12),
    0 8px 40px rgba(0,0,0,0.7),
    0 2px 12px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  border-bottom-color: rgba(245,163,42,0.08);
}

.mh-header--transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.mh-header--transparent.mh-header--scrolled {
  background: rgba(6, 14, 28, 0.96);
  border-bottom-color: rgba(245,163,42,0.1);
}

/* ── Circuit trace accent bar ─────────────────────── */
.mh-circuit-bar {
  height: 2px;
  background: rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.mh-circuit-bar__track {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 2px;
}

.mh-circuit-bar__track--gold {
  background: linear-gradient(90deg, transparent, var(--mh-gold-bright), var(--mh-gold), transparent);
  width: 35%;
  animation: mh-trace 4.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  box-shadow: 0 0 8px var(--mh-gold), 0 0 20px rgba(245,163,42,0.5);
  animation-delay: 0s;
}

.mh-circuit-bar__track--cyan {
  background: linear-gradient(90deg, transparent, var(--mh-cyan-bright), var(--mh-cyan), transparent);
  width: 22%;
  animation: mh-trace 4.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 2s;
  box-shadow: 0 0 6px var(--mh-cyan), 0 0 16px rgba(0,200,255,0.5);
  opacity: 0.85;
}

@keyframes mh-trace {
  0%   { left: -40%; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: 115%; opacity: 0; }
}

.mh-circuit-bar__node {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.mh-circuit-bar__node--1 {
  left: 20%;
  background: var(--mh-gold);
  box-shadow: 0 0 6px var(--mh-gold);
  opacity: 0.7;
  animation: mh-node-blink 3s ease-in-out infinite;
}
.mh-circuit-bar__node--2 {
  left: 50%;
  background: var(--mh-cyan);
  box-shadow: 0 0 6px var(--mh-cyan);
  opacity: 0.7;
  animation: mh-node-blink 3s ease-in-out infinite;
  animation-delay: 1s;
}
.mh-circuit-bar__node--3 {
  left: 80%;
  background: var(--mh-gold);
  box-shadow: 0 0 6px var(--mh-gold);
  opacity: 0.7;
  animation: mh-node-blink 3s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes mh-node-blink {
  0%, 100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
  50%       { opacity: 0.2; transform: translateY(-50%) scale(0.5); }
}

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

/* ── Logo ─────────────────────────────────────────── */
.mh-header__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.mh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

/* Hover glow aura behind logo img */
.mh-logo::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.mh-logo:hover::before { opacity: 1; }

.mh-logo__img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  filter: drop-shadow(0 0 6px rgba(0,200,255,0.1));
  position: relative;
  z-index: 1;
}
.mh-logo:hover .mh-logo__img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 0 10px rgba(0,200,255,0.3)) drop-shadow(0 2px 8px rgba(245,163,42,0.2));
}

.mh-logo__wordmark {
  font-family: var(--mh-font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.mh-logo__miner {
  color: var(--mh-white);
  text-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.mh-logo__hub {
  color: var(--mh-gold);
  text-shadow: 0 0 16px rgba(245,163,42,0.35);
}

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

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

.mh-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 15px;
  border-radius: 4px;
  font-family: var(--mh-font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mh-silver-dim);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color var(--mh-transition);
}

/* Animated underline — thicker, glowing */
.mh-nav__link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: linear-gradient(90deg, var(--mh-gold), var(--mh-cyan));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(245,163,42,0.5);
}

/* Background pill on hover */
.mh-nav__link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  opacity: 0;
  transition: opacity var(--mh-transition);
}

.mh-nav__link:hover::before,
.mh-nav__link:focus-visible::before { opacity: 1; }

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

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

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

.mh-nav__caret {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  opacity: 0.6;
}
.mh-nav__link:hover .mh-nav__caret { opacity: 1; }
.mh-nav__link[aria-expanded='true'] .mh-nav__caret { transform: rotate(180deg); opacity: 1; }

/* ── Mega Menu ─────────────────────────────────────── */
.mh-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: max-content;
  min-width: 620px;
  max-width: 760px;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(245,163,42,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(0,200,255,0.03) 0%, transparent 55%),
    linear-gradient(150deg, #0d2040 0%, #07101e 50%, #091523 100%);
  border: 1px solid rgba(245,163,42,0.18);
  border-top: none;
  border-radius: 0 0 14px 14px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.75),
    0 12px 32px rgba(0,0,0,0.55),
    0 0 0 1px rgba(0,200,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.05);
  z-index: 400;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s var(--mh-ease), transform 0.25s var(--mh-ease), visibility 0.25s;
  visibility: hidden;
  overflow: hidden;
}

/* Animated glowing top border — gold-to-cyan sweep */
.mh-mega::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--mh-gold) 0%,
    var(--mh-cyan) 50%,
    var(--mh-gold) 100%
  );
  background-size: 200% 100%;
  animation: mh-mega-border-sweep 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes mh-mega-border-sweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Circuit-trace grid background overlay */
.mh-mega > .mh-mega__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 39px,
      rgba(0,200,255,0.02) 39px,
      rgba(0,200,255,0.02) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 39px,
      rgba(245,163,42,0.015) 39px,
      rgba(245,163,42,0.015) 40px
    );
  pointer-events: none;
  z-index: 0;
}

/* Scanline overlay for industrial feel */
.mh-mega > .mh-mega__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* Invisible hover bridge — tall enough for diagonal mouse travel */
.mh-mega::before {
  content: '';
  position: absolute;
  top: -28px;
  left: -20px;
  right: -20px;
  height: 28px;
}


.mh-nav__item--mega:hover .mh-mega,
.mh-nav__item--mega.mh-mega--open .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;
}

/* Stagger column reveal */
.mh-mega .mh-mega__col {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s var(--mh-ease), transform 0.25s var(--mh-ease);
}
.mh-nav__item--mega:hover .mh-mega .mh-mega__col,
.mh-nav__item--mega.mh-mega--open .mh-mega .mh-mega__col,
.mh-nav__item--mega .mh-nav__link[aria-expanded='true'] + .mh-mega .mh-mega__col {
  opacity: 1;
  transform: translateY(0);
}
.mh-mega .mh-mega__col:nth-child(1) { transition-delay: 0.04s; }
.mh-mega .mh-mega__col:nth-child(2) { transition-delay: 0.1s; }
.mh-mega .mh-mega__col:nth-child(3) { transition-delay: 0.16s; }

.mh-nav__item--mega {
  position: relative;
}

/* GPU mega panel — cyan border accent */
[data-mega="gpu"] .mh-mega {
  border-color: rgba(0,200,255,0.18);
}
[data-mega="gpu"] .mh-mega::after {
  background: linear-gradient(90deg,
    var(--mh-cyan) 0%,
    var(--mh-gold) 50%,
    var(--mh-cyan) 100%
  );
  background-size: 200% 100%;
}

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

.mh-mega__col {
  padding: 26px 24px;
  position: relative;
  z-index: 1;
}

/* Gradient column dividers instead of flat border */
.mh-mega__col + .mh-mega__col {
  border-left: none;
}
.mh-mega__col + .mh-mega__col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(245,163,42,0.2) 30%,
    rgba(0,200,255,0.18) 70%,
    transparent 100%
  );
  pointer-events: none;
}

/* Featured card col */
.mh-mega__featured-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245,163,42,0.08) 0%, rgba(245,163,42,0.03) 100%);
  border: 1px solid rgba(245,163,42,0.18);
  text-decoration: none;
  transition: background 0.3s var(--mh-ease), border-color 0.3s var(--mh-ease), box-shadow 0.3s var(--mh-ease), transform 0.2s var(--mh-ease);
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on featured card hover */
.mh-mega__featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.1), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.mh-mega__featured-card:hover {
  background: linear-gradient(135deg, rgba(245,163,42,0.14) 0%, rgba(245,163,42,0.06) 100%);
  border-color: rgba(245,163,42,0.35);
  box-shadow:
    0 6px 24px rgba(245,163,42,0.15),
    0 0 0 1px rgba(245,163,42,0.08),
    inset 0 1px 0 rgba(245,163,42,0.12);
  transform: translateY(-1px);
}
.mh-mega__featured-card:hover::before { left: 200%; }

.mh-mega__featured-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,163,42,0.1);
  border-radius: 10px;
  border: 1px solid rgba(245,163,42,0.22);
  transition: background 0.3s var(--mh-ease), border-color 0.3s var(--mh-ease), box-shadow 0.3s var(--mh-ease);
}
.mh-mega__featured-card:hover .mh-mega__featured-icon {
  background: rgba(245,163,42,0.18);
  border-color: rgba(245,163,42,0.45);
  box-shadow: 0 0 14px rgba(245,163,42,0.2);
}

.mh-mega__featured-title {
  display: block;
  font-family: var(--mh-font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--mh-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

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

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

/* GPU dropdown — cyan featured card variant */
[data-mega="gpu"] .mh-mega__featured-card {
  background: linear-gradient(135deg, rgba(0,200,255,0.07) 0%, rgba(0,200,255,0.02) 100%);
  border-color: rgba(0,200,255,0.18);
}
[data-mega="gpu"] .mh-mega__featured-card::before {
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.1), transparent);
}
[data-mega="gpu"] .mh-mega__featured-card:hover {
  background: linear-gradient(135deg, rgba(0,200,255,0.14) 0%, rgba(0,200,255,0.06) 100%);
  border-color: rgba(0,200,255,0.35);
  box-shadow:
    0 6px 24px rgba(0,200,255,0.12),
    0 0 0 1px rgba(0,200,255,0.08),
    inset 0 1px 0 rgba(0,200,255,0.1);
}
[data-mega="gpu"] .mh-mega__featured-icon {
  background: rgba(0,200,255,0.1);
  border-color: rgba(0,200,255,0.22);
}
[data-mega="gpu"] .mh-mega__featured-card:hover .mh-mega__featured-icon {
  background: rgba(0,200,255,0.18);
  border-color: rgba(0,200,255,0.45);
  box-shadow: 0 0 14px rgba(0,200,255,0.2);
}
[data-mega="gpu"] .mh-mega__link:hover {
  border-color: rgba(0,200,255,0.12);
  box-shadow: inset 3px 0 0 var(--mh-cyan), 0 2px 8px rgba(0,0,0,0.2);
}
[data-mega="gpu"] .mh-mega__link:hover strong {
  text-shadow: 0 0 12px rgba(0,200,255,0.2);
}

/* Col labels */
.mh-mega__col-label {
  font-family: var(--mh-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mh-muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(90deg, rgba(245,163,42,0.15) 0%, rgba(0,200,255,0.1) 60%, transparent 100%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom;
}

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

.mh-mega__link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.22s var(--mh-ease), box-shadow 0.22s var(--mh-ease), border-color 0.22s var(--mh-ease);
  position: relative;
  border: 1px solid transparent;
}
.mh-mega__link:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(245,163,42,0.12);
  box-shadow: inset 3px 0 0 var(--mh-gold), 0 2px 8px rgba(0,0,0,0.2);
}
.mh-mega__link strong {
  display: block;
  font-family: var(--mh-font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--mh-silver);
  margin-bottom: 2px;
  letter-spacing: 0.04em;
  transition: color var(--mh-transition), text-shadow var(--mh-transition);
}
.mh-mega__link:hover strong {
  color: var(--mh-white);
  text-shadow: 0 0 12px rgba(245,163,42,0.2);
}
.mh-mega__link em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--mh-muted);
  letter-spacing: 0.04em;
  font-family: var(--mh-font-body);
  transition: color var(--mh-transition);
}
.mh-mega__link:hover em { color: var(--mh-silver-dim); }

.mh-mega__link--brand { padding: 7px 11px; }
.mh-mega__link--brand span {
  font-size: 13px;
  color: var(--mh-silver-dim);
  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 — glowing with pulse */
.mh-mega__link-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  transition: box-shadow 0.3s ease;
}
.mh-mega__link-dot--gold {
  background: var(--mh-gold);
  box-shadow: 0 0 6px rgba(245,163,42,0.5), 0 0 12px rgba(245,163,42,0.2);
}
.mh-mega__link:hover .mh-mega__link-dot--gold {
  box-shadow: 0 0 8px rgba(245,163,42,0.7), 0 0 18px rgba(245,163,42,0.35);
}
.mh-mega__link-dot--cyan {
  background: var(--mh-cyan);
  box-shadow: 0 0 6px rgba(0,200,255,0.5), 0 0 12px rgba(0,200,255,0.2);
}
.mh-mega__link:hover .mh-mega__link-dot--cyan {
  box-shadow: 0 0 8px rgba(0,200,255,0.7), 0 0 18px rgba(0,200,255,0.35);
}

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

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

.mh-mega__promo-badge {
  font-family: var(--mh-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mh-navy);
  background: var(--mh-gold);
  padding: 3px 9px;
  border-radius: 3px;
  width: fit-content;
  text-transform: uppercase;
}
.mh-mega__promo-badge--cyan {
  background: var(--mh-cyan);
  color: var(--mh-navy);
}

.mh-mega__promo-text {
  font-size: 12px;
  color: var(--mh-silver-dim);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  font-family: var(--mh-font-body);
}

.mh-mega__promo-cta {
  font-family: var(--mh-font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--mh-gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--mh-transition), text-shadow var(--mh-transition);
}
.mh-mega__promo-cta:hover {
  color: var(--mh-white);
  text-shadow: 0 0 10px rgba(245,163,42,0.4);
}
.mh-mega__promo-cta--cyan { color: var(--mh-cyan); }
.mh-mega__promo-cta--cyan:hover { text-shadow: 0 0 10px rgba(0,200,255,0.4); color: var(--mh-white); }

/* Mega overlay — top is set dynamically by JS to the header's actual bottom edge */
.mh-mega-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  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: 4px;
  justify-content: flex-end;
  min-width: 0;
}

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

/* Cart button — elevated gold accent */
.mh-action--cart {
  background: rgba(245,163,42,0.08);
  border: 1px solid rgba(245,163,42,0.22);
  color: var(--mh-gold);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--mh-font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: all 0.22s var(--mh-ease);
}

/* Shimmer sweep on cart hover */
.mh-action--cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.12), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.mh-action--cart:hover::before { left: 200%; }

.mh-action--cart:hover {
  background: rgba(245,163,42,0.14);
  border-color: rgba(245,163,42,0.4);
  color: var(--mh-gold-bright);
  box-shadow: 0 0 16px rgba(245,163,42,0.15), inset 0 1px 0 rgba(245,163,42,0.1);
}

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

.mh-cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  background: var(--mh-gold);
  color: var(--mh-navy);
  font-size: 9px;
  font-weight: 800;
  font-family: var(--mh-font-ui);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  box-shadow: 0 0 8px rgba(245,163,42,0.5);
  animation: mh-pop 0.35s 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: 9px;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--mh-transition), border-color var(--mh-transition);
}
.mh-hamburger:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.06);
}

.mh-hamburger__bar {
  display: block;
  height: 1.5px;
  background: var(--mh-silver);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, width 0.2s ease, background-color var(--mh-transition);
  transform-origin: center;
}
/* Different widths for visual interest */
.mh-hamburger__bar:nth-child(1) { width: 22px; }
.mh-hamburger__bar:nth-child(2) { width: 16px; }
.mh-hamburger__bar:nth-child(3) { width: 20px; }

.mh-hamburger:hover .mh-hamburger__bar { background: var(--mh-white); }
.mh-hamburger:hover .mh-hamburger__bar:nth-child(2) { width: 22px; }

.mh-hamburger[aria-expanded='true'] .mh-hamburger__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 22px;
  background: var(--mh-gold);
}
.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);
  width: 22px;
  background: var(--mh-gold);
}



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

.mh-search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.88);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  cursor: pointer;
}

.mh-search-modal__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(150deg, #0e2040 0%, #07111f 100%);
  border: 1px solid rgba(245,163,42,0.22);
  border-top: 2px solid rgba(245,163,42,0.35);
  border-radius: 12px;
  width: min(660px, calc(100vw - 28px));
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 40px rgba(245,163,42,0.05);
  overflow: hidden;
  animation: mh-slide-down 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.mh-search-modal__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--mh-font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--mh-white);
  padding: 0;
  letter-spacing: 0.01em;
}
.mh-search-modal__input::placeholder {
  color: var(--mh-muted);
  font-weight: 300;
}

.mh-search-modal__clear {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mh-muted);
  padding: 3px;
  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: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  color: var(--mh-muted);
  padding: 6px 11px;
  border-radius: 6px;
  font-family: var(--mh-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--mh-transition), border-color var(--mh-transition), background 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.18);
  background: rgba(255,255,255,0.07);
}

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

.mh-search-modal__suggestions-label {
  font-family: var(--mh-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mh-muted);
  margin: 0 0 14px;
}

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

.mh-search-chip {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(245,163,42,0.18);
  background: rgba(245,163,42,0.04);
  color: var(--mh-silver-dim);
  font-size: 12px;
  font-family: var(--mh-font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  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.1);
  border-color: rgba(245,163,42,0.38);
  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.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mh-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(300px, 88vw);
  background: linear-gradient(180deg, #0b1a2f 0%, #060e1c 100%);
  border-right: 1px solid rgba(245,163,42,0.14);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: mh-drawer-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 40px rgba(0,0,0,0.7);
}

/* Right-edge accent glow on panel */
.mh-drawer__panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0,200,255,0.2) 20%,
    rgba(245,163,42,0.25) 50%,
    rgba(0,200,255,0.2) 80%,
    transparent 100%
  );
  pointer-events: none;
}

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

.mh-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.mh-drawer__close {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  color: var(--mh-muted);
  padding: 7px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  transition: color var(--mh-transition), background var(--mh-transition), border-color var(--mh-transition);
}
.mh-drawer__close:hover {
  color: var(--mh-white);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.mh-drawer__list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,163,42,0.2) transparent;
}

.mh-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  font-family: var(--mh-font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mh-silver-dim);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--mh-transition), background var(--mh-transition);
  position: relative;
}

/* Left accent bar on hover */
.mh-drawer__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 60%;
  background: linear-gradient(180deg, var(--mh-gold), var(--mh-cyan));
  border-radius: 0 2px 2px 0;
  transition: transform 0.22s var(--mh-ease);
}

.mh-drawer__link:hover::before { transform: translateY(-50%) scaleY(1); }
.mh-drawer__link:hover { color: var(--mh-white); background: rgba(255,255,255,0.03); }

.mh-drawer__caret { transition: transform var(--mh-transition); flex-shrink: 0; opacity: 0.5; }
.mh-drawer__accordion-trigger[aria-expanded='true'] {
  color: var(--mh-gold);
}
.mh-drawer__accordion-trigger[aria-expanded='true']::before {
  transform: translateY(-50%) scaleY(1);
  background: var(--mh-gold);
}
.mh-drawer__accordion-trigger[aria-expanded='true'] .mh-drawer__caret {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--mh-gold);
}

.mh-drawer__sub {
  list-style: none;
  margin: 0;
  padding: 4px 0 10px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mh-drawer__sub-link {
  display: block;
  padding: 10px 20px 10px 36px;
  font-family: var(--mh-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mh-muted);
  text-decoration: none;
  transition: color var(--mh-transition), padding-left var(--mh-transition);
  position: relative;
  text-transform: uppercase;
}
.mh-drawer__sub-link::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1.5px;
  background: var(--mh-gold);
  opacity: 0.4;
  transition: opacity var(--mh-transition), width var(--mh-transition);
  border-radius: 1px;
}
.mh-drawer__sub-link:hover {
  color: var(--mh-gold);
  padding-left: 40px;
}
.mh-drawer__sub-link:hover::before { opacity: 1; width: 10px; }

.mh-drawer__footer {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(245,163,42,0.1);
  background: rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.mh-drawer__footer-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  font-family: var(--mh-font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mh-silver-dim);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.04);
  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.06);
}

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

@media screen and (max-width: 1100px) and (min-width: 981px) {
  /* Compress nav a bit on mid-size screens */
  .mh-nav__link { padding: 7px 11px; font-size: 13px; }
  .mh-btc-ticker--desktop { display: none !important; }
}

@media screen and (max-width: 500px) {
  .mh-action__label { display: none; }
  .mh-header__inner { padding: 0 14px; }
  .mh-logo__wordmark { font-size: 17px; letter-spacing: 1px; }
  .mh-logo__img { width: 34px; height: 34px; }
  .mh-logo { gap: 8px; }
}

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

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

/* Desktop ticker */
.mh-btc-ticker--desktop {
  padding: 4px 9px;
  border: 1px solid rgba(245,163,42,0.2);
  border-radius: 6px;
  background: rgba(245,163,42,0.05);
  margin-right: 4px;
  transition: border-color var(--mh-transition), background var(--mh-transition), box-shadow var(--mh-transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow strip at bottom */
.mh-btc-ticker--desktop::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.3), transparent);
}

.mh-btc-ticker--desktop:hover {
  border-color: rgba(245,163,42,0.4);
  background: rgba(245,163,42,0.08);
  box-shadow: 0 0 12px rgba(245,163,42,0.08);
}

/* Hide desktop ticker on mobile */
@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;
  filter: drop-shadow(0 0 4px rgba(245,163,42,0.4));
}

.mh-btc-ticker__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mh-gold-dim);
  text-transform: uppercase;
  font-family: var(--mh-font-ui);
  display: none;
}

.mh-btc-ticker__price {
  font-size: 12px;
  font-weight: 600;
  color: var(--mh-white);
  letter-spacing: 0.02em;
  min-width: 70px;
  text-align: right;
  font-family: var(--mh-font-body);
  transition: color 0.3s ease;
}

.mh-btc-ticker__change {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  min-width: 40px;
  text-align: center;
  transition: color 0.4s, background 0.4s;
  font-family: var(--mh-font-ui);
  letter-spacing: 0.04em;
}
.mh-btc-ticker__change--up {
  color: #22d97a;
  background: rgba(34, 217, 122, 0.1);
}
.mh-btc-ticker__change--down {
  color: #ff4d6d;
  background: rgba(255, 77, 109, 0.1);
}
.mh-btc-ticker__change--neutral {
  color: var(--mh-muted);
  background: transparent;
}

/* Price flash animation */
@keyframes mh-btc-flash {
  0%   { color: var(--mh-white); }
  25%  { color: var(--mh-gold-bright); }
  75%  { color: var(--mh-gold); }
  100% { color: var(--mh-white); }
}
.mh-btc-ticker__price--flash {
  animation: mh-btc-flash 0.6s ease;
}

/* Mobile drawer ticker */
.mh-drawer__item--ticker {
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 6px;
  padding: 10px 16px 14px;
}

.mh-btc-ticker--mobile {
  width: 100%;
  padding: 14px 16px;
  gap: 14px;
  background: linear-gradient(135deg, rgba(245,163,42,0.07) 0%, rgba(0,200,255,0.03) 100%);
  border-radius: 8px;
  border: 1px solid rgba(245,163,42,0.14);
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.mh-btc-ticker--mobile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.3), rgba(0,200,255,0.2), transparent);
}

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

.mh-btc-ticker__mobile-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mh-gold-dim);
  text-transform: uppercase;
  font-family: var(--mh-font-ui);
}

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

.mh-btc-ticker--mobile .mh-btc-ticker__price {
  font-size: 20px;
  font-weight: 600;
  min-width: auto;
  text-align: left;
  letter-spacing: -0.01em;
}

.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 8px var(--mh-cyan), 0 0 16px rgba(0,200,255,0.3);
  animation: mh-pulse 2.5s ease-in-out infinite;
}

/* ── Mega menu: 3-column layout ──────────────────────── */
.mh-mega__inner--3col {
  grid-template-columns: 240px 1fr 190px;
}

/* Desktop only: the featured column ("All ASIC Miners" / "All GPU Miners")
   has no column heading like the adjacent columns, so its card starts at the
   top of the column padding and looks misaligned. Inject an invisible spacer
   ::before that mirrors .mh-mega__col-label's exact dimensions so the featured
   card aligns horizontally with the content of the other columns. */
@media screen and (min-width: 981px) {
  .mh-mega__col--featured::before {
    content: 'A';
    display: block;
    font-family: var(--mh-font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    visibility: hidden;
  }
}

/* ── Hot product column ──────────────────────────────── */
.mh-mega__col--hot {
  background:
    radial-gradient(ellipse 100% 80% at 50% 90%, rgba(245,163,42,0.04) 0%, transparent 70%),
    rgba(0,0,0,0.22);
  border-left: none;
}

.mh-mega__hot-badge {
  display: inline-block;
  font-family: var(--mh-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mh-navy);
  background: linear-gradient(135deg, var(--mh-gold-bright) 0%, var(--mh-gold) 100%);
  padding: 3px 10px;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(245,163,42,0.3), 0 2px 4px rgba(0,0,0,0.3);
}
.mh-mega__hot-badge--cyan {
  background: linear-gradient(135deg, var(--mh-cyan-bright) 0%, var(--mh-cyan) 100%);
  color: var(--mh-navy);
  box-shadow: 0 0 10px rgba(0,200,255,0.3), 0 2px 4px rgba(0,0,0,0.3);
}

/* GPU hot column — cyan radial glow */
[data-mega="gpu"] .mh-mega__col--hot {
  background:
    radial-gradient(ellipse 100% 80% at 50% 90%, rgba(0,200,255,0.04) 0%, transparent 70%),
    rgba(0,0,0,0.22);
}

/* Desktop hot product card */
.mh-mega__product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245,163,42,0.07) 0%, rgba(245,163,42,0.02) 100%);
  border: 1px solid rgba(245,163,42,0.18);
  text-decoration: none;
  transition: background 0.3s var(--mh-ease), border-color 0.3s var(--mh-ease), box-shadow 0.3s var(--mh-ease), transform 0.2s var(--mh-ease);
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
/* Pulsing glow border animation */
.mh-mega__product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245,163,42,0.3), rgba(0,200,255,0.2), rgba(245,163,42,0.3));
  background-size: 200% 200%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: mh-card-glow 3s ease-in-out infinite;
}
@keyframes mh-card-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.mh-mega__product-card:hover::after { opacity: 1; }
.mh-mega__product-card:hover {
  background: linear-gradient(135deg, rgba(245,163,42,0.14) 0%, rgba(245,163,42,0.06) 100%);
  border-color: rgba(245,163,42,0.35);
  box-shadow:
    0 8px 28px rgba(245,163,42,0.15),
    0 0 20px rgba(245,163,42,0.06),
    inset 0 1px 0 rgba(245,163,42,0.1);
  transform: translateY(-2px);
}
.mh-mega__product-card--cyan {
  background: linear-gradient(135deg, rgba(0,200,255,0.07) 0%, rgba(0,200,255,0.02) 100%);
  border-color: rgba(0,200,255,0.18);
}
.mh-mega__product-card--cyan::after {
  background: linear-gradient(135deg, rgba(0,200,255,0.3), rgba(245,163,42,0.15), rgba(0,200,255,0.3));
  background-size: 200% 200%;
}
.mh-mega__product-card--cyan:hover {
  background: linear-gradient(135deg, rgba(0,200,255,0.14) 0%, rgba(0,200,255,0.06) 100%);
  border-color: rgba(0,200,255,0.35);
  box-shadow:
    0 8px 28px rgba(0,200,255,0.12),
    0 0 20px rgba(0,200,255,0.06),
    inset 0 1px 0 rgba(0,200,255,0.1);
}

.mh-mega__product-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(245,163,42,0.08);
  border: 1px solid rgba(245,163,42,0.18);
  flex-shrink: 0;
  align-self: center;
  transition: background 0.3s var(--mh-ease), border-color 0.3s var(--mh-ease), box-shadow 0.3s var(--mh-ease);
}
.mh-mega__product-card--cyan .mh-mega__product-img-wrap {
  background: rgba(0,200,255,0.08);
  border-color: rgba(0,200,255,0.18);
}
.mh-mega__product-card:hover .mh-mega__product-img-wrap {
  background: rgba(245,163,42,0.15);
  border-color: rgba(245,163,42,0.35);
  box-shadow: 0 0 16px rgba(245,163,42,0.2);
}
.mh-mega__product-card--cyan:hover .mh-mega__product-img-wrap {
  background: rgba(0,200,255,0.15);
  border-color: rgba(0,200,255,0.35);
  box-shadow: 0 0 16px rgba(0,200,255,0.2);
}

.mh-mega__product-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mh-mega__product-name {
  display: block;
  font-family: var(--mh-font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--mh-white);
  letter-spacing: 0.04em;
  transition: color var(--mh-transition);
}

.mh-mega__product-spec {
  display: block;
  font-size: 11px;
  color: var(--mh-muted);
  font-family: var(--mh-font-body);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.mh-mega__product-cta {
  display: block;
  font-family: var(--mh-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mh-gold);
  margin-top: 4px;
  transition: color var(--mh-transition), letter-spacing 0.3s var(--mh-ease);
}
.mh-mega__product-cta--cyan { color: var(--mh-cyan); }
.mh-mega__product-card:hover .mh-mega__product-cta {
  color: var(--mh-gold-bright);
  letter-spacing: 0.12em;
}
.mh-mega__product-card--cyan:hover .mh-mega__product-cta--cyan {
  color: var(--mh-cyan-bright);
  letter-spacing: 0.12em;
}

/* ── Mobile drawer product items ──────────────────────── */
.mh-drawer__sub-link--product {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 9px;
  padding-bottom: 9px;
  border-top: 1px solid rgba(245,163,42,0.08);
  margin-top: 4px;
}
.mh-drawer__sub-link--product:hover { color: var(--mh-gold); }
.mh-drawer__sub-link--product-cyan:hover { color: var(--mh-cyan); }

.mh-drawer__sub-hot {
  font-size: 12px;
  flex-shrink: 0;
  line-height: 1;
}

.mh-drawer__sub-product-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mh-drawer__sub-product-name {
  display: block;
  font-family: var(--mh-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--mh-silver-dim);
  text-transform: uppercase;
  transition: color var(--mh-transition);
}
.mh-drawer__sub-link--product:hover .mh-drawer__sub-product-name { color: var(--mh-gold); }
.mh-drawer__sub-link--product-cyan:hover .mh-drawer__sub-product-name { color: var(--mh-cyan); }

.mh-drawer__sub-product-spec {
  display: block;
  font-size: 9px;
  color: var(--mh-muted);
  font-family: var(--mh-font-body);
  letter-spacing: 0.04em;
  text-transform: none;
}
/* END_SECTION:header */
/* START_SECTION:mh-footer (INDEX:36) */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Rajdhani:wght@500;600;700&family=Exo+2:wght@300;400;500;600&display=swap');

/* ─── 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:       #060e1c;
  --mhf-navy2:      #0b1828;
  --mhf-navy3:      #0c1a2e;
  --mhf-navy4:      #0e1e34;
  --mhf-gold:       #F5A32A;
  --mhf-gold-b:     #FFB84D;
  --mhf-gold-dim:   rgba(245,163,42,0.1);
  --mhf-gold-bdr:   rgba(245,163,42,0.18);
  --mhf-cyan:       #00C8FF;
  --mhf-cyan-b:     #40D8FF;
  --mhf-cyan-dim:   rgba(0,200,255,0.08);
  --mhf-cyan-bdr:   rgba(0,200,255,0.16);
  --mhf-white:      #FFFFFF;
  --mhf-silver:     #C8D4E8;
  --mhf-silver-dim: #8FACC8;
  --mhf-muted:      #415870;
  --mhf-border:     rgba(255,255,255,0.055);
  --mhf-radius:     4px;
  --mhf-font-head:  'Orbitron', 'Rajdhani', sans-serif;
  --mhf-font-ui:    'Rajdhani', sans-serif;
  --mhf-font-body:  'Exo 2', Arial, sans-serif;
  --mhf-ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --mhf-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Wrapper ────────────────────────────────────────── */
.mhf {
  font-family: var(--mhf-font-body);
  background: linear-gradient(180deg, #070d1b 0%, var(--mhf-navy) 100%);
  position: relative;
  overflow: hidden;
}

/* ─── Circuit bg — more opaque, more dramatic ────────── */
.mhf__circuit-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

/* Grid texture overlay */
.mhf::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

/* Dual ambient glow — cyan top-left, gold bottom-right */
.mhf::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(0,200,255,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(245,163,42,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Top glow border ────────────────────────────────── */
.mhf__top-border {
  position: relative;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,200,255,0.4) 15%,
    var(--mhf-cyan) 30%,
    var(--mhf-gold) 50%,
    var(--mhf-cyan) 70%,
    rgba(0,200,255,0.4) 85%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(0,200,255,0.5), 0 0 40px rgba(245,163,42,0.2);
}

/* ─── Container ──────────────────────────────────────── */
.mhf__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ─── Newsletter strip ───────────────────────────────── */
.mhf__newsletter {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg,
    rgba(0,200,255,0.04) 0%,
    rgba(245,163,42,0.03) 50%,
    rgba(0,200,255,0.03) 100%
  );
  border-bottom: 1px solid var(--mhf-border);
  padding: 44px 0;
  overflow: hidden;
}

/* Top glow line inside newsletter strip */
.mhf__newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.2), rgba(245,163,42,0.15), transparent);
  pointer-events: none;
}

.mhf__newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.mhf__newsletter-text h3 {
  font-family: var(--mhf-font-ui);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mhf-white);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.mhf__newsletter-text h3 span { color: var(--mhf-gold); text-shadow: 0 0 20px rgba(245,163,42,0.3); }
.mhf__newsletter-text p {
  font-family: var(--mhf-font-body);
  font-size: 14px;
  color: var(--mhf-silver-dim);
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
}

/* Newsletter form — two-part pill: input + button fused */
.mhf__newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 440px;
  min-width: 260px;
  border: 1px solid var(--mhf-cyan-bdr);
  border-radius: var(--mhf-radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.mhf__newsletter-form:focus-within {
  border-color: rgba(0,200,255,0.45);
  box-shadow: 0 0 0 1px rgba(0,200,255,0.12), 0 0 24px rgba(0,200,255,0.08);
}

.mhf__newsletter-input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(0,0,0,0.3);
  border: none;
  color: var(--mhf-white);
  font-size: 14px;
  font-family: var(--mhf-font-body);
  outline: none;
}
.mhf__newsletter-input::placeholder {
  color: var(--mhf-muted);
  font-style: italic;
}

.mhf__newsletter-btn {
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--mhf-gold-b) 0%, var(--mhf-gold) 50%, #D4891A 100%);
  border: none;
  color: #060e1c;
  font-family: var(--mhf-font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 0.22s, filter 0.22s;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.mhf__newsletter-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.mhf__newsletter-btn:hover::before { left: 160%; }
.mhf__newsletter-btn:hover {
  filter: brightness(1.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 0 20px rgba(245,163,42,0.3);
}

/* ─── Main footer grid ───────────────────────────────── */
.mhf__main {
  position: relative;
  z-index: 2;
  padding: 64px 0 52px;
}

.mhf__grid {
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 52px;
  align-items: start;
}

/* ─── Brand column ───────────────────────────────────── */
.mhf__brand {}

/* Logo — Orbitron wordmark matching header */
.mhf__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  text-decoration: none;
  position: relative;
}

.mhf__logo-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  transition: transform 0.35s var(--mhf-spring), filter 0.35s ease;
  filter: drop-shadow(0 0 8px rgba(0,200,255,0.15)) drop-shadow(0 0 4px rgba(245,163,42,0.12));
}
.mhf__logo:hover .mhf__logo-icon {
  transform: scale(1.07) rotate(-3deg);
  filter: drop-shadow(0 0 14px rgba(0,200,255,0.35)) drop-shadow(0 2px 8px rgba(245,163,42,0.25));
}

.mhf__logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.mhf__logo-name {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}
.mhf__logo-name .miner { color: var(--mhf-white); }
.mhf__logo-name .hub   { color: var(--mhf-gold); text-shadow: 0 0 16px rgba(245,163,42,0.3); }
.mhf__logo-tagline {
  font-family: var(--mhf-font-ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--mhf-cyan);
  text-transform: uppercase;
  opacity: 0.7;
}

.mhf__brand-desc {
  font-family: var(--mhf-font-body);
  font-size: 13px;
  color: var(--mhf-silver-dim);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-left: 14px;
  border-left: 2px solid rgba(0,200,255,0.18);
}

/* Trust badges row */
.mhf__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.mhf__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mhf-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mhf-silver-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--mhf-border);
  border-radius: 3px;
  padding: 5px 10px;
  transition: border-color 0.2s, color 0.2s;
}
.mhf__trust-badge:hover {
  border-color: var(--mhf-gold-bdr);
  color: var(--mhf-gold);
}
.mhf__trust-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mhf-gold);
  box-shadow: 0 0 6px rgba(245,163,42,0.5);
  flex-shrink: 0;
}

/* Social icons */
.mhf__social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mhf__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--mhf-radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--mhf-border);
  color: var(--mhf-silver-dim);
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s var(--mhf-spring), box-shadow 0.22s;
  text-decoration: none;
}
.mhf__social-link:hover {
  color: var(--mhf-white);
  transform: translateY(-3px);
}
.mhf__social-link--facebook:hover {
  background: rgba(24,119,242,0.15);
  border-color: rgba(24,119,242,0.4);
  box-shadow: 0 6px 20px rgba(24,119,242,0.2);
  color: #6eaaff;
}
.mhf__social-link--x:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 6px 20px rgba(255,255,255,0.08);
  color: var(--mhf-white);
}
.mhf__social-link--youtube:hover {
  background: rgba(255,0,0,0.12);
  border-color: rgba(255,0,0,0.35);
  box-shadow: 0 6px 20px rgba(255,0,0,0.18);
  color: #ff6b6b;
}

/* ─── Column headings ────────────────────────────────── */
.mhf__col-heading {
  font-family: var(--mhf-font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mhf-gold);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245,163,42,0.12);
  display: flex;
  align-items: center;
  gap: 9px;
}
.mhf__col-heading::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mhf-gold);
  box-shadow: 0 0 8px rgba(245,163,42,0.6);
  flex-shrink: 0;
  animation: mhfGoldPulse 2.5s ease-in-out infinite;
}
@keyframes mhfGoldPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.6); }
}

/* ─── Footer links ───────────────────────────────────── */
.mhf__links li {
  margin-bottom: 1px;
}
.mhf__link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 7px 0;
  font-family: var(--mhf-font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mhf-silver-dim);
  transition: color 0.2s, padding-left 0.22s;
  text-decoration: none;
  position: relative;
}

/* Animated left-bar accent on hover */
.mhf__link::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--mhf-cyan), var(--mhf-gold));
  border-radius: 1px;
  margin-right: 0;
  transition: width 0.22s var(--mhf-ease), margin-right 0.22s;
  flex-shrink: 0;
  vertical-align: middle;
  margin-top: -1px;
}
.mhf__link:hover {
  color: var(--mhf-white);
  padding-left: 8px;
}
.mhf__link:hover::before {
  width: 14px;
  margin-right: 8px;
}

.mhf__link-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 6px;
}
.mhf__link-badge--new {
  background: rgba(0,200,255,0.1);
  color: var(--mhf-cyan);
  border: 1px solid rgba(0,200,255,0.25);
}
.mhf__link-badge--hot {
  background: rgba(245,163,42,0.1);
  color: var(--mhf-gold);
  border: 1px solid rgba(245,163,42,0.25);
}

/* ─── Contact info block ─────────────────────────────── */
.mhf__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  transition: transform 0.2s var(--mhf-ease);
}
.mhf__contact-item:hover { transform: translateX(3px); }

.mhf__contact-icon {
  width: 34px; height: 34px;
  border-radius: var(--mhf-radius);
  background: linear-gradient(135deg, var(--mhf-navy4), var(--mhf-navy3));
  border: 1px solid var(--mhf-cyan-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mhf-cyan);
  transition: background 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.mhf__contact-item:hover .mhf__contact-icon {
  background: rgba(0,200,255,0.08);
  border-color: rgba(0,200,255,0.35);
  box-shadow: 0 0 12px rgba(0,200,255,0.1);
}

.mhf__contact-label {
  font-family: var(--mhf-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--mhf-muted);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.mhf__contact-value {
  font-family: var(--mhf-font-body);
  font-size: 13px;
  color: var(--mhf-silver-dim);
  line-height: 1.4;
  transition: color 0.2s;
}
.mhf__contact-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.mhf__contact-value a:hover { color: var(--mhf-cyan); }
.mhf__contact-item:hover .mhf__contact-value { color: var(--mhf-silver); }

/* ─── Bottom bar ─────────────────────────────────────── */
.mhf__bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--mhf-border);
  padding: 22px 0;
  background: rgba(0,0,0,0.2);
}

/* Bottom glow line */
.mhf__bottom::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.2), rgba(0,200,255,0.15), transparent);
  pointer-events: none;
}

.mhf__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mhf__copyright {
  font-family: var(--mhf-font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mhf-muted);
}
.mhf__copyright span {
  color: var(--mhf-silver-dim);
  font-weight: 700;
}

.mhf__legal-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.mhf__legal-link {
  font-family: var(--mhf-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--mhf-muted);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.mhf__legal-link:hover {
  color: var(--mhf-cyan);
  background: rgba(0,200,255,0.05);
}
/* Pipe dividers between legal links */
.mhf__legal-link + .mhf__legal-link::before {
  content: '|';
  margin-right: 10px;
  opacity: 0.2;
  pointer-events: none;
}

.mhf__au-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--mhf-radius);
  background: rgba(245,163,42,0.07);
  border: 1px solid var(--mhf-gold-bdr);
  font-family: var(--mhf-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mhf-gold);
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.mhf__au-badge:hover {
  background: rgba(245,163,42,0.12);
  border-color: rgba(245,163,42,0.35);
  box-shadow: 0 0 12px rgba(245,163,42,0.1);
}
.mhf__au-badge svg { flex-shrink: 0; }

/* ─── Responsive ─────────────────────────────────────── */
@media screen and (max-width: 1100px) {
  .mhf__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .mhf__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .mhf__container { padding: 0 22px; }
}
@media screen and (max-width: 640px) {
  .mhf__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mhf__main { padding: 48px 0 40px; }
  .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: 14px;
  }
  .mhf__legal-links { gap: 0; }
  .mhf__logo-icon { width: 44px; height: 44px; }
  .mhf__logo-name { font-size: 24px; }
  .mhf__container { padding: 0 18px; }
}
/* END_SECTION:mh-footer */
/* START_SECTION:mh-recommended-products (INDEX:40) */
/* ============================================================
   MinerHub · Recommended Products  ·  mhrp__
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --mhrp-navy-deep:   #060E1C;
  --mhrp-navy:        #0A1628;
  --mhrp-navy-mid:    #0D1F3C;
  --mhrp-navy-card:   #0F2240;
  --mhrp-navy-border: #1a3558;
  --mhrp-gold:        #F5A32A;
  --mhrp-gold-dim:    #C4811A;
  --mhrp-gold-glow:   rgba(245,163,42,0.18);
  --mhrp-cyan:        #00C8FF;
  --mhrp-cyan-dim:    #0098C8;
  --mhrp-cyan-glow:   rgba(0,200,255,0.15);
  --mhrp-white:       #E8F0FF;
  --mhrp-muted:       #5A7499;
  --mhrp-font-display:'Exo 2', sans-serif;
  --mhrp-font-ui:     'Rajdhani', sans-serif;
  --mhrp-transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

.mhrp {
  position: relative;
  background: var(--mhrp-navy-deep);
  padding: 72px 0 80px;
  overflow: hidden;
  font-family: var(--mhrp-font-display);
}

/* ── Circuit background ─────────────────────────────────── */
.mhrp__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.mhrp__bg svg {
  width: 100%;
  height: 100%;
  opacity: 0.06;
}
.mhrp__bg-trace {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: mhrp-trace 3.5s ease forwards;
}
.mhrp__bg-trace:nth-child(2) { animation-delay: 0.6s; }
.mhrp__bg-trace:nth-child(3) { animation-delay: 1.1s; }
@keyframes mhrp-trace {
  to { stroke-dashoffset: 0; }
}

/* Top separator beam */
.mhrp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--mhrp-gold) 30%,
    var(--mhrp-cyan) 60%,
    transparent 100%
  );
  opacity: 0.6;
}

/* ── Inner wrapper ─────────────────────────────────────── */
.mhrp__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section header ─────────────────────────────────────── */
.mhrp__header {
  text-align: center;
  margin-bottom: 48px;
}

.mhrp__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mhrp-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--mhrp-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mhrp__label-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mhrp-gold);
  box-shadow: 0 0 6px var(--mhrp-gold);
  animation: mhrp-pulse 2s ease-in-out infinite;
}
@keyframes mhrp-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.7); }
}

.mhrp__heading {
  font-family: var(--mhrp-font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--mhrp-white);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-transform: uppercase;
  line-height: 1.1;
}
.mhrp__heading span {
  color: var(--mhrp-gold);
}

/* Animated rule */
.mhrp__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.mhrp__rule-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--mhrp-cyan));
}
.mhrp__rule-line:last-child {
  background: linear-gradient(90deg, var(--mhrp-cyan), transparent);
}
.mhrp__rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--mhrp-cyan);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--mhrp-cyan);
}

.mhrp__subheading {
  font-family: var(--mhrp-font-ui);
  font-size: 14px;
  color: var(--mhrp-muted);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── Product Grid ─────────────────────────────────────── */
.mhrp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .mhrp__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .mhrp__grid { grid-template-columns: 1fr; }
}

/* ── Card ──────────────────────────────────────────────── */
.mhrp__card {
  position: relative;
  background: var(--mhrp-navy-card);
  border: 1px solid var(--mhrp-navy-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color var(--mhrp-transition), box-shadow var(--mhrp-transition), transform var(--mhrp-transition);

  /* Stagger reveal — JS sets --mhrp-i */
  opacity: 0;
  transform: translateY(24px);
}
.mhrp__card.is-visible {
  animation: mhrp-card-in 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: calc(var(--mhrp-i, 0) * 90ms);
}
@keyframes mhrp-card-in {
  to { opacity:1; transform:translateY(0); }
}

.mhrp__card:hover {
  border-color: var(--mhrp-cyan-dim);
  box-shadow: 0 0 24px var(--mhrp-cyan-glow), 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}
.mhrp__card:hover .mhrp__img-primary {
  transform: scale(1.04);
}

/* Diagonal accent slash */
.mhrp__card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--mhrp-gold-glow), transparent 60%);
  pointer-events: none;
  border-radius: 0;
  transform: rotate(0deg);
  transition: opacity var(--mhrp-transition);
  opacity: 0;
}
.mhrp__card:hover::after { opacity: 1; }

/* ── Full-card clickable overlay ───────────────────────── */
.mhrp__card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
/* Lift interactive elements above the overlay */
.mhrp__quick-add,
.mhrp__body .mhrp__title,
.mhrp__body .mhrp__cta {
  position: relative;
  z-index: 2;
}

/* ── Image zone ──────────────────────────────────────── */
.mhrp__img-zone {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--mhrp-navy-mid);
  overflow: hidden;
  flex-shrink: 0;
}

.mhrp__img-primary {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}

/* Scanlines overlay */
.mhrp__img-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Corner brackets */
.mhrp__bracket {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 3;
  pointer-events: none;
  transition: opacity var(--mhrp-transition);
  opacity: 0.55;
}
.mhrp__card:hover .mhrp__bracket { opacity: 1; }

.mhrp__bracket--tl { top: 8px; left: 8px;
  border-top: 2px solid var(--mhrp-gold); border-left: 2px solid var(--mhrp-gold); }
.mhrp__bracket--tr { top: 8px; right: 8px;
  border-top: 2px solid var(--mhrp-gold); border-right: 2px solid var(--mhrp-gold); }
.mhrp__bracket--bl { bottom: 8px; left: 8px;
  border-bottom: 2px solid var(--mhrp-cyan); border-left: 2px solid var(--mhrp-cyan); }
.mhrp__bracket--br { bottom: 8px; right: 8px;
  border-bottom: 2px solid var(--mhrp-cyan); border-right: 2px solid var(--mhrp-cyan); }

/* Status badge */
.mhrp__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  font-family: var(--mhrp-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  line-height: 1;
}
.mhrp__badge--new {
  background: var(--mhrp-cyan);
  color: var(--mhrp-navy-deep);
}
.mhrp__badge--sale {
  background: var(--mhrp-gold);
  color: var(--mhrp-navy-deep);
}
.mhrp__badge--oos {
  background: rgba(90,116,153,0.5);
  color: var(--mhrp-white);
  border: 1px solid var(--mhrp-muted);
}

/* Status light */
.mhrp__status-light {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.mhrp__status-light--live {
  background: #22DD77;
  box-shadow: 0 0 8px #22DD77;
  animation: mhrp-blink 2.2s ease-in-out infinite;
}
.mhrp__status-light--oos {
  background: var(--mhrp-muted);
}
@keyframes mhrp-blink {
  0%,100% { opacity:1; }
  50%      { opacity:0.3; }
}

/* ── Quick-add panel ──────────────────────────────────── */
.mhrp__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(0deg, var(--mhrp-navy-deep) 0%, transparent 100%);
  padding: 28px 12px 12px;
  transform: translateY(100%);
  transition: transform var(--mhrp-transition);
  display: flex;
  gap: 6px;
}
.mhrp__card:hover .mhrp__quick-add {
  transform: translateY(0);
}

.mhrp__btn-quick {
  flex: 1;
  height: 34px;
  border-radius: 3px;
  border: none;
  font-family: var(--mhrp-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--mhrp-transition), box-shadow var(--mhrp-transition);
}
.mhrp__btn-quick--add {
  background: var(--mhrp-gold);
  color: var(--mhrp-navy-deep);
}
.mhrp__btn-quick--add:hover {
  background: #FFB84A;
  box-shadow: 0 0 12px var(--mhrp-gold-glow);
}
.mhrp__btn-quick--view {
  background: transparent;
  color: var(--mhrp-cyan);
  border: 1px solid var(--mhrp-cyan-dim) !important;
  flex: 0 0 34px;
  font-size: 14px;
  letter-spacing: 0;
}
.mhrp__btn-quick--view:hover {
  background: var(--mhrp-cyan-glow);
}

/* ── Card body ───────────────────────────────────────── */
.mhrp__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

/* Meta row: vendor + algo tag */
.mhrp__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.mhrp__vendor {
  font-family: var(--mhrp-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--mhrp-muted);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mhrp__algo-tag {
  font-family: var(--mhrp-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid var(--mhrp-cyan-dim);
  color: var(--mhrp-cyan);
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Title */
.mhrp__title {
  font-family: var(--mhrp-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--mhrp-white);
  letter-spacing: 0.01em;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color var(--mhrp-transition);
}
.mhrp__title:hover { color: var(--mhrp-cyan); }

/* Spec ticker — key metrics */
.mhrp__specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 7px 0;
  border-top: 1px solid var(--mhrp-navy-border);
  border-bottom: 1px solid var(--mhrp-navy-border);
}
.mhrp__spec {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mhrp__spec-key {
  font-family: var(--mhrp-font-ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--mhrp-muted);
  text-transform: uppercase;
}
.mhrp__spec-val {
  font-family: var(--mhrp-font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--mhrp-cyan);
  letter-spacing: 0.03em;
}
.mhrp__spec-val--gold { color: var(--mhrp-gold); }

/* Price row */
.mhrp__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.mhrp__price {
  font-family: var(--mhrp-font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--mhrp-gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.mhrp__price-compare {
  font-size: 12px;
  font-weight: 400;
  color: var(--mhrp-muted);
  text-decoration: line-through;
  margin-left: 4px;
  letter-spacing: 0;
}
.mhrp__avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mhrp__avail-dot--yes {
  background: #22DD77;
  box-shadow: 0 0 6px #22DD77;
}
.mhrp__avail-dot--no {
  background: var(--mhrp-muted);
}

/* CTA bar */
.mhrp__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,200,255,0.06);
  border: 1px solid rgba(0,200,255,0.15);
  border-radius: 3px;
  padding: 8px 12px;
  text-decoration: none;
  transition: background var(--mhrp-transition), border-color var(--mhrp-transition);
}
.mhrp__cta:hover {
  background: rgba(0,200,255,0.12);
  border-color: var(--mhrp-cyan);
}
.mhrp__cta-text {
  font-family: var(--mhrp-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mhrp-cyan);
  text-transform: uppercase;
}
.mhrp__cta-arrow {
  color: var(--mhrp-cyan);
  font-size: 16px;
  line-height: 1;
  transition: transform var(--mhrp-transition);
}
.mhrp__cta:hover .mhrp__cta-arrow {
  transform: translateX(3px);
}

/* ── Empty state ─────────────────────────────────────── */
.mhrp__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--mhrp-muted);
  font-family: var(--mhrp-font-ui);
  font-size: 14px;
  letter-spacing: 0.08em;
}
/* END_SECTION:mh-recommended-products */
/* START_SNIPPET:background-media (INDEX:152) */
@media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
/* END_SNIPPET:background-media */
/* START_SNIPPET:product-media-gallery-content-styles (INDEX:207) */
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:211) */
#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:215) */
.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:220) */
/* 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:222) */
.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:224) */
.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 */
