/* ═══════════════════════════════════════════════════════════════════════════
   PRISM PEPTIDES — Design System
   Aesthetic: Pharmaceutical Authority — clean, trustworthy, precise
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --bg: #f8f9fb;
  --bg-warm: #fafbfd;
  --surface: #ffffff;
  --navy: #0c1829;
  --navy-mid: #162240;
  --navy-soft: rgba(12, 24, 41, 0.06);
  --accent: #1a56db;
  --accent-hover: #1444b0;
  --accent-ghost: rgba(26, 86, 219, 0.07);
  --accent-glow: rgba(26, 86, 219, 0.14);
  --gold: #b8860b;
  --gold-soft: rgba(184, 134, 11, 0.08);
  --trust: #0a7b4e;
  --trust-soft: rgba(10, 123, 78, 0.07);
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --danger: #dc2626;
  --success: #059669;

  /* Typography */
  --font-display: 'Newsreader', 'Georgia', serif;
  --font-body: 'Albert Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'Inconsolata', 'Consolas', monospace;

  /* Layout */
  --nav-h: 60px;
  --filter-h: 52px;
  --drawer-w: 360px;
  --max-w: 1280px;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 100px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(12, 24, 41, 0.04);
  --sh-md: 0 2px 8px rgba(12, 24, 41, 0.06), 0 1px 3px rgba(12, 24, 41, 0.04);
  --sh-lg: 0 12px 32px rgba(12, 24, 41, 0.10), 0 4px 12px rgba(12, 24, 41, 0.05);
  --sh-drawer: -4px 0 24px rgba(12, 24, 41, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 200ms;
  --dur-slow: 350ms;
}

/* ─── Reset ───────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 15px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle dot-grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: radial-gradient(circle, var(--border) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
}

a { color: var(--accent); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--accent-hover); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { display: block; max-width: 100%; }
input, select { font-family: inherit; font-size: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--nav-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 0 32px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.nav__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #fff;
}

.nav__logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav__spacer { flex: 1; }

.nav__search-wrap {
  position: relative;
  margin-right: 8px;
}

.nav__search-input {
  width: 0;
  height: 34px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: transparent;
  color: #fff;
  font-size: 0.82rem;
  outline: none;
  transition: width var(--dur-slow) var(--ease), padding var(--dur-slow) var(--ease),
              background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.nav__search-wrap--open .nav__search-input {
  width: 200px;
  padding: 0 14px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.nav__search-input::placeholder { color: rgba(255,255,255,0.35); }
.nav__search-input:focus { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.12); }

.nav__icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
}

.nav__icon-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav__icon-btn svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav__badge {
  position: absolute;
  top: 4px;
  right: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: scale(0);
  transition: transform 250ms var(--ease-spring);
}

.nav__badge--show { transform: scale(1); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — Trust-building landing section
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  background: linear-gradient(180deg, #0e1d33 0%, var(--navy) 100%);
  color: #fff;
  padding: 80px 32px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(26, 86, 219, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  padding: 6px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  animation: fadeUp 500ms var(--ease) both;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin: 0;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 500ms var(--ease) 50ms both;
}

.hero__brand-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  margin-bottom: 28px;
  animation: fadeUp 500ms var(--ease) 100ms both;
}

.hero__subtitle {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 40px;
  animation: fadeUp 500ms var(--ease) 150ms both;
}

.hero__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.hero__badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.hero__badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero__badge-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.landing {
  position: relative;
}

.hex-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 9;
  mix-blend-mode: screen;
}

.landing__hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #060d18 0%, var(--navy) 50%, #0e1d33 100%);
  color: #fff;
  text-align: center;
  padding: 80px 32px 40px;
  position: relative;
  overflow: hidden;
}

/* Dark-to-white transition after hero — removed, now handled by .hero-divider */

/* Radial glow behind logo */
.landing__hero::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(26, 86, 219, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.landing__hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
}

.landing__logo {
  width: 120px;
  height: 120px;
  color: #fff;
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 20px rgba(26, 86, 219, 0.3));
}

.landing__logo svg {
  width: 100%;
  height: 100%;
}

.landing__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  padding: 0.05em 0;
}

.landing__subtitle {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 3.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  margin-bottom: 28px;
}

.landing__headline {
  font-family: 'DM Sans', var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 560px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.landing__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.landing__ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
}

.landing__btn {
  height: 48px;
  padding: 0 28px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--dur) var(--ease), transform 100ms var(--ease);
}

.landing__btn:active { transform: scale(0.97); }

.landing__btn--primary {
  background: var(--accent);
  color: #fff;
}

.landing__btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.35);
}

.landing__btn--secondary {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
}

.landing__btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.landing__btn-arrow {
  width: 16px;
  height: 16px;
  display: flex;
  transition: transform 200ms var(--ease);
}

.landing__btn:hover .landing__btn-arrow {
  transform: translateX(3px);
}

.landing__btn-arrow svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-pill);
}

/* Scroll hint line */
.landing__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.landing__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Nav transparent on landing */
.nav--landing {
  background: transparent;
  box-shadow: none;
  position: fixed;
  width: 100%;
}

/* Landing preview (featured products) */
.landing-preview {
  padding: 72px 32px;
  background: var(--bg);
}

.landing-preview__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.landing-preview__header {
  text-align: center;
  margin-bottom: 36px;
}

.landing-preview__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.landing-preview__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
}

.landing-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.landing-preview__cta {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE TRANSITIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.page-exit {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.page-enter {
  opacity: 0;
  transform: translateY(12px);
}

.page-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms var(--ease), transform 350ms var(--ease);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST STATS BAR — Social proof strip
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Trust Bar ─────────────────────────────────────────────────────────── */

.trust-bar {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0 32px;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 120% at 20% 50%, rgba(26,86,219,0.04), transparent 70%),
    radial-gradient(ellipse 50% 120% at 50% 50%, rgba(10,123,78,0.03), transparent 70%),
    radial-gradient(ellipse 50% 120% at 80% 50%, rgba(184,134,11,0.03), transparent 70%);
  pointer-events: none;
}

.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 36px 0;
  position: relative;
}

