/* ============================================================
   DISGUISED RESEARCH — Design System
   Inspired by: AminoClub structure + Vylix darkness + DR pink
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Anton&display=swap');

:root {
  /* Surfaces */
  --bg-dark: #0B0F17;
  --bg-deep: #05070C;
  --bg-light: #FFFFFF;
  --bg-soft: #FAFAFB;
  --bg-gray: #F3F3F5;
  --bg-gray-2: #E9E9EC;

  /* Brand */
  --accent: #FF2AA6;
  --accent-dark: #D91A87;
  --accent-soft: rgba(255, 42, 166, 0.08);
  --accent-glow: rgba(255, 42, 166, 0.35);

  /* Text */
  --ink: #0B0F17;
  --ink-2: rgba(11, 15, 23, 0.72);
  --ink-3: rgba(11, 15, 23, 0.52);
  --ink-4: rgba(11, 15, 23, 0.32);
  --inv: #FFFFFF;
  --inv-2: rgba(255, 255, 255, 0.72);
  --inv-3: rgba(255, 255, 255, 0.50);
  --inv-4: rgba(255, 255, 255, 0.30);

  /* Borders */
  --line: rgba(11, 15, 23, 0.08);
  --line-2: rgba(11, 15, 23, 0.16);
  --line-inv: rgba(255, 255, 255, 0.12);
  --line-inv-2: rgba(255, 255, 255, 0.22);

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(255, 42, 166, 0.30);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Type */
  --font-display: 'Anton', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max: 1240px;
  --pad: clamp(16px, 4vw, 32px);
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;  /* hard guarantee no horizontal scroll on any viewport */
}
body {
  font-family: var(--font-body);
  font-feature-settings: 'ss01', 'cv11', 'kern', 'liga';
  background: var(--bg-light);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  max-width: 100vw;
  overflow-x: hidden;
}
img, svg {
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
/* Restore smooth rendering for product photography (above is for icons/graphics) */
.pcard__media img,
.hero__fan-vial img,
.brand-logo {
  image-rendering: auto;
  image-rendering: high-quality;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ===== Layout ===== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(56px, 9vw, 120px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--dark { background: var(--bg-dark); color: var(--inv); }
.section--deep { background: var(--bg-deep); color: var(--inv); }
.section--soft { background: var(--bg-soft); }

/* ===== Promo bar (marquee) ===== */
.promo-bar {
  background: var(--bg-deep);
  color: var(--inv);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-inv);
  overflow: hidden;
  position: relative;
}
.promo-bar::before, .promo-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.promo-bar::before { left: 0; background: linear-gradient(90deg, var(--bg-deep), transparent); }
.promo-bar::after { right: 0; background: linear-gradient(270deg, var(--bg-deep), transparent); }
.promo-bar__track {
  display: inline-flex; gap: 56px; white-space: nowrap;
  animation: marquee 32s linear infinite;
  padding-left: 56px;
}
.promo-bar:hover .promo-bar__track { animation-play-state: paused; }
.promo-bar__item { display: inline-flex; align-items: center; gap: 56px; }
.promo-bar__item::after { content: '◆'; color: var(--accent); font-size: 8px; }
.promo-bar strong { color: var(--accent); font-weight: 800; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-bar__track { animation: none; }
}

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 14px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.nav__brand   { justify-self: start; }
.nav__menu    { justify-self: center; }
.nav__actions { justify-self: end; }
/* Reserve scrollbar gutter so nav doesn't shift between pages with/without scroll */
html { scrollbar-gutter: stable; }
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__brand svg { height: 28px; width: auto; }
.nav__menu {
  display: flex; align-items: center; gap: 28px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav__menu a { color: var(--ink); transition: color .15s ease; }
.nav__menu a:hover { color: var(--accent); }
.nav__menu a.is-active { color: var(--accent); }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__icon {
  width: 38px; height: 38px; border-radius: var(--r-pill);
  border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s;
}
.nav__icon:hover { border-color: var(--accent); background: var(--accent-soft); }
.nav__cart { position: relative; }
.nav__cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent); color: var(--inv);
  font-size: 10px; font-weight: 800;
  width: 18px; height: 18px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
}
.nav__burger { display: none; }

/* Checkout-mode header (no main nav, padlock badge + back button) */
.nav--checkout .nav__inner { gap: 12px; }
.nav__menu--checkout { display: flex !important; gap: 0; }
.nav__checkout-badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-3); letter-spacing: .14em;
  white-space: nowrap;
}
.nav__checkout-badge svg { color: var(--accent); flex-shrink: 0; }
.nav__checkout-badge-short { display: none; }
@media (max-width: 720px) {
  .nav__menu--checkout { flex: 0 1 auto; }
  .nav__checkout-badge { letter-spacing: .08em; font-size: 10px; }
  .nav__checkout-badge-full { display: none; }
  .nav__checkout-badge-short { display: inline; }
  .nav__checkout-back-label { display: none; }
  .nav__checkout-back { padding: 8px 12px; font-size: 14px; }
}
@media (max-width: 480px) {
  .nav__checkout-badge { display: none; }
}

@media (max-width: 880px) {
  /* Mobile menu pattern: burger pinned to far LEFT (outside nav__actions
     visually via absolute positioning), brand centered, cart on right.
     Dropdown drops full-width below the header. */
  .nav { position: relative; }
  .nav__inner { padding-left: calc(var(--pad) + 50px) !important; }
  .nav__menu { display: none; }
  .nav__burger {
    display: inline-flex; width: 38px; height: 38px; border-radius: var(--r-pill);
    border: 1px solid var(--line); align-items: center; justify-content: center;
    position: absolute !important;
    left: var(--pad);
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: transparent;
  }
  .nav__menu.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0; width: 100%;
    background: var(--bg-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
    padding: 0;
    z-index: 100;
    margin: 0;
  }
  .nav__menu.is-open a {
    padding: 16px var(--pad);
    border-bottom: 1px solid var(--line);
    width: 100%;
    text-align: left;
    font-size: 14px;
  }
  .nav__menu.is-open a:last-child { border-bottom: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform .12s ease, box-shadow .15s ease, background .15s, color .15s;
  white-space: nowrap; cursor: pointer; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--ink); color: var(--inv); }
