/** Shopify CDN: Minification failed

Line 1912:0 All "@import" rules must come first
Line 3560: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-collection-grid (INDEX:29) */
/* ============================================================
   MH COLLECTION GRID – CSS v2
   Palette: #060e1c / #F5A32A / #00C8FF
   Aesthetic: Deep-space industrial · precision-machined cards
   Matches hero + featured-collection + stats sections
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Rajdhani:wght@500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --mhcg-bg:          #060e1c;
  --mhcg-bg2:         #0b1828;
  --mhcg-card:        #0c1a2e;
  --mhcg-card2:       #0e1e34;
  --mhcg-hover:       #111f38;
  --mhcg-gold:        #F5A32A;
  --mhcg-gold-b:      #FFB84D;
  --mhcg-gold-dim:    rgba(245,163,42,0.1);
  --mhcg-gold-glow:   rgba(245,163,42,0.22);
  --mhcg-gold-bdr:    rgba(245,163,42,0.2);
  --mhcg-cyan:        #00C8FF;
  --mhcg-cyan-b:      #40D8FF;
  --mhcg-cyan-dim:    rgba(0,200,255,0.08);
  --mhcg-cyan-bdr:    rgba(0,200,255,0.16);
  --mhcg-white:       #FFFFFF;
  --mhcg-silver:      #C8D4E8;
  --mhcg-silver-dim:  #8FACC8;
  --mhcg-muted:       #415870;
  --mhcg-border:      rgba(255,255,255,0.06);
  --mhcg-green:       #22d3a0;
  --mhcg-red:         #f87171;
  --mhcg-radius:      6px;
  --mhcg-font-head:   'Orbitron', 'Rajdhani', 'Arial Black', sans-serif;
  --mhcg-font-ui:     'Rajdhani', sans-serif;
  --mhcg-font-body:   'Exo 2', Arial, sans-serif;
  --mhcg-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --mhcg-spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --mhcg-transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Wrapper ─────────────────────────────────────────── */
.mhcg__section {
  background: linear-gradient(180deg, #080f1d 0%, var(--mhcg-bg) 80px, var(--mhcg-bg) 100%);
  padding: 52px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Circuit grid bg */
.mhcg__section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

/* Ambient corner glow */
.mhcg__section::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse at 70% 30%, rgba(0,200,255,0.05) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(245,163,42,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.mhcg__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ── Toolbar ─────────────────────────────────────────── */
.mhcg__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mhcg-border);
}

/* Product count pill */
.mhcg__count {
  font-family: var(--mhcg-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mhcg-cyan);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--mhcg-cyan-bdr);
  border-radius: 4px;
  background: var(--mhcg-cyan-dim);
}
.mhcg__count::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mhcg-cyan);
  box-shadow: 0 0 8px var(--mhcg-cyan), 0 0 16px rgba(0,200,255,0.3);
  flex-shrink: 0;
  animation: mhcgPulse 2.5s ease-in-out infinite;
}
@keyframes mhcgPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

/* Sort / Filter controls */
.mhcg__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Sort select */
.mhcg__select-wrap {
  position: relative;
}
.mhcg__select-wrap svg {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--mhcg-gold);
  width: 13px; height: 13px;
}
.mhcg__select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--mhcg-border);
  border-radius: 4px;
  color: var(--mhcg-silver-dim);
  font-family: var(--mhcg-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 34px 8px 14px;
  cursor: pointer;
  transition: border-color var(--mhcg-transition), background var(--mhcg-transition), box-shadow var(--mhcg-transition);
  outline: none;
}
.mhcg__select option {
  background: var(--mhcg-bg2);
  color: var(--mhcg-silver);
}
.mhcg__select:focus,
.mhcg__select:hover {
  border-color: var(--mhcg-gold-bdr);
  background: rgba(245,163,42,0.05);
  color: var(--mhcg-silver);
  box-shadow: 0 0 0 1px rgba(245,163,42,0.08);
}

/* View toggles */
.mhcg__view-btns {
  display: flex;
  gap: 4px;
}
.mhcg__view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 4px;
  border: 1px solid var(--mhcg-border);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all var(--mhcg-transition);
  color: var(--mhcg-muted);
}
.mhcg__view-btn:hover {
  border-color: var(--mhcg-gold-bdr);
  background: var(--mhcg-gold-dim);
  color: var(--mhcg-gold);
}
.mhcg__view-btn.is-active {
  border-color: rgba(245,163,42,0.4);
  background: rgba(245,163,42,0.12);
  color: var(--mhcg-gold);
  box-shadow: 0 0 12px rgba(245,163,42,0.12);
}
.mhcg__view-btn svg { width: 15px; height: 15px; }

/* ── Active filter tags ───────────────────────────────── */
.mhcg__active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.mhcg__filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,163,42,0.08);
  border: 1px solid var(--mhcg-gold-bdr);
  border-radius: 4px;
  padding: 5px 11px;
  font-family: var(--mhcg-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mhcg-gold);
  cursor: pointer;
  transition: background var(--mhcg-transition), border-color var(--mhcg-transition);
}
.mhcg__filter-tag:hover {
  background: rgba(245,163,42,0.16);
  border-color: rgba(245,163,42,0.5);
}
.mhcg__filter-tag-x { font-size: 13px; line-height: 1; opacity: 0.7; }

/* ── Product Grid ─────────────────────────────────────── */
.mhcg__grid {
  display: grid;
  gap: 16px;
}
.mhcg__grid.view-list    { grid-template-columns: 1fr !important; }
.mhcg__grid.view-2col    { grid-template-columns: repeat(2, 1fr) !important; }