.trust-bar__stat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 28px;
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-bar__stat.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Subtle glow behind each stat on hover */
.trust-bar__stat::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 12px;
  background: radial-gradient(ellipse at center, rgba(26,86,219,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.trust-bar__stat:hover::after {
  opacity: 1;
}

/* Divider lines between stats */
.trust-bar__stat + .trust-bar__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

/* Icon ring container */
.trust-bar__icon-ring {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.trust-bar__ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.trust-bar__ring-fill {
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-bar__stat.is-visible .trust-bar__ring-fill {
  stroke-dashoffset: 13.2 !important;
}

.trust-bar__stat-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  filter: none;
}

.trust-bar__stat:hover .trust-bar__stat-icon {
  transform: translate(-50%, -50%) scale(1.15);
}

.trust-bar__stat-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-bar__stat-icon--green { color: var(--trust); }
.trust-bar__stat-icon--gold { color: var(--gold); }
.trust-bar__stat-icon--navy { color: var(--navy-mid); }

.trust-bar__stat-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.trust-bar__stat-val {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.trust-bar__stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* Micro progress bar under each stat */
.trust-bar__stat-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--border-light);
  border-radius: 3px;
  margin-top: 5px;
  overflow: hidden;
}

.trust-bar__stat-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(26,86,219,0.4));
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-bar__stat.is-visible .trust-bar__stat-bar-fill {
  width: var(--bar-w);
}

.trust-bar__stat-bar-fill--green {
  background: linear-gradient(90deg, var(--trust), rgba(10,123,78,0.4));
}

.trust-bar__stat-bar-fill--gold {
  background: linear-gradient(90deg, var(--gold), rgba(184,134,11,0.4));
}

.trust-bar__stat-bar-fill--navy {
  background: linear-gradient(90deg, var(--navy-mid), rgba(22,34,64,0.4));
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO DIVIDER — Animated separator between hero and content
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-divider {
  position: relative;
  height: 80px;
  background: linear-gradient(180deg, #0e1d33 0%, #1a2a44 30%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 11;
}

.hero-divider__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(26,86,219,0.5) 20%, rgba(26,86,219,0.8) 50%, rgba(26,86,219,0.5) 80%, transparent 100%);
  transform: translateY(-50%) scaleX(0);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.hero-divider.in-view .hero-divider__line {
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
}

.hero-divider__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 40px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(26,86,219,0.25) 0%, transparent 70%);
  opacity: 0;
}

.hero-divider.in-view .hero-divider__glow {
  animation: dividerGlow 3s ease-in-out infinite;
  animation-delay: 0.8s;
}

.hero-divider__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(26,86,219,0.6), 0 0 24px rgba(26,86,219,0.3);
  opacity: 0;
}

.hero-divider.in-view .hero-divider__pulse {
  animation: dividerPulse 2.5s ease-in-out infinite;
  animation-delay: 0.6s;
}

@keyframes dividerExpand {
  0% { transform: translateY(-50%) scaleX(0); opacity: 0; }
  100% { transform: translateY(-50%) scaleX(1); opacity: 1; }
}

@keyframes dividerGlow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.5); }
}

@keyframes dividerPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.4); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DISCLAIMER MARQUEE
   ═══════════════════════════════════════════════════════════════════════════ */

.disclaimer-marquee {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(26,86,219,0.06) 0%, rgba(26,86,219,0.12) 50%, rgba(26,86,219,0.06) 100%);
  border-top: 1px solid rgba(26,86,219,0.1);
  border-bottom: 1px solid rgba(26,86,219,0.1);
  padding: 10px 0;
  white-space: nowrap;
  user-select: none;
}

.disclaimer-marquee__track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

.disclaimer-marquee__content {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  padding-right: 0;
}

.disclaimer-marquee__content > span {
  flex-shrink: 0;
  padding: 0 12px;
}

.disclaimer-marquee__sep {
  opacity: 0.35;
}

.disclaimer-marquee__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  margin: 0 4px;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BEST SELLERS — Glorified Showcase
   ═══════════════════════════════════════════════════════════════════════════ */

.bestsellers {
  position: relative;
  background: #ffffff;
  padding: 80px 32px 88px;
  overflow: hidden;
}

.bestsellers::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,86,219,0.1), transparent);
}

.bestsellers__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.bestsellers__header {
  text-align: center;
  margin-bottom: 56px;
}

.bestsellers__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.bestsellers__eyebrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bestsellers__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.bestsellers__subtitle {
  max-width: 500px;
  margin: 14px auto 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.bestsellers__showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── Best Seller Card — Navy/White redesign ── */

.bs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform 400ms var(--ease-spring), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}

.bs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26,86,219,0.3);
  box-shadow: 0 12px 40px rgba(12,24,41,0.1), 0 0 0 1px rgba(26,86,219,0.1);
}

.bs-card__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 28px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.bs-card__vial-wrap {
  position: relative;
}

.bs-card__vial-wrap::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(26,86,219,0.2), transparent 70%);
  border-radius: 50%;
}

.bs-card__vial {
  position: relative;
  z-index: 1;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
  transition: transform 500ms var(--ease-spring);
}

.bs-card:hover .bs-card__vial {
  transform: scale(1.05) translateY(-3px);
}

.bs-card__rank {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(12,24,41,0.12);
  letter-spacing: 0.04em;
}

.bs-card__body {
  position: relative;
  padding: 0 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bs-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.bs-card__fullname {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.bs-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.bs-card__purity {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(26,86,219,0.9);
  letter-spacing: 0.04em;
}

.bs-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.bs-card__coa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
}

.bs-card__coa svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bs-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.bs-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.bs-card__price-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bs-card__price-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.bs-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
}

.bs-card__cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms var(--ease);
}

.bs-card__cta:hover {
  background: var(--accent-hover);
  color: #fff;
}

.bs-card__cta:hover svg {
  transform: translateX(2px);
}

.bs-card__cta:active {
  transform: scale(0.97);
}

/* ── Best Sellers Responsive ── */

@media (max-width: 700px) {
  .bestsellers {
    padding: 56px 16px 64px;
  }

  .bestsellers__showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bs-card__vial {
    width: 120px;
  }

  .bs-card__body {
    padding: 0 20px 20px;
  }

  .bs-card__name {
    font-size: 1.2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST SECTION — Why Choose Prism
   ═══════════════════════════════════════════════════════════════════════════ */

.trust-section {
  background: #ffffff;
  color: var(--text);
  padding: 72px 32px;
}

.trust-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.trust-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.trust-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.trust-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.trust-section__subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.trust-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.trust-card:hover {
  background: #ffffff;
  border-color: rgba(26,86,219,0.2);
  box-shadow: 0 4px 16px rgba(12,24,41,0.06);
}

.trust-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--accent);
}

