/* ==========================================================================
   KMSAG — Premium Botanical design system
   Vanilla CSS, no framework. Drops into ASP.NET wwwroot/css/kmsag.css.
   Brand: forest green + cream + brass. Fraunces (display) + Inter (body).
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap");

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --forest:        #14352A;
  --forest-800:    #1B3E31;
  --forest-700:    #235140;
  --forest-600:    #2E6650;
  --forest-500:    #3B7C63;
  --cream:         #F5EFE3;
  --cream-soft:    #FBF7EF;
  --cream-deep:    #ECE2CF;
  --brass:         #C9A24B;
  --brass-strong:  #B4893A;
  --brass-soft:    rgba(201, 162, 75, 0.16);
  --ink:           #1B2426;
  --ink-muted:     #55635C;
  --ink-faint:     #869089;
  --paper:         #FFFFFF;
  --line:          rgba(20, 53, 42, 0.12);
  --line-soft:     rgba(20, 53, 42, 0.07);
  --danger:        #B4432F;
  --leaf:          #5C7A38; /* darkened for AA contrast on light surfaces */

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(20, 32, 26, 0.06);
  --shadow-md: 0 14px 34px rgba(20, 32, 26, 0.10);
  --shadow-lg: 0 30px 60px rgba(15, 28, 22, 0.18);
  --shadow-brass: 0 12px 26px rgba(180, 137, 58, 0.30);

  /* Type */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(18px, 5vw, 56px);
  --header-h: 68px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset / base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--forest);
}

p { margin: 0; }

::selection { background: var(--brass); color: #fff; }

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

/* ── Layout helpers ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--brass);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-top: 0.5rem;
}
.section-sub {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.text-cream { color: var(--cream); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--cream-soft); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.95em 1.6em;
  border-radius: var(--r-pill);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brass); color: #23180a; box-shadow: var(--shadow-brass); }
.btn-primary:hover { background: var(--brass-strong); transform: translateY(-2px); }
.btn-dark { background: var(--forest); color: var(--cream-soft); }
.btn-dark:hover { background: var(--forest-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--forest); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--forest); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--cream-soft); box-shadow: inset 0 0 0 1.5px rgba(245,239,227,0.4); }
.btn-ghost-light:hover { background: rgba(245,239,227,0.08); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1em 2em; font-size: 1rem; }
.btn-sm { padding: 0.7em 1.1em; font-size: 0.85rem; }

/* ── Chips / badges / pills ─────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.5em 1em;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: all 0.2s ease;
  cursor: pointer;
}
.chip:hover { color: var(--forest); box-shadow: inset 0 0 0 1px var(--forest-500); }
.chip.is-active { background: var(--forest); color: var(--cream-soft); box-shadow: none; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4em 0.7em;
  border-radius: var(--r-xs);
}
.badge-strain { background: var(--forest-600); color: #fff; }
.badge-sativa { background: #C6772E; color: #fff; }
.badge-indica { background: #5B4B8A; color: #fff; }
.badge-hybrid { background: var(--forest-600); color: #fff; }
.badge-new    { background: var(--brass); color: #23180a; }
.badge-lab    { background: rgba(201,162,75,0.20); color: var(--forest); }

.pill-effect {
  padding: 0.4em 0.85em;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--cream-deep);
  color: var(--forest-700);
}

/* ── Announcement bar ───────────────────────────────────────────────────── */
.announce {
  background: var(--forest);
  color: var(--cream-soft);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55em 1em;
  font-weight: 500;
}
.announce strong { color: var(--brass); font-weight: 700; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 239, 227, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.brand-name b { color: var(--brass-strong); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; margin-left: 0.5rem; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--brass);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 0.4rem; }
.icon-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  color: var(--forest);
  position: relative;
  transition: background 0.2s;
}
.icon-btn:hover { background: rgba(20,53,42,0.07); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 4px; right: 3px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--brass); color: #23180a;
  font-size: 0.66rem; font-weight: 700;
  border-radius: var(--r-pill);
  display: grid; place-items: center;
}
.nav-toggle { display: none; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(46,102,80,0.28), transparent 60%),
    linear-gradient(180deg, var(--cream-soft), var(--cream));
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding-block: clamp(48px, 7vw, 96px);
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  margin-top: 1.2rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-strong);
}
.hero-lead {
  margin-top: 1.4rem;
  font-size: 1.16rem;
  color: var(--ink-muted);
  max-width: 46ch;
}
.hero-cta { margin-top: 2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-trust {
  margin-top: 2.4rem;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--ink-muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 500; }
.hero-trust svg { width: 18px; height: 18px; color: var(--brass-strong); }

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-art .glass-tag {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(245,239,227,0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--r-md);
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.75rem;
}
.glass-tag .dot { width: 38px; height: 38px; border-radius: var(--r-pill); background: var(--brass-soft); display: grid; place-items: center; color: var(--brass-strong); }
.glass-tag b { display: block; font-family: var(--font-display); color: var(--forest); }
.glass-tag small { color: var(--ink-muted); font-size: 0.78rem; }

/* ── Marquee trust strip ────────────────────────────────────────────────── */
.trust-strip {
  background: var(--forest);
  color: var(--cream-soft);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  padding-block: 1.1rem;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 0.9rem; font-weight: 500;
}
.trust-item svg { width: 20px; height: 20px; color: var(--brass); }

/* ── Category tiles ─────────────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.cat-tile {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.cat-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,28,22,0.72));
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-tile .cat-art { position: absolute; inset: 0; }
.cat-tile .cat-label { position: relative; z-index: 1; }
.cat-tile h3 { color: #fff; font-size: 1.25rem; }
.cat-tile span { font-size: 0.82rem; opacity: 0.85; display: inline-flex; align-items: center; gap: 0.4em; }

/* ── Product cards ──────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}
.product-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-deep);
}
.product-media .p-art { position: absolute; inset: 0; transition: transform 0.5s var(--ease); }
.product-card:hover .p-art { transform: scale(1.05); }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 2; }
.wish-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.9); color: var(--ink-muted);
  display: grid; place-items: center;
  opacity: 1; transform: none; /* visible by default (touch-first) */
  transition: all 0.25s var(--ease);
}
/* Hide-until-hover only on real pointer devices; touch keeps it visible */
@media (hover: hover) and (pointer: fine) {
  .wish-btn { opacity: 0; transform: translateY(-4px); }
  .product-card:hover .wish-btn { opacity: 1; transform: translateY(0); }
}
.wish-btn:hover { color: var(--danger); }

