/* CLOWN CATCHER — Clinical light theme */

:root {
  --bg: #ffffff;
  --bg-2: #f5f8fc;
  --bg-3: #eef2f8;
  --ink: #0c1b33;
  --ink-soft: #44546e;
  --ink-dim: #7a8aa3;
  --accent: #2347d9;
  --accent-deep: #16308f;
  --accent-soft: #e8edfd;
  --accent-glow: rgba(35, 71, 217, 0.18);
  --border: #e3e9f2;
  --border-strong: #cdd7e6;
  --navy: #0b1c33;
  --green: #0e8a5f;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(12, 27, 51, 0.06);
  --shadow-md: 0 6px 24px rgba(12, 27, 51, 0.08);
  --shadow-lg: 0 18px 50px rgba(12, 27, 51, 0.14);
  --anim-speed: 1;
  --three-d-density: 0.6;
  --type-display: "Sora", "Manrope", "Helvetica Neue", sans-serif;
  --type-body: "Manrope", "Helvetica Neue", sans-serif;
  --type-mono: "JetBrains Mono", "Menlo", "Consolas", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--type-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  /* `clip` instead of `hidden`: hidden turns body into a scroll container,
     which breaks position: sticky on the header. */
  overflow-x: hidden;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.mono { font-family: var(--type-mono); letter-spacing: 0.02em; }
.accent { color: var(--accent); }

/* ── HEADER ─────────────────────────────────── */
/* The wrap is only as tall as the header itself, so a sticky child could
   never actually stick. display: contents dissolves the box and lets
   .site-header stick against the whole page. */
.site-header-wrap { display: contents; }

.utility-bar {
  background: var(--navy);
  color: #c8d6ea;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.utility-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 8px 32px;
  display: flex; justify-content: space-between; gap: 24px;
}
.utility-inner strong { color: #ffffff; font-weight: 600; }
.utility-links { display: flex; gap: 20px; }
.utility-links a:hover { color: #ffffff; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 16px 32px;
  max-width: 1440px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--type-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.brand-badge { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 2px 8px rgba(15, 23, 42, 0.25); }
.brand-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.05; }
.brand-mark { color: var(--ink); }
.brand-mark.accent { color: var(--accent); }
.brand-llc { font-family: var(--type-mono); font-size: 9px; color: var(--ink-dim); letter-spacing: 0.28em; }
.nav { display: flex; gap: 6px; justify-content: center; align-items: center; }
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop .caret { font-size: 10px; opacity: 0.7; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 5px; }
.nav-drop-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.14);
  padding: 8px;
  min-width: 210px;
  z-index: 60;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 0;
}
.nav-drop-menu a:hover { background: var(--accent-soft); color: var(--accent); }
.card-price .unit-note { font-size: 12px; color: var(--ink-dim); font-weight: 600; }
.nav a {
  font-size: 14px; font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--ink); background: var(--bg-2); }
.nav a.active { color: var(--accent); background: var(--accent-soft); }
.header-right { display: flex; align-items: center; gap: 16px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(14,138,95,0.15); }
.status-text { font-size: 12px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.04em; }
.cart-btn {
  display: inline-flex; gap: 10px; align-items: center;
  padding: 10px 20px;
  border: 0; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  background: var(--accent); color: #fff;
  transition: background 0.2s, transform 0.15s;
  box-shadow: var(--shadow-sm);
}
.cart-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.cart-count {
  background: #ffffff; color: var(--accent);
  border-radius: 999px;
  min-width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 800;
}

/* Fly-to-cart: ghost vial that arcs from the product into the cart button.
   The holder animates X, the inner arc element animates Y — the two easings
   combine into a curved flight path. */