.trust-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card__title {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.trust-card__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
   AFFILIATE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.affiliate-section {
  padding: 80px 32px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.affiliate-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.affiliate-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.affiliate-section__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #1a56db);
  padding: 5px 14px;
  border: 1px solid rgba(26, 86, 219, 0.3);
  border-radius: var(--r-pill, 100px);
  margin-bottom: 20px;
}

.affiliate-section__heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.affiliate-section__subtext {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 28px;
}

.affiliate-section__subtext strong {
  color: var(--navy);
  font-weight: 600;
}

.affiliate-section__perks {
  display: flex;
  gap: 24px;
}

.affiliate-section__perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.affiliate-section__perk-icon {
  width: 18px;
  height: 18px;
  color: var(--accent, #1a56db);
}

.affiliate-section__perk-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.affiliate-section__form-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(12,24,41,0.04);
}

.affiliate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.affiliate-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.affiliate-form__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.affiliate-form__optional {
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
}

.affiliate-form__input {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.82rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.affiliate-form__input::placeholder {
  color: var(--text-muted);
}

.affiliate-form__input:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--accent-ghost);
}

.affiliate-form__submit {
  margin-top: 4px;
  padding: 13px 24px;
  background: var(--accent, #1a56db);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.affiliate-form__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.affiliate-form__submit:active {
  transform: scale(0.98);
}

.affiliate-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
  text-align: center;
}

.affiliate-form__success-icon {
  width: 36px;
  height: 36px;
  color: #22c55e;
}

.affiliate-form__success-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.affiliate-form__success p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 32px 32px;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-footer__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__logo-icon {
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,0.5);
}

.site-footer__logo-icon svg {
  width: 100%;
  height: 100%;
}

.site-footer__logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer__link {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 7px 16px;
  border-radius: var(--r-pill, 100px);
  background: rgba(255,255,255,0.06);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.site-footer__link:active {
  transform: scale(0.97);
}

.site-footer__disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 20px;
}

.site-footer__disclaimer-title {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.site-footer__disclaimer p {
  font-size: 0.62rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.18);
  margin-bottom: 8px;
}

.site-footer__disclaimer p:last-child {
  margin-bottom: 0;
}

.site-footer__disclaimer-caps {
  font-size: 0.58rem !important;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.14) !important;
}

.site-footer__bottom {
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 16px;
}

.site-footer__copy {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   AGE VERIFICATION MODAL
   ═══════════════════════════════════════════════════════════════════════════ */

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 13, 24, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 300ms var(--ease) both;
}

.age-modal--closing {
  animation: fadeOut 300ms var(--ease) both;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.age-modal__card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  animation: fadeUp 400ms var(--ease) 100ms both;
}

.age-modal__hex {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
  color: var(--navy);
}

.age-modal__hex svg {
  width: 100%;
  height: 100%;
}

.age-modal__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.age-modal__text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.age-modal__label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #dc2626;
  padding: 5px 16px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--r-pill);
  display: inline-block;
  margin-bottom: 24px;
}

.age-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.age-modal__btn {
  height: 44px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease), transform 100ms var(--ease);
}

.age-modal__btn:active { transform: scale(0.98); }

.age-modal__btn--confirm {
  background: var(--accent);
  color: #fff;
}

.age-modal__btn--confirm:hover { background: var(--accent-hover); }

.age-modal__btn--deny {
  background: var(--bg);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.age-modal__btn--deny:hover { background: var(--border-light); }

.age-modal__fine {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.5;
}

body.age-locked {
  overflow: hidden;
}

/* ─── Catalog wrap: contains sticky filter scope ───────────────────────── */

.catalog-wrap {
  /* No position: relative — let filters stick to viewport */
}

/* ═══════════════════════════════════════════════════════════════════════════
   FILTER BAR — Horizontal, sticky below nav
   ═══════════════════════════════════════════════════════════════════════════ */

.filters {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  box-shadow: var(--sh-sm);
}

.filters__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--filter-h);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filters__group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.filters__pill {
  height: 30px;
  padding: 0 14px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.filters__pill:hover {
  border-color: var(--border);
  color: var(--text);
}

.filters__pill--active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.filters__pill--active:hover {
  background: var(--navy-mid);
  color: #fff;
  border-color: var(--navy-mid);
}

.filters__divider {
  width: 1px;
  height: 22px;
  background: var(--border);
  margin: 0 8px;
  flex-shrink: 0;
}

.filters__spacer { flex: 1; }

/* ── Region Toggle (International / US Warehouse) ── */
.filters__region-toggle {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  overflow: hidden;
  flex-shrink: 0;
}

.filters__region-btn {
  height: 30px;
  padding: 0 14px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.filters__region-btn:hover {
  color: var(--text);
}

.filters__region-btn--active {
  background: var(--navy);
  color: #fff;
}

/* ── US Shipping Note Banner ── */
.filters__shipping-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 32px;
  background: linear-gradient(90deg, var(--trust-soft), rgba(10, 123, 78, 0.04));
  border-top: 1px solid rgba(10, 123, 78, 0.08);
  font-size: 0.7rem;
  color: var(--success);
  font-weight: 500;
}

.filters__shipping-flag {
  font-size: 0.82rem;
}

.filters__shipping-text {
  letter-spacing: 0.01em;
}

.filters__shipping-note--intl {
  background: linear-gradient(90deg, var(--accent-ghost), rgba(26, 86, 219, 0.03));
  border-top-color: rgba(26, 86, 219, 0.08);
  color: var(--text-secondary);
}

/* ── Vial Kit / Individual Toggle ── */
.filters__vial-toggle {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.filters__vial-btn {
  height: 28px;
  padding: 0 12px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.filters__vial-btn:hover {
  color: var(--text);
}

.filters__vial-btn--active {
  background: var(--navy);
  color: #fff;
}

/* ── Filter Search ── */
.filters__search {
  width: 180px;
  height: 32px;
  padding: 0 12px 0 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--text);
  font-size: 0.78rem;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.filters__search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ghost);
}

.filters__search-wrap {
  position: relative;
}

.filters__search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.filters__search-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.filters__clear {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: var(--r-xs);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}

.filters__clear:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.catalog {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 32px 60px;
}

.catalog__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.catalog__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.catalog__count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 18px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT CARD
   ═══════════════════════════════════════════════════════════════════════════ */

.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  cursor: pointer;
  position: relative;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--border);
}