/* ── Product Card ─────────────────────────────────────── */
.mhcg__card {
  position: relative;
  background: linear-gradient(180deg, var(--mhcg-card2) 0%, var(--mhcg-card) 100%);
  border: 1px solid var(--mhcg-border);
  border-radius: var(--mhcg-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  /* Reveal state */
  opacity: 0;
  transform: translateY(28px);
}
.mhcg__card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s var(--mhcg-ease),
    transform 0.6s var(--mhcg-ease),
    border-color 0.28s var(--mhcg-ease),
    box-shadow 0.28s var(--mhcg-ease);
}

/* Top edge highlight line */
.mhcg__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  pointer-events: none;
  z-index: 2;
  transition: background 0.28s;
}
/* Bottom-right gold corner accent */
.mhcg__card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 28px; height: 28px;
  border-bottom: 2px solid var(--mhcg-gold);
  border-right: 2px solid var(--mhcg-gold);
  border-radius: 0 0 var(--mhcg-radius) 0;
  opacity: 0.18;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.28s, width 0.28s, height 0.28s;
}

.mhcg__card:hover {
  border-color: rgba(245,163,42,0.28);
  box-shadow:
    0 0 0 1px rgba(245,163,42,0.08),
    0 20px 60px rgba(0,0,0,0.55),
    0 8px 20px rgba(0,0,0,0.35),
    0 0 40px rgba(245,163,42,0.05);
  transform: translateY(-6px);
}
.mhcg__card.is-visible:hover {
  transition:
    opacity 0.6s var(--mhcg-ease),
    transform 0.28s var(--mhcg-spring),
    border-color 0.28s var(--mhcg-ease),
    box-shadow 0.28s var(--mhcg-ease);
}
.mhcg__card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.35), rgba(0,200,255,0.2), transparent);
}
.mhcg__card:hover::after {
  opacity: 0.55;
  width: 36px; height: 36px;
}

/* ── Image wrapper ────────────────────────────────────── */
.mhcg__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1828 0%, #0d1e36 50%, #091422 100%);
  display: block;
  text-decoration: none;
}

/* Radial product glow on hover */
.mhcg__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(245,163,42,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.mhcg__card:hover .mhcg__img-wrap::before { opacity: 1; }

.mhcg__img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 18px;
  display: block;
  transition: transform 0.5s var(--mhcg-ease), filter 0.35s ease;
  position: relative;
  z-index: 2;
}
.mhcg__card:hover .mhcg__img-wrap img {
  transform: scale(1.06);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.45));
}

/* Scanline overlay */
.mhcg__img-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.07) 3px,
    rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
}
.mhcg__card:hover .mhcg__img-overlay { opacity: 1; }

/* ── Bracket corners ──────────────────────────────────── */
.mhcg__bracket {
  position: absolute;
  width: 15px; height: 15px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.28s var(--mhcg-ease), transform 0.28s var(--mhcg-spring);
  pointer-events: none;
}
.mhcg__bracket--tl { top: 10px; left: 10px; border-top: 2px solid var(--mhcg-gold); border-left: 2px solid var(--mhcg-gold); transform: translate(-5px,-5px); }
.mhcg__bracket--tr { top: 10px; right: 10px; border-top: 2px solid var(--mhcg-gold); border-right: 2px solid var(--mhcg-gold); transform: translate(5px,-5px); }
.mhcg__bracket--bl { bottom: 10px; left: 10px; border-bottom: 2px solid var(--mhcg-cyan); border-left: 2px solid var(--mhcg-cyan); transform: translate(-5px,5px); }
.mhcg__bracket--br { bottom: 10px; right: 10px; border-bottom: 2px solid var(--mhcg-cyan); border-right: 2px solid var(--mhcg-cyan); transform: translate(5px,5px); }
.mhcg__card:hover .mhcg__bracket { opacity: 1; transform: translate(0,0); }

/* Status dot (availability indicator) */
.mhcg__status {
  position: absolute;
  top: 12px; right: 12px;
  width: 9px; height: 9px;
  border-radius: 50%;
  z-index: 6;
  pointer-events: none;
}
.mhcg__status--in {
  background: var(--mhcg-green);
  box-shadow: 0 0 8px rgba(34,211,160,0.7), 0 0 16px rgba(34,211,160,0.3);
  animation: mhcgPulse 2.2s ease-in-out infinite;
}
.mhcg__status--out {
  background: var(--mhcg-red);
  box-shadow: 0 0 6px rgba(248,113,113,0.6);
}

/* ── Badge ────────────────────────────────────────────── */
.mhcg__badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 6;
  font-family: var(--mhcg-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  line-height: 1.6;
  backdrop-filter: blur(4px);
}
.mhcg__badge--sale     { background: rgba(245,163,42,0.15); border: 1px solid rgba(245,163,42,0.35); color: var(--mhcg-gold); }
.mhcg__badge--new      { background: rgba(0,200,255,0.12); border: 1px solid rgba(0,200,255,0.3); color: var(--mhcg-cyan); }
.mhcg__badge--sold-out { background: rgba(0,0,0,0.6); border: 1px solid rgba(200,212,232,0.2); color: var(--mhcg-silver-dim); }

/* ── Quick add ────────────────────────────────────────── */
.mhcg__quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(6,14,28,0.98) 0%, rgba(6,14,28,0.7) 60%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.3s var(--mhcg-ease);
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mhcg__card:hover .mhcg__quick-add { transform: translateY(0); }