.product-body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product-rating { display: flex; align-items: center; gap: 0.35em; font-size: 0.78rem; color: var(--ink-muted); margin-bottom: 0.35rem; }
.product-rating .stars { color: var(--brass); letter-spacing: 1px; }
.product-name { font-family: var(--font-display); font-size: 1.08rem; color: var(--ink); font-weight: 600; }
.product-meta { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.15rem; }
.product-variants { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.85rem; }
.variant-chip {
  padding: 0.35em 0.7em; border-radius: var(--r-xs);
  font-size: 0.76rem; font-weight: 600; color: var(--ink-muted);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: all 0.15s ease;
}
.variant-chip.is-active, .variant-chip:hover { background: var(--forest); color: #fff; box-shadow: none; }
.product-foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.price { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--forest); }
.price .was { font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-faint); text-decoration: line-through; margin-right: 0.4em; font-weight: 500; }
.add-btn {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  background: var(--forest); color: var(--cream-soft);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.add-btn:hover { background: var(--brass); color: #23180a; transform: scale(1.08); }

/* ── COA / transparency feature ─────────────────────────────────────────── */
.coa-feature { background: var(--forest); color: var(--cream-soft); }
.coa-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(28px, 5vw, 64px); }
.coa-copy h2 { color: var(--cream-soft); font-size: clamp(2rem, 4vw, 3rem); }
.coa-copy p { color: rgba(245,239,227,0.78); margin-top: 1.1rem; font-size: 1.05rem; }
.coa-points { margin-top: 1.6rem; display: grid; gap: 1rem; }
.coa-point { display: flex; gap: 0.9rem; align-items: flex-start; }
.coa-point .ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(201,162,75,0.18); color: var(--brass); display: grid; place-items: center; }
.coa-point b { color: var(--cream-soft); display: block; font-family: var(--font-display); }
.coa-point span { color: rgba(245,239,227,0.7); font-size: 0.9rem; }

