/* =========================================================================
   NASHPEPS — design system
   Palette: black · charcoal grey · dark gold · white
   ========================================================================= */

:root {
  --black: #08080a;
  --ink: #0d0d10;
  --panel: #131318;
  --panel-2: #191920;
  --panel-3: #202029;
  --line: #2a2a34;
  --line-2: #37374410;

  --grey: #797986;
  --grey-2: #a3a3b0;
  --grey-3: #cfcfd8;
  --white: #f6f6f8;

  /* Darker, more metallic gold. --gold-metal is the polished-metal gradient:
     alternating dark and specular bands are what make it read as metal rather
     than as a flat yellow. */
  --gold: #9c7c1a;
  --gold-lo: #4f3d09;
  --gold-hi: #d3b45f;
  --gold-glow: rgba(156, 124, 26, 0.16);

  --gold-metal: linear-gradient(160deg,
      #5c470c 0%, #8a6d17 12%, #c4a44a 26%, #e3cd8b 36%,
      #a8871f 50%, #5c470c 64%, #9c7c1a 78%, #cdb15c 90%, #5c470c 100%);
  --gold-metal-h: linear-gradient(100deg,
      #6b5310 0%, #a8871f 14%, #dcc379 30%, #9c7c1a 48%,
      #5c470c 62%, #b3901f 80%, #d3b45f 92%, #6b5310 100%);

  --ok: #4ea87b;
  --warn: #d08a3a;

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;

  --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 12px 32px -12px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 0 0 1px rgba(201, 162, 39, 0.35), 0 16px 40px -16px rgba(201, 162, 39, 0.35);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  --max: 1280px;
  --gut: 24px;
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--grey-3);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

::selection { background: var(--gold); color: var(--black); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 3px; }

/* ---- type ---------------------------------------------------------- */
h1, h2, h3, h4 { color: var(--white); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.muted { color: var(--grey); }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; }

.gold-text {
  background: var(--gold-metal-h);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- layout -------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(48px, 8vw, 92px); }
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; gap: 12px; }
.spread { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent); border: 0; }

/* =========================================================================
   PROMO BAR + HEADER
   ========================================================================= */
.promo {
  background: linear-gradient(90deg, #17130a, #241d0c 50%, #17130a);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
  text-align: center;
  padding: 9px var(--gut);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--gold-hi);
}
.promo b { color: var(--white); font-weight: 600; }
.promo .sep { color: var(--gold-lo); margin-inline: 10px; }
.promo .sub { color: var(--grey); }

.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap { height: var(--nav-h); display: flex; align-items: center; gap: 28px; }

.brand { display: flex; align-items: baseline; gap: 9px; flex-shrink: 0; }
.brand .mark {
  font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--gold-metal-h);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand .ruo {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey); border-left: 1px solid var(--line); padding-left: 9px;
}

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  padding: 8px 13px; border-radius: var(--r-sm); font-size: 13.5px; color: var(--grey-2);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--white); background: var(--panel-2); }
.nav a.on { color: var(--gold-hi); }

.head-tools { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--r-sm); color: var(--grey-2);
  transition: border-color .15s, color .15s, background .15s;
}
.icon-btn:hover { color: var(--gold-hi); border-color: var(--gold-lo); background: var(--panel-2); }
.icon-btn svg { width: 17px; height: 17px; }

.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold); color: var(--black); font-size: 10.5px; font-weight: 700;
  border-radius: 9px; display: grid; place-items: center; line-height: 1;
}
.cart-count[hidden] { display: none; }

.burger { display: none; }