.btn--primary:hover { background: var(--accent); box-shadow: var(--shadow-glow); }
.btn--accent { background: var(--accent); color: var(--inv); box-shadow: 0 14px 32px var(--accent-glow); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--light { background: var(--inv); color: var(--ink); }
.btn--light:hover { background: var(--accent); color: var(--inv); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost-inv { background: transparent; color: var(--inv); border-color: var(--line-inv-2); }
.btn--ghost-inv:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding: 10px 16px; font-size: 11px; }
.btn--lg { padding: 18px 28px; font-size: 14px; }
.btn--block { display: flex; width: 100%; }
.btn .arr { transition: transform .15s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ===== Eyebrow / kicker ===== */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
}
.kicker::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.kicker--inv { color: var(--inv); }
.kicker--inv::before { background: var(--accent); box-shadow: 0 0 0 4px rgba(255, 42, 166, 0.20); }

/* ===== Display type ===== */
.h-display {
  font-family: var(--font-display);
  font-weight: 400; /* Anton has only 400 */
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.h-hero {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}
.h-section {
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}
.h-block {
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
}
.lede {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.55;
  max-width: 64ch;
  margin: 18px 0 0;
}
.lede--inv { color: var(--inv-2); }

/* ===== Hero (Vylix-style dark dramatic) ===== */
.hero {
  position: relative;
  background: var(--bg-deep);
  color: var(--inv);
  overflow: hidden;
  padding: clamp(32px, 4vw, 56px) 0 clamp(56px, 6vw, 88px);
  margin-bottom: -1px;
  isolation: isolate;
}
/* Animated gradient bg layer */
.hero::before { animation: heroGradient 14s ease infinite; background-size: 200% 200%; }
@keyframes heroGradient {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}
/* Subtle film grain overlay for premium feel */
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Light sweep removed — the moving band's leading/trailing edges showed as visible lines across the vials */
/* Headline reveal */
.hero__title-1, .hero__title-2 {
  animation: heroReveal 1.2s cubic-bezier(.2,.8,.2,1) backwards;
}
.hero__title-1 { animation-delay: 0.1s; }
.hero__title-2 { animation-delay: 0.25s; }
.hero .kicker { animation: heroReveal 1s cubic-bezier(.2,.8,.2,1) backwards; }
.hero .lede { animation: heroReveal 1s cubic-bezier(.2,.8,.2,1) backwards; animation-delay: 0.4s; }
.hero__cta-row { animation: heroReveal 1s cubic-bezier(.2,.8,.2,1) backwards; animation-delay: 0.55s; }
.hero__stat-strip { animation: heroReveal 1s cubic-bezier(.2,.8,.2,1) backwards; animation-delay: 0.7s; }
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Scroll cue */
.hero__scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: 9px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: heroReveal 1s cubic-bezier(.2,.8,.2,1) backwards; animation-delay: 0.85s;
}
.hero__scroll-cue::after {
  content: ''; width: 1px; height: 28px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__title-1, .hero__title-2, .hero .kicker, .hero .lede,
  .hero__cta-row, .hero__stat-strip, .hero__scroll-cue {
    animation: none;
  }
  .hero__visual::before { animation: none; opacity: 0; }
  .hero::before { animation: none; }
}
/* Glaze: extends well past viewport edges with no transparent stops — no visible boundary anywhere */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 1400px 1200px at 70% 50%,
      rgba(255, 42, 166, 0.50) 0%,
      rgba(255, 42, 166, 0.32) 18%,
      rgba(255, 42, 166, 0.18) 35%,
      rgba(255, 42, 166, 0.08) 55%,
      rgba(255, 42, 166, 0.03) 75%,
      rgba(255, 42, 166, 0.005) 100%
    ),
    radial-gradient(ellipse 1200px 900px at 25% 45%,
      rgba(255, 42, 166, 0.18) 0%,
      rgba(255, 42, 166, 0.06) 45%,
      rgba(255, 42, 166, 0.005) 100%
    );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: -5%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 20%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 20%, transparent 95%);
  pointer-events: none;
}
/* (removed: previous bottom fade + trust::before band — they created a visible black bar) */
.hero__fade { display: none; }
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; gap: 24px; } }
.hero__title-1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 12px 0 0;
}
.hero__title-2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--inv-3);
}
.hero__cta-row { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__stat-strip {
  margin-top: 24px;
  display: inline-flex; align-items: stretch; gap: 0;
  border: 1px solid var(--line-inv); border-radius: var(--r-pill);
  padding: 4px; background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.hero__stat {
  padding: 12px 22px;
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--line-inv);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num { font-weight: 900; font-size: 18px; letter-spacing: -0.02em; }
.hero__stat-num span { color: var(--accent); }
.hero__stat-lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--inv-3); }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 0.95;
  display: flex; align-items: center; justify-content: center;
  perspective: 1200px;
}
.hero__fan {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
}
.hero__fan-vial {
  position: absolute;
  width: 36%;
  display: flex; align-items: flex-end; justify-content: center;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.hero__fan-vial img {
  width: 100%; height: auto; max-height: 100%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 60px rgba(255, 42, 166, 0.30));
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.hero__fan-vial:hover img { filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 80px rgba(255, 42, 166, 0.55)); }
.hero__fan-vial--1 {
  left: 0; bottom: 0;
  transform: rotate(-12deg) translateZ(0);
  z-index: 1; opacity: 0.92;
  animation: vialFloat1 6.5s ease-in-out infinite;
}
.hero__fan-vial--2 {
  left: 32%; bottom: 4%;
  transform: rotate(0deg) translateZ(40px) scale(1.10);
  z-index: 3;
  animation: vialFloat2 5.5s ease-in-out infinite;
}
.hero__fan-vial--3 {
  right: 0; bottom: 0;
  transform: rotate(12deg) translateZ(0);
  z-index: 2; opacity: 0.92;
  animation: vialFloat3 6s ease-in-out infinite;
}
.hero:hover .hero__fan-vial--1 { transform: rotate(-15deg) translateY(-6px) translateZ(20px); }
.hero:hover .hero__fan-vial--2 { transform: rotate(0deg) translateY(-12px) translateZ(60px) scale(1.08); }
.hero:hover .hero__fan-vial--3 { transform: rotate(15deg) translateY(-6px) translateZ(20px); }

@keyframes vialFloat1 {
  0%, 100% { transform: rotate(-12deg) translateZ(0) translateY(0); }
  50% { transform: rotate(-12deg) translateZ(0) translateY(-12px); }
}
@keyframes vialFloat2 {
  0%, 100% { transform: rotate(0deg) translateZ(40px) scale(1.10) translateY(0); }
  50% { transform: rotate(0deg) translateZ(40px) scale(1.10) translateY(-14px); }
}
@keyframes vialFloat3 {
  0%, 100% { transform: rotate(12deg) translateZ(0) translateY(0); }
  50% { transform: rotate(12deg) translateZ(0) translateY(-10px); }
}