.coa-card {
  background: var(--cream-soft);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
}
.coa-card-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.coa-card-head b { font-family: var(--font-display); font-size: 1.15rem; color: var(--forest); }
.coa-verify { display:inline-flex; align-items:center; gap:.4em; font-size:.75rem; font-weight:700; color: var(--leaf); }
.coa-rows { margin-top: 1rem; display: grid; gap: 0.65rem; }
.coa-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.9rem; padding: 0.55rem 0; border-bottom: 1px dashed var(--line-soft); }
.coa-row:last-child { border-bottom: none; }
.coa-row .pass { display:inline-flex; align-items:center; gap:.35em; color: var(--leaf); font-weight: 600; font-size: 0.82rem; }
.coa-meta { margin-top: 1rem; display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--ink-faint); }

/* ── Effect finder ──────────────────────────────────────────────────────── */
.effect-row { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.effect-chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.7em 1.3em; border-radius: var(--r-pill);
  background: var(--paper); box-shadow: var(--shadow-sm);
  font-weight: 600; color: var(--forest);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background .2s;
}
.effect-chip:hover { transform: translateY(-3px); background: var(--forest); color: var(--cream-soft); }
.effect-chip .emoji { font-size: 1.1rem; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.testi-card { background: var(--paper); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.testi-card .stars { color: var(--brass); letter-spacing: 2px; font-size: 0.95rem; }
.testi-card p { margin-top: 0.8rem; font-size: 1rem; color: var(--ink); line-height: 1.65; }
.testi-who { margin-top: 1.1rem; display: flex; align-items: center; gap: 0.7rem; }
.testi-who .av { width: 40px; height: 40px; border-radius: var(--r-pill); background: var(--forest-600); color: #fff; display: grid; place-items: center; font-weight: 700; }
.testi-who b { font-size: 0.9rem; }
.testi-who small { display: block; color: var(--ink-faint); font-size: 0.78rem; }

/* ── Newsletter ─────────────────────────────────────────────────────────── */
.newsletter { background: linear-gradient(135deg, var(--forest), var(--forest-700)); color: var(--cream-soft); border-radius: var(--r-xl); padding: clamp(32px, 5vw, 60px); text-align: center; }
.newsletter h2 { color: var(--cream-soft); font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.newsletter p { color: rgba(245,239,227,0.78); margin-top: 0.8rem; }
.news-form { margin-top: 1.6rem; display: flex; gap: 0.6rem; max-width: 460px; margin-inline: auto; }
.news-form input {
  flex: 1; border: none; border-radius: var(--r-pill);
  padding: 0.95em 1.3em; font-family: inherit; font-size: 0.95rem;
  background: rgba(245,239,227,0.14); color: var(--cream-soft);
  box-shadow: inset 0 0 0 1px rgba(245,239,227,0.25);
}
.news-form input::placeholder { color: rgba(245,239,227,0.55); }
.news-form input:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--brass); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--forest); color: rgba(245,239,227,0.72); padding-top: clamp(48px, 6vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.4rem; padding-bottom: 2.5rem; }
.footer-brand .brand-name { color: var(--cream-soft); }
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; max-width: 30ch; }
.footer-social { margin-top: 1.2rem; display: flex; gap: 0.6rem; }
.footer-social a { width: 38px; height: 38px; border-radius: var(--r-pill); display: grid; place-items: center; background: rgba(245,239,227,0.08); color: var(--cream-soft); transition: background 0.2s; }
.footer-social a:hover { background: var(--brass); color: #23180a; }
.footer-col h4 { color: var(--cream-soft); font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; padding: 0.35rem 0; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--brass); }
.footer-legal { border-top: 1px solid rgba(245,239,227,0.12); padding-block: 1.6rem; }
.footer-disclaimer { font-size: 0.76rem; line-height: 1.7; color: rgba(245,239,227,0.5); max-width: 900px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; align-items: center; margin-top: 1.4rem; font-size: 0.8rem; }

/* ── Age gate ───────────────────────────────────────────────────────────── */
.agegate {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11,28,22,0.7);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s;
}
.agegate.is-open { opacity: 1; visibility: visible; }
.agegate-card {
  background: var(--cream-soft);
  border-radius: var(--r-xl);
  max-width: 440px; width: 100%;
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.4s var(--ease);
}
.agegate.is-open .agegate-card { transform: none; }
.agegate-card .brand-mark { margin: 0 auto 1.2rem; width: 52px; height: 52px; }
.agegate-card h2 { font-size: 1.9rem; }
.agegate-card p { margin-top: 0.9rem; color: var(--ink-muted); font-size: 0.95rem; }
.agegate-actions { margin-top: 1.8rem; display: grid; gap: 0.7rem; }
.agegate small { display: block; margin-top: 1.2rem; color: var(--ink-faint); font-size: 0.76rem; }