.card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  color: #fff;
}

.card__tag--research { background: var(--navy-mid); }
.card__tag--recovery { background: var(--success); }
.card__tag--anti-aging { background: #7c3aed; }

.card__catalog-id {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: #f4f5f7;
  border-bottom: 1px solid var(--border-light);
}

.card__image-bg {
  display: none;
}

.card:hover .card__image-bg {
  transform: none;
}

.card__image-vial {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  z-index: 1;
  transition: transform 400ms var(--ease);
}

.card:hover .card__image-vial {
  transform: scale(1.04);
}

.card__body {
  padding: 14px 16px 16px;
}

.card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 2px;
}

.card__fullname {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.card__purity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}

.card__purity-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 5px rgba(184, 134, 11, 0.5);
}

.card__kit-qty {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}

.card__kit-qty-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 5px rgba(26, 86, 219, 0.4);
}

.card__size {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 2px 8px;
  background: var(--bg);
  border-radius: var(--r-xs);
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__price {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.card__add-btn {
  height: 32px;
  padding: 0 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease), transform 100ms var(--ease);
}

.card__add-btn:hover { background: var(--accent-hover); }
.card__add-btn:active { transform: scale(0.96); }

/* ── Card Size Selector (dropdown) ── */
.card__sizes {
  margin-bottom: 10px;
}

.card__size-label {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 38px;
  padding: 0 32px 0 10px;
  background: var(--accent-ghost);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a56db' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.card__size-label:hover {
  border-color: var(--accent);
  box-shadow: 0 1px 4px rgba(26, 86, 219, 0.1);
}

.card__size-label:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-ghost), 0 1px 4px rgba(26, 86, 219, 0.1);
}

.card__size-label-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.7;
}

.card__size-select {
  flex: 1;
  height: 100%;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

/* ── Kit Badge on Card Image ── */
.card__kit-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--accent) 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.35);
}

.card__kit-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ── Best Seller Badge on Card Image — Shimmer ── */
.card__bestseller-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-xs);
  background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
  color: #fff;
  overflow: hidden;
}

.card__bestseller-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  animation: shimmer 2.4s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* ── Detail Kit Badge ── */
.detail__kit-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-xs);
  background: rgba(0,0,0,0.55);
  color: #fff;
  backdrop-filter: blur(4px);
}

/* ── Detail Best Seller Badge — Shimmer ── */
.detail__bestseller-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-xs);
  background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
  color: #fff;
  overflow: hidden;
}

.detail__bestseller-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  animation: shimmer 2.4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY FILTER TOGGLE
   ═══════════════════════════════════════════════════════════════════════════ */

.filters__category-toggle {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  overflow: hidden;
  flex-shrink: 0;
}

.filters__cat-btn {
  height: 30px;
  padding: 0 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.filters__cat-btn:hover {
  color: var(--text);
}

.filters__cat-btn--active {
  background: var(--accent);
  color: #fff;
}

.filters__cat-btn--active:hover {
  background: var(--accent-hover);
  color: #fff;
}

.filters__cat-icon {
  font-size: 0.7rem;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DOPAMINE — Card glow on hover
   ═══════════════════════════════════════════════════════════════════════════ */

.card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(26,86,219,0.25), rgba(124,58,237,0.2));
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 300ms var(--ease);
}

.card:hover::after {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DOPAMINE — Bouncy Add to Cart
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-pop {
  animation: btnPop 400ms var(--ease-spring) !important;
}

@keyframes btnPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.15); }
  60% { transform: scale(0.92); }
  100% { transform: scale(1); }
}

.card__add-btn {
  transition: background var(--dur) var(--ease), transform 100ms var(--ease),
              box-shadow 200ms var(--ease);
}

.card__add-btn:hover {
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DOPAMINE — Confetti particles
   ═══════════════════════════════════════════════════════════════════════════ */

.confetti-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: confettiBurst 600ms var(--ease-out) forwards;
}

@keyframes confettiBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.3);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DOPAMINE — Cart badge pulse
   ═══════════════════════════════════════════════════════════════════════════ */

.nav__badge--show {
  animation: badgePop 400ms var(--ease-spring);
}

@keyframes badgePop {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DOPAMINE — Toast slide with glow
   ═══════════════════════════════════════════════════════════════════════════ */

.toast {
  box-shadow: 0 8px 24px rgba(12, 24, 41, 0.2), 0 0 40px rgba(26, 86, 219, 0.15);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT DETAIL
   ═══════════════════════════════════════════════════════════════════════════ */

.detail {
  max-width: 940px;
  margin: 0 auto;
  padding: 32px 32px 60px;
}

.detail__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  transition: color var(--dur) var(--ease);
  cursor: pointer;
}

.detail__back:hover { color: var(--accent); }

.detail__back svg {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 2; fill: none;
}

.detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.detail__image {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: #f4f5f7;
  border: 1px solid var(--border-light);
}

.detail__image-bg {
  display: none;
}

.detail__image-vial {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  z-index: 1;
}

.detail__catalog-id {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
}

.detail__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: #fff;
  margin-bottom: 14px;
}

.detail__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 4px;
}

.detail__fullname {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.detail__price {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
}

/* Purity bar */
.detail__purity {
  margin-bottom: 22px;
}

.detail__purity-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 6px;
}

.detail__purity-label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted);
}

.detail__purity-val {
  font-family: var(--font-mono);
  font-size: 0.82rem; font-weight: 700;
  color: var(--gold);
}

.detail__purity-track {
  height: 5px; background: var(--border-light);
  border-radius: 99px; overflow: hidden;
}

.detail__purity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #d4a853);
  border-radius: 99px;
  transition: width 600ms var(--ease);
}

/* Specs */
.detail__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 22px;
}

.detail__spec {
  background: var(--surface);
  padding: 10px 14px;
}

.detail__spec-label {
  font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-muted); margin-bottom: 2px;
}

.detail__spec-val {
  font-family: var(--font-mono);
  font-size: 0.76rem; font-weight: 500;
  color: var(--text);
}

/* Add to cart */
.detail__actions {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 26px;
}

.detail__qty {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  overflow: hidden;
}

.detail__qty-btn {
  width: 36px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); color: var(--text);
  font-size: 1rem;
  transition: background var(--dur) var(--ease);
}

.detail__qty-btn:hover { background: var(--border); }