/* ---- mobile nav ---------------------------------------------------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--black);
  padding: 24px var(--gut); display: none; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 15px 4px; font-size: 19px; color: var(--grey-3);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--gold-hi); }
.mobile-nav .close { align-self: flex-end; margin-bottom: 12px; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--r-sm); font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.02em; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s, box-shadow .18s, background .18s, border-color .18s, color .18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 16px; height: 16px; }

.btn-gold {
  background: var(--gold-metal);
  color: #12100a; text-shadow: 0 1px 0 rgba(255, 244, 214, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.35),
              inset 0 -1px 0 rgba(0, 0, 0, 0.35),
              0 8px 22px -12px rgba(120, 95, 20, 0.95);
}
.btn-gold:hover { filter: brightness(1.12) saturate(1.05); }

.btn-ghost { border-color: var(--line); color: var(--grey-3); background: var(--panel); }
.btn-ghost:hover { border-color: var(--gold-lo); color: var(--gold-hi); }

.btn-line { border-color: var(--gold-lo); color: var(--gold-hi); }
.btn-line:hover { background: var(--gold-glow); }

.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: ''; position: absolute; inset: -30% -10% auto; height: 620px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.16), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000, transparent 72%);
}
/* Ambient peptide-chain field. Sits above the radial glow and below the grid
   and content. `contain` keeps its repaints from touching the rest of the page. */
#hero-fx {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none; display: block;
  contain: strict;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero .wrap { position: relative; z-index: 2; padding-block: clamp(56px, 9vw, 108px); }

.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { margin: 18px 0 20px; }
.hero p.lede { font-size: clamp(15px, 1.6vw, 17.5px); color: var(--grey-2); max-width: 52ch; }
.hero .cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .stat .n {
  font-family: var(--serif); font-size: 34px; line-height: 1; color: var(--gold-hi); font-weight: 600;
}
.hero-stats .stat .l {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-top: 7px;
}

.hero-art { position: relative; display: grid; place-items: center; min-height: 340px; }
.hero-art .halo {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 66%);
  filter: blur(12px);
}
/* ---- animated hero showcase ---------------------------------------- */
/* No hard circle: the photographs already sit on black, so the frame is
   dissolved with a soft elliptical mask and the vial appears to float on the
   page. The ellipse is taller than wide because the vial is. */
/* The mask stays on a element that never moves. Animating a masked element
   forces the mask to be re-applied every frame; floating the inner stage
   instead keeps the whole thing on the compositor. */
.hero-art .showcase {
  position: relative; width: 340px; aspect-ratio: 1 / 1; overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 44% 56% at 50% 49%, #000 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 44% 56% at 50% 49%, #000 60%, transparent 100%);
}
.hero-art .stage {
  position: absolute; inset: 0;
  animation: float 7s ease-in-out infinite;
  will-change: transform;
}

.hero-art .slide {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(16px) scale(.94);
  transition: opacity .85s cubic-bezier(.2,.7,.3,1), transform .85s cubic-bezier(.2,.7,.3,1);
}
.hero-art .slide.on { opacity: 1; transform: none; }
.hero-art .slide .vial { width: 100%; height: 100%; }
.hero-art .slide .vial > img { filter: brightness(1.22) contrast(1.04) saturate(1.04); }