/* ── Cart drawer ────────────────────────────────────────────────────────── */
.scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(11,28,22,0.5);
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s;
}
.scrim.is-open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(420px, 100%);
  background: var(--cream-soft);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.is-open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.3rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-line { display: flex; gap: 0.9rem; }
.cart-line .thumb { width: 66px; height: 66px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; background: var(--cream-deep); }
.cart-line .info { flex: 1; }
.cart-line .info b { font-family: var(--font-display); font-size: 0.98rem; }
.cart-line .info small { display: block; color: var(--ink-faint); font-size: 0.8rem; }
.qty { display: inline-flex; align-items: center; gap: 0.2rem; margin-top: 0.4rem; box-shadow: inset 0 0 0 1px var(--line); border-radius: var(--r-pill); }
.qty button { width: 26px; height: 26px; display: grid; place-items: center; color: var(--ink-muted); font-size: 1rem; }
.qty span { min-width: 22px; text-align: center; font-size: 0.85rem; font-weight: 600; }
.cart-line .ln-price { font-family: var(--font-display); font-weight: 600; color: var(--forest); }
.cart-foot { border-top: 1px solid var(--line); padding: 1.3rem 1.5rem; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.cart-total b { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); }
.cart-note { font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 1rem; }
.cart-empty { text-align: center; color: var(--ink-faint); padding: 3rem 1rem; }
.cart-empty svg { width: 46px; height: 46px; margin: 0 auto 0.5rem; }

/* ── Page hero (interior) ───────────────────────────────────────────────── */
.page-hero { background: linear-gradient(180deg, var(--cream-soft), var(--cream)); padding-block: clamp(36px, 5vw, 60px); }
.breadcrumb { font-size: 0.82rem; color: var(--ink-faint); display: flex; gap: 0.5em; align-items: center; }
.breadcrumb a:hover { color: var(--forest); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 0.7rem; }

/* ── Shop toolbar ───────────────────────────────────────────────────────── */
.shop-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.sort-select { padding: 0.7em 1em; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); font-family: inherit; font-size: 0.88rem; color: var(--ink); }