.mhcg__quick-add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--mhcg-gold-b) 0%, var(--mhcg-gold) 50%, #D4891A 100%);
  color: #060e1c;
  border: none;
  border-radius: 4px;
  font-family: var(--mhcg-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 20px rgba(245,163,42,0.35);
  transition: box-shadow 0.2s, transform 0.18s var(--mhcg-spring);
}
.mhcg__quick-add-btn:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 6px 28px rgba(245,163,42,0.55);
  transform: translateY(-1px);
}
.mhcg__quick-add-btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

/* ── Card divider ─────────────────────────────────────── */
.mhcg__card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.15), transparent);
  margin: 0;
  opacity: 0;
  transition: opacity var(--mhcg-transition);
}
.mhcg__card:hover .mhcg__card-divider { opacity: 1; }

/* ── Card body ────────────────────────────────────────── */
.mhcg__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.mhcg__vendor {
  font-family: var(--mhcg-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mhcg-cyan);
}

.mhcg__title {
  font-family: var(--mhcg-font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--mhcg-silver-dim);
  line-height: 1.35;
  margin: 0;
  transition: color 0.22s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mhcg__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s;
}
.mhcg__card:hover .mhcg__title,
.mhcg__title a:hover { color: var(--mhcg-white); }

/* Star rating */
.mhcg__rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mhcg__stars {
  color: var(--mhcg-gold);
  font-size: 11px;
  letter-spacing: 1px;
  filter: drop-shadow(0 0 4px rgba(245,163,42,0.3));
}
.mhcg__rating-count {
  font-family: var(--mhcg-font-body);
  font-size: 11px;
  color: var(--mhcg-muted);
}