.hero__fan-bg {
  position: absolute; inset: 5% -10%; z-index: 0;
  background:
    radial-gradient(40% 50% at 50% 55%, rgba(255, 42, 166, 0.40) 0%, transparent 70%),
    radial-gradient(60% 60% at 30% 80%, rgba(255, 42, 166, 0.18) 0%, transparent 70%),
    radial-gradient(60% 60% at 70% 80%, rgba(255, 42, 166, 0.18) 0%, transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  /* Start invisible — JS adds .is-ready to .hero__visual once all vials are decoded.
     This prevents the glow rectangle from flashing alone before the vials paint
     (most noticeable on mobile where image decode lags the first paint). */
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero__visual.is-ready .hero__fan-bg {
  animation: glowPulse 4s ease-in-out infinite;
}
.hero__fan-vial {
  /* Same gating — vials start hidden so they appear together with the glow */
  opacity: 0;
  transition: opacity 0.45s ease;
}
.hero__visual.is-ready .hero__fan-vial { opacity: 1; }
.hero__visual.is-ready .hero__fan-vial--1 { opacity: 0.92; }
.hero__visual.is-ready .hero__fan-vial--3 { opacity: 0.92; }
@keyframes glowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
/* Reflection plate under vials */
.hero__fan::after {
  content: '';
  position: absolute;
  bottom: -2%; left: 5%; right: 5%;
  height: 25%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, transparent 70%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero__fan-vial { animation: none !important; }
  .hero__fan-bg { animation: none !important; }
}

/* Mobile hero overrides — placed AFTER all hero rules so they cascade properly */
@media (max-width: 980px) {
  .hero { padding: clamp(20px, 5vw, 40px) 0 clamp(28px, 6vw, 48px); }
  .hero__visual { aspect-ratio: 1 / 0.55; max-height: 240px; order: 2; }
  .hero__copy { order: 1; }
  .hero__title-1, .hero__title-2 { font-size: clamp(34px, 9vw, 56px); }
  .hero__stat-strip {
    /* Stack as 2×2 grid on mobile so nothing gets clipped at the edge */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--r-md);
    width: 100%; max-width: 100%;
    padding: 0;
  }
  .hero__stat {
    padding: 12px 14px; flex-shrink: 0;
    border-right: 1px solid var(--line-inv);
    border-bottom: 1px solid var(--line-inv);
  }
  .hero__stat:nth-child(2n) { border-right: none; }
  .hero__stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero__stat-num { font-size: 14px; }
  .hero__stat-lbl { font-size: 8px; letter-spacing: 0.16em; }
  .hero__scroll-cue { display: none; }
  /* Buttons should wrap as separate flex items on mobile */
  .hero__cta-row { width: 100%; }
  .hero__cta-row .btn { width: 100%; }
  /* Vials slightly smaller on mobile */
  .hero__fan-vial { width: 32%; }
  .hero__fan-vial--2 { transform: rotate(0deg) translateZ(40px) scale(1.05); animation-name: vialFloat2Mobile; }
}
@keyframes vialFloat2Mobile {
  0%, 100% { transform: rotate(0deg) translateZ(40px) scale(1.05) translateY(0); }
  50% { transform: rotate(0deg) translateZ(40px) scale(1.05) translateY(-10px); }
}

/* ===== Trust pillars ===== */
.trust {
  background: var(--bg-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: center;
}
@media (max-width: 880px) { .trust__row { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.trust__item {
  display: flex; align-items: center; gap: 14px;
}
.trust__icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.trust__icon svg { width: 22px; height: 22px; }
.trust__title { font-weight: 800; font-size: 14px; letter-spacing: -0.01em; }
.trust__sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* ===== Section heading row ===== */
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; }
.shead__lead { max-width: 60ch; }
.shead__num {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 160px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 42, 166, 0.18);
  position: absolute;
  right: 0; top: -30%;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.section--soft .shead__num { -webkit-text-stroke-color: rgba(11, 15, 23, 0.06); }
.section--dark .shead__num, .section--deep .shead__num { -webkit-text-stroke-color: rgba(255, 255, 255, 0.08); }
.shead > * { position: relative; z-index: 1; }

/* ===== Custom section divider — pink dot trail ===== */
.divider-trail {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  padding: 24px 0; opacity: 0.6;
}
.divider-trail span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: trailPulse 1.6s ease-in-out infinite;
}
.divider-trail span:nth-child(1) { animation-delay: 0s; }
.divider-trail span:nth-child(2) { animation-delay: .15s; }
.divider-trail span:nth-child(3) { animation-delay: .3s; }
.divider-trail span:nth-child(4) { animation-delay: .45s; }
.divider-trail span:nth-child(5) { animation-delay: .6s; }
@keyframes trailPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ===== Decorative molecule pattern (background) ===== */
.section--molecules { position: relative; overflow: hidden; }
.section--molecules::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23FF2AA6' stroke-width='1.5'%3E%3Ccircle cx='40' cy='40' r='4' fill='%23FF2AA6'/%3E%3Ccircle cx='100' cy='80' r='4' fill='%23FF2AA6'/%3E%3Ccircle cx='160' cy='40' r='4' fill='%23FF2AA6'/%3E%3Ccircle cx='60' cy='140' r='4' fill='%23FF2AA6'/%3E%3Ccircle cx='140' cy='160' r='4' fill='%23FF2AA6'/%3E%3Cline x1='40' y1='40' x2='100' y2='80'/%3E%3Cline x1='100' y1='80' x2='160' y2='40'/%3E%3Cline x1='100' y1='80' x2='60' y2='140'/%3E%3Cline x1='100' y1='80' x2='140' y2='160'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 280px 280px;
}
.section--molecules > * { position: relative; z-index: 1; }

/* ===== Section eyebrow rule (replaces standard divider) ===== */
.eyebrow-rule {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.eyebrow-rule::before {
  content: ''; width: 32px; height: 1px; background: var(--accent);
}

/* ===== Category cards ===== */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 880px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: var(--bg-light); border: 1px solid var(--line);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  min-height: 320px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.cat-card__tag {
  align-self: flex-start; font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--accent-soft); color: var(--accent);
  padding: 6px 10px; border-radius: var(--r-pill);
}
.cat-card__title { font-weight: 900; font-size: 28px; letter-spacing: -0.025em; line-height: 1.1; }
.cat-card__desc { color: var(--ink-2); font-size: 14px; flex-grow: 1; }
.cat-card__cta {
  font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; color: var(--accent);
}
.cat-card__cta .arr { transition: transform .15s; }
.cat-card:hover .cat-card__cta .arr { transform: translateX(4px); }
.cat-card--featured { background: var(--bg-dark); color: var(--inv); border-color: var(--bg-dark); }
.cat-card--featured .cat-card__desc { color: var(--inv-2); }
.cat-card--featured .cat-card__tag { background: rgba(255, 42, 166, 0.20); }

/* ===== Product grid (AminoClub-style pastel cards) ===== */
.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px;
  /* perf: skip layout/paint for off-screen rows entirely */
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}
@media (max-width: 1080px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
/* Pause float animations on cards not in viewport (perf) */
.pcard { contain: layout paint; }
.pcard:not(.is-onscreen) .pcard__media img,
.pcard:not(.is-onscreen) .pcard__media::after {
  animation-play-state: paused;
}

.pcard {
  background: var(--bg-light);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .25s;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.pcard::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 0 rgba(255, 42, 166, 0);
  transition: box-shadow .35s ease;
}
.pcard:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(255, 42, 166, 0.45);
  box-shadow:
    0 32px 60px -16px rgba(255, 42, 166, 0.30),
    0 18px 40px -12px rgba(0, 0, 0, 0.10),
    0 0 0 1px rgba(255, 42, 166, 0.18);
}
.pcard:hover::after {
  box-shadow: inset 0 0 0 1px rgba(255, 42, 166, 0.20);
}
/* Dark variant removed — all cards use unified pink media background */
.pcard--dark { background: var(--bg-light); }