.detail__qty-val {
  width: 42px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600;
  background: var(--surface);
}

.detail__add-btn {
  flex: 1; height: 38px;
  background: var(--accent); color: #fff;
  font-size: 0.82rem; font-weight: 600;
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease);
}

.detail__add-btn:hover { background: var(--accent-hover); }

.detail__desc-heading {
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-muted); margin-bottom: 8px;
}

.detail__desc {
  font-size: 0.88rem; line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Detail Size Selector ── */
.detail__size-selector {
  margin-bottom: 18px;
}

.detail__size-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.detail__size-options {
  display: flex;
  gap: 6px;
}

.detail__size-btn {
  height: 36px;
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.detail__size-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.detail__size-btn--active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BAC WATER UPSELL POPUP
   ═══════════════════════════════════════════════════════════════════════════ */

.bac-popup {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 24, 41, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms var(--ease), visibility 250ms;
}

.bac-popup--open {
  opacity: 1;
  visibility: visible;
}

.bac-popup--closing {
  opacity: 0;
  visibility: hidden;
}

.bac-popup__card {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 28px 28px 24px;
  max-width: 380px;
  width: calc(100% - 32px);
  position: relative;
  transform: translateY(16px) scale(0.97);
  transition: transform 300ms var(--ease-out);
}

.bac-popup--open .bac-popup__card {
  transform: translateY(0) scale(1);
}

.bac-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--r-xs);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.bac-popup__close:hover {
  color: var(--text);
  background: var(--bg);
}

.bac-popup__close svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bac-popup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bac-popup__icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  flex-shrink: 0;
}

.bac-popup__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: rgba(26, 86, 219, 0.12);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bac-popup__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.bac-popup__desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.bac-popup__product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  margin-bottom: 18px;
}

.bac-popup__thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--r-xs);
  overflow: hidden;
  flex-shrink: 0;
}

.bac-popup__thumb-bg {
  width: 100%;
  height: 100%;
}

.bac-popup__info {
  flex: 1;
  min-width: 0;
}

.bac-popup__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.bac-popup__detail {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
}

.bac-popup__price {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.bac-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bac-popup__btn {
  height: 40px;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.bac-popup__btn--add {
  background: var(--accent);
  color: #fff;
}

.bac-popup__btn--add:hover {
  background: var(--accent-hover);
}

.bac-popup__btn--skip {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.bac-popup__btn--skip:hover {
  color: var(--text);
  border-color: var(--border);
  background: var(--bg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   INFO MODAL — Shared overlay for Terms, Privacy, Support
   ═══════════════════════════════════════════════════════════════════════════ */

body.modal-open { overflow: hidden; }

.info-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease);
}

.info-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.info-modal--open .info-modal__panel {
  transform: translateX(0);
}

.info-modal--closing {
  opacity: 0;
}

.info-modal--closing .info-modal__panel {
  transform: translateX(40px);
}

.info-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 41, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.info-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  background: var(--surface);
  overflow-y: auto;
  transform: translateX(40px);
  transition: transform 350ms var(--ease-out);
  box-shadow: -8px 0 40px rgba(12, 24, 41, 0.18);
}

/* ── Legal Page Content (inside modal panel) ── */

.legal-page {
  padding: 0;
}

.legal-page__header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: var(--surface);
  border-bottom: 2px solid var(--accent);
}

.legal-page__label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.legal-page__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  background: var(--surface);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.legal-page__close:hover {
  background: var(--bg);
  border-color: var(--text-muted);
}

.legal-page__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-page__body {
  padding: 36px 32px 60px;
  line-height: 1.8;
}

.legal-page__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.legal-page__section-title {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-page__sub-title {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  margin-top: 20px;
  margin-bottom: 6px;
}

.legal-page__body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.legal-page__body p strong {
  color: var(--text);
  font-weight: 600;
}

.legal-page__footer-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.legal-page__footer-note p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── About Page Styles ── */

.about-hero {
  text-align: center;
  padding: 16px 0 8px;
}

.about-hero__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  color: var(--accent, #1a56db);
}

.about-hero__icon svg {
  width: 100%;
  height: 100%;
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.about-hero__lead {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

.about-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0 8px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 12px;
}

.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 8px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  text-align: center;
}

.about-stats__icon {
  width: 20px;
  height: 20px;
  color: var(--accent, #1a56db);
}

.about-stats__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-stats__val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.about-stats__label {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.about-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, #1a56db);
}

.about-list li strong {
  color: var(--text);
}

@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Support Page Content (inside modal panel) ── */

.support-page {
  padding: 0;
}

.support-page__header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: var(--navy);
  border-bottom: 2px solid var(--accent);
}

.support-page__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.support-page__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  color: #fff;
  background: transparent;
  transition: background var(--dur) var(--ease);
}

.support-page__close:hover {
  background: rgba(255,255,255,0.1);
}

.support-page__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-page__body {
  padding: 28px 32px 60px;
}

.support-page__intro {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── FAQ Accordion ── */

.support-page__faqs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  transition: border-color var(--dur) var(--ease);
}

.faq-item:hover { border-color: var(--text-muted); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  border: none;
  gap: 12px;
  transition: background var(--dur) var(--ease);
}

.faq-item__question:hover { background: var(--navy-mid); }

.faq-item__chevron {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 300ms var(--ease);
}

.faq-item--open .faq-item__chevron { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease), padding 350ms var(--ease);
  padding: 0 18px;
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
  padding: 14px 18px;
}

.faq-item__answer p {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── Support Ticket ── */

.support-page__ticket {
  text-align: center;
  padding: 28px 0;
}

.support-page__ticket-btn {
  display: inline-block;
  width: 100%;
  padding: 15px 32px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--text);
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.support-page__ticket-btn:hover {
  background: var(--navy);
  color: #fff;
}

.support-page__ticket-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* ── Modal Responsive ── */

@media (max-width: 600px) {
  .info-modal__panel {
    max-width: 100%;
  }

  .legal-page__header,
  .legal-page__body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .support-page__header,
  .support-page__body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-page__title {
    font-size: 1.4rem;
  }

  .faq-item__question {
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .about-hero__title {
    font-size: 1.3rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CART DRAWER — Slides in from right
   ═══════════════════════════════════════════════════════════════════════════ */

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow);
}

.drawer-overlay--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  width: var(--drawer-w);
  max-width: 92vw;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  box-shadow: -4px 0 24px rgba(12, 24, 41, 0.1);
  border-left: 1px solid var(--border);
}

.drawer--open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}