/* Price row */
.mhcg__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.mhcg__price {
  font-family: var(--mhcg-font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--mhcg-gold);
  letter-spacing: -0.01em;
  line-height: 1;
  text-shadow: 0 0 16px rgba(245,163,42,0.18);
  transition: text-shadow 0.25s;
}
.mhcg__card:hover .mhcg__price { text-shadow: 0 0 28px rgba(245,163,42,0.4); }
.mhcg__price--sale  { color: var(--mhcg-gold); }
.mhcg__price--compare {
  font-family: var(--mhcg-font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--mhcg-muted);
  text-decoration: line-through;
}
.mhcg__savings {
  margin-left: auto;
  font-family: var(--mhcg-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #060e1c;
  background: var(--mhcg-gold);
  border-radius: 3px;
  padding: 2px 7px;
  white-space: nowrap;
}

/* ── List View Card Overrides ─────────────────────────── */
.mhcg__grid.view-list .mhcg__card {
  flex-direction: row;
  transform: none !important;
}
.mhcg__grid.view-list .mhcg__card.is-visible { transform: none; }
.mhcg__grid.view-list .mhcg__card:hover { transform: translateY(-3px) !important; }
.mhcg__grid.view-list .mhcg__img-wrap {
  width: 180px;
  min-width: 180px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
.mhcg__grid.view-list .mhcg__body {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 20px 22px;
  border-top: none;
  border-left: 1px solid rgba(255,255,255,0.04);
}
.mhcg__grid.view-list .mhcg__title { font-size: 16px; flex: 1 1 200px; }
.mhcg__grid.view-list .mhcg__price-row { margin-top: 0; padding-top: 0; border-top: none; }
.mhcg__grid.view-list .mhcg__quick-add {
  position: static;
  transform: none;
  background: none;
  padding: 0;
  display: flex;
  margin-left: auto;
}
.mhcg__grid.view-list .mhcg__quick-add-btn {
  transform: none;
  padding: 9px 18px;
  font-size: 11px;
}
.mhcg__grid.view-list .mhcg__card:hover .mhcg__quick-add { transform: none; }
.mhcg__grid.view-list .mhcg__card-divider { display: none; }
.mhcg__grid.view-list .mhcg__bracket { display: none; }

/* ── Empty State ──────────────────────────────────────── */
.mhcg__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mhcg__empty-icon {
  width: 56px; height: 56px;
  color: var(--mhcg-cyan);
  opacity: 0.4;
}
.mhcg__empty-title {
  font-family: var(--mhcg-font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mhcg-white);
  margin: 0;
}
.mhcg__empty-text {
  font-family: var(--mhcg-font-body);
  font-size: 14px;
  color: var(--mhcg-muted);
  max-width: 400px;
  line-height: 1.6;
  margin: 0;
}

/* ── Pagination ───────────────────────────────────────── */
.mhcg__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.mhcg__page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 13px;
  border-radius: 4px;
  border: 1px solid var(--mhcg-border);
  background: rgba(255,255,255,0.03);
  font-family: var(--mhcg-font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--mhcg-silver-dim);
  cursor: pointer;
  transition: all var(--mhcg-transition);
  text-decoration: none;
}
.mhcg__page-btn:hover {
  border-color: var(--mhcg-cyan-bdr);
  background: var(--mhcg-cyan-dim);
  color: var(--mhcg-cyan);
  box-shadow: 0 0 12px rgba(0,200,255,0.1);
}
.mhcg__page-btn.is-active {
  border-color: rgba(245,163,42,0.4);
  background: rgba(245,163,42,0.12);
  color: var(--mhcg-gold);
  box-shadow: 0 0 16px rgba(245,163,42,0.15);
  cursor: default;
}
.mhcg__page-btn--prev svg,
.mhcg__page-btn--next svg { width: 15px; height: 15px; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .mhcg__grid:not(.view-list):not(.view-2col) { grid-template-columns: repeat(3, 1fr); }
  .mhcg__grid.view-list .mhcg__img-wrap { width: 150px; min-width: 150px; }
}
@media (max-width: 768px) {
  .mhcg__inner { padding: 0 18px; }
  .mhcg__section { padding: 40px 0 72px; }
  .mhcg__grid:not(.view-list):not(.view-2col) { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mhcg__grid.view-list .mhcg__card { flex-direction: column; }
  .mhcg__grid.view-list .mhcg__img-wrap { width: 100%; min-width: 0; }
  .mhcg__grid.view-list .mhcg__quick-add { margin-left: 0; }
  .mhcg__toolbar { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .mhcg__grid:not(.view-list):not(.view-2col) { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
}
/* END_SECTION:mh-collection-grid */
/* START_SECTION:mh-collection-header (INDEX:30) */
/* ================================================================
   MinerHub — Collection Header v2
   Palette: #060e1c / #F5A32A / #00C8FF
   Matches: hero · featured-collection · stats · collection-grid
   ================================================================ */

/* ── Shared palette — available to mhch-desc / mh-pd HTML ──────── */
.mhch,
.mhch-desc,
.mh-pd {
  --navy:         #060e1c;
  --navy-base:    #0b1828;
  --navy-mid:     #0c1a2e;
  --navy-card:    #0e1e34;
  --navy-light:   #112448;
  --gold:         #F5A32A;
  --gold-b:       #FFB84D;
  --gold-dim:     rgba(245,163,42,0.09);
  --gold-glow:    rgba(245,163,42,0.22);
  --gold-border:  rgba(245,163,42,0.18);
  --cyan:         #00C8FF;
  --cyan-b:       #40D8FF;
  --cyan-dim:     rgba(0,200,255,0.08);
  --cyan-border:  rgba(0,200,255,0.16);
  --white:        #FFFFFF;
  --silver:       #C8D4E8;
  --muted:        #8FACC8;
  --dim:          #415870;
  --border:       rgba(255,255,255,0.06);
  --red:          #f87171;
  --green:        #22d3a0;
  --font-display: 'Orbitron', 'Rajdhani', 'Arial Black', sans-serif;
  --font-ui:      'Rajdhani', sans-serif;
  --font-body:    'Exo 2', Arial, sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --spring:       cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Section shell ────────────────────────────────────────────────  */
.mhch {
  position: relative;
  background: linear-gradient(180deg, #080f1d 0%, #060e1c 100%);
  overflow: hidden;
  font-family: var(--font-body);
  /* Crisp gold top border with glow — replaces plain 1px */
  border-top: 0;
  border-bottom: 1px solid rgba(245,163,42,0.14);
  box-shadow:
    inset 0 -1px 0 rgba(0,200,255,0.08),
    0 6px 40px rgba(0,0,0,0.55);
}

/* Glowing top edge line — matches hero strip bottom */
.mhch::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,200,255,0.5) 20%,
    var(--gold) 50%,
    rgba(0,200,255,0.5) 80%,
    transparent 100%
  );
  box-shadow: 0 0 16px rgba(245,163,42,0.3), 0 0 40px rgba(0,200,255,0.15);
  z-index: 3;
  pointer-events: none;
}

/* ── Background ───────────────────────────────────────────────────  */
.mhch__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.mhch__bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Scanlines ────────────────────────────────────────────────────  */
.mhch__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.05) 3px,
    rgba(0,0,0,0.05) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Animated trace lines — more luminous ─────────────────────────  */
.mhch__trace {
  position: absolute;
  height: 1px;
  pointer-events: none;
  z-index: 2;
}
.mhch__trace--gold {
  top: 32%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.5), transparent);
  box-shadow: 0 0 8px rgba(245,163,42,0.3);
  animation: mhch-trace 8s linear infinite;
}
.mhch__trace--cyan {
  top: 68%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.45), transparent);
  box-shadow: 0 0 6px rgba(0,200,255,0.25);
  animation: mhch-trace 12s linear infinite 3.5s;
}
@keyframes mhch-trace {
  0%   { left: -55%; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: 125%; opacity: 0; }
}

/* ── Inner wrapper ────────────────────────────────────────────────  */
.mhch__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 36px 64px;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (max-width: 640px) {
  .mhch__inner { padding: 40px 18px 44px; }
}

/* ── Corner brackets — larger, bolder, gradient colour ───────────  */
.mhch__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 3;
}
.mhch__corner--tl {
  top: 18px; left: 22px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  box-shadow: -2px -2px 10px rgba(245,163,42,0.2);
}
.mhch__corner--tr {
  top: 18px; right: 22px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  box-shadow: 2px -2px 10px rgba(0,200,255,0.2);
  opacity: 0.8;
}
.mhch__corner--bl {
  bottom: 18px; left: 22px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.5;
}
.mhch__corner--br {
  bottom: 18px; right: 22px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  opacity: 0.35;
}
@media (max-width: 640px) {
  .mhch__corner { width: 18px; height: 18px; }
  .mhch__corner--tl, .mhch__corner--tr { top: 12px; }
  .mhch__corner--tl, .mhch__corner--bl { left: 14px; }
  .mhch__corner--tr, .mhch__corner--br { right: 14px; }
  .mhch__corner--bl, .mhch__corner--br { bottom: 12px; }
}