/* Scroll-triggered reveal (IntersectionObserver-driven) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--reveal-i, 0) * 50ms);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.pcard__media {
  aspect-ratio: 1; padding: 22px 22px 18px;
  display: flex; align-items: flex-end; justify-content: center;
  background:
    radial-gradient(75% 65% at 50% 30%, rgba(255, 255, 255, 0.55) 0%, transparent 75%),
    linear-gradient(180deg, #FFF0F8 0%, #FFD9EC 100%);
  position: relative;
  overflow: hidden;
}
.pcard__media::after {
  content: '';
  position: absolute; left: 25%; right: 25%; bottom: 8%; height: 8px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.22), transparent 75%);
  filter: blur(6px); pointer-events: none;
  z-index: 0;
}
.pcard__media img {
  position: relative; z-index: 1;
  max-width: 86%; max-height: 96%; object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.20));
  transition: transform .4s cubic-bezier(.2,.8,.2,1), filter .4s ease;
  animation: vialFloat 4.5s ease-in-out infinite;
  animation-delay: calc(var(--reveal-i, 0) * 0.45s);
  will-change: transform;
}
@keyframes vialFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
/* Soft pink glow that pulses with the float */
.pcard__media::after {
  animation: shadowPulse 4.5s ease-in-out infinite;
  animation-delay: calc(var(--reveal-i, 0) * 0.45s);
}
@keyframes shadowPulse {
  0%, 100% { opacity: 1; transform: scaleX(1); }
  50% { opacity: 0.55; transform: scaleX(0.78); }
}
.pcard:hover .pcard__media img {
  transform: translateY(-18px) scale(1.05);
  filter: drop-shadow(0 28px 40px rgba(255, 42, 166, 0.30)) drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .pcard__media img, .pcard__media::after { animation: none; }
}
.pcard__vial {
  width: 38%; aspect-ratio: 1 / 2.5;
  border-radius: 14% 14% 18% 18% / 6% 6% 6% 6%;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.10), inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.pcard__vial::before {
  content: ''; position: absolute; top: -8%; left: 50%; transform: translateX(-50%);
  width: 56%; height: 12%;
  background: linear-gradient(180deg, #e4e4e7 0%, #a1a1aa 100%);
  border-radius: 6px 6px 4px 4px;
}
.pcard__vial-name {
  font-family: var(--font-display);
  font-size: clamp(11px, 1.3vw, 16px);
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink);
}
.pcard__vial-mg { font-size: 8px; font-weight: 800; letter-spacing: 0.2em; color: var(--accent); margin-top: 2px; }
.pcard__badge {
  position: absolute; top: 10px; left: 10px; z-index: 4;
  background: var(--ink); color: var(--inv);
  font-size: 9px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 8px; border-radius: var(--r-pill);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  line-height: 1.1;
  white-space: nowrap;
}
.pcard__badge--sale {
  background: linear-gradient(135deg, var(--accent) 0%, #c9128a 100%);
  box-shadow: 0 3px 12px rgba(255, 42, 166, 0.40);
  display: inline-flex; align-items: center; gap: 4px;
}
.pcard__badge--sale::before {
  content: '★'; font-size: 9px;
}
.pcard__badge--oos { background: #525762; }
.pcard__badge--soon { background: #f59e0b; color: #1c1917; }

/* Variant-grouped cards: a single rep card stands in for the whole group, the
   non-rep variants are hidden in the catalog grid (still reachable via direct
   product URL). Rep card shows a price range + "View Options" CTA. */
.pcard--variant-hidden { display: none !important; }
.pcard--has-variants .pcard__cta--options {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
}
.pcard--has-variants .pcard__cta--options:hover {
  background: var(--accent); filter: brightness(1.06);
  box-shadow: 0 8px 22px rgba(255, 42, 166, 0.45);
}
.pcard--has-variants .pcard__price .pcard__range {
  font-weight: 900; letter-spacing: -0.01em;
}
/* "Sizes" pill — ONLY shown on cards that have actual size variants
   (GLP-1, GLP-2, GLP-3 reps). Sits in the BOTTOM-RIGHT of the media area
   so it never collides with a SALE badge in the top-left. */
.pcard--multi-variant .pcard__media::before {
  content: 'Sizes';
  position: absolute; bottom: 8px; right: 8px; z-index: 4;
  background: var(--accent); color: #fff;
  font-weight: 900; font-size: 8px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--r-pill);
  line-height: 1.4;
}

/* Out-of-stock and coming-soon visual treatment (RUO-style frosted overlay).
   Add .pcard--oos or .pcard--soon to the .pcard root. */
.pcard--oos .pcard__media img,
.pcard--soon .pcard__media img {
  filter: blur(8px) saturate(0.55) brightness(0.92);
  opacity: 0.65;
}
.pcard--oos .pcard__media::before,
.pcard--soon .pcard__media::before {
  content: attr(data-state-label);
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 3;
  pointer-events: none;
}
.pcard--oos .pcard__media::before { content: 'Sold Out'; }
.pcard--soon .pcard__media::before { content: 'Coming Soon'; color: #5b3d00; }
.pcard--soon .pcard__media::before { background: rgba(255, 224, 153, 0.55); }
.pcard--oos .pcard__cta,
.pcard--soon .pcard__cta {
  background: transparent;
  color: var(--ink-3); border-color: var(--line-2);
  pointer-events: none; opacity: 0.65;
}
.pcard--oos .pcard__cta::before { content: 'Out of stock'; }
.pcard--soon .pcard__cta::before { content: 'Notify me'; }
.pcard--oos .pcard__cta > *,
.pcard--soon .pcard__cta > * { display: none; }
/* Hide the original CTA text by neutralizing the button label spans;
   the ::before above serves as the label. */
.pcard--oos .pcard__cta,
.pcard--soon .pcard__cta { font-size: 0; }
.pcard--oos .pcard__cta::before,
.pcard--soon .pcard__cta::before {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800;
}
.pcard__price s { color: var(--ink-3); margin-right: 8px; font-weight: 600; text-decoration: line-through; }
.pcard__body {
  padding: 20px 18px 22px;
  display: flex; flex-direction: column; gap: 6px;
  background: var(--bg-light);
  /* Take all leftover height in the card so .pcard__cta can pin to bottom
     and align across the row regardless of title length. */
  flex: 1; min-height: 0;
}
.pcard__cat {
  font-size: 10px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
}
.pcard__name {
  font-weight: 800; font-size: 16px; letter-spacing: -0.015em; line-height: 1.25;
  color: var(--ink);
}
.pcard__price {
  font-weight: 900; font-size: 18px; color: var(--ink); margin-top: 4px;
  letter-spacing: -0.01em;
}
.pcard__price s {
  color: var(--ink-3); margin-right: 8px; font-weight: 600;
  text-decoration: line-through; font-size: 14px;
}
.pcard__per { font-weight: 600; font-size: 12px; color: var(--ink-3); }
.pcard__cta {
  /* margin-top: auto pushes the CTA to the bottom of .pcard__body so every
     "Add to cart" button aligns across the row, regardless of title wrap. */
  margin-top: auto;
  padding: 12px 14px; border-radius: var(--r-pill);
  background: var(--ink); color: var(--inv);
  border: 1px solid var(--ink);
  font-weight: 800; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  /* Tight, soft pink halo at rest — hugs the button rather than bleeding
     into the card. Hover deepens the glow. */
  box-shadow: 0 0 10px 1px rgba(255, 42, 166, 0.55), 0 3px 10px rgba(255, 42, 166, 0.25);
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.pcard:hover .pcard__cta {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 14px 2px rgba(255, 42, 166, 0.70), 0 5px 14px rgba(255, 42, 166, 0.40);
}
.pcard__cta--soon { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.pcard:hover .pcard__cta--soon { background: var(--ink); color: var(--inv); border-color: var(--ink); }

/* ===== Info card grid (AminoClub-style) ===== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
@media (max-width: 880px) {
  .info-grid,
  .info-grid[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .info-card--span2 { grid-column: span 1 !important; }
}
.info-card {
  background: var(--bg-light); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: border-color .18s, transform .18s;
}
.info-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.info-card__icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.info-card__icon svg { width: 28px; height: 28px; }
.info-card__title { font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.info-card__desc { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin-top: 6px; }
.info-card--span2 { grid-column: span 2; }
@media (max-width: 880px) { .info-card--span2 { grid-column: span 1; } }
.info-card--dark {
  background: var(--bg-dark); color: var(--inv); border-color: var(--bg-dark);
}
.info-card--dark .info-card__desc { color: var(--inv-2); }
.info-card--dark .info-card__icon { background: rgba(255, 42, 166, 0.18); }

/* ===== Big quote / pull ===== */
.pull {
  background: var(--bg-deep); color: var(--inv);
  padding: clamp(56px, 9vw, 120px) 0;
  text-align: center;
}
.pull__txt {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 22ch; margin: 0 auto;
}
.pull__txt em { color: var(--accent); font-style: normal; }

/* ===== Process steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-light); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 28px; position: relative;
}
.step__num {
  font-family: var(--font-display);
  font-size: 64px; line-height: 1; color: var(--accent); opacity: 0.85;
}
.step__title { font-weight: 900; font-size: 18px; letter-spacing: -0.02em; margin-top: 14px; }
.step__desc { color: var(--ink-2); font-size: 13px; line-height: 1.55; margin-top: 8px; }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg-light); overflow: hidden; }
.faq__q {
  padding: 22px 24px; font-weight: 800; font-size: 16px; letter-spacing: -0.015em;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; width: 100%;
}
.faq__q::after {
  content: '+'; font-size: 22px; font-weight: 600; color: var(--accent); transition: transform .15s;
}
.faq__item.is-open .faq__q::after { content: '−'; }
.faq__a {
  display: none; padding: 0 24px 22px; color: var(--ink-2); font-size: 14px; line-height: 1.65;
}
.faq__item.is-open .faq__a { display: block; }

/* ===== Footer ===== */
.foot {
  background: var(--bg-deep); color: var(--inv);
  padding: clamp(56px, 8vw, 96px) 0 32px;
}
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; }
/* !important needed because every template's `<div class="foot__top">` carries
   an inline `style="grid-template-columns:repeat(4,1fr)"` that would otherwise
   keep 4 too-narrow columns on mobile and cause horizontal overflow. */
@media (max-width: 880px) { .foot__top { grid-template-columns: 1fr 1fr !important; gap: 24px !important; } }
@media (max-width: 480px) { .foot__top { grid-template-columns: 1fr !important; } }
.foot__brand p { color: var(--inv-3); font-size: 13px; margin-top: 16px; line-height: 1.6; max-width: 36ch; }
.foot__col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--inv); margin: 0 0 16px;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot__col a { color: var(--inv-3); font-size: 13px; transition: color .15s; }
.foot__col a:hover { color: var(--accent); }
.foot__bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-inv);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 11px; color: var(--inv-3); letter-spacing: 0.04em; text-transform: uppercase;
}

/* Footer accepted-payments strip — small badges of every accepted method */
.foot__pay {
  margin-top: 36px; padding: 18px 20px;
  border: 1px solid var(--line-inv); border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.foot__pay-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--inv-3); margin-right: 4px;
}
.foot__pay-icon {
  display: inline-flex; align-items: center; justify-content: center;
  height: 28px; min-width: 50px;
  font-weight: 900; font-size: 11px; letter-spacing: 0.04em;
  background: #fff; color: var(--ink); border-radius: 5px;
  padding: 0 8px;
}
.foot__pay-icon[data-method="visa"] { color: #1A1F71; }
.foot__pay-icon[data-method="amex"] { color: #fff; background: #2E77BC; }
.foot__pay-icon[data-method="discover"] { color: #fff; background: #FF6000; font-size: 10px; }
.foot__pay-icon[data-method="affirm"] { color: #0FA0EA; font-style: italic; }
.foot__pay-icon[data-method="zelle"] { color: #6D1ED4; }
.foot__pay-icon[data-method="chime"] { color: #1EC677; }
.foot__pay-icon[data-method="crypto"] { color: #F7931A; font-size: 10px; }
.foot__pay-icon[data-method="ach"] { color: var(--ink); }
.foot__bottom a { color: var(--inv-3); }
.foot__bottom a:hover { color: var(--accent); }
.foot__ruo {
  background: rgba(255, 42, 166, 0.10); border: 1px solid rgba(255, 42, 166, 0.30);
  border-radius: var(--r-md); padding: 14px 18px; margin-top: 36px;
  font-size: 12px; color: var(--inv-2); line-height: 1.6;
}
.foot__ruo strong { color: var(--accent); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== Logo image ===== */
.brand-logo { height: 52px; width: auto; display: block; }
.brand-logo--inv { filter: brightness(0) invert(1); height: 52px; }
@media (max-width: 560px) { .brand-logo { height: 40px; } }

/* ===== Logo (wordmark) ===== */
.logo-wm { display: flex; align-items: baseline; gap: 4px; line-height: 1; }
.logo-wm__main {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--ink);
}
.logo-wm__sub {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-3);
}
.logo-wm__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  display: inline-block; margin-left: 2px; align-self: flex-end; margin-bottom: 3px;
}
.logo-wm--inv .logo-wm__main { color: var(--inv); }
.logo-wm--inv .logo-wm__sub { color: var(--inv-3); }

/* ===== Page header (interior pages) ===== */
.page-hd {
  background: var(--bg-deep); color: var(--inv);
  padding: clamp(72px, 10vw, 140px) 0 clamp(48px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.page-hd::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 70% 30%, rgba(255, 42, 166, 0.18), transparent 60%);
  pointer-events: none;
}
.page-hd__inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.page-hd .lede { color: var(--inv-2); }
.crumbs { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--inv-3); }
.crumbs a { color: var(--inv-3); }
.crumbs a:hover { color: var(--accent); }

/* ===== Shop layout ===== */
.shop-grid { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
@media (max-width: 880px) {
  .shop-grid { grid-template-columns: 1fr; gap: 16px; }
  /* Collapse filters into a button on mobile */
  .filter {
    background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-md);
    padding: 14px 18px;
    max-height: 56px; overflow: hidden;
    position: relative;
    transition: max-height .35s ease;
  }
  .filter::before {
    content: 'FILTER & SORT';
    display: block; padding-top: 6px;
    font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
    color: var(--ink);
  }
  .filter::after {
    content: '+'; position: absolute; top: 14px; right: 18px;
    font-size: 22px; line-height: 1; color: var(--accent); font-weight: 600;
  }
  .filter.is-open { max-height: 1000px; padding-bottom: 18px; }
  .filter.is-open::after { content: '−'; }
  /* Hide all filter content when collapsed; show only when open */
  .filter:not(.is-open) > h4,
  .filter:not(.is-open) > ul { display: none; }
}
.filter h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); margin: 24px 0 12px;
}
.filter h4:first-child { margin-top: 0; }
.filter ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.filter li label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--ink-2); }
.filter li label:hover { color: var(--accent); }
.filter input[type="checkbox"] { accent-color: var(--accent); }