.drawer__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.drawer__title-count {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
}

.drawer__close {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); border-radius: var(--r-xs);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.drawer__close:hover { color: var(--text); background: var(--bg); }

.drawer__close svg {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.drawer__empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}

.drawer__empty-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  opacity: 0.25;
}

.drawer__empty-text {
  font-size: 0.85rem;
}

/* Cart item in drawer */
.drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  transition: background var(--dur) var(--ease);
}

.drawer-item:hover { background: var(--bg); }

.drawer-item__thumb {
  width: 48px; height: 48px;
  border-radius: var(--r-xs);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.drawer-item__thumb-bg {
  width: 100%; height: 100%;
}

.drawer-item__thumb-vial {
  position: absolute;
  inset: 0;
  width: 70%;
  height: 70%;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

.drawer-item__info {
  flex: 1; min-width: 0;
}

.drawer-item__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drawer-item__meta {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.drawer-item__qty {
  display: flex; align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
}

.drawer-item__qty-btn {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--text-secondary);
  transition: background var(--dur) var(--ease);
}

.drawer-item__qty-btn:hover { background: var(--bg); }

.drawer-item__qty-val {
  width: 26px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
}

.drawer-item__price {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 50px;
  text-align: right;
}

.drawer-item__remove {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); border-radius: var(--r-xs);
  transition: color var(--dur) var(--ease);
  flex-shrink: 0;
}

.drawer-item__remove:hover { color: var(--danger); }

.drawer-item__remove svg {
  width: 12px; height: 12px;
  stroke: currentColor; stroke-width: 2; fill: none;
}

.drawer__footer {
  padding: 16px 22px 20px;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}

.drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.drawer__subtotal-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.drawer__subtotal-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.drawer__note {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.drawer__checkout-btn {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 13px 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease), opacity 0.15s var(--ease);
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.18), 0 1px 3px rgba(26, 86, 219, 0.10);
}

.drawer__checkout-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.24), 0 2px 6px rgba(26, 86, 219, 0.12);
}

.drawer__checkout-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.drawer__checkout-btn:active {
  transform: translateY(0);
  opacity: 0.92;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 300;
  padding: 10px 22px;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 24px rgba(12, 24, 41, 0.2);
  opacity: 0;
  transition: transform 300ms var(--ease-out), opacity 300ms var(--ease);
  pointer-events: none;
  white-space: nowrap;
}

.toast--show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.anim-fadeup { animation: fadeUp 400ms var(--ease) both; }

/* Card and badge animations now handled by .reveal / .revealed via IntersectionObserver */

/* ═══════════════════════════════════════════════════════════════════════════
   NO RESULTS
   ═══════════════════════════════════════════════════════════════════════════ */

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 52px 20px;
  color: var(--text-muted);
}

.no-results__icon { font-size: 1.8rem; opacity: 0.25; margin-bottom: 8px; }
.no-results__text { font-size: 0.88rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .detail__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav { padding: 0 16px; }
  .landing__hero { padding: 60px 16px 40px; }
  .landing__logo { width: 80px; height: 80px; margin-bottom: 24px; }
  .landing__ctas { flex-direction: column; width: 100%; max-width: 280px; }
  .landing__btn { justify-content: center; width: 100%; }
  .landing-preview { padding: 48px 16px; }
  .landing-preview__grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
  .hero { padding: 48px 16px 40px; }
  .hero__badges { gap: 8px; }
  .hero__badge { padding: 8px 12px; }
  .hero__badge-text { font-size: 0.68rem; }

  .trust-bar { padding: 0 16px; }
  .trust-bar__stat + .trust-bar__stat::before { display: none; }
  .trust-bar__inner {
    flex-wrap: wrap;
    gap: 0;
    padding: 12px 0;
  }
  .trust-bar__stat { flex: 0 0 50%; padding: 8px 12px; }
  .trust-bar__stat + .trust-bar__stat::before { display: none; }
  .trust-bar__icon-ring { width: 40px; height: 40px; }
  .trust-bar__stat-icon { width: 16px; height: 16px; }

  .trust-section { padding: 48px 16px; }
  .trust-section__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .trust-card { padding: 22px 20px; }

  .affiliate-section { padding: 48px 16px; }
  .affiliate-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .affiliate-section__perks {
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-footer { padding: 24px 16px; }
  .site-footer__top-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .site-footer__nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .site-footer__link {
    padding: 7px 14px;
    font-size: 0.72rem;
  }

  .filters { padding: 0 16px; }
  .filters__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: auto;
    min-height: var(--filter-h);
    flex-wrap: wrap;
    padding: 8px 0;
    gap: 6px;
  }
  .filters__inner::-webkit-scrollbar { display: none; }
  .filters__search-wrap { display: none; }
  .filters__divider { height: 18px; }
  .filters__shipping-note { padding: 5px 16px; font-size: 0.66rem; }

  .catalog { padding: 20px 16px 40px; }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }

  .detail { padding: 20px 16px 40px; }

  .detail__size-options {
    flex-wrap: wrap;
  }

  .detail__size-btn {
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .detail__specs {
    grid-template-columns: 1fr 1fr;
  }

  .detail__spec-val {
    font-size: 0.68rem;
    word-break: break-all;
  }

  .detail__actions {
    flex-wrap: wrap;
  }

  .detail__add-btn {
    min-width: 0;
    flex: 1 1 140px;
  }

  .detail__purity-track {
    max-width: 100%;
  }

  /* Mobile cart: bottom sheet instead of side drawer */
  .drawer {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    max-height: 55vh;
    border-radius: 16px 16px 0 0;
    border-left: none;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(12, 24, 41, 0.12);
    transform: translateY(100%);
  }
  .drawer--open {
    transform: translateY(0);
  }

  .age-modal__card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero__brand { font-size: clamp(3.5rem, 16vw, 5rem); }
  .hero__brand-sub { font-size: 0.8rem; letter-spacing: 0.35em; }
  .hero__badges {
    flex-direction: column;
    align-items: stretch;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar__stat-val { font-size: 0.9rem; }
  .trust-bar__stat-label { font-size: 0.56rem; }
  .trust-bar__stat-bar { margin-top: 2px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.checkout {
  min-height: 100vh;
  background: var(--bg);
  padding-top: var(--nav-h);
}

.checkout__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px 64px;
}

.checkout__header {
  margin-bottom: 36px;
}

.checkout__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  transition: color 0.2s var(--ease);
}

.checkout__back svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.checkout__back:hover { color: var(--accent); }
.checkout__back:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
.checkout__back:active { opacity: 0.8; }

.checkout__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

/* Steps indicator */
.checkout__steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.ck-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}