/* ── Title glow orb — wider, dual colour ─────────────────────────  */
.mhch__title-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 280px;
  background:
    radial-gradient(ellipse 60% 100% at 40% 50%, rgba(245,163,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 65% 50%, rgba(0,200,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Breadcrumb ───────────────────────────────────────────────────  */
.mhch__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--dim);
  position: relative;
}
/* Flanking line accents */
.mhch__breadcrumb::before,
.mhch__breadcrumb::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  flex-shrink: 0;
}
.mhch__breadcrumb::before {
  background: linear-gradient(90deg, transparent, rgba(245,163,42,0.3));
}
.mhch__breadcrumb::after {
  background: linear-gradient(90deg, rgba(245,163,42,0.3), transparent);
}
.mhch__breadcrumb-link {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s;
}
.mhch__breadcrumb-link:hover { color: var(--gold); }
.mhch__breadcrumb-sep {
  color: var(--dim);
  font-size: 10px;
  opacity: 0.5;
}
.mhch__breadcrumb-current {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

/* ── Content layout ───────────────────────────────────────────────  */
.mhch__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mhch__heading-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Label row — wider spacing, glowing dots ─────────────────────  */
.mhch__label-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(245,163,42,0.12);
  border-radius: 3px;
  background: rgba(245,163,42,0.04);
  backdrop-filter: blur(8px);
}
.mhch__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(245,163,42,0.7), 0 0 16px rgba(245,163,42,0.3);
  animation: mhch-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.mhch__label-dot--cyan {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0,200,255,0.7), 0 0 14px rgba(0,200,255,0.3);
  animation-delay: 1.25s;
}
@keyframes mhch-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.25; transform: scale(0.55); }
}
.mhch__label-text {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
}
.mhch__label-line {
  flex: 0 0 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,163,42,0.4), transparent);
}
.mhch__label-id {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--dim);
  text-transform: uppercase;
}

/* ── Collection title — Orbitron 900 matching hero & featured col  */
.mhch__title {
  font-family: 'Orbitron', 'Rajdhani', 'Arial Black', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  text-transform: uppercase;
  text-align: center;
  text-shadow:
    0 0 60px rgba(245,163,42,0.12),
    0 2px 20px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}
.mhch__title-accent {
  color: var(--gold);
  text-shadow:
    0 0 40px rgba(245,163,42,0.5),
    0 0 80px rgba(245,163,42,0.2),
    0 2px 12px rgba(0,0,0,0.5);
}

/* ── Animated rule — thicker tracks, brighter nodes ─────────────  */
.mhch__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  height: 4px;
  width: 100%;
  max-width: 600px;
}
.mhch__rule-track {
  width: 260px;
  max-width: 40vw;
  height: 2px;
  background: rgba(245,163,42,0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.mhch__rule-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--cyan) 100%);
  border-radius: 2px;
  transition: width 1.3s cubic-bezier(0.0, 0, 0.2, 1) 0.15s;
  box-shadow: 0 0 10px rgba(245,163,42,0.6), 0 0 20px rgba(0,200,255,0.2);
}
.mhch__rule-fill.animated { width: 100%; }
.mhch__rule-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 12px rgba(245,163,42,0.8),
    0 0 24px rgba(245,163,42,0.4),
    0 0 4px rgba(245,163,42,1);
  flex-shrink: 0;
}
.mhch__rule-tail--left {
  flex: 1;
  height: 1px;
  background: linear-gradient(270deg, rgba(245,163,42,0.25), transparent);
}
.mhch__rule-tail--right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,163,42,0.25), transparent);
}

/* ── Stats — dark two-tone panel ─────────────────────────────────  */
.mhch__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: linear-gradient(180deg, rgba(14,30,52,0.7) 0%, rgba(12,26,46,0.7) 100%);
  border: 1px solid rgba(245,163,42,0.15);
  border-radius: 6px;
  padding: 12px 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
/* Top glow line on stats panel */
.mhch__stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.3), rgba(245,163,42,0.25), transparent);
  pointer-events: none;
}
.mhch__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 24px;
}
.mhch__stat-value {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0,200,255,0.5), 0 0 40px rgba(0,200,255,0.2);
  letter-spacing: -0.02em;
}
.mhch__stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mhch__stat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(245,163,42,0.25), transparent);
  flex-shrink: 0;
}
.mhch__stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 4px;
  background: rgba(34,211,160,0.08);
  border: 1px solid rgba(34,211,160,0.25);
  color: var(--green);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(34,211,160,0.08);
}
.mhch__stat-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green), 0 0 16px rgba(34,211,160,0.3);
  animation: mhch-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Pills — square, Rajdhani, glowing dots ──────────────────────  */
.mhch__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.mhch__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  transition: border-color 0.22s, box-shadow 0.22s, color 0.22s;
}
.mhch__pill::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
  opacity: 0.8;
  flex-shrink: 0;
}
.mhch__pill--gold {
  background: rgba(245,163,42,0.07);
  border-color: rgba(245,163,42,0.2);
  color: var(--gold);
}
.mhch__pill--gold:hover {
  border-color: rgba(245,163,42,0.5);
  box-shadow: 0 0 18px rgba(245,163,42,0.18);
}
.mhch__pill--cyan {
  background: rgba(0,200,255,0.06);
  border-color: rgba(0,200,255,0.2);
  color: var(--cyan);
}
.mhch__pill--cyan:hover {
  border-color: rgba(0,200,255,0.5);
  box-shadow: 0 0 18px rgba(0,200,255,0.15);
}