/* specular bar travelling across the glass */
.hero-art .sweep {
  position: absolute; inset: -40% -60%; pointer-events: none;
  background: linear-gradient(105deg, transparent 42%,
              rgba(232,205,122,.16) 48%, rgba(255,246,214,.30) 50%,
              rgba(232,205,122,.16) 52%, transparent 58%);
  animation: sweep 5.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes sweep {
  0%, 62%  { transform: translateX(-58%); }
  92%, 100%{ transform: translateX(58%); }
}
.hero-art .ring.r1 { animation: spin 34s linear infinite; }
.hero-art .ring.r2 { animation: spin 52s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.showcase-cap { margin-top: 26px; text-align: center; min-height: 46px; }
.showcase-cap .c-name {
  display: block; font-size: 19px; font-weight: 600; color: var(--white); letter-spacing: -.01em;
}
.showcase-cap .c-meta {
  display: block; margin-top: 4px; font-family: var(--mono);
  font-size: 12px; color: var(--gold-hi);
}

/* Fixed-width slot with an inner bar that scales — animating `width` would
   force a layout pass on every frame of the transition. */
.showcase-dots { display: flex; gap: 7px; justify-content: center; margin-top: 16px; }
.showcase-dots .dot {
  width: 20px; height: 8px; background: none; position: relative;
}
.showcase-dots .dot::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 6.5px; right: 6.5px;
  border-radius: 3.5px; background: var(--line);
  transform-origin: 50% 50%;
  transition: background .3s ease, transform .3s cubic-bezier(.2,.7,.3,1);
}
.showcase-dots .dot:hover::before { background: var(--gold-lo); }
.showcase-dots .dot.on::before { background: var(--gold); transform: scaleX(2.86); }
/* One brighter arc per ring — without it a rotating circle looks static. */
.hero-art .ring {
  position: absolute; border: 1px solid rgba(156,124,26,.16); border-radius: 50%;
}
.hero-art .ring.r1 { border-top-color: rgba(232,205,122,.55); }
.hero-art .ring.r2 { border-right-color: rgba(232,205,122,.34); }
.hero-art .ring.r1 { width: 300px; height: 300px; }
.hero-art .ring.r2 { width: 400px; height: 400px; border-color: rgba(201,162,39,.1); }

/* ---- trust strip ---------------------------------------------------- */
.trust { border-bottom: 1px solid var(--line); background: var(--ink); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.trust .item {
  background: var(--ink); padding: 22px 20px; display: flex; gap: 13px; align-items: flex-start;
}
.trust .item svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.trust .item b { display: block; color: var(--white); font-size: 13.5px; font-weight: 600; }
.trust .item span { font-size: 12.5px; color: var(--grey); }

/* =========================================================================
   VIAL + PRINTED WRAP LABEL
   The label is drawn edge-to-edge across the glass and carries its own
   cylinder shading, so it reads as a printed wrap rather than a flat decal.
   ========================================================================= */
.vial { position: relative; width: 100%; height: 100%; }
.vial > img { width: 100%; height: 100%; object-fit: cover; display: block; }

.vial-label { position: absolute; pointer-events: none; }
/* overflow visible lets the shape bleed a few units past the box so no sliver
   of the original blank label can show at the edges */
.vial-label svg { width: 100%; height: 100%; display: block; overflow: visible; }
.vial-label text { font-family: var(--sans); }

.vl-brand { font-weight: 800; letter-spacing: .2em; }
.vl-name { font-weight: 700; letter-spacing: .01em; }
.vl-chip { font-weight: 700; letter-spacing: .06em; }
.vl-micro { font-weight: 500; letter-spacing: .07em; }

/* =========================================================================
   PRODUCT CARDS
   ========================================================================= */
/* Flex rather than grid: a partial last row (e.g. GHK-Cu + GLOW) centres in the
   page instead of hanging off the left edge. `max-width` stops those trailing
   cards from stretching to fill the row. */
.grid {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
}

/* `.card` sets display:flex, which would otherwise beat the [hidden] default */
.card[hidden] { display: none; }

.card.is-entering { animation: card-in .32s cubic-bezier(.2,.7,.3,1) both; }
@keyframes card-in {
  from { opacity: 0; transform: translateY(8px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.card {
  flex: 1 1 248px; max-width: 306px; min-width: 0;
  /* Keeps a card's internal layout from being recomputed when the grid
     reorders. Measured: `content-visibility: auto` was tried here and made
     every metric worse (scroll worst frame 8ms → 91ms) because 17 expensive
     cards churn in and out of the skip state — it suits long lists of cheap
     rows, not this. */
  contain: layout style;
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--panel), var(--ink));
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover { border-color: rgba(201,162,39,.42); transform: translateY(-3px); box-shadow: var(--shadow); }

.card .thumb {
  position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center;
  background: radial-gradient(ellipse at 50% 110%, rgba(156,124,26,.12), transparent 60%), #000;
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.card .thumb .vial { transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.card:hover .thumb .vial { transform: scale(1.055); }

.badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; z-index: 2; }
.badge {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 3px; line-height: 1;
}
.badge.gold {
  background: var(--gold-metal); color: #12100a;
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.badge.dark { background: rgba(8,8,10,.82); color: var(--grey-2); border: 1px solid var(--line); }
.badge.sale { background: #7d2b2b; color: #ffdede; }

.card .body { padding: 15px 16px 17px; display: flex; flex-direction: column; flex: 1; gap: 4px; }
.card .cat { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-lo); }
.card h3 { font-size: 16px; }
.card .sub { font-size: 12px; color: var(--grey); line-height: 1.4; min-height: 34px; }

.card .sizes { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.card .sizes span {
  font-size: 10.5px; font-family: var(--mono); color: var(--grey-2);
  border: 1px solid var(--line); border-radius: 3px; padding: 3px 6px; background: var(--panel-2);
}
.card .sizes span.more { color: var(--gold-lo); border-color: transparent; background: none; }

.card .foot {
  margin-top: auto; padding-top: 14px; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 10px;
}
.price { display: flex; align-items: baseline; gap: 7px; }
.price .now { font-size: 17px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.price .was { font-size: 12.5px; color: var(--grey); text-decoration: line-through; }
.price .from { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }

.card .add {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: var(--panel-2); color: var(--grey-3);
  padding: 8px 14px; border-radius: var(--r-sm); font-size: 12.5px; font-weight: 600;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
  white-space: nowrap;
}
.card .add:hover { background: var(--gold); border-color: var(--gold); color: #17130a; }

/* =========================================================================
   SHOP TOOLBAR
   ========================================================================= */
.page-head { border-bottom: 1px solid var(--line); background: var(--ink); position: relative; overflow: hidden; }
.page-head::before {
  content: ''; position: absolute; inset: -60% -20% auto; height: 300px;
  background: radial-gradient(ellipse at 50% 0, rgba(201,162,39,.13), transparent 65%);
}
.page-head .wrap { position: relative; padding-block: clamp(34px, 5vw, 58px); }
.page-head h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-top: 12px; }
.page-head p { color: var(--grey-2); max-width: 58ch; margin-top: 12px; }

.crumbs { font-size: 12px; color: var(--grey); }
.crumbs a:hover { color: var(--gold-hi); }
.crumbs .sep { margin-inline: 7px; color: var(--line); }

.toolbar {
  position: sticky; top: var(--nav-h); z-index: 40;
  /* Opaque, not blurred: this sticks directly beneath the already-blurred
     header, and two stacked backdrop-filters is the most reliable way to
     drop frames while scrolling on a mid-range phone. */
  background: #0b0b0e;
  border-bottom: 1px solid var(--line);
}
.toolbar .wrap { padding-block: 13px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.chips { display: flex; gap: 7px; flex-wrap: wrap; }
.chip {
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 100px; background: var(--panel);
  font-size: 12.5px; color: var(--grey-2); white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.chip:hover { border-color: var(--gold-lo); color: var(--white); }
.chip.on { background: var(--gold); border-color: var(--gold); color: #17130a; font-weight: 600; }

.search {
  position: relative; margin-left: auto; display: flex; align-items: center;
}
.search svg { position: absolute; left: 11px; width: 15px; height: 15px; color: var(--grey); }
.search input {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 9px 12px 9px 34px; width: 240px; font-size: 13px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
/* Fixed width — growing the field on focus animated `width`, i.e. a layout pass
   per frame, for a flourish nobody asked for. */
.search input:focus {
  outline: none; border-color: var(--gold-lo);
  box-shadow: 0 0 0 3px rgba(156,124,26,.12);
}
.search input::placeholder { color: var(--grey); }

.sel {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 9px 30px 9px 12px; font-size: 13px; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23797986' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 9px center; background-size: 15px;
}
.sel:focus { outline: none; border-color: var(--gold-lo); }

.result-line { font-size: 12.5px; color: var(--grey); padding-bottom: 20px; }
.result-line b { color: var(--white); }

.empty { text-align: center; padding: 70px 20px; color: var(--grey); }
.empty h3 { margin-bottom: 8px; }

/* =========================================================================
   PRODUCT DETAIL
   ========================================================================= */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }

.pdp-media {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: #000;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; aspect-ratio: 1 / 1;
}
.pdp-media .vial { width: 100%; height: 100%; }

.pdp h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 10px 0 8px; }
.pdp .sub { color: var(--grey-2); font-size: 15px; }
.pdp .blurb { margin-top: 20px; color: var(--grey-2); line-height: 1.72; }

.pdp .price-row { display: flex; align-items: baseline; gap: 12px; margin: 26px 0 4px; }
.pdp .price-row .now { font-size: 32px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.pdp .price-row .per { font-size: 13px; color: var(--grey); }

.opt-label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey);
  margin: 24px 0 10px; display: block;
}
.variants { display: flex; flex-wrap: wrap; gap: 8px; }
.variants button {
  border: 1px solid var(--line); background: var(--panel); border-radius: var(--r-sm);
  padding: 11px 16px; font-size: 13px; color: var(--grey-2); text-align: left;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.variants button:hover { border-color: var(--gold-lo); color: var(--white); }
.variants button.on {
  border-color: var(--gold); background: var(--gold-glow); color: var(--gold-hi); font-weight: 600;
}
.variants button .p { display: block; font-size: 11.5px; color: var(--grey); margin-top: 2px; }
.variants button.on .p { color: var(--gold); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--panel); }
.qty button { width: 40px; height: 44px; color: var(--grey-2); font-size: 18px; transition: color .15s; }
.qty button:hover { color: var(--gold-hi); }
.qty input {
  width: 46px; height: 44px; text-align: center; background: none; border: 0;
  font-weight: 600; color: var(--white); -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.buy-row { display: flex; gap: 10px; margin-top: 12px; }
.buy-row .btn-gold { flex: 1; height: 46px; }

.specs { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 30px; }
.specs .r { display: flex; justify-content: space-between; gap: 16px; padding: 11px 15px; font-size: 13px; }
.specs .r:nth-child(odd) { background: var(--panel); }
.specs .r span { color: var(--grey); }
.specs .r b { color: var(--grey-3); font-weight: 500; font-family: var(--mono); font-size: 12px; text-align: right; word-break: break-word; }

.notes { margin-top: 26px; }
.notes li {
  list-style: none; padding-left: 22px; position: relative; margin-bottom: 9px;
  font-size: 13.5px; color: var(--grey-2);
}
.notes li::before {
  content: ''; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}

.ruo-box {
  margin-top: 28px; border: 1px solid rgba(208, 138, 58, .3); background: rgba(208, 138, 58, .06);
  border-radius: var(--r); padding: 15px 17px; font-size: 12.5px; color: var(--grey-2); line-height: 1.65;
}
.ruo-box b { color: var(--warn); display: block; margin-bottom: 5px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }

/* ---- product detail: about + COA ------------------------------------ */
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }

.coa-card {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px;
  background: linear-gradient(180deg, var(--panel), var(--ink));
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.coa-head { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 18px; }
.coa-head svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.coa-head h3 { font-size: 15.5px; }
.coa-head span { font-size: 12.5px; color: var(--grey); }

.coa-view { display: block; position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.coa-view img { width: 100%; background: #fff; }
.coa-zoom {
  position: absolute; inset: auto 0 0; padding: 10px 12px; font-size: 12px; font-weight: 600;
  background: linear-gradient(transparent, rgba(0,0,0,.88)); color: var(--gold-hi);
}

.coa-pending {
  border: 1px dashed var(--line); border-radius: var(--r); padding: 22px 18px; text-align: center;
  background: rgba(156,124,26,.04);
}
.coa-pending svg { width: 24px; height: 24px; color: var(--gold-lo); margin-bottom: 10px; }
.coa-pending b { display: block; color: var(--white); font-size: 14px; margin-bottom: 7px; }
.coa-pending p { font-size: 12.5px; color: var(--grey); line-height: 1.65; }
.coa-pending .mono { color: var(--gold-hi); white-space: nowrap; }

.coa-rows { margin-top: 18px; border-top: 1px solid var(--line); }
.coa-rows .r { display: flex; justify-content: space-between; padding: 10px 0; font-size: 13px; border-bottom: 1px solid var(--line); }
.coa-rows .r span { color: var(--grey); }
.coa-rows .r b { color: var(--grey-3); font-weight: 500; }
.coa-rows .r b.pass { color: var(--ok); font-family: var(--mono); font-size: 12.5px; }

/* =========================================================================
   CART
   ========================================================================= */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 34px; align-items: start; }

.cart-list { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.cart-row { display: grid; grid-template-columns: 84px 1fr auto; gap: 16px; padding: 16px; align-items: center; }
.cart-row + .cart-row { border-top: 1px solid var(--line); }
.cart-row .ci-img {
  background: #000; border: 1px solid var(--line); border-radius: var(--r-sm);
  height: 84px; overflow: hidden;
}
/* At 84px the printed strength is unreadable, so hide it rather than render mush. */
.cart-row .ci-img .vial-label { display: none; }
.cart-row h4 { color: var(--white); font-size: 14.5px; font-weight: 600; }
.cart-row .v { font-size: 12.5px; color: var(--grey); margin-top: 2px; }
.cart-row .rm { font-size: 12px; color: var(--grey); margin-top: 7px; transition: color .15s; }
.cart-row .rm:hover { color: #d97b7b; }
.cart-row .ci-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.cart-row .ci-price { font-weight: 700; color: var(--white); }

.summary {
  border: 1px solid var(--line); border-radius: var(--r); padding: 22px;
  background: linear-gradient(180deg, var(--panel), var(--ink));
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.summary h3 { margin-bottom: 16px; }
.summary .s-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 7px 0; }
.summary .s-row span { color: var(--grey); }
.summary .s-row b { color: var(--grey-3); font-weight: 500; }
.summary .total { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 15px; }
.summary .total span { color: var(--white); font-size: 15px; }
.summary .total b { color: var(--gold-hi); font-size: 21px; font-weight: 700; }

.ship-meter { margin: 14px 0 4px; }
.ship-meter .bar { height: 4px; background: var(--panel-3); border-radius: 3px; overflow: hidden; }
.ship-meter .bar i {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi));
  transform-origin: 0 50%;                 /* scaleX, not width — no reflow */
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.ship-meter p { font-size: 11.5px; color: var(--grey); margin-top: 7px; }
.ship-meter p b { color: var(--gold-hi); }

/* =========================================================================
   CONTENT PAGES
   ========================================================================= */
.prose { max-width: 74ch; }
.prose h2 { margin: 40px 0 14px; font-size: 1.4rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 14px; color: var(--grey-2); }
.prose ul { margin: 0 0 16px 20px; color: var(--grey-2); }
.prose li { margin-bottom: 7px; }
.prose strong { color: var(--white); font-weight: 600; }
.prose a { color: var(--gold-hi); border-bottom: 1px solid var(--gold-lo); }

.panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.panel {
  border: 1px solid var(--line); border-radius: var(--r); padding: 22px;
  background: linear-gradient(180deg, var(--panel), var(--ink));
}
.panel svg { width: 22px; height: 22px; color: var(--gold); margin-bottom: 12px; }
.panel h3 { margin-bottom: 8px; font-size: 15.5px; }
.panel p { font-size: 13.5px; color: var(--grey); }

.acc { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.acc details + details { border-top: 1px solid var(--line); }
.acc summary {
  padding: 16px 18px; cursor: pointer; color: var(--white); font-weight: 500; font-size: 14.5px;
  list-style: none; display: flex; justify-content: space-between; gap: 16px; transition: background .15s;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { background: var(--panel); }
.acc summary::after { content: '+'; color: var(--gold); font-size: 19px; line-height: 1; flex-shrink: 0; }
.acc details[open] summary::after { content: '−'; }
.acc details[open] summary { background: var(--panel); }
.acc .ans { padding: 0 18px 18px; font-size: 13.5px; color: var(--grey-2); line-height: 1.7; }

.coa-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.coa-table th {
  text-align: left; padding: 12px 14px; font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--grey); border-bottom: 1px solid var(--line); font-weight: 600;
}
.coa-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); color: var(--grey-2); }
.coa-table tr:hover td { background: var(--panel); }
.coa-table td.name { color: var(--white); font-weight: 500; }
.coa-table td.pur { color: var(--ok); font-family: var(--mono); font-size: 12.5px; }
.coa-table td.lot { font-family: var(--mono); font-size: 12px; color: var(--grey); }
.coa-table .dl { color: var(--gold-hi); font-size: 12.5px; }
.coa-table .dl:hover { text-decoration: underline; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-foot { border-top: 1px solid var(--line); background: var(--ink); margin-top: 40px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-block: 52px; }
.foot-top .brand { margin-bottom: 14px; }
.foot-top p { font-size: 13px; color: var(--grey); max-width: 34ch; }
.foot-col h4 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.foot-col a, .foot-col li { display: block; font-size: 13px; color: var(--grey); padding: 5px 0; list-style: none; }
.foot-col a:hover { color: var(--gold-hi); }

.disclaimer {
  border-top: 1px solid var(--line); padding-block: 26px;
  font-size: 11.5px; color: var(--grey); line-height: 1.75;
}
.disclaimer strong { color: var(--grey-2); }
.foot-bottom {
  border-top: 1px solid var(--line); padding-block: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--grey);
}

/* ---- order confirmation --------------------------------------------- */
.success-mark {
  width: 74px; height: 74px; margin: 0 auto; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-metal);
  box-shadow: inset 0 1px 0 rgba(255,240,200,.4), 0 14px 34px -14px rgba(156,124,26,.9);
}
.success-mark svg { width: 34px; height: 34px; color: #12100a; }

/* =========================================================================
   AGE GATE + TOAST
   ========================================================================= */
.gate {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(4, 4, 6, .93); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 20px;
}
.gate .box {
  max-width: 440px; width: 100%; text-align: center; padding: 40px 32px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--ink));
  box-shadow: var(--shadow);
}
.gate .mark { font-family: var(--serif); font-size: 34px; font-weight: 700; letter-spacing: .05em; }
.gate h2 { font-size: 1.35rem; margin: 22px 0 12px; }
.gate p { font-size: 13.5px; color: var(--grey); line-height: 1.7; }
.gate .btns { display: flex; gap: 10px; margin-top: 26px; }
.gate .btns .btn { flex: 1; }
.gate .fine { font-size: 11px; color: var(--grey); margin-top: 20px; }

.toast {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  display: flex; align-items: center; gap: 11px; padding: 13px 18px;
  background: var(--panel-2); border: 1px solid var(--gold-lo); border-radius: var(--r);
  box-shadow: var(--shadow); font-size: 13.5px; color: var(--white);
  transform: translateY(140%); opacity: 0; transition: transform .3s cubic-bezier(.2,.8,.3,1), opacity .3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 17px; height: 17px; color: var(--gold-hi); }
.toast a { color: var(--gold-hi); border-bottom: 1px solid var(--gold-lo); margin-left: 4px; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { order: -1; min-height: 240px; }
  .hero-art .showcase { width: 210px; }
  .hero-art .ring.r1 { width: 260px; height: 260px; }
  .hero-art .ring.r2 { width: 330px; height: 330px; }
  .pdp { grid-template-columns: 1fr; gap: 30px; }
  .pdp-media { position: static; max-width: 460px; margin-inline: auto; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .coa-card { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .trust .wrap { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  :root { --gut: 16px; }
  .nav { display: none; }
  .burger { display: grid; }
  .search { margin-left: 0; width: 100%; order: 3; }
  .search input, .search input:focus { width: 100%; }
  .toolbar .wrap { gap: 10px; }
  .chips { order: 2; overflow-x: auto; flex-wrap: nowrap; width: 100%; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .sel { order: 1; margin-left: auto; }
  .grid { gap: 12px; }
  .card { flex: 1 1 150px; max-width: calc(50% - 6px); }
  .card .sub { min-height: 0; }
  .card .foot { flex-direction: column; align-items: stretch; gap: 9px; }
  .card .add { width: 100%; }
  .trust .wrap { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 64px 1fr; }
  .cart-row .ci-img { height: 64px; }
  .cart-row .ci-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .hero-stats { gap: 22px; }
  .toast { left: 16px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