.ck-step--active { opacity: 1; }

.ck-step__num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck-step--active .ck-step__num {
  background: var(--accent);
  color: #fff;
}

.ck-step__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.ck-step--active .ck-step__label { color: var(--text); }

.ck-step__line {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin: 0 12px;
  border-radius: 1px;
}

/* Layout: form left, summary right */
.checkout__body {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* ─── Form Column ─────────────────────────────────────── */

.ck-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: 24px;
  margin: 0 0 20px;
  box-shadow: var(--sh-sm);
}

.ck-legend {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  padding: 0 6px;
}

.ck-field {
  margin-top: 16px;
}

.ck-field--half { flex: 1; min-width: 0; }
.ck-field--quarter { flex: 0 0 100px; min-width: 0; }

.ck-row {
  display: flex;
  gap: 14px;
}

.ck-row .ck-field { margin-top: 16px; }

.ck-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.ck-optional {
  color: var(--text-muted);
  font-weight: 400;
}

.ck-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.ck-input::placeholder { color: var(--text-muted); }

.ck-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ghost);
}

.ck-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.ck-textarea {
  resize: vertical;
  min-height: 70px;
  line-height: 1.6;
}

.ck-input-wrap {
  position: relative;
}

.ck-input-wrap .ck-input {
  padding-right: 40px;
}

.ck-input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--text-muted);
}

.ck-input-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Submit button */
.ck-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.22), 0 2px 6px rgba(26, 86, 219, 0.12);
}

.ck-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.28), 0 3px 8px rgba(26, 86, 219, 0.14);
}

.ck-submit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.ck-submit:active {
  transform: translateY(0);
}

.ck-submit__lock {
  width: 16px; height: 16px;
  opacity: 0.8;
}

.ck-submit__lock svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.ck-secure-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--trust-soft);
  border: 1px solid rgba(10, 123, 78, 0.12);
  border-radius: var(--r-sm);
  font-size: 0.72rem;
  color: var(--trust);
  line-height: 1.5;
}

.ck-secure-note__icon {
  flex-shrink: 0;
  width: 16px; height: 16px;
}

.ck-secure-note__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ─── Summary Column ──────────────────────────────────── */

.ck-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--sh-md);
}

.ck-summary__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

/* Cart items in summary */
.ck-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.ck-item:last-child { border-bottom: none; }

.ck-item__img {
  width: 52px; height: 52px;
  border-radius: var(--r-xs);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.ck-item__img-bg {
  width: 100%; height: 100%;
}

.ck-item__img-vial {
  position: absolute;
  inset: 0;
  width: 65%;
  height: 65%;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

.ck-item__details {
  flex: 1;
  min-width: 0;
}

.ck-item__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ck-item__meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.ck-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.ck-item__qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-secondary);
  font-size: 0.78rem;
  border-radius: var(--r-xs);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}

.ck-item__qty-btn:hover {
  border-color: var(--accent);
  background: var(--accent-ghost);
}

.ck-item__qty-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.ck-item__qty-btn:active { opacity: 0.8; }

.ck-item__qty-val {
  width: 28px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.ck-item__price {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  min-width: 60px;
  text-align: right;
  flex-shrink: 0;
}

.ck-item__remove {
  background: none;
  border: none;
  width: 20px; height: 20px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.15s var(--ease), transform 0.15s var(--ease);
}

.ck-item__remove svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.ck-item__remove:hover { color: var(--danger); transform: scale(1.1); }
.ck-item__remove:focus-visible { outline: 2px solid var(--danger); outline-offset: 2px; border-radius: 2px; }
.ck-item__remove:active { transform: scale(0.95); }

/* Promo code */
.ck-summary__promo {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.ck-promo-input {
  flex: 1;
  font-size: 0.8rem;
  padding: 8px 12px;
}

.ck-promo-btn {
  padding: 8px 16px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}

.ck-promo-btn:hover { background: var(--navy-mid); transform: translateY(-1px); }
.ck-promo-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.ck-promo-btn:active { transform: translateY(0); }

/* Totals */
.ck-summary__totals {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.ck-summary__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.ck-summary__val {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text);
}

.ck-free {
  color: var(--trust);
  font-weight: 600;
  font-family: var(--font-body);
}

.ck-summary__free-ship {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--accent);
  background: var(--accent-ghost);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
}

.ck-summary__free-ship svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.ck-summary__divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.ck-summary__line--total {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
}

.ck-summary__line--total .ck-summary__val {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Trust badges */
.ck-summary__badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.ck-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  background: var(--bg);
  border-radius: var(--r-sm);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

.ck-badge svg {
  width: 18px; height: 18px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

/* ─── Payment Methods ──────────────────────────────────── */

.ck-payment {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  margin-top: 20px;
  box-shadow: var(--sh-md);
}

.ck-payment__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}

.ck-payment__desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin: 0 0 18px;
  line-height: 1.5;
}

.ck-pay-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ck-pay-method {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.15s var(--ease);
}

.ck-pay-method:hover {
  border-color: var(--accent);
  background: var(--accent-ghost);
  transform: translateY(-1px);
}

.ck-pay-method:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.ck-pay-method:active { transform: translateY(0); }

.ck-pay-method--active {
  border-color: var(--accent);
  background: var(--accent-ghost);
  box-shadow: 0 0 0 1px var(--accent);
}

.ck-pay-method__icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #fff;
}