/* ── Description area — premium separator ────────────────────────  */
.mhch__desc-wrap {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
/* Centred gold→cyan glow line at separator */
.mhch__desc-wrap::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
  box-shadow: 0 0 10px rgba(245,163,42,0.3);
  border-radius: 2px;
}

/* ── mhch-desc / mh-pd: base text ────────────────────────────────  */
.mhch-desc,
.mhch-desc.mh-pd {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ── Headings inside description ──────────────────────────────────  */
.mhch-desc h1,
.mhch-desc h2,
.mhch-desc .mh-pd h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(245,163,42,0.1);
}
.mhch-desc h3,
.mhch-desc .mh-pd h3 {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  margin: 32px 0 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(245,163,42,0.25);
}
.mhch-desc h4 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 22px 0 8px;
  text-shadow: 0 0 12px rgba(0,200,255,0.2);
}

/* ── Paragraphs / lists ───────────────────────────────────────────  */
.mhch-desc p { font-size: 14px; color: var(--silver); margin: 0 0 14px; line-height: 1.7; }
.mhch-desc strong { color: var(--white); font-weight: 600; }
.mhch-desc em { color: var(--muted); font-style: italic; }
.mhch-desc a { color: var(--cyan); text-decoration: none; border-bottom: 1px solid rgba(0,200,255,0.2); transition: color 0.18s, border-color 0.18s; }
.mhch-desc a:hover { color: var(--white); border-bottom-color: var(--gold); }

.mhch-desc ul,
.mhch-desc ol {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
@media (max-width: 640px) {
  .mhch-desc ul,
  .mhch-desc ol { grid-template-columns: 1fr; }
}
.mhch-desc ul li,
.mhch-desc ol li {
  font-size: 13.5px;
  color: var(--silver);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
  text-align: left;
}
.mhch-desc ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(245,163,42,0.5);
}
.mhch-desc ol { counter-reset: mhch-ol; grid-template-columns: 1fr; }
.mhch-desc ol li { counter-increment: mhch-ol; }
.mhch-desc ol li::before {
  content: counter(mhch-ol);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.5;
}

/* ── Tables ───────────────────────────────────────────────────────  */
.mhch-desc table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 13px;
  background: linear-gradient(180deg, rgba(14,30,52,0.5) 0%, rgba(12,26,46,0.5) 100%);
  border-radius: 6px;
  overflow: hidden;
}
.mhch-desc table caption {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  text-align: left;
  padding-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  caption-side: top;
  text-shadow: 0 0 14px rgba(245,163,42,0.25);
}
.mhch-desc table th {
  background: rgba(245,163,42,0.1);
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gold-border);
}
.mhch-desc table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--silver);
  vertical-align: top;
}
.mhch-desc table tr:last-child td { border-bottom: none; }
.mhch-desc table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.mhch-desc table td:first-child { color: var(--muted); font-size: 12px; width: 40%; font-family: var(--font-ui); letter-spacing: 0.04em; }
.mhch-desc table td strong { color: var(--white); font-weight: 600; }
.mhch-desc table td .sub { display: block; font-size: 11px; color: var(--dim); margin-top: 2px; }