/* ===== Product detail ===== */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: flex-start; }
@media (max-width: 880px) { .pdp { grid-template-columns: 1fr; } }

/* iPhone-home-screen-style swipe carousel: product image ↔ COA */
.pdp__stage { position: sticky; top: 24px; }
@media (max-width: 880px) { .pdp__stage { position: static; } }

.pdp__carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp__slides {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--r-xl);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Hide scroll shadows/clip slide content cleanly */
}
.pdp__slides::-webkit-scrollbar { display: none; height: 0; width: 0; }

.pdp__slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  /* US Letter aspect (8.5 × 11) so the COA renders the full page without clipping */
  aspect-ratio: 8.5 / 11;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}

/* Slide 1 — product image (keeps the original pink gradient + float) */
.pdp__slide--image {
  background:
    radial-gradient(75% 65% at 50% 30%, rgba(255, 255, 255, 0.55) 0%, transparent 75%),
    linear-gradient(180deg, #FFF0F8 0%, #FFD9EC 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.pdp__slide--image img {
  max-width: 60%; max-height: 92%; object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.18));
  animation: vialFloat 4.5s ease-in-out infinite;
  will-change: transform;
  position: relative; z-index: 1;
}
.pdp__slide--image::after {
  content: '';
  position: absolute; left: 28%; right: 28%; bottom: 6%; height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.22), transparent 75%);
  filter: blur(8px); pointer-events: none; z-index: 0;
  animation: shadowPulse 4.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .pdp__slide--image img, .pdp__slide--image::after { animation: none; }
}