/* ── Product detail ─────────────────────────────────────────────────────── */
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.pdp-gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.pdp-main-img { aspect-ratio: 1/1; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); background: var(--cream-deep); }
.pdp-thumbs { display: flex; gap: 0.7rem; margin-top: 0.9rem; }
.pdp-thumb { width: 74px; height: 74px; border-radius: var(--r-sm); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); cursor: pointer; background: var(--cream-deep); }
.pdp-thumb.is-active { box-shadow: 0 0 0 2px var(--brass); }
.pdp-info h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-top: 0.8rem; }
.pdp-priceline { display: flex; align-items: baseline; gap: 0.8rem; margin-top: 1rem; }
.pdp-price { font-family: var(--font-display); font-weight: 600; font-size: 2rem; color: var(--forest); }
.pdp-desc { margin-top: 1.3rem; color: var(--ink-muted); font-size: 1.02rem; line-height: 1.75; }
.pdp-block { margin-top: 1.8rem; }
.pdp-block-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.7rem; }
.pdp-variants { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.pdp-variant { padding: 0.7em 1.2em; border-radius: var(--r-sm); box-shadow: inset 0 0 0 1.5px var(--line); font-weight: 600; font-size: 0.9rem; transition: all 0.2s; }
.pdp-variant b { color: var(--forest); }
.pdp-variant small { display: block; color: var(--ink-faint); font-weight: 500; font-size: 0.75rem; }
.pdp-variant.is-active { box-shadow: inset 0 0 0 2px var(--forest); background: var(--forest); color: #fff; }
.pdp-variant.is-active b, .pdp-variant.is-active small { color: #fff; }
.pdp-buy { margin-top: 1.8rem; display: flex; gap: 0.8rem; align-items: center; }
.pdp-qty { box-shadow: inset 0 0 0 1.5px var(--line); border-radius: var(--r-pill); display: inline-flex; align-items: center; }
.pdp-qty button { width: 44px; height: 46px; display: grid; place-items: center; font-size: 1.2rem; color: var(--ink-muted); }
.pdp-qty span { min-width: 30px; text-align: center; font-weight: 600; }
.pdp-trust { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.pdp-trust span { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.86rem; color: var(--ink-muted); font-weight: 500; }
.pdp-trust svg { width: 18px; height: 18px; color: var(--brass-strong); }

/* Potency meters */
.potency { margin-top: 1.4rem; display: grid; gap: 0.8rem; }
.potency-row { display: grid; grid-template-columns: 68px 1fr 54px; align-items: center; gap: 0.8rem; font-size: 0.85rem; }
.potency-bar { height: 8px; border-radius: var(--r-pill); background: var(--cream-deep); overflow: hidden; }
.potency-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--forest-500), var(--brass)); border-radius: inherit; }
.potency-row b { font-family: var(--font-display); color: var(--forest); text-align: right; }

/* PDP lab-results panel */
.lab-panel { margin-top: 2rem; background: var(--paper); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.lab-panel-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; }
.lab-panel-head .t { display: flex; align-items: center; gap: 0.7rem; }
.lab-panel-head .t .ic { width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--brass-soft); color: var(--brass-strong); display: grid; place-items: center; }
.lab-panel-head b { font-family: var(--font-display); font-size: 1.15rem; color: var(--forest); }
.lab-panel-head small { color: var(--ink-faint); font-size: 0.8rem; }
.batch-select { padding: 0.6em 0.9em; border-radius: var(--r-sm); box-shadow: inset 0 0 0 1px var(--line); background: var(--cream-soft); font-family: inherit; font-size: 0.85rem; }
.lab-tests { margin-top: 1.2rem; display: grid; gap: 0.55rem; }
.lab-test { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0.95rem; border-radius: var(--r-sm); background: var(--cream-soft); }
.lab-test .n { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; }
.lab-test .n svg { width: 18px; height: 18px; color: var(--leaf); }
.lab-dl { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; justify-content: space-between; }
.lab-dl small { color: var(--ink-faint); font-size: 0.78rem; }

/* ── Reveal on scroll ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── Toast ──────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px);
  background: var(--forest); color: var(--cream-soft);
  padding: 0.9em 1.4em; border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg); z-index: 120;
  display: flex; align-items: center; gap: 0.6em; font-weight: 500; font-size: 0.9rem;
  opacity: 0; visibility: hidden; transition: all 0.3s var(--ease);
}
.toast.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--brass); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid, .coa-grid, .pdp-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; }
  .pdp-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .trust-strip .container { justify-content: flex-start; }
}

/* Phones: 2-up product & category grids, bigger tap targets, stacked CTAs */
@media (max-width: 560px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 0.8rem 0.85rem 0.95rem; }
  .product-name { font-size: 0.98rem; }
  .product-variants { gap: 5px; }
  .product-variants .variant-chip:nth-child(n+4) { display: none; } /* keep small cards tidy */
  .add-btn { width: 40px; height: 40px; }
  .cat-tile { padding: 1rem; aspect-ratio: 4 / 5; }
  .cat-tile h3 { font-size: 1.05rem; }
  .filter-chips .chip { padding: 0.62em 1.05em; font-size: 0.9rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .news-form { flex-direction: column; }
}

/* Mobile nav sheet */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80;
  background: var(--cream-soft);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease);
  padding: 1.5rem var(--gutter);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.mobile-menu.is-open { transform: none; }
.mobile-menu a { padding: 0.9rem 0; font-family: var(--font-display); font-size: 1.4rem; color: var(--forest); border-bottom: 1px solid var(--line-soft); }
.mobile-menu .close-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