/* ── Stat / info cards — inherit from mh-pd system ───────────────  */
.mhch-desc .stat,
.mhch-desc .sc,
.mhch-desc .mode,
.mhch-desc .compare-card,
.mhch-desc .feature-item,
.mhch-desc .kas-box,
.mhch-desc .eff-box,
.mhch-desc .chip-box,
.mhch-desc .merge-box,
.mhch-desc .context-box,
.mhch-desc .warn-box,
.mhch-desc .info-box,
.mhch-desc .lotto-box,
.mhch-desc .cost-box,
.mhch-desc .os-box,
.mhch-desc .pool-item,
.mhch-desc .vs-card {
  background: rgba(13,31,60,0.7);
  border-color: var(--border);
}
.mhch-desc .stat-val,
.mhch-desc .sv { color: var(--white); }
.mhch-desc .stat-label,
.mhch-desc .sl,
.mhch-desc .ss { color: var(--dim); }
.mhch-desc .stat-val,
.mhch-desc .mh-price,
.mhch-desc .mode-name.high,
.mhch-desc .ml.gold,
.mhch-desc .ml.std,
.mhch-desc .compare-label.gold,
.mhch-desc .cvl.gold { color: var(--gold); }
.mhch-desc .stat.cy .stat-val,
.mhch-desc .mode-name.low,
.mhch-desc .mode-name.sup,
.mhch-desc .ml.teal,
.mhch-desc .ml.sup,
.mhch-desc .ml.oc { color: var(--cyan); }
.mhch-desc .ml.eco,
.mhch-desc .mode-name.eco,
.mhch-desc .ml.def { color: var(--green); }
.mhch-desc .kas-box p,
.mhch-desc .eff-box p,
.mhch-desc .chip-box p,
.mhch-desc .merge-box p,
.mhch-desc .context-box p,
.mhch-desc .warn-box p,
.mhch-desc .info-box p,
.mhch-desc .lotto-box p,
.mhch-desc .cost-box p,
.mhch-desc .os-box p { color: var(--silver); }
.mhch-desc .compare-row span,
.mhch-desc .mr span,
.mhch-desc .mode-row span,
.mhch-desc .vs-row span { color: var(--muted); }
.mhch-desc .compare-row span:last-child,
.mhch-desc .mr span:last-child,
.mhch-desc .mode-row span:last-child,
.mhch-desc .vs-row span:last-child { color: var(--silver); font-weight: 500; }
.mhch-desc .pool-item strong,
.mhch-desc .feature-item strong { color: var(--white); }
.mhch-desc .pool-item span,
.mhch-desc .feature-item span { color: var(--muted); font-size: 12px; }
.mhch-desc .c,
.mhch-desc code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 11.5px;
  background: rgba(0,200,255,0.08);
  color: var(--cyan);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
}
.mhch-desc .pill { background: rgba(245,163,42,0.1); border: 1px solid var(--gold-border); color: var(--gold); border-radius: 4px; padding: 4px 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; display: inline-flex; font-family: var(--font-ui); }
.mhch-desc .pill.cy { background: var(--cyan-dim); border-color: var(--cyan-border); color: var(--cyan); }
.mhch-desc .tg { background: rgba(255,255,255,0.04); border: 0.5px solid var(--border); border-radius: 3px; padding: 2px 9px; font-size: 11px; color: var(--muted); display: inline-block; }
.mhch-desc .disclaimer {
  background: rgba(255,255,255,0.025);
  border-left: 2px solid rgba(90,114,152,0.35);
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
  margin-top: 28px;
  text-align: left;
}
.mhch-desc .warn-box { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2); border-radius: 6px; padding: 14px 18px; margin: 0 0 24px; }
.mhch-desc .warn-box strong { color: #f87171; }
.mhch-desc .info-box { background: rgba(34,211,160,0.04); border: 1px solid rgba(34,211,160,0.18); border-radius: 6px; padding: 14px 18px; margin: 0 0 24px; }
.mhch-desc .info-box strong { color: var(--green); }
.mhch-desc .kas-box,
.mhch-desc .eff-box,
.mhch-desc .chip-box,
.mhch-desc .merge-box,
.mhch-desc .context-box,
.mhch-desc .lotto-box,
.mhch-desc .cost-box,
.mhch-desc .os-box { background: rgba(245,163,42,0.04); border: 1px solid var(--gold-border); border-radius: 6px; padding: 16px 20px; margin: 0 0 24px; }
.mhch-desc .stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 0 0 24px; }
.mhch-desc .stat { background: linear-gradient(180deg, rgba(14,30,52,0.8) 0%, rgba(12,26,46,0.8) 100%); border: 1px solid var(--gold-border); border-radius: 6px; padding: 16px 16px; text-align: center; }
.mhch-desc .stat-val { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; display: block; text-shadow: 0 0 20px rgba(245,163,42,0.3); }
.mhch-desc .stat-label { font-family: var(--font-ui); font-size: 10px; color: var(--dim); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 5px; display: block; }
.mhch-desc .stat.cy .stat-val { color: var(--cyan); text-shadow: 0 0 16px rgba(0,200,255,0.35); }
.mhch-desc .stat.wh .stat-val { color: var(--white); text-shadow: none; }
@media (max-width: 600px) {
  .mhch-desc .stat-row { grid-template-columns: 1fr 1fr; }
  .mhch-desc .stat-row .stat:last-child { grid-column: span 2; }
}

/* ── Responsive ───────────────────────────────────────────────────  */
@media (max-width: 960px) {
  .mhch__title { font-size: clamp(30px, 7vw, 52px); }
  .mhch__inner { padding: 44px 22px 48px; }
}
@media (max-width: 640px) {
  .mhch__content { align-items: center; }
  .mhch__pills { justify-content: center; }
  .mhch__stats { justify-content: center; }
  .mhch__label-row { padding: 5px 12px; }
}