/* Swipe hint chip pulses on the first slide so people know they can swipe */
.pdp__swipe-hint {
  position: absolute;
  bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(11, 15, 23, 0.85);
  color: #fff;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
  z-index: 3;
  animation: pdpHintNudge 2.4s ease-in-out infinite;
  pointer-events: none;
}
.pdp__swipe-hint svg { display: block; }
.pdp__carousel.is-on-coa .pdp__swipe-hint { opacity: 0; visibility: hidden; }
@keyframes pdpHintNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .pdp__swipe-hint { animation: none; }
}

/* Slide 2 — COA viewer */
.pdp__slide--coa {
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.pdp__slide--coa iframe {
  width: 100%; height: 100%;
  border: none; display: block;
  background: var(--bg-light);
}
.pdp__slide-chip {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 8px 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  z-index: 3;
  white-space: nowrap;
}
.pdp__slide-chip-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-1);
}
.pdp__slide-chip-btn {
  font-size: 12px; font-weight: 800;
  color: #fff; background: var(--accent);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: filter .15s;
}
.pdp__slide-chip-btn:hover { filter: brightness(1.05); }

/* Show discount row as flex when not [hidden] */
#cartDiscountRow:not([hidden]) { display: flex; }

/* "COA available on request" placeholder for products without a real COA on file */
.pdp__coa-empty {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px;
  background: var(--bg-soft);
  color: var(--ink-2);
}
.pdp__coa-empty svg {
  width: 56px; height: 56px;
  color: var(--accent);
  margin-bottom: 18px;
}
.pdp__coa-empty h4 {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-1);
  margin: 0 0 10px;
}
.pdp__coa-empty p {
  font-size: 13px; line-height: 1.55;
  max-width: 280px;
  margin: 0;
}
.pdp__coa-empty a { color: var(--accent); font-weight: 700; text-decoration: none; }
.pdp__coa-empty a:hover { text-decoration: underline; }

/* Page-indicator dots (iPhone home-screen style) */
.pdp__dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding-top: 4px;
}
.pdp__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line-2);
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.pdp__dot:hover { background: var(--ink-3); }
.pdp__dot.is-active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
.pdp__cat { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.pdp__title { font-weight: 900; font-size: clamp(34px, 4vw, 56px); letter-spacing: -0.03em; line-height: 1.05; margin: 12px 0 6px; }
.pdp__price-row { display: flex; align-items: baseline; gap: 14px; margin: 18px 0 10px; }
.pdp__price { font-weight: 900; font-size: 32px; letter-spacing: -0.02em; }
.pdp__per { color: var(--ink-3); font-size: 14px; font-weight: 600; }
.pdp__desc { color: var(--ink-2); font-size: 15px; line-height: 1.65; margin: 16px 0 28px; }
.pdp__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.pdp__opt {
  border: 1px solid var(--line-2); border-radius: var(--r-md); padding: 14px; cursor: pointer;
  display: flex; flex-direction: column; gap: 4px; transition: border-color .15s, background .15s;
}
.pdp__opt:hover, .pdp__opt.is-active { border-color: var(--accent); background: var(--accent-soft); }
.pdp__opt-label { font-weight: 800; font-size: 14px; }
.pdp__opt-price { font-size: 12px; color: var(--ink-3); }
.pdp__qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-pill);
  overflow: hidden; margin-right: 10px;
}
.pdp__qty button { width: 38px; height: 44px; font-size: 18px; }
.pdp__qty input { width: 44px; height: 44px; text-align: center; border: none; outline: none; font-weight: 800; }
.pdp__add { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.pdp__specs {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.pdp__spec { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.pdp__spec dt { color: var(--ink-3); font-weight: 600; }
.pdp__spec dd { margin: 0; font-weight: 700; }

/* PDP mobile (≤720px) — tighten layout, retake image real-estate, stack CTAs.
   The 880px rule above only swaps the column count; everything else still
   uses desktop sizing which crams + overflows on phones. */
@media (max-width: 720px) {
  .pdp { gap: 28px; }
  .pdp__slide { aspect-ratio: 1 / 1; }
  .pdp__slide--image { padding: 18px; }
  .pdp__slide--image img { max-width: 78%; max-height: 88%; }
  .pdp__slide--coa { aspect-ratio: 8.5 / 11; }
  .pdp__title { font-size: 30px; line-height: 1.08; margin: 8px 0 4px; }
  .pdp__price-row { margin: 12px 0 8px; gap: 10px; flex-wrap: wrap; }
  .pdp__price { font-size: 28px; }
  .pdp__per { font-size: 13px; }
  .pdp__desc { font-size: 14px; line-height: 1.6; margin: 12px 0 20px; }
  .pdp__opts { gap: 10px; margin-bottom: 18px; }
  .pdp__opt { padding: 12px; }
  .pdp__opt-label { font-size: 13px; }
  .pdp__opt-price { font-size: 11px; }
  .pdp__add { gap: 10px; }
  .pdp__add .btn--lg { flex: 1 1 100%; padding: 16px 20px; font-size: 14px; }
  .pdp__qty { margin-right: 0; flex: 0 0 auto; }
  .pdp__specs { margin-top: 24px; padding-top: 18px; gap: 8px 16px; }
  .pdp__slide-chip { bottom: 10px; padding: 6px 6px 6px 12px; }
  .pdp__slide-chip-label { font-size: 10px; }
  .pdp__slide-chip-btn { padding: 5px 10px; font-size: 11px; }
  .pdp__swipe-hint { bottom: 10px; right: 10px; padding: 6px 10px; font-size: 10px; }
  .crumbs { font-size: 12px; margin-bottom: 18px !important; }
}
@media (max-width: 480px) {
  .pdp__title { font-size: 26px; }
  .pdp__opts { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pdp__specs { grid-template-columns: 1fr; gap: 0; }
  .pdp__price { font-size: 26px; }
}

/* ===== Cart ===== */
.cart-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: flex-start; }
@media (max-width: 880px) { .cart-grid { grid-template-columns: 1fr; } }
.cart-row {
  display: grid; grid-template-columns: 100px 1fr auto auto; gap: 18px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) {
  .cart-row {
    grid-template-columns: 80px 1fr;
    grid-template-areas: "media info" "qty price";
    gap: 12px 14px; align-items: start;
  }
  .cart-row__media { grid-area: media; width: 80px; }
  .cart-row > div:nth-child(2) { grid-area: info; }
  .cart-row__qty { grid-area: qty; justify-self: start; align-self: center; grid-column: span 1; margin-top: 8px; }
  .cart-row__price { grid-area: price; justify-self: end; align-self: center; }
}
.cart-row__media {
  width: 100px; aspect-ratio: 1; border-radius: var(--r-md);
  background:
    radial-gradient(75% 65% at 50% 30%, rgba(255, 255, 255, 0.55) 0%, transparent 75%),
    linear-gradient(180deg, #FFF0F8 0%, #FFD9EC 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 8px;
}
.cart-row__media img {
  max-width: 65%; max-height: 92%; object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}
.cart-row__name { font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }
.cart-row__cat { font-size: 11px; color: var(--ink-3); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 6px; }
.cart-row__qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-pill); overflow: hidden; }
.cart-row__qty button { width: 32px; height: 36px; font-size: 16px; }
.cart-row__qty input { width: 36px; height: 36px; text-align: center; border: none; font-weight: 800; }
.cart-row__price { font-weight: 900; font-size: 16px; min-width: 80px; text-align: right; }

.summary {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 28px; position: sticky; top: 100px;
}
.summary h3 { font-weight: 900; font-size: 22px; letter-spacing: -0.02em; margin: 0 0 18px; }
.summary__row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.summary__row[hidden] { display: none !important; }
.summary__row--total { padding-top: 16px; border-top: 1px solid var(--line); font-weight: 900; font-size: 18px; }
.summary__note { font-size: 12px; color: var(--ink-3); margin-top: 10px; line-height: 1.5; }

/* ===== Checkout ===== */
.co-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: flex-start; }
@media (max-width: 880px) { .co-grid { grid-template-columns: 1fr; } }
.co-card {
  background: var(--bg-light); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 28px; margin-bottom: 18px;
}
.co-card h3 {
  font-weight: 900; font-size: 18px; letter-spacing: -0.02em; margin: 0 0 16px;
  display: flex; align-items: center; gap: 12px;
}
.co-card h3 .step-n {
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--inv);
  font-size: 14px; font-weight: 900; display: inline-flex; align-items: center; justify-content: center;
}
.co-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .co-grid2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line-2); border-radius: var(--r-md); padding: 12px 14px;
  background: var(--bg-light); transition: border-color .15s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }

.ship-options { display: flex; flex-direction: column; gap: 10px; }
.ship-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px; border: 1px solid var(--line-2); border-radius: var(--r-md); cursor: pointer;
  transition: border-color .15s, background .15s;
}
.ship-opt:hover, .ship-opt.is-active { border-color: var(--accent); background: var(--accent-soft); }
.ship-opt__l { font-weight: 800; font-size: 14px; }
.ship-opt__sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.ship-opt__price { font-weight: 800; }

.po-warn {
  background: #FEF3C7; border: 1px solid #FDE68A; border-radius: var(--r-md);
  padding: 12px 14px; font-size: 13px; color: #78350F; margin-top: 12px;
  display: none;
}
.po-warn.is-on { display: block; }

/* Signature pad */
.sig-wrap { border: 2px dashed var(--line-2); border-radius: var(--r-md); background: var(--bg-soft); padding: 12px; position: relative; }
#sigPad { display: block; width: 100%; height: 160px; background: var(--bg-light); border-radius: var(--r-sm); cursor: crosshair; touch-action: none; }
.sig-hint { font-size: 12px; color: var(--ink-3); margin-top: 8px; display: flex; justify-content: space-between; }
.sig-hint button { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; }

/* Lock the signature pad until the agreement checkbox is checked. */
.sig-block.is-locked .sig-wrap #sigPad { pointer-events: none; }
.sig-lock-overlay {
  position: absolute; inset: 12px;
  display: none; align-items: center; justify-content: center;
  text-align: center; padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  border-radius: var(--r-sm);
  font-size: 12px; font-weight: 700; color: var(--ink-3);
  letter-spacing: 0.04em;
  z-index: 2;
}
.sig-block.is-locked .sig-lock-overlay { display: flex; }
.ruo-name-hint {
  font-size: 12px; color: var(--accent); font-weight: 700;
  margin: 8px 0 0;
}

.ruo-agree {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px; margin-top: 12px; font-size: 13px; line-height: 1.6; color: var(--ink-2);
  max-height: 220px; overflow-y: auto;
}
.ruo-agree strong { color: var(--ink); }
.ruo-check {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 12px;
  font-size: 13px; color: var(--ink-2); cursor: pointer;
}
.ruo-check input { accent-color: var(--accent); margin-top: 3px; }

.pdf-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.pdf-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-md);
  font-size: 13px;
}
.pdf-row svg { color: var(--accent); flex-shrink: 0; }
.pdf-row__name { font-weight: 700; }
.pdf-row__sub { color: var(--ink-3); font-size: 11px; }

/* ===== Age gate ===== */
.gate {
  position: fixed; inset: 0; background: var(--bg-deep); color: var(--inv); z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--pad); text-align: center;
}
.gate__inner { max-width: 520px; width: 100%; }
.gate__brand { margin-bottom: 32px; }
.gate__brand .logo-wm__main { color: var(--inv); font-size: 38px; }
.gate__brand .logo-wm__sub { color: var(--inv-3); font-size: 11px; }
.gate__card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-inv);
  border-radius: var(--r-xl); padding: 32px;
}
.gate__warn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 42, 166, 0.12); color: var(--accent);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--r-pill); padding: 8px 14px; border: 1px solid rgba(255, 42, 166, 0.40);
}
.gate__title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.005em; line-height: 1.05; text-transform: uppercase;
  margin: 18px 0 10px;
}
.gate__copy { color: var(--inv-3); font-size: 14px; line-height: 1.55; max-width: 36ch; margin: 0 auto; }
.gate__pill-row {
  display: flex; justify-content: center; gap: 0;
  border: 1px solid var(--line-inv); border-radius: var(--r-pill); margin: 22px auto;
  width: fit-content; overflow: hidden;
}
.gate__pill { padding: 12px 18px; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border-right: 1px solid var(--line-inv); }
.gate__pill:last-child { border-right: none; }
.gate__pill em { color: var(--accent); font-style: normal; }
.gate__cta-row { display: flex; justify-content: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.gate__remember {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--inv-3);
  margin-top: 16px; cursor: pointer;
}
.gate__remember input { accent-color: var(--accent); }
.gate__legal { font-size: 11px; color: var(--inv-4); margin-top: 22px; line-height: 1.55; }