.ck-pay-method__icon--zelle {
  background: linear-gradient(135deg, #6d1ed4, #8b2cf5);
  font-family: var(--font-body);
}

.ck-pay-method__icon--cashapp {
  background: linear-gradient(135deg, #00c244, #00d64b);
  font-family: var(--font-mono);
}

.ck-pay-method__icon--crypto {
  background: linear-gradient(135deg, #f79319, #f7a731);
  font-size: 1.3rem;
}

.ck-pay-method__icon--venmo {
  background: linear-gradient(135deg, #008cff, #3d95ce);
  font-family: var(--font-body);
  font-weight: 700;
}

.ck-pay-method__icon--applepay {
  background: linear-gradient(135deg, #1a1a1a, #333);
  font-size: 1.2rem;
}

.ck-pay-method__name {
  flex: 1;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.ck-pay-method__arrow {
  width: 18px; height: 18px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: stroke 0.15s var(--ease), transform 0.15s var(--ease);
}

.ck-pay-method--active .ck-pay-method__arrow {
  stroke: var(--accent);
  transform: rotate(90deg);
}

/* Payment details reveal */
.ck-pay-details {
  margin-top: 0;
  transition: margin 0.2s var(--ease);
}

.ck-pay-details:not(:empty) {
  margin-top: 16px;
}

.ck-pay-info {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px;
  animation: ckSlideDown 0.25s var(--ease-out);
}

@keyframes ckSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ck-pay-info__label {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.ck-pay-info__value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-ghost);
  padding: 10px 14px;
  border-radius: var(--r-xs);
  border: 1px dashed rgba(26, 86, 219, 0.25);
  word-break: break-all;
  user-select: all;
  margin-bottom: 10px;
}

.ck-pay-info__note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Confirmation checkbox */
.ck-confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  animation: ckSlideDown 0.25s var(--ease-out);
}

.ck-confirm-check:hover {
  border-color: var(--accent);
  background: var(--accent-ghost);
}

.ck-confirm-check__input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.ck-confirm-check__box {
  width: 22px; height: 22px;
  border: 2px solid var(--border);
  border-radius: var(--r-xs);
  background: var(--surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  margin-top: 1px;
}

.ck-confirm-check__box svg {
  width: 14px; height: 14px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease-spring);
}

.ck-confirm-check__input:checked ~ .ck-confirm-check__box {
  background: var(--accent);
  border-color: var(--accent);
}

.ck-confirm-check__input:checked ~ .ck-confirm-check__box svg {
  opacity: 1;
  transform: scale(1);
}

.ck-confirm-check__input:focus-visible ~ .ck-confirm-check__box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.ck-confirm-check__text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ck-confirm-check__text strong {
  color: var(--text);
}

/* Disabled submit */
.ck-submit--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.ck-submit--disabled:hover {
  transform: none;
}

.ck-payment .ck-submit {
  margin-top: 16px;
}

.ck-payment .ck-secure-note {
  margin-top: 14px;
}

.ck-payment .ck-summary__badges {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* ─── Empty Checkout State ─────────────────────────────── */

.ck-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
}

.ck-empty__icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  color: var(--text-muted);
}

.ck-empty__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.ck-empty__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin: 0 0 8px;
}

.ck-empty__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 24px;
}

.ck-empty__btn {
  display: inline-flex;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.18);
}

.ck-empty__btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.ck-empty__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.ck-empty__btn:active { transform: translateY(0); }

/* ─── Checkout Responsive ──────────────────────────────── */

@media (max-width: 900px) {
  .checkout__body {
    grid-template-columns: 1fr;
  }

  .checkout__summary-col { order: -1; }

  .ck-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  .checkout__inner {
    padding: 20px 16px 48px;
  }

  .checkout__title { font-size: 1.4rem; }

  .checkout__steps { display: none; }

  .ck-fieldset { padding: 18px 16px; }

  .ck-row {
    flex-direction: column;
    gap: 0;
  }

  .ck-field--half,
  .ck-field--quarter { flex: none; width: 100%; }

  .ck-item { gap: 8px; }

  .ck-item__img { width: 42px; height: 42px; }

  .ck-summary__badges { flex-direction: column; gap: 6px; }
  .ck-badge { flex-direction: row; padding: 8px 12px; }
}

/* Hidden admin link in footer */
.site-footer__admin {
  color: inherit;
  opacity: 0.08;
  text-decoration: none;
  font-size: 10px;
  margin-left: 8px;
  transition: opacity 0.2s;
}
.site-footer__admin:hover {
  opacity: 0.35;
}

/* ═══════════════════════════════════════════════════════════════════════════
   AFFILIATE CODE STATUS (Checkout)
   ═══════════════════════════════════════════════════════════════════════════ */

.ck-affiliate-status {
  min-height: 24px;
  padding: 0 4px;
  font-size: 0.82rem;
  margin-top: 4px;
}

.ck-affiliate--valid {
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ck-affiliate--valid svg {
  width: 16px;
  height: 16px;
  stroke: #10b981;
  stroke-width: 2;
  fill: none;
}

.ck-affiliate--invalid {
  color: #ef4444;
}

.ck-affiliate--loading {
  color: #94a3b8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAYMENT REFERENCE INPUT
   ═══════════════════════════════════════════════════════════════════════════ */

.ck-pay-ref {
  margin-top: 16px;
  margin-bottom: 8px;
}

.ck-pay-ref__hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ORDER CONFIRMATION
   ═══════════════════════════════════════════════════════════════════════════ */

.order-confirmation .checkout__inner {
  max-width: 620px;
}

.oc-hero {
  text-align: center;
  padding: 48px 0 32px;
}

.oc-hero__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: #10b981;
}

.oc-hero__icon svg {
  width: 100%;
  height: 100%;
}

.oc-hero__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.oc-hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.oc-details {
  background: var(--surface-elevated);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.oc-order-number {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.oc-order-number__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.oc-order-number__value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.oc-status {
  margin-bottom: 20px;
}

.oc-status__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.oc-status__badge--pending {
  background: #fef3c7;
  color: #b45309;
}

.oc-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.oc-status__note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.oc-summary__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.oc-items {
  margin-bottom: 16px;
}

.oc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.oc-item:last-child { border-bottom: none; }

.oc-item__name {
  font-weight: 600;
  color: var(--text);
  flex: 1;
}

.oc-item__meta {
  color: var(--text-muted);
  margin: 0 16px;
}

.oc-item__price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text);
}

.oc-totals {
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.oc-totals__line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.oc-totals__divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.oc-totals__line--total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.oc-payment-method,
.oc-payment-ref,
.oc-affiliate-used {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.oc-actions {
  text-align: center;
  margin-bottom: 24px;
}

.oc-actions__btn {
  display: inline-block;
  padding: 14px 36px;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.15s var(--ease), opacity 0.15s;
}

.oc-actions__btn:hover { transform: scale(1.02); }
.oc-actions__btn:active { transform: scale(0.98); }

.oc-actions__btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.25);
}

.oc-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 24px;
}