/* ── Focus ────────────────────────────────────────────────────────  */
.mhch__breadcrumb-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
/* END_SECTION:mh-collection-header */
/* START_SECTION:mh-collection-seo-text (INDEX:32) */
.mhcst__wrap {
  background: #0A1628;
  border-top: 1px solid rgba(245,163,42,0.18);
  padding: 60px 0 72px;
  font-family: 'Exo 2', sans-serif;
  color: #c8d8f0;
}
.mhcst__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.mhcst__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .mhcst__grid { grid-template-columns: 1fr; gap: 40px; }
}
.mhcst__copy-label,
.mhcst__faq-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mhcst__copy-label { color: #00C8FF; }
.mhcst__faq-label  { color: #F5A32A; }
.mhcst__copy-label::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: #00C8FF;
}
.mhcst__faq-label::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: #F5A32A;
}
.mhcst__headline,
.mhcst__faq-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px;
}
.mhcst__headline  { font-size: clamp(22px, 3vw, 30px); }
.mhcst__faq-title { font-size: clamp(20px, 2.5vw, 26px); }
.mhcst__body {
  font-size: 15px;
  line-height: 1.75;
  color: #9fb8d8;
}
.mhcst__body p { margin: 0 0 1em; }
.mhcst__body p:last-child { margin-bottom: 0; }
.mhcst__faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(245,163,42,0.14);
  border-radius: 6px;
  overflow: hidden;
}
.mhcst__faq-item {
  border-bottom: 1px solid rgba(245,163,42,0.12);
}
.mhcst__faq-item:last-child { border-bottom: none; }
.mhcst__faq-q {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: none;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
  font-family: 'Exo 2', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #dce8f8;
  line-height: 1.4;
}
.mhcst__faq-q:hover { background: rgba(245,163,42,0.06); color: #ffffff; }
.mhcst__faq-q[aria-expanded="true"] { background: rgba(245,163,42,0.08); color: #F5A32A; }
.mhcst__faq-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  position: relative;
  margin-top: 2px;
}
.mhcst__faq-icon::before,
.mhcst__faq-icon::after {
  content: '';
  position: absolute;
  background: #F5A32A;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mhcst__faq-icon::before { width: 12px; height: 2px; top: 8px; left: 3px; }
.mhcst__faq-icon::after  { width: 2px; height: 12px; top: 3px; left: 8px; }
.mhcst__faq-q[aria-expanded="true"] .mhcst__faq-icon::after {
  transform: rotate(90deg); opacity: 0;
}
.mhcst__faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #8aa8cc;
  background: rgba(0,200,255,0.025);
}
.mhcst__faq-a.is-open { display: block; }
/* END_SECTION:mh-collection-seo-text */
/* 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);
}

/* ─── 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_SNIPPET:product-information-content (INDEX:206) */
.product-information {
    gap: var(--gap) 0;
  }

  /* Base grid layout */
  .product-information__grid {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
  }

  /* Default column positions */
  .product-details {
    order: 1;
  }

  .product-information__media {
    order: 0;
    width: 0;
    min-width: 100%;
  }

  .product-information__media .product-media-gallery__placeholder-image {
    width: 100%;
    height: 100%;
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .product-information__media {
      grid-column: 1 / -1;
    }

    .product-details {
      grid-column: 2 / 3;
    }
  }

  /* Desktop styles */
  @media screen and (min-width: 750px) {
    .product-information__grid {
      grid-column: 2;
    }

    /* Position when there is no media */
    .product-information__grid.product-information--media-none {
      .product-details {
        width: var(--narrow-content-width);
        margin: 0 auto;
      }
    }

    /* Position when there is media */
    .product-information__grid:not(.product-information--media-none) {
      /* Media on the left side */
      &.product-information--media-left {
        grid-template-columns: 1fr min(50vw, var(--sidebar-width));

        .product-information__media {
          padding-right: calc(var(--gap, 0) / 2);
        }

        .product-details {
          padding-left: calc(var(--gap, 0) / 2);
        }

        &:has(.media-gallery--extend) {
          grid-column: 1 / 3;
        }
      }

      /* Media on the right side */
      &.product-information--media-right {
        grid-template-columns: min(50vw, var(--sidebar-width)) 1fr;

        .product-information__media {
          padding-left: calc(var(--gap, 0) / 2);
          order: 1;
        }

        .product-details {
          padding-right: calc(var(--gap, 0) / 2);
          order: 0;
        }

        &:has(.media-gallery--extend) {
          grid-column: 2 / -1;
        }
      }

      /* Equal width columns */
      &.product-information__grid--half,
      &.product-information__grid--half:has(.media-gallery--extend) {
        grid-column: 1 / -1;
        grid-template-columns:
          var(--full-page-grid-margin) calc(var(--full-page-grid-central-column-width) / 2) calc(
            var(--full-page-grid-central-column-width) / 2
          )
          var(--full-page-grid-margin);

        &.product-information--media-left {
          .product-information__media {
            grid-column: 2 / 3;

            &:has(.media-gallery--extend) {
              grid-column: 1 / 3;
            }
          }

          .product-details {
            grid-column: 3 / 4;
          }
        }

        &.product-information--media-right {
          .product-information__media {
            grid-column: 3 / 4;

            &:has(.media-gallery--extend) {
              grid-column: 3 / -1;
            }
          }

          .product-details {
            grid-column: 2 / 3;
          }
        }
      }
    }

    /* Handle full width section */
    .section--full-width {
      .product-information__grid:not(.product-information--media-none) {
        &.product-information--media-left,
        &.product-information--media-right {
          grid-column: 1 / -1;
        }

        &.product-information--media-left .product-details {
          padding-inline-end: var(--padding-lg);
        }

        &.product-information--media-right .product-details {
          padding-inline-start: var(--padding-lg);
        }

        &.product-information__grid--half.product-information--media-left {
          .product-information__media {
            grid-column: 1 / 3;
          }

          .product-details {
            grid-column: 3 / -1;
          }
        }

        &.product-information__grid--half.product-information--media-right {
          .product-information__media {
            grid-column: 3 / -1;
          }

          .product-details {
            grid-column: 1 / 3;
          }
        }
      }
    }
  }

  /* Wider sidebar for large screens */
  @media screen and (min-width: 1200px) {
    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-left {
      grid-template-columns: 2fr 1fr;
    }

    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-right {
      grid-template-columns: 1fr 2fr;
    }
  }

  .product-information__grid--limit-details .product-details > .group-block {
    --details-max-width: var(--sidebar-width);
    max-width: var(--details-max-width);
  }

  @media screen and (min-width: 1600px) {
    .product-information__grid--limit-details .product-details > .group-block {
      --details-max-width: 32rem;
    }
  }

  /* If the header is sticky, make product details content stick underneath the header */
  body:has(#header-group #header-component[data-sticky-state='active']) .product-details.sticky-content--desktop {
    --sticky-header-offset: var(--header-height);
  }
/* END_SNIPPET:product-information-content */
/* START_SNIPPET:quantity-selector (INDEX:210) */
.quantity-selector-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--gap-sm) / 2);

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .price-per-item {
    display: block;
    color: var(--color-foreground);
    font-size: var(--font-size--sm);
    font-weight: normal;
  }
/* END_SNIPPET:quantity-selector */