.fly-to-cart {
  position: fixed; z-index: 300;
  pointer-events: none;
}
.fly-to-cart .photo-vial { width: 100% !important; height: 100% !important; margin: 0; }
.cart-btn.cart-bump { animation: cartBump 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); }
.cart-btn.cart-bump .cart-count { animation: cartCountFlash 0.55s ease; }
@keyframes cartBump {
  0% { transform: scale(1); }
  35% { transform: scale(1.18) rotate(-3deg); }
  65% { transform: scale(0.96) rotate(2deg); }
  100% { transform: scale(1); }
}
@keyframes cartCountFlash {
  0% { background: #ffffff; }
  40% { background: var(--accent-soft); transform: scale(1.35); }
  100% { background: #ffffff; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .fly-to-cart { display: none; }
  .cart-btn.cart-bump, .cart-btn.cart-bump .cart-count { animation: none; }
}

/* Promo ticker */
.ticker { overflow: hidden; background: var(--accent-soft); color: var(--accent-deep); border-bottom: 1px solid var(--border); }
.ticker-track {
  display: flex; gap: 64px;
  padding: 9px 0;
  white-space: nowrap;
  animation: tickerScroll calc(46s / var(--anim-speed)) linear infinite;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em;
}
.ticker-track > span { padding-right: 64px; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black 20%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-split-inner {
  position: relative;
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  padding: 72px 32px 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px; font-weight: 700;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
  animation: fadeIn calc(0.7s / var(--anim-speed)) ease both;
}
.hero-badge .status-dot { background: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.hero-title {
  font-family: var(--type-display);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; animation: slideUp calc(0.8s / var(--anim-speed)) cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero-title .line:nth-child(2) .word { animation-delay: 0.12s; }
@keyframes slideUp { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero-sub {
  font-size: 17.5px; line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 30px;
  animation: fadeIn calc(0.8s / var(--anim-speed)) ease 0.25s both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; animation: fadeIn calc(0.8s / var(--anim-speed)) ease 0.4s both; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  animation: fadeIn calc(0.8s / var(--anim-speed)) ease 0.55s both;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.trust-check {
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}

.hero-visual { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }
.hero-blob {
  position: absolute; width: 520px; height: 520px;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  border-radius: 50%;
}
.hero-vial-stack {
  position: relative;
  display: flex; align-items: flex-end; gap: 28px;
  animation: fadeIn calc(0.9s / var(--anim-speed)) ease 0.3s both;
}
.hero-vial-stack > *:nth-child(1) { transform: translateY(-10px) rotate(-3deg); }
.hero-vial-stack > *:nth-child(3) { transform: translateY(-6px) rotate(3deg); }
.hero-deco { position: absolute; pointer-events: none; opacity: 0.5; }

/* Centered hero variant */
.hero-centered-inner {
  position: relative;
  max-width: 900px; margin: 0 auto;
  text-align: center;
  padding: 88px 32px 72px;
}
.hero-centered-inner .hero-sub { margin-left: auto; margin-right: auto; }
.hero-centered-inner .hero-cta, .hero-centered-inner .trust-row { justify-content: center; }
.hero-centered-vials { display: flex; justify-content: center; gap: 32px; margin-top: 44px; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; gap: 10px; align-items: center; justify-content: center;
  padding: 14px 28px;
  font-size: 15px; font-weight: 700;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all 0.2s ease;
  cursor: pointer;
  background: none;
  color: inherit;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost { background: #ffffff; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn.wide { width: 100%; }

/* ── SECTIONS ─────────────────────────────────── */
.section { padding: 88px 32px; max-width: 1440px; margin: 0 auto; position: relative; }
.section-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-bottom: 40px; }
.section-eyebrow {
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--type-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.section-sub { color: var(--ink-soft); font-size: 16px; margin: 10px 0 0; max-width: 560px; }
.section-link {
  font-size: 14.5px; font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  align-self: end;
}
.section-link:hover { color: var(--accent-deep); }

/* ── CATEGORY CARDS ─────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.cat-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 10 / 7;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  background: var(--bg-3);
}
.cat-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cat-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.05); }
.cat-card-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px 18px 14px;
  background: linear-gradient(180deg, rgba(11,28,51,0) 0%, rgba(11,28,51,0.72) 70%);
  display: flex; flex-direction: column; gap: 2px;
}
.cat-card-name { font-family: var(--type-display); font-weight: 700; font-size: 17px; color: #ffffff; }
.cat-card-count { font-size: 12.5px; color: #c9d6ea; font-weight: 600; }
.cat-card-arrow {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover .cat-card-arrow { background: var(--accent); color: #ffffff; transform: translateX(2px); }

/* ── PRODUCT GRID ─────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 20px;
}
.product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-photo {
  background: var(--bg-3);
  padding: 26px 20px 18px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.card-photo .photo-vial { transition: transform 0.3s ease; }
.product-card:hover .card-photo .photo-vial { transform: translateY(-4px) scale(1.02); }
.card-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  background: #ffffff; color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.card-purity {
  position: absolute; top: 14px; right: 14px;
  font-size: 11.5px; font-weight: 800;
  padding: 5px 11px;
  background: rgba(14,138,95,0.1); color: var(--green);
  border-radius: 999px;
}
.card-info { padding: 18px 20px 6px; display: flex; flex-direction: column; gap: 4px; }
.card-name { font-family: var(--type-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.card-sub { font-size: 13.5px; color: var(--ink-dim); font-weight: 600; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px 20px;
  margin-top: auto;
}
.card-price { font-family: var(--type-display); font-weight: 700; font-size: 22px; }
.card-price .dollar { color: var(--ink-dim); font-size: 15px; margin-right: 1px; }
.card-price .mass-note { font-size: 12.5px; color: var(--ink-dim); font-weight: 600; margin-left: 6px; }
.add-btn {
  background: var(--accent); color: #fff; border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 700;
  display: inline-flex; gap: 8px; align-items: center;
  transition: background 0.2s;
}
.add-btn:hover { background: var(--accent-deep); }
.add-btn .plus { font-size: 16px; line-height: 1; }

/* ── REVEAL ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── WHY (4-up) ─────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.why-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-family: var(--type-display); font-size: 17.5px; font-weight: 700; margin: 0 0 8px; }
.why-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ── STATS STRIP ─────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.stats-strip::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(35,71,217,0.45), transparent 70%);
  pointer-events: none;
}
.stat-cell { display: flex; flex-direction: column; gap: 6px; position: relative; z-index: 1; }
.stat-num { font-family: var(--type-display); font-size: 40px; font-weight: 700; letter-spacing: -0.02em; }
.stat-num .pct { color: #7d9bff; }
.stat-lbl { font-size: 13.5px; font-weight: 600; color: #aebdd6; }

/* ── BUNDLES ─────────────────────────────────── */
.bundle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.bundle-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  cursor: pointer;
}
.bundle-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.bundle-pill {
  align-self: flex-start;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--accent-soft); color: var(--accent);
  padding: 5px 12px; border-radius: 999px;
}
.bundle-name { font-family: var(--type-display); font-size: 20px; font-weight: 700; }
.bundle-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.bundle-save { margin-top: auto; padding-top: 12px; font-size: 13.5px; font-weight: 800; color: var(--green); }

/* ── DISCLAIMER BANNER ─────────────────────────────────── */
.disclaimer-banner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; gap: 16px; align-items: flex-start;
  font-size: 14px; line-height: 1.6; color: var(--ink-soft);
}
.disclaimer-banner strong { color: var(--ink); }
.disclaimer-icon {
  flex: none;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}

/* ── FAQ ─────────────────────────────────── */
.faq-list { max-width: 860px; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-q { display: flex; align-items: center; gap: 16px; padding: 20px 22px; }
.faq-num { font-family: var(--type-mono); font-size: 12px; color: var(--accent); font-weight: 700; }
.faq-q-text { font-family: var(--type-display); font-size: 16.5px; font-weight: 600; flex: 1; }
.faq-toggle { font-size: 22px; color: var(--accent); font-weight: 400; line-height: 1; }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 15px; line-height: 1.65; color: var(--ink-soft);
  padding: 0 22px 0 60px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 22px; }

/* ── NEWSLETTER ─────────────────────────────────── */
.newsletter { padding-bottom: 100px; }
.news-inner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.news-inner::after {
  content: "";
  position: absolute; left: -60px; bottom: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
}
.news-copy h2 { font-family: var(--type-display); font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; margin: 0 0 12px; letter-spacing: -0.02em; }
.news-copy p { font-size: 15.5px; line-height: 1.6; color: #d4defa; margin: 0; }
.news-form {
  display: grid; grid-template-columns: 1fr auto;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px;
  position: relative; z-index: 1;
}
.news-form input {
  background: transparent; border: 0;
  padding: 12px 20px;
  font-family: var(--type-body);
  font-size: 14.5px; font-weight: 600;
  color: var(--ink);
  min-width: 0;
}
.news-form input::placeholder { color: var(--ink-dim); }
.news-form input:focus { outline: 0; }
.news-form button {
  background: var(--navy); color: #fff; border: 0;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px; font-weight: 700;
  display: inline-flex; gap: 8px; align-items: center;
  transition: background 0.2s;
}
.news-form button:hover { background: #1a2f4f; }
.news-fine { margin-top: 12px; font-size: 12.5px; color: #b9c8ec; }

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: #b9c6da;
  padding: 64px 32px 32px;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1440px; margin: 0 auto 48px;
}
.foot-mark-row { display: flex; align-items: center; gap: 12px; }
.foot-badge { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }
.foot-mark { font-family: var(--type-display); font-weight: 700; font-size: 26px; color: #ffffff; letter-spacing: -0.01em; }
.foot-mark .accent { color: #7d9bff; }
.foot-tag { margin: 14px 0 20px; max-width: 340px; font-size: 14.5px; line-height: 1.6; }
.foot-disclaimer {
  font-size: 12.5px; line-height: 1.6;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 14px 16px;
  max-width: 420px;
  color: #93a5bf;
}
.foot-disclaimer strong { color: #ffffff; display: block; margin-bottom: 4px; }
.foot-grid h4 { font-size: 12.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #7d9bff; margin: 0 0 18px; }
.foot-grid div a { display: block; padding: 5px 0; font-size: 14.5px; transition: color 0.2s; }
.foot-grid div a:hover { color: #ffffff; }
.foot-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  font-size: 12.5px; color: #8295b3;
  max-width: 1440px; margin: 0 auto;
}

/* ── SHOP ─────────────────────────────────── */
.shop-head {
  position: relative;
  max-width: 1440px; margin: 0 auto;
  padding: 64px 32px 40px;
}
.shop-title { font-family: var(--type-display); font-size: clamp(34px, 4vw, 52px); font-weight: 700; letter-spacing: -0.025em; margin: 0 0 12px; }
.shop-sub { font-size: 16.5px; color: var(--ink-soft); max-width: 560px; line-height: 1.6; margin: 0; }

.shop-controls {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 16px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  position: sticky; top: 73px; z-index: 20;
}
.cat-row { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-btn {
  background: #ffffff; color: var(--ink-soft);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 700;
  transition: all 0.2s;
}
.cat-btn:hover { border-color: var(--border-strong); color: var(--ink); }
.cat-btn.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.shop-controls-right { display: flex; gap: 10px; }
.search-input, .sort-select {
  background: #ffffff; color: var(--ink);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--type-body);
  font-size: 13.5px; font-weight: 600;
}
.search-input { width: 220px; }
.search-input::placeholder { color: var(--ink-dim); }
.search-input:focus, .sort-select:focus { outline: 0; border-color: var(--accent); }
.shop-grid-section { padding-top: 36px; }
.empty { grid-column: 1 / -1; padding: 64px; text-align: center; color: var(--ink-dim); font-weight: 600; }

/* ── PRODUCT PAGE ─────────────────────────────────── */
.product-page { position: relative; }
.crumbs { padding: 20px 32px 0; font-size: 13px; font-weight: 600; color: var(--ink-dim); max-width: 1440px; margin: 0 auto; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--ink); }

.product-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 28px 32px 72px;
  max-width: 1440px; margin: 0 auto;
}
.product-visual {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-vial-big { position: relative; z-index: 3; }
.product-vial-big > div { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.product-deco-1 { position: absolute; right: -100px; top: -70px; opacity: 0.35; }
.product-deco-2 { position: absolute; left: 26px; bottom: 26px; opacity: 0.5; }
.product-corner { position: absolute; font-family: var(--type-mono); font-size: 10.5px; color: var(--ink-dim); letter-spacing: 0.1em; z-index: 5; }
.product-corner.tl { top: 16px; left: 18px; color: var(--accent); font-weight: 700; }
.product-corner.tr { top: 16px; right: 18px; }
.product-corner.bl { bottom: 16px; left: 18px; }
.product-corner.br { bottom: 16px; right: 18px; }

.product-cat {
  display: inline-flex;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent-soft); color: var(--accent);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.product-name { font-family: var(--type-display); font-size: clamp(34px, 4vw, 54px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 16px; }
.product-tag { font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 22px; max-width: 520px; }
.product-tag strong { color: var(--ink); }
.bench-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.bench-pill {
  font-size: 12.5px; font-weight: 700;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #ffffff;
}

/* Variant selector */
.variant-block { margin-bottom: 26px; }
.variant-label { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 10px; }
.variant-row { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff; color: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px; font-weight: 700;
  transition: all 0.2s;
}
.variant-pill:hover { border-color: var(--border-strong); color: var(--ink); }
.variant-pill.on { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-deep); }
.variant-pill .variant-price { font-weight: 800; color: var(--accent); }
.product-note {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  background: rgba(14,138,95,0.1); color: var(--green);
  border-radius: 999px;
  padding: 6px 14px;
  margin: 0 0 18px;
}
.card-price .from-note { font-size: 12.5px; color: var(--ink-dim); font-weight: 600; }

.price-row { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.big-price { font-family: var(--type-display); font-weight: 700; font-size: 44px; letter-spacing: -0.02em; }
.big-price .dollar { font-size: 24px; color: var(--ink-dim); margin-right: 2px; }
.big-price .per { font-size: 13.5px; color: var(--ink-dim); margin-left: 8px; font-weight: 600; font-family: var(--type-body); }
.qty { display: flex; align-items: center; border: 1px solid var(--border-strong); border-radius: 999px; overflow: hidden; }
.qty button { background: #ffffff; color: var(--ink); border: 0; width: 42px; height: 42px; font-size: 18px; }
.qty button:hover { background: var(--accent-soft); color: var(--accent); }
.qty span { padding: 0 18px; font-family: var(--type-display); font-weight: 700; font-size: 17px; }

.big-add { width: 100%; justify-content: space-between; padding: 17px 26px; font-size: 16px; margin-bottom: 10px; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 22px 0 0; margin-top: 22px; border-top: 1px solid var(--border); }
.spec-grid > div { display: flex; flex-direction: column; gap: 3px; }
.spec-grid .mono { font-size: 10.5px; letter-spacing: 0.12em; color: var(--ink-dim); text-transform: uppercase; font-weight: 700; }
.spec-grid strong { font-family: var(--type-display); font-size: 16.5px; font-weight: 700; }
.research-warn {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 22px;
  font-size: 13.5px; line-height: 1.6; color: var(--ink-soft);
}
.research-warn strong { color: var(--ink); }
.warn-bar { width: 4px; border-radius: 4px; background: var(--accent); }

.product-tabs { padding: 0 32px 72px; max-width: 1440px; margin: 0 auto; }
.tabs-row { display: flex; gap: 8px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.tab {
  background: transparent; border: 0; color: var(--ink-dim);
  padding: 14px 20px;
  font-size: 14px; font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  margin-bottom: -1px;
}
.tab.on, .tab:hover { color: var(--accent); border-color: var(--accent); }

.prose { max-width: 720px; }
.prose p { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 14px; }
.prose strong { color: var(--ink); }
.prose h3 { font-family: var(--type-display); font-size: 18px; font-weight: 700; margin: 26px 0 10px; color: var(--ink); }
.prose .fine { font-size: 12.5px; color: var(--ink-dim); }

.spec-table { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; max-width: 860px; }
.spec-table > div { display: grid; grid-template-columns: 1fr 1fr; padding: 13px 0; border-bottom: 1px solid var(--border); gap: 20px; }
.spec-table span { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--ink-dim); text-transform: uppercase; align-self: center; }
.spec-table strong { font-size: 14.5px; }

.coa { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: start; max-width: 1000px; }
.coa-doc { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.coa-head { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.coa-mark { font-family: var(--type-display); font-weight: 700; font-size: 24px; color: var(--accent); }
.coa-meta { text-align: right; font-family: var(--type-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--ink-dim); }
.coa-body { display: grid; padding-top: 18px; }
.coa-body > div { display: grid; grid-template-columns: 1fr 1fr; padding: 11px 0; border-bottom: 1px dashed var(--border); }
.coa-body span { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--ink-dim); text-transform: uppercase; align-self: center; }
.coa-body strong { font-size: 14.5px; }

.related { padding-top: 48px; border-top: 1px solid var(--border); }

/* ── CART ─────────────────────────────────── */
.cart-page { max-width: 1440px; margin: 0 auto; padding: 56px 32px 88px; min-height: 60vh; }
.cart-head { margin-bottom: 40px; }
.cart-title { font-family: var(--type-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -0.025em; margin: 0; }
.cart-head-eyebrow { font-size: 13px; font-weight: 700; color: var(--ink-dim); margin-bottom: 10px; }

.cart-empty { text-align: center; padding: 72px 32px; }
.empty-3d { display: flex; justify-content: center; margin-bottom: 32px; opacity: 0.7; }
.cart-empty h2 { font-family: var(--type-display); font-size: 28px; font-weight: 700; margin: 0 0 10px; }
.cart-empty p { color: var(--ink-soft); margin-bottom: 26px; }

.cart-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.cart-list { display: grid; align-content: start; }
.cart-row {
  display: grid; grid-template-columns: 88px 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-row:first-child { border-top: 1px solid var(--border); }
.cart-vial {
  background: var(--bg-3);
  border-radius: 12px;
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cart-name { font-family: var(--type-display); font-weight: 700; font-size: 17.5px; }
.cart-sub { font-size: 12.5px; color: var(--ink-dim); font-weight: 600; margin-top: 3px; }
.cart-id { font-family: var(--type-mono); font-size: 10.5px; color: var(--ink-dim); margin-top: 3px; }
.cart-qty { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.cart-qty button { background: #fff; color: var(--ink); border: 0; width: 34px; height: 34px; }
.cart-qty button:hover { background: var(--accent-soft); color: var(--accent); }
.cart-qty span { padding: 0 12px; font-weight: 700; font-size: 14.5px; }
.cart-price { font-family: var(--type-display); font-weight: 700; font-size: 19px; min-width: 80px; text-align: right; }
.cart-remove { background: transparent; color: var(--ink-dim); border: 0; font-size: 22px; padding: 0 6px; border-radius: 8px; }
.cart-remove:hover { color: #d23b4e; }
.clear-btn {
  margin-top: 20px;
  background: #fff; color: var(--ink-soft); border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  width: fit-content;
}
.clear-btn:hover { color: #d23b4e; border-color: #d23b4e; }

.cart-summary {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  align-self: start;
  position: sticky; top: 100px;
  box-shadow: var(--shadow-sm);
}
.cart-summary h3 { font-family: var(--type-display); font-size: 20px; font-weight: 700; margin: 0 0 18px; }
.sum-line { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14.5px; color: var(--ink-soft); }
.sum-line strong { color: var(--ink); }
.sum-divider { height: 1px; background: var(--border); margin: 10px 0; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.sum-total span { font-size: 13px; font-weight: 700; color: var(--ink-dim); }
.sum-total strong { font-family: var(--type-display); font-size: 32px; font-weight: 700; }
.sum-note { font-size: 12.5px; color: var(--green); font-weight: 700; margin-bottom: 16px; }
.checkout { margin-top: 12px; }
.sum-fine { font-size: 12px; color: var(--ink-dim); line-height: 1.6; margin-top: 14px; }

/* ── INFO PAGES ─────────────────────────────────── */
.info-page { max-width: 1440px; margin: 0 auto; padding: 56px 32px 88px; }
.info-head { margin-bottom: 44px; max-width: 720px; }
.info-eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.info-title { font-family: var(--type-display); font-size: clamp(34px, 4vw, 52px); font-weight: 700; letter-spacing: -0.025em; margin: 0 0 14px; }
.info-head p { font-size: 17px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-cell {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.info-cell.dark { background: var(--navy); color: #d6e0f0; border-color: var(--navy); }
.info-cell.dark h3 { color: #ffffff; }
.info-cell h3 { font-family: var(--type-display); font-size: 19px; font-weight: 700; margin: 0 0 10px; }
.info-cell p { font-size: 14.5px; line-height: 1.65; margin: 0; }
.empty-page { padding: 140px 32px; text-align: center; color: var(--ink-soft); max-width: 1440px; margin: 0 auto; }
.empty-page a { color: var(--accent); font-weight: 700; }

/* ── AMBIENT FIELD ─────────────────────────────────── */
.ambient-field {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
}
.ambient-item { position: absolute; }

/* ── 3D KEYFRAMES ─────────────────────────────────── */
@keyframes spin3d { from { transform: rotateX(20deg) rotateY(0deg); } to { transform: rotateX(20deg) rotateY(360deg); } }
@keyframes vialFloat { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-7px); } }
@keyframes helixSpin { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
@keyframes rungSpin { from { transform: rotateY(0deg); } to { transform: rotateY(-360deg); } }

/* PHOTO VIAL */
.photo-vial {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 14px 22px rgba(12, 27, 51, 0.18));
  user-select: none;
}
.photo-vial img { width: 100%; height: 100%; display: block; pointer-events: none; }
.pv-name {
  position: absolute; top: 64.6%; left: 50.5%;
  transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif; font-weight: 600;
  color: #1d2530;
  white-space: nowrap; letter-spacing: 0.01em;
  line-height: 1;
}
.pv-mass {
  position: absolute; top: 72.9%; left: 50.5%;
  transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif; font-weight: 600;
  color: #1d2530;
  border: 0.12em solid #1d2530;
  border-radius: 0.45em;
  padding: 0.12em 0.6em;
  white-space: nowrap;
  line-height: 1.2;
}

.vial-wrap {
  display: inline-block;
  animation-name: vialFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: var(--vial-speed, 8s);
  filter: drop-shadow(0 14px 22px rgba(12,27,51,0.16));
}
.cube-scene { perspective: 600px; display: inline-block; }
.cube-body { position: relative; transform-style: preserve-3d; animation: spin3d linear infinite; }
.cube-face { position: absolute; }

/* CHECKOUT */
.checkout-page { max-width: 1440px; margin: 0 auto; padding: 56px 32px 88px; min-height: 60vh; }
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.checkout-form { display: grid; gap: 22px; }
.form-block {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.form-block h3 { font-family: var(--type-display); font-size: 19px; font-weight: 700; margin: 0 0 18px; }
.form-hint { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: -8px 0 18px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; grid-column: span 2; }
.field.span2 { grid-column: span 4; }
.field.half { grid-column: span 1; }
.field span { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim); }
.field input {
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--type-body);
  font-size: 14.5px; font-weight: 600;
  color: var(--ink);
  background: #ffffff;
  min-width: 0;
}
.field input::placeholder { color: var(--ink-dim); font-weight: 500; }
.field input:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }

.method-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; }
.method-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px; row-gap: 2px;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--type-body);
}
.method-card:hover { border-color: var(--border-strong); }
.method-card.on { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 3px var(--accent-glow); }
.method-radio {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  grid-row: 1;
}
.method-card.on .method-radio { border-color: var(--accent); background: radial-gradient(circle, var(--accent) 0 45%, transparent 50%); }
.method-field { max-width: 420px; }
.method-select {
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--type-body);
  font-size: 14.5px; font-weight: 600;
  color: var(--ink);
  background: #ffffff;
  cursor: pointer;
}
.method-select:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.method-label { font-weight: 800; font-size: 14.5px; color: var(--ink); grid-row: 1; }
.method-desc { grid-column: 2; font-size: 12px; color: var(--ink-dim); font-weight: 600; }
.checkout-lines .sum-line span { display: flex; flex-direction: column; }
.line-variant { font-style: normal; font-size: 12px; color: var(--ink-dim); }
.btn.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* Confirmation */
.confirm-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.confirm-steps { display: grid; gap: 18px; }
.confirm-step {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--accent); color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--type-display); font-weight: 700; font-size: 17px;
}
.confirm-step h3 { font-family: var(--type-display); font-size: 18px; font-weight: 700; margin: 6px 0 8px; }
.confirm-step p { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 14px; }
.confirm-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.confirm-email-note { font-size: 13px; color: var(--ink-dim); font-weight: 600; }
.pay-box {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-2);
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.pay-handle { font-size: 14.5px; font-weight: 700; color: var(--ink); word-break: break-all; flex: 1; }
.copy-btn {
  background: var(--accent); color: #fff; border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12.5px; font-weight: 700;
  flex: none;
}
.copy-btn:hover { background: var(--accent-deep); }
.pay-note { font-size: 12.5px; font-weight: 700; color: #b45309; background: #fef3c7; border-radius: 8px; padding: 8px 12px; margin-bottom: 10px; display: inline-block; }
.pay-ref { font-size: 13.5px; color: var(--ink-soft); }
.order-receipt {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  font-family: var(--type-mono);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 420px;
  overflow: auto;
  margin: 0 0 14px;
}

@media (max-width: 1100px) {
  .checkout-grid, .confirm-grid { grid-template-columns: 1fr; }
  .checkout-page { padding: 40px 20px 64px; }
}

/* AGE GATE */
.age-gate {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(11, 28, 51, 0.78);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.age-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
  padding: 44px 40px;
  text-align: center;
  animation: ageIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes ageIn { from { opacity: 0; transform: translateY(18px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.age-logo { width: 168px; height: 168px; border-radius: 18px; object-fit: cover; margin: 0 auto 22px; display: block; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3); }
.age-brand { font-family: var(--type-display); font-weight: 700; font-size: 22px; margin-bottom: 26px; }
.age-llc { font-family: var(--type-mono); font-size: 10px; color: var(--ink-dim); letter-spacing: 0.18em; }
.age-card h2 { font-family: var(--type-display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
.age-card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 26px; }
.age-actions { display: flex; flex-direction: column; gap: 10px; }
.age-actions .btn { width: 100%; }
.age-fine { margin-top: 18px; font-size: 12px; line-height: 1.55; color: var(--ink-dim); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .header-inner .nav { display: none; }
  .utility-inner { padding: 8px 20px; }
  .hero-split-inner { grid-template-columns: 1fr; padding: 48px 20px 56px; }
  .hero-visual { min-height: 340px; }
  .section { padding: 64px 20px; }
  .news-inner { grid-template-columns: 1fr; padding: 40px 28px; }
  .product-hero { grid-template-columns: 1fr; padding: 24px 20px 56px; }
  .cart-grid { grid-template-columns: 1fr; }
  .stats-strip { padding: 36px 28px; }
  .shop-head, .product-tabs, .info-page, .cart-page, .crumbs { padding-left: 20px; padding-right: 20px; }
  .shop-controls { padding: 12px 20px; top: 65px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cart-row { grid-template-columns: 64px 1fr auto; gap: 14px; }
  .cart-row .cart-qty, .cart-row .cart-price { grid-column: 2 / 4; }
  .info-grid { grid-template-columns: 1fr; }
  .spec-table { grid-template-columns: 1fr; }
  .coa { grid-template-columns: 1fr; }
}

/* ── Real-link conversions ──────────────────────────────────────────────
   Cards and filter chips became real <a> elements so crawlers can follow
   them. These rules keep them looking exactly as they did as <div>/<button>. */

/* Stretched link: the anchor sits on the product name but its ::after
   covers the whole card, so the entire card stays clickable. The Add to
   Cart button is lifted above it so it still receives its own clicks. */
.card-link { text-decoration: none; color: inherit; display: block; }
.card-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.product-card .add-btn { position: relative; z-index: 2; }
.product-card:focus-within { border-color: var(--accent); }

.cat-card { display: block; text-decoration: none; color: inherit; }

.cat-btn { display: inline-block; text-decoration: none; cursor: pointer; }
.cat-btn.on { color: #fff; }

/* ── Checkout submit states ─────────────────────────────────────────────── */
/* Honeypot: off-screen rather than display:none — some bots skip hidden
   inputs, but nearly all fill a field they can "see" in the DOM. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.sum-error {
  margin-top: 10px; padding: 10px 12px;
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px;
  color: #b91c1c; font-size: 13px; font-weight: 600;
}
.confirm-alert {
  margin: 0 auto 22px; max-width: 1180px;
  padding: 14px 18px;
  background: #fffbeb; border: 1px solid #fde68a; border-left: 3px solid #f59e0b;
  border-radius: 10px; font-size: 14.5px; line-height: 1.6; color: #78350f;
}
.confirm-alert-reason { opacity: 0.75; font-size: 13px; }