/* ===== COA Portal table + stats ===== */
.coa-tbl-wrap {
  border: 1px solid var(--line); border-radius: var(--r-xl); overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-light);
}
.coa-tbl {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-light);
  min-width: 880px; /* keeps columns readable; wraps in scroll on mobile */
}
.coa-tbl th, .coa-tbl td {
  padding: 14px 18px; text-align: left; font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.coa-tbl th {
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); background: var(--bg-soft);
}
.coa-tbl tr:last-child td { border-bottom: none; }
.coa-tbl tr:hover td { background: var(--accent-soft); }
.coa-tbl .sku { font-family: ui-monospace, monospace; font-weight: 700; font-size: 12px; }
.coa-tbl .pass { color: #047857; font-weight: 800; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.coa-tbl .ico { color: var(--accent); font-weight: 700; }
.coa-search { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.coa-search input {
  flex: 1; min-width: 240px;
  padding: 14px 18px; border: 1px solid var(--line-2); border-radius: var(--r-pill);
  outline: none; font-size: 14px;
}
.coa-search input:focus { border-color: var(--accent); }
.coa-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
@media (max-width: 720px) { .coa-stats { grid-template-columns: repeat(2, 1fr); } }
.coa-stat {
  background: var(--bg-light); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px 18px;
  min-width: 0;
}
.coa-stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px); line-height: 1; color: var(--accent);
}
.coa-stat-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 6px;
}
@media (max-width: 880px) {
  .coa-search { flex-direction: column; }
  .coa-search input { width: 100%; min-width: 0; }
  .coa-search .btn { width: 100%; }
  .coa-tbl th, .coa-tbl td { padding: 12px 14px; font-size: 12px; }
}

/* ===== Unified payment-method badges (checkout right column) ===== */
.ship-opt__icons {
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.pay-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 26px; min-width: 44px;
  padding: 0 8px;
  font-weight: 900; font-size: 11px; letter-spacing: 0.04em;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  white-space: nowrap;
}
.pay-badge svg { display: block; }
.pay-badge[data-method="visa"]     { color: #1A1F71; }
.pay-badge[data-method="mc"]       { color: #fff; background: linear-gradient(90deg, #EB001B 50%, #F79E1B 50%); border-color: transparent; font-size: 10px; }
.pay-badge[data-method="amex"]     { color: #fff; background: #2E77BC; border-color: #2E77BC; }
.pay-badge[data-method="discover"] { color: #fff; background: #FF6000; border-color: #FF6000; font-size: 10px; }
.pay-badge[data-method="affirm"]   { color: #0FA0EA; font-style: italic; }
.pay-badge[data-method="zelle"]    { color: #6D1ED4; }
.pay-badge[data-method="chime"]    { color: #1EC677; }
.pay-badge[data-method="crypto"]   { color: #F7931A; font-size: 11px; }
.pay-badge[data-method="ach"]      { color: var(--ink); }
.pay-discount-pill {
  display: inline-flex; align-items: center; justify-content: center;
  height: 26px; padding: 0 10px;
  background: var(--accent); color: #fff;
  font-weight: 900; font-size: 11px; letter-spacing: 0.04em;
  border-radius: 5px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .ship-opt__icons { gap: 4px; }
  .pay-badge { height: 22px; min-width: 36px; font-size: 10px; padding: 0 6px; }
  .pay-discount-pill { height: 22px; font-size: 10px; padding: 0 8px; }
}

/* ===== Military / first responder discount banner ===== */
.mfr-banner { padding: 28px 0; }
.mfr-banner__inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #0B0F17 0%, #1B1F2A 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 24px 32px;
  border: 1px solid rgba(255, 42, 166, 0.40);
  box-shadow: 0 12px 40px -12px rgba(255, 42, 166, 0.40);
}
.mfr-banner__icon {
  width: 56px; height: 56px;
  background: rgba(255, 42, 166, 0.18);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mfr-banner__icon svg { width: 28px; height: 28px; }
.mfr-banner__tag {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.mfr-banner__title {
  font-weight: 900; font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: -0.01em; line-height: 1.2;
  margin: 0 0 4px;
}
.mfr-banner__sub { font-size: 13px; color: var(--inv-2); margin: 0; line-height: 1.55; }
.mfr-banner__cta { white-space: nowrap; }
@media (max-width: 720px) {
  .mfr-banner__inner { grid-template-columns: 1fr; text-align: center; padding: 24px; gap: 16px; }
  .mfr-banner__icon { margin: 0 auto; }
  .mfr-banner__cta { width: 100%; }
}

/* ===== Accepted payment methods strip ===== */
.pay-methods__inner {
  background: var(--bg-light); border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 28px;
}
.pay-methods__header { text-align: center; }
.pay-methods__header .kicker { color: var(--accent); justify-content: center; }
.pay-methods__header strong { color: var(--accent); font-weight: 900; }
/* Force every block inside the header to actually center within the parent.
   .lede has max-width: 64ch with margin: 18px 0 0 by default, which leaves it
   left-aligned even when text-align is center on the parent. */
.pay-methods__header .lede,
.pay-methods__header > * {
  margin-left: auto;
  margin-right: auto;
}
.pay-methods__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(9, 1fr); gap: 12px;
}
@media (max-width: 1180px) { .pay-methods__grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 880px)  { .pay-methods__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .pay-methods__grid { grid-template-columns: repeat(2, 1fr); } }
.pay-methods__item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 18px 12px;
  background: var(--bg-light); border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.pay-methods__item:hover { border-color: var(--accent); transform: translateY(-2px); }
.pay-methods__item--discount {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 4px 14px rgba(255, 42, 166, 0.15);
}
/* Discount cards get a corner ribbon (top-right) so the −5% reads as a tag ON the box */
.pay-methods__item--discount::after {
  content: 'SAVE 5%';
  position: absolute;
  top: 8px; right: -28px;
  transform: rotate(35deg);
  background: var(--accent); color: #fff;
  font-weight: 900; font-size: 9px; letter-spacing: 0.08em;
  padding: 3px 32px; line-height: 1.4;
  box-shadow: 0 2px 6px rgba(255, 42, 166, 0.45);
}
/* Hide the inline −5% pill since the ribbon now carries the message */
.pay-methods__item--discount .pay-methods__save { display: none; }
.pay-methods__icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 32px;
  font-weight: 900; font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink); background: #fff; border: 1px solid var(--line-2);
  border-radius: 6px;
}
.pay-methods__icon[data-method="visa"] { color: #1A1F71; letter-spacing: 0.05em; }
.pay-methods__icon[data-method="amex"] { color: #fff; background: #2E77BC; border-color: #2E77BC; }
.pay-methods__icon[data-method="discover"] { color: #fff; background: #FF6000; border-color: #FF6000; font-size: 11px; }
.pay-methods__icon[data-method="affirm"] { color: #0FA0EA; font-style: italic; }
.pay-methods__icon[data-method="zelle"] { color: #6D1ED4; }
.pay-methods__icon[data-method="chime"] { color: #1EC677; }
.pay-methods__icon[data-method="crypto"] { color: #F7931A; font-size: 12px; }
.pay-methods__icon[data-method="ach"] { color: var(--ink); }
.pay-methods__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink-2); text-align: center;
  display: inline-flex; gap: 6px; align-items: center;
}
.pay-methods__save {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-size: 9px; font-weight: 900; letter-spacing: 0.04em;
  padding: 2px 6px; border-radius: var(--r-pill);
}
.pay-methods__fineprint {
  text-align: center; color: var(--ink-3); font-size: 12px;
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
  text-wrap: balance;
}

/* ===== Misc utility ===== */
.divider { height: 1px; background: var(--line); border: none; margin: 24px 0; }
.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 10px; border-radius: var(--r-pill);
  background: var(--accent-soft); color: var(--accent);
}

/* shop filters (2026-05-06) */
.pcard.is-filter-hidden{display:none!important}
.filter__c{color:rgba(255,255,255,0.5);font-weight:400;margin-left:4px;font-size:13px}
