/** Shopify CDN: Minification failed

Line 3463:1 Expected "}" to go with "{"

**/
/* ---------- Sanctum Vials ---------- */
:root {
  --bg: #060606;
  --bg-2: #0c0c0c;
  --bg-3: #101010;
  --card: rgba(20,20,20,0.7);
  --card-solid: #141414;
  --text: #f5f5f5;
  --muted: #8b8b8b;
  --muted-2: #5a5a5a;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.12);
  --emerald: #1f8a5b;
  --emerald-2: #0e6b48;
  --teal: #16a39a;
  --glow: 0 0 60px rgba(31,138,91,0.25);
  --r: 20px;
  --r-sm: 12px;
  --r-lg: 28px;
  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -20px rgba(0,0,0,0.6);
  --shadow-2: 0 20px 60px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04) inset;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body { overflow-x: hidden; }

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

/* Selection */
::selection { background: rgba(31,138,91,0.35); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.12); }

/* ---------- Layout ---------- */
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--muted));
}

.h-display {
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
.h-title {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0;
}
.muted { color: var(--muted); }
.lead {
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  font-weight: 400;
  text-wrap: pretty;
}

/* ---------- Header ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  background: transparent;
  transition: backdrop-filter .3s ease, background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,6,6,0.6);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding: 0 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.02em; font-size: 17px;
}
.nav-logo .mark {
  width: 22px; height: 22px; position: relative;
}
.nav-menu {
  display: flex; gap: 4px;
  background: rgba(20,20,20,0.5);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  backdrop-filter: blur(12px);
}
.nav-menu button,
.nav-menu a {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: -0.005em;
  transition: color .2s, background .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-menu button:hover,
.nav-menu a:hover { color: var(--text); }
.nav-menu button.active,
.nav-menu a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-right {
  display: flex; justify-content: flex-end; align-items: center; gap: 8px;
}
.icon-btn {
  width: 38px; height: 38px;
  display: inline-grid; place-items: center;
  border-radius: 999px;
  color: var(--text);
  transition: background .2s;
  position: relative;
}
.icon-btn:hover { background: rgba(255,255,255,0.06); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--emerald); color: #fff;
  border-radius: 999px;
  font-size: 10px; font-weight: 600;
  display: inline-grid; place-items: center;
  border: 2px solid var(--bg);
}

@media (max-width: 880px) {
  .nav-menu { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-inner .nav-right { gap: 4px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .2s ease, background .2s, color .2s, box-shadow .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--text);
  color: #050505;
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 10px 30px -10px rgba(255,255,255,0.3);
}
.btn-emerald {
  background: linear-gradient(180deg, #228a5e, #15623f);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 10px 30px -10px rgba(31,138,91,0.6);
}
.btn-emerald:hover { filter: brightness(1.08); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 58px; padding: 0 30px; font-size: 15px; }

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-1);
}
.glass {
  background: linear-gradient(180deg, rgba(28,28,28,0.7), rgba(14,14,14,0.7));
  border: 1px solid var(--border);
  border-radius: var(--r);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.glass::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% -20%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 140px 0; }
.section-pad-sm { padding: 100px 0; }
.section-divider {
  height: 1px; background: var(--border); margin: 0 auto; max-width: 1336px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(22,163,154,0.18), transparent 60%),
    radial-gradient(50% 50% at 80% 70%, rgba(31,138,91,0.22), transparent 60%),
    radial-gradient(80% 80% at 50% 110%, rgba(8,40,30,0.6), transparent 70%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.04 0 0 0 0 0.04 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-fog {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(40% 30% at 20% 90%, rgba(255,255,255,0.08), transparent 70%),
    radial-gradient(50% 30% at 80% 60%, rgba(255,255,255,0.04), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
}
.hero-ctas {
  display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap;
}
.trust-row {
  margin-top: 56px;
  display: flex; gap: 28px; flex-wrap: wrap;
  align-items: center;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.trust-pill svg { width: 14px; height: 14px; stroke: var(--emerald); }

/* ---------- Hero vial composition ---------- */
.hero-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  background: #0a0a0a;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.hero-vial-wrap {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.hero-vial-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,0.3), transparent 60%),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.5), transparent 60%);
  animation: drift 14s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translateY(-6px); }
  to   { transform: translateY(6px); }
}

/* ---------- Marquee ticker ---------- */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg-2);
}
.ticker-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.ticker-track span { display: inline-flex; align-items: center; gap: 16px; }
.ticker-track span::after {
  content: "•"; color: var(--emerald);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.product-card {
  position: relative;
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(22,22,22,0.7), rgba(10,10,10,0.7));
  border: 1px solid var(--border);
  padding: 24px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;
  overflow: hidden;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), 0 0 60px -20px rgba(31,138,91,0.25);
}
.product-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(31,138,91,0.18), transparent 60%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.product-card:hover::before { opacity: 1; }
.product-stage {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-sm);
  background:
    radial-gradient(60% 50% at 50% 40%, rgba(22,163,154,0.14), transparent 70%),
    linear-gradient(180deg, #121212, #050505);
  margin-bottom: 20px;
  padding: 20px;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.product-stage > img,
.product-stage .vial {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-stage::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 20%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  pointer-events: none;
}
.product-meta-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
}
.product-name {
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
}
.product-purity {
  font-family: var(--mono);
  font-size: 11px; color: var(--emerald);
  letter-spacing: 0.05em;
}
.product-sub {
  margin-top: 6px;
  font-size: 12px; color: var(--muted);
  font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase;
}
.product-bottom {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.product-price { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; }
.product-add {
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  display: inline-grid; place-items: center;
  transition: background .2s, transform .2s;
}
.product-add svg { width: 16px; height: 16px; stroke: var(--text); fill: none; stroke-width: 1.6; }
.product-card:hover .product-add { background: var(--emerald); }

/* ---------- Why grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 28px;
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(20,20,20,0.6), rgba(10,10,10,0.6));
  border: 1px solid var(--border);
  transition: border-color .3s, transform .3s;
  position: relative; overflow: hidden;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.why-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.why-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(31,138,91,0.12);
  border: 1px solid rgba(31,138,91,0.25);
  display: grid; place-items: center;
  color: #5dc593;
}
.why-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.why-title { font-size: 18px; font-weight: 500; letter-spacing: -0.02em; margin-top: 28px; }
.why-desc { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }

/* ---------- Lab visual strip (full-bleed photo pair) ---------- */
.lab-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .lab-strip { grid-template-columns: 1fr; } }
.lab-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  aspect-ratio: 16 / 9;
}
.lab-photo-wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}
.lab-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
}
.lab-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 30%);
  pointer-events: none;
}
.lab-photo figcaption {
  position: absolute; left: 20px; bottom: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  z-index: 2;
}

/* ---------- COA section ---------- */
.coa-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  align-items: stretch;
}
@media (max-width: 880px) { .coa-row { grid-template-columns: 1fr; } }
.coa-card {
  padding: 28px;
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(20,20,20,0.7), rgba(8,8,8,0.7));
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.coa-pdf {
  margin-top: 24px;
  border-radius: var(--r-sm);
  background: linear-gradient(180deg, #0e0e0e, #060606);
  border: 1px solid var(--border);
  padding: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.coa-pdf-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.coa-pdf-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.04);
}
.coa-pdf-row .v { color: var(--text); }
.coa-stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px;
}
.coa-stat {
  padding: 16px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}
.coa-stat .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.coa-stat .v { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin-top: 8px; }
.coa-chart {
  margin-top: 16px;
  height: 120px;
  border-radius: var(--r-sm);
  background: linear-gradient(180deg, #080808, #040404);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}

/* ---------- Reviews (auto-marquee) ---------- */
.reviews-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  padding: 8px 0 32px;
}
.reviews-track {
  display: flex;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 380px;
  margin-right: 20px;
  padding: 28px;
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(22,22,22,0.7), rgba(10,10,10,0.7));
  border: 1px solid var(--border);
  position: relative;
}
.review-stars { color: #5dc593; font-size: 12px; letter-spacing: 0.2em; }
.review-quote { font-size: 17px; line-height: 1.5; letter-spacing: -0.01em; margin: 14px 0 20px; text-wrap: pretty; }
.review-author { display: flex; gap: 12px; align-items: center; }
.review-avatar {
  width: 32px; height: 32px; border-radius: 999px;
  background: linear-gradient(135deg, #1a1a1a, #050505);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-size: 12px; color: var(--muted);
}
.review-name { font-size: 13px; }
.review-meta { font-size: 12px; color: var(--muted); }

/* ---------- Email capture ---------- */
.email-section {
  position: relative;
  padding: 140px 32px;
  text-align: center;
  overflow: hidden;
}
.email-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 50% 50%, rgba(31,138,91,0.22), transparent 70%),
    radial-gradient(60% 80% at 50% 110%, rgba(22,163,154,0.12), transparent 70%);
  pointer-events: none;
}
.email-form {
  position: relative;
  margin: 36px auto 0;
  max-width: 480px;
  display: flex; gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(20px);
}
.email-form input {
  flex: 1;
  background: transparent;
  border: 0; outline: none;
  font: inherit;
  color: var(--text);
  padding: 0 20px;
  height: 48px;
}
.email-form input::placeholder { color: var(--muted-2); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg), #030303);
  padding: 100px 0 40px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer h6 {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 20px;
  font-weight: 400;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-links a {
  font-size: 14px; color: var(--text); opacity: 0.85;
  transition: opacity .2s, color .2s;
}
.footer-links a:hover { opacity: 1; color: #fff; }

.footer-bottom {
  margin-top: 80px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.footer-mono {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.legal-block {
  padding: 24px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(10,10,10,0.6);
  font-size: 12px; line-height: 1.6; color: var(--muted-2);
  margin-top: 24px;
}
.pay-icons { display: flex; gap: 10px; }
.pay-icons div {
  width: 36px; height: 24px; border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-family: var(--mono); font-size: 8px; color: var(--muted);
  display: grid; place-items: center; letter-spacing: 0.1em;
}

/* ---------- Cart Drawer ---------- */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(480px, 92vw);
  z-index: 90;
  background: rgba(8,8,8,0.92);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(30px) saturate(160%);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,.2,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer-foot { padding: 24px 28px; border-top: 1px solid var(--border); display: grid; gap: 12px; }
.cart-line {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-thumb {
  width: 64px; height: 80px; border-radius: 10px;
  background: linear-gradient(180deg, #161616, #060606);
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.cart-name { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.cart-sub { font-size: 12px; color: var(--muted); margin-top: 2px; font-family: var(--mono); letter-spacing: 0.08em; }
.qty {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 2px;
  width: fit-content;
}
.qty button {
  width: 24px; height: 24px; display: grid; place-items: center;
  color: var(--text); border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.qty button svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round;
  display: block;
}
.qty button:hover { color: #fff; background: rgba(255,255,255,0.10); }
.qty button:active { background: rgba(255,255,255,0.16); }
.qty span { font-size: 12px; font-family: var(--mono); min-width: 16px; text-align: center; color: var(--text); }
.qty input[type="number"] {
  -moz-appearance: textfield;
}
.qty input[type="number"]::-webkit-outer-spin-button,
.qty input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.cart-empty {
  text-align: center; color: var(--muted);
  padding: 80px 0;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}

/* ---------- Collection page ---------- */
.collection {
  padding-top: 120px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
}
/* Unwrap the inner div so collection-head, products grid become flex children */
.collection > div { display: contents; }
.collection-head { order: 1; }
.filter-side { order: 2; }
.collection > div > div:not(.collection-head) { order: 3; }
.product-grid { order: 3; }

.filter-toggle { display: none; }
.collection-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filters-btn-pill { position: relative; }
.filters-btn-pill svg { color: var(--muted); }
.filters-btn-pill[aria-expanded="true"] {
  border-color: rgba(31,138,91,0.4);
  color: #5dc593;
}
.filters-btn-pill[aria-expanded="true"] svg { color: #5dc593; }

/* Filter panel — collapsed by default, expands above products when pill is tapped */
.filter-side {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(20,20,20,0.7), rgba(10,10,10,0.6));
  border: 1px solid transparent;
  padding: 0 22px;
  transition:
    max-height .45s cubic-bezier(.4,.2,.2,1),
    opacity .25s ease,
    margin .3s ease,
    padding .3s ease,
    border-color .3s ease;
  /* Lay groups in a 4-up row when expanded on desktop */
}
.filter-side.open {
  max-height: 1800px;
  opacity: 1;
  margin: 18px 0 28px;
  padding: 22px 24px 14px;
  border-color: var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 32px;
  align-items: start;
}
.filter-side.open .filter-group {
  padding: 0;
  border-bottom: 0;
}
.filter-side.open .filter-group h6 { margin-bottom: 10px; }
@media (max-width: 880px) {
  .filter-side.open {
    grid-template-columns: 1fr 1fr;
    padding: 18px 20px;
    gap: 8px 24px;
  }
}
@media (max-width: 540px) {
  .filter-side.open {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.filter-side {
  position: sticky; top: 100px;
  align-self: start;
}
.filter-group { padding: 20px 0; border-bottom: 1px solid var(--border); }
.filter-group h6 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px; font-weight: 400;
}
.filter-group-head {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 0;
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  cursor: pointer;
  transition: color .2s;
}
.filter-group-head:hover { color: var(--text); }
.filter-chev {
  width: 24px; height: 24px;
  display: inline-grid; place-items: center;
  border-radius: 999px;
  color: var(--muted);
  transition: transform .3s ease, color .2s;
}
.filter-chev svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.filter-group:not(.open) .filter-chev { transform: rotate(-90deg); }
.filter-group-head:hover .filter-chev { color: var(--text); }
.filter-group-body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows .35s cubic-bezier(.4,.2,.2,1), margin .25s ease, opacity .25s ease;
  overflow: hidden;
  opacity: 1;
}
.filter-group-body > * { min-height: 0; }
.filter-group:not(.open) .filter-group-body {
  grid-template-rows: 0fr;
  margin-top: -12px; /* eat the head margin-bottom so the row stays flush when closed */
  opacity: 0;
}
.filter-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.filter-list button {
  display: flex; justify-content: space-between; width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px; color: var(--muted);
  transition: background .2s, color .2s;
}
.filter-list button:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.filter-list button.active { background: rgba(31,138,91,0.12); color: #5dc593; }
.filter-list .count { font-family: var(--mono); font-size: 11px; }

.collection-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 32px; gap: 16px; flex-wrap: wrap;
}
.sort-dropdown {
  position: relative;
}
.sort-btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 40px; padding: 0 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px; color: var(--text);
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(12px);
}

/* ---------- Product page ---------- */
.product-page { padding-top: 120px; padding-bottom: 80px; }
.product-page-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .product-page-grid { grid-template-columns: 1fr; } }
.product-gallery {
  position: sticky; top: 100px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #0e0e0e, #050505);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.product-gallery::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 40%, rgba(22,163,154,0.18), transparent 70%);
}
.product-thumbs {
  display: flex; gap: 10px; margin-top: 16px;
}
.product-thumb {
  width: 72px; height: 72px; border-radius: 14px;
  background: linear-gradient(180deg, #131313, #050505);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  cursor: pointer; transition: border-color .2s;
}
.product-thumb:hover, .product-thumb.active { border-color: var(--border-strong); }

.purchase-card {
  padding: 28px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20,20,20,0.7), rgba(10,10,10,0.7));
  backdrop-filter: blur(14px);
}
.purchase-card h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.03em; font-weight: 500;
  margin: 0; line-height: 1;
}
.tag-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}
.tag.emerald { color: #5dc593; border-color: rgba(31,138,91,0.3); background: rgba(31,138,91,0.06); }
.price-row {
  margin-top: 24px;
  display: flex; align-items: baseline; gap: 12px;
}
.price { font-size: 32px; font-weight: 500; letter-spacing: -0.02em; }
.price-sub { color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; }

.qty-row {
  margin-top: 24px;
  display: flex; align-items: center; gap: 12px;
}
.qty-row .qty {
  height: 52px; border-radius: 999px; padding: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
}
.qty-row .qty button {
  width: 40px; height: 40px; font-size: 16px;
  color: var(--text);
  background: transparent;
}
.qty-row .qty button svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round;
}
.qty-row .qty button:hover { color: #fff; background: rgba(255,255,255,0.10); }
.qty-row .qty span { min-width: 24px; font-size: 15px; color: var(--text); font-weight: 500; }

.apple-pay, .shop-pay {
  height: 52px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  cursor: pointer;
  transition: filter .2s;
}
.apple-pay { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.shop-pay { background: #5a31f4; color: #fff; }
.apple-pay:hover, .shop-pay:hover { filter: brightness(1.1); }
.pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }

.tabs { margin-top: 56px; }
.tab-list {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0; margin-bottom: 24px;
}
.tab-list button {
  padding: 12px 16px;
  font-size: 13px; color: var(--muted);
  position: relative;
  letter-spacing: -0.005em;
}
.tab-list button.active { color: var(--text); }
.tab-list button.active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: -1px;
  height: 1px; background: var(--text);
}
.tab-list button:hover { color: var(--text); }

.acc-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.acc-head {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  font-size: 16px; letter-spacing: -0.01em; font-weight: 500;
  text-align: left;
}
.acc-head .plus {
  width: 28px; height: 28px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--muted);
  transition: transform .3s, background .2s;
}
.acc-item.open .plus { transform: rotate(45deg); background: var(--emerald); color: #fff; border-color: transparent; }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease, padding .3s;
  opacity: 0;
  color: var(--muted); font-size: 14px; line-height: 1.6;
}
.acc-item.open .acc-body {
  max-height: 600px;
  opacity: 1;
  padding-top: 14px;
}

/* ---------- Research page ---------- */
.research-hero { padding: 160px 0 80px; }
.research-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-bottom: 100px;
}
@media (max-width: 980px) { .research-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .research-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px) { .research-grid { grid-template-columns: 1fr; } }
.article-card {
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20,20,20,0.7), rgba(10,10,10,0.7));
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  cursor: pointer;
}
.article-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.article-cover {
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(60% 60% at 40% 30%, rgba(22,163,154,0.18), transparent 70%),
    linear-gradient(180deg, #131313, #050505);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.article-body { padding: 20px 22px 24px; }
.article-cat {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.article-title {
  margin-top: 10px; font-size: 19px;
  letter-spacing: -0.02em; line-height: 1.2; font-weight: 500;
}
.article-meta {
  margin-top: 12px;
  font-size: 12px; color: var(--muted); font-family: var(--mono);
  letter-spacing: 0.08em;
}

/* ---------- FAQ ---------- */
.faq-page { padding: 160px 0 100px; }
.faq-search {
  display: flex; align-items: center; gap: 12px;
  height: 56px; padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(14px);
  margin: 32px auto 64px;
  max-width: 520px;
}
.faq-search svg { width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 1.5; }
.faq-search input {
  flex: 1; background: transparent; border: 0; outline: none;
  color: var(--text); font: inherit; font-size: 14px;
}
.faq-search input::placeholder { color: var(--muted-2); }
.faq-grid {
  display: grid; grid-template-columns: 260px 1fr; gap: 64px;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-categories { position: sticky; top: 100px; align-self: start; }
.faq-cat {
  display: flex; justify-content: space-between;
  padding: 10px 12px; border-radius: 10px;
  font-size: 13px; color: var(--muted);
  cursor: pointer; transition: background .2s, color .2s;
}
.faq-cat:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.faq-cat.active { color: var(--text); background: rgba(255,255,255,0.06); }

/* ---------- Fade ins ---------- */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* page transition */
.page-transition {
  animation: pageIn .5s ease both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Home FAQ ---------- */
@media (max-width: 880px) {
  .home-faq-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .home-faq-grid > div:first-child { position: static !important; }
}

/* ---------- Misc helpers ---------- */
.hr-thin { height: 1px; background: var(--border); border: 0; margin: 0; }
.kbd {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
}

/* Vial styling overrides if needed */
.vial { filter: drop-shadow(0 30px 30px rgba(0,0,0,0.7)); }
.vial-sm { filter: drop-shadow(0 14px 16px rgba(0,0,0,0.7)); }

/* ---------- Modal scrim shared ---------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }

/* ---------- Search Modal ---------- */
.search-modal {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 110;
  display: flex; justify-content: center;
  padding: 80px 20px 20px;
  opacity: 0; pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease;
}
.search-modal.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.search-modal-inner {
  width: 100%; max-width: 640px;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
  overflow: hidden;
}
.search-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.search-bar svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.search-bar input {
  flex: 1; background: transparent; border: 0; outline: none;
  color: var(--text); font: inherit; font-size: 16px;
  letter-spacing: -0.01em;
}
.search-bar input::placeholder { color: var(--muted-2); }
.search-body { padding: 20px 22px 22px; max-height: 60vh; overflow-y: auto; }
.search-section-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--muted-2);
}
.search-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.02);
  font-size: 13px; color: var(--muted);
  transition: color .2s, background .2s, border-color .2s;
}
.search-chip:hover { color: var(--text); border-color: var(--border-strong); background: rgba(255,255,255,0.06); }
.search-quick-list { display: grid; gap: 4px; margin-top: 12px; }
.search-quick-list button {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 12px;
  font-size: 14px; color: var(--text);
  transition: background .2s;
}
.search-quick-list button:hover { background: rgba(255,255,255,0.04); }
.search-quick-list svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 1.5; }
.search-results { display: grid; gap: 4px; }
.search-result {
  display: flex; gap: 14px; align-items: center;
  padding: 10px 12px; border-radius: 12px;
  text-align: left; transition: background .2s;
}
.search-result:hover { background: rgba(255,255,255,0.04); }
.search-result svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.search-result-thumb {
  width: 56px; height: 64px; border-radius: 10px;
  background: linear-gradient(180deg, #161616, #060606);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.search-result-name { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.search-result-sub { font-size: 12px; color: var(--muted); margin-top: 2px; font-family: var(--mono); letter-spacing: 0.06em; }

/* ---------- Account Modal ---------- */
.account-modal {
  position: fixed; inset: 0; z-index: 110;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.account-modal.open { opacity: 1; pointer-events: auto; }
.account-modal-inner {
  width: 100%; max-width: 420px;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  padding: 32px;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
}
.account-close {
  position: absolute; top: 16px; right: 16px;
}

.form-input {
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.02);
  color: var(--text); font: inherit; font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-input:focus { border-color: rgba(31,138,91,0.5); background: rgba(31,138,91,0.04); }
.form-input::placeholder { color: var(--muted-2); }

/* ---------- Price slider ---------- */
.price-slider {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  margin-top: 18px;
}
.price-slider-fill {
  position: absolute; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  border-radius: 999px;
}
.price-slider input[type="range"] {
  position: absolute;
  left: 0; right: 0; top: -8px;
  width: 100%; height: 20px;
  -webkit-appearance: none; appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
}
.price-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 999px;
  background: #fff;
  border: 0;
  cursor: grab;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,0,0,0.4);
  transition: transform .15s;
}
.price-slider input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
.price-slider input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 999px;
  background: #fff;
  border: 0;
  cursor: grab;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,0,0,0.4);
}

/* ---------- Article Modal ---------- */
.article-modal {
  position: fixed; inset: 0; z-index: 110;
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  overflow-y: auto;
}
.article-modal.open { opacity: 1; pointer-events: auto; }
.article-modal-inner {
  width: 100%; max-width: 760px;
  margin: auto;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background: rgba(14,14,14,0.98);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  padding: 32px;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
}
.article-modal-close {
  position: absolute; top: 18px; right: 18px;
  background: rgba(20,20,20,0.7);
  border: 1px solid var(--border-strong);
  z-index: 2;
}

/* ---------- COA Archive ---------- */
.coa-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .coa-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .coa-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px) { .coa-archive-grid { grid-template-columns: 1fr; } }

.coa-archive-card {
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(20,20,20,0.7), rgba(10,10,10,0.7));
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.coa-archive-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
}
.coa-archive-thumb {
  aspect-ratio: 5 / 6;
  background: #f4f5f6;
  position: relative;
  overflow: hidden;
}
.coa-archive-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18));
  pointer-events: none;
}
.coa-archive-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  user-select: none;
}
.coa-archive-body { padding: 22px; }
.coa-archive-title {
  font-size: 20px; font-weight: 500; letter-spacing: -0.02em;
}
.coa-archive-sub {
  margin-top: 4px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.coa-archive-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.coa-archive-stats .l {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.coa-archive-stats .v {
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  margin-top: 4px;
}
.coa-archive-actions {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.coa-archive-key {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

/* ---------- COA Viewer modal ---------- */
.coa-viewer {
  position: fixed; inset: 0; z-index: 110;
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  overflow-y: auto;
}
.coa-viewer.open { opacity: 1; pointer-events: auto; }
.coa-viewer-inner {
  width: 100%; max-width: 960px;
  margin: auto;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background: rgba(14,14,14,0.98);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  padding: 24px;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) {
  .coa-viewer-inner { grid-template-columns: 1fr; max-width: 520px; }
}
.coa-viewer-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(20,20,20,0.7);
  border: 1px solid var(--border-strong);
  z-index: 3;
}
.coa-viewer-image {
  border-radius: 14px;
  overflow: hidden;
  background: #f4f5f6;
  aspect-ratio: 5 / 7;
  max-height: 80vh;
}
.coa-viewer-image img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.coa-viewer-meta {
  padding: 6px 10px;
  display: flex; flex-direction: column;
}
.coa-meta-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}
.coa-meta-row .v { color: var(--text); }

/* ---------- Support Page ---------- */
.support-page { padding: 160px 0 120px; }
.support-card {
  max-width: 640px;
  margin: 56px auto 0;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(20,20,20,0.7), rgba(10,10,10,0.7));
  backdrop-filter: blur(14px);
  position: relative;
}
.support-email {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  transition: background .2s, border-color .2s, transform .15s;
  cursor: pointer;
}
.support-email:hover {
  background: rgba(31,138,91,0.06);
  border-color: rgba(31,138,91,0.3);
}
.support-email:active { transform: translateY(1px); }
.support-email-text {
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.support-email-action {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.support-email-action svg {
  width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 80px;
}
@media (max-width: 880px) { .support-grid { grid-template-columns: 1fr; } }
.support-tile {
  padding: 28px;
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(20,20,20,0.6), rgba(10,10,10,0.6));
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .3s, transform .3s;
}
.support-tile:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.support-tile-title { font-size: 17px; font-weight: 500; letter-spacing: -0.015em; margin-top: 8px; }
.support-tile-body { color: var(--muted); font-size: 13px; line-height: 1.55; flex: 1; }
.support-link {
  margin-top: 8px;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: #5dc593;
  font-family: var(--font);
}
.support-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
/* ============================================================
   ANNOUNCEMENT BAR (top of every page)
   ============================================================ */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110; /* above nav so it stays visible at top */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 9px 18px;
  background: var(--bg);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 0;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}
.announcement-bar strong {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.18em;
}
.announcement-divider { color: var(--border-strong); }

/* Push the nav down so it sits flush below the announcement bar */
.nav { top: 33px; }

@media (max-width: 640px) {
  .announcement-bar {
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 7px 14px;
    gap: 8px;
    white-space: normal;
  }
  .nav { top: 28px; }
}
@media (max-width: 420px) {
  .announcement-bar {
    font-size: 9.5px;
    padding: 6px 10px;
    gap: 6px;
  }
  .announcement-divider { display: none; }
  .nav { top: 25px; }
}

.support-link:hover { color: #7ed1a8; }

/* ============================================================
   MOBILE MENU (hamburger + drawer)
   ============================================================ */
.mobile-menu-btn {
  display: none;
  width: 38px; height: 38px;
  border-radius: 999px;
  align-items: center; justify-content: center;
  color: var(--text);
  transition: background .2s;
  background: none; border: 0; cursor: pointer;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.06); }
.mobile-menu-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.mobile-drawer-scrim {
  position: fixed; inset: 0; z-index: 92;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-drawer-scrim.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  z-index: 95;
  background: rgba(8,8,8,0.96);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,.2,.2,1);
  display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer-nav {
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.mobile-drawer-nav button {
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  padding: 16px 14px;
  border-radius: 14px;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.015em;
  font-weight: 400;
  transition: background .2s, color .2s;
}
.mobile-drawer-nav button:hover { background: rgba(255,255,255,0.04); }
.mobile-drawer-nav button.active { background: rgba(31,138,91,0.1); color: #5dc593; }
.mobile-drawer-nav button .arrow { color: var(--muted); font-family: var(--mono); font-size: 12px; }
.mobile-drawer-foot {
  margin-top: auto;
  padding: 18px 22px 28px;
  border-top: 1px solid var(--border);
  display: grid; gap: 10px;
}
.mobile-drawer-trust {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  padding: 4px 0 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

body.no-scroll { overflow: hidden; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 880px)
   ============================================================ */
@media (max-width: 880px) {
  .mobile-menu-btn { display: inline-flex; }

  /* Wrap & nav */
  .wrap { padding: 0 20px; }
  .nav-inner { height: 64px; padding: 0 18px; }
  .nav-logo { font-size: 16px; gap: 8px; }
  .icon-btn { width: 36px; height: 36px; }

  /* Section padding */
  .section-pad { padding: 88px 0; }
  .section-pad-sm { padding: 72px 0; }

  /* Hero */
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 64px; }
  .hero-stage {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-content { gap: 40px; }
  .hero-ctas { gap: 10px; margin-top: 28px; }
  .trust-row { margin-top: 36px; gap: 14px 22px; }

  /* Buttons */
  .btn-lg { height: 52px; padding: 0 22px; font-size: 14px; }
  .btn { height: 48px; padding: 0 20px; }
  .btn-sm { height: 38px; padding: 0 14px; }

  /* Ticker */
  .ticker { padding: 14px 0; }
  .ticker-track { gap: 36px; font-size: 11px; }

  /* Product grid */
  .product-card { padding: 20px; }

  /* Why grid */
  .why-card { padding: 24px; min-height: auto; }
  .why-title { font-size: 17px; margin-top: 22px; }

  /* Lab strip */
  .lab-photo-wide { aspect-ratio: 16 / 10; }

  /* COA */
  .coa-card { padding: 22px; }
  .coa-stat-grid { gap: 8px; }
  .coa-stat { padding: 12px; }
  .coa-stat .v { font-size: 18px; }
  .coa-chart { height: 100px; }

  /* Reviews */
  .reviews-marquee { padding: 8px 0 24px; }
  .review-card { flex: 0 0 320px; margin-right: 14px; padding: 24px; }
  .review-quote { font-size: 15px; }

  /* Email capture */
  .email-section { padding: 88px 20px; }
  .email-form {
    flex-direction: column;
    border-radius: 22px;
    padding: 10px;
    gap: 8px;
  }
  .email-form input { width: 100%; height: 44px; padding: 0 14px; }
  .email-form .btn { width: 100%; }

  /* Footer */
  .footer { padding: 72px 0 32px; }
  .footer-grid { gap: 36px; }
  .footer-bottom { margin-top: 56px; }

  /* Cart drawer */
  .drawer-head { padding: 18px 20px; }
  .drawer-body { padding: 12px 20px; }
  .drawer-foot { padding: 20px; }

  /* Search modal */
  .search-modal { padding: 56px 14px 14px; }
  .search-modal-inner { border-radius: 20px; }
  .search-bar { padding: 14px 18px; }
  .search-body { padding: 16px 18px 18px; }

  /* Account modal */
  .account-modal-inner { padding: 26px; border-radius: 20px; }

  /* Collection */
  .collection { padding-top: 96px; padding-bottom: 72px; gap: 28px; }
  .filter-side { position: static; }
  .collection-head { gap: 12px; }
  .sort-dropdown { width: 100%; }

  /* Collection filter toggle (mobile/tablet) */
  .filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid var(--border-strong);
    background: rgba(20,20,20,0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--text);
    font-size: 14px;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: background .2s, border-color .2s;
  }
  .filter-toggle:hover { background: rgba(255,255,255,0.04); }
  .filter-toggle-badge {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--emerald);
    color: #fff;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  /* Collapsed filter side */
  .filter-side {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,.2,.2,1), margin .3s ease, opacity .3s ease;
    margin-top: 0;
    opacity: 0;
  }
  .filter-side.open {
    max-height: 2000px;
    opacity: 1;
    margin-top: 4px;
  }

  /* Product page */
  .product-page { padding-top: 96px; padding-bottom: 64px; }
  .product-page-grid { gap: 36px; }
  .product-gallery {
    position: relative;
    border-radius: 22px;
    aspect-ratio: 4 / 5;
  }
  .product-gallery-inner { padding: 16px !important; }
  .purchase-card { padding: 24px; }
  .purchase-card h1 { line-height: 1.02; }
  .price-row { gap: 10px; flex-wrap: wrap; }
  .price-row > span:last-child { width: 100%; margin-left: 0 !important; }
  .product-thumb { width: 60px; height: 60px; }

  /* Product page tabs scroll */
  .tab-list {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tab-list::-webkit-scrollbar { display: none; }
  .tab-list button { flex: 0 0 auto; white-space: nowrap; }
  .specs-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }

  /* Research */
  .research-hero { padding: 128px 0 56px; }
  .feature-article {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 20px !important;
  }
  .article-card { padding: 14px; }
  .article-cover { aspect-ratio: 5 / 4; }
  .article-title { font-size: 14px; line-height: 1.25; margin-top: 8px; }
  .article-meta { font-size: 10px; margin-top: 8px; }
  .article-meta .dot { font-size: 8px; }

  /* FAQ */
  .faq-page { padding: 128px 0 72px; }
  .faq-search { height: 50px; margin: 24px auto 36px; padding: 0 18px; }
  .faq-search .kbd { display: none; }
  .faq-grid { gap: 28px; }
  .faq-categories {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
  }
  .faq-cat {
    flex: 0 0 auto;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: rgba(255,255,255,0.02);
  }
  .faq-cat.active {
    background: rgba(31,138,91,0.12);
    color: #5dc593;
    border-color: rgba(31,138,91,0.3);
  }
  .faq-cat .count { display: none; }
  /* "Still Stuck?" card inside the aside — take full width on its own row */
  .faq-categories > div:not(.faq-cat) {
    width: 100%;
    margin-top: 18px !important;
  }

  /* Support page */
  .support-page { padding: 128px 0 80px; }
  .support-card { padding: 24px; margin-top: 40px; border-radius: 20px; }
  .support-email { padding: 16px 18px; gap: 12px; flex-wrap: wrap; }
  .support-email-text { font-size: 16px; }
  .support-grid { margin-top: 56px; gap: 12px; }
  .support-tile { padding: 22px; }

  /* COA viewer */
  .coa-viewer { padding: 16px; }
  .coa-viewer-inner { padding: 18px; border-radius: 20px; }
  .coa-viewer-image { aspect-ratio: 5/7; max-height: 64vh; }

  /* COA archive */
  .coa-archive-body { padding: 20px; }
  .coa-archive-stats { gap: 8px; }

  /* Article modal */
  .article-modal { padding: 16px; }
  .article-modal-inner { padding: 22px; border-radius: 20px; }

  /* Legal block */
  .legal-block { padding: 20px; font-size: 11px; }
}

/* ============================================================
   RESPONSIVE — PHONE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .nav-inner { height: 60px; padding: 0 14px; }

  /* Smaller scale */
  .h-display { font-size: clamp(42px, 13vw, 80px); }
  .h-title { font-size: clamp(30px, 9vw, 56px); }
  .h-section { font-size: clamp(24px, 6vw, 40px); }
  .lead { font-size: 15px; }

  /* Hero — single column on mobile, vial hidden */
  .hero { padding-top: 100px; padding-bottom: 48px; }
  .hero-stage { display: none; }
  .hero-content { gap: 0; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1 1 calc(50% - 5px); min-width: 0; padding: 0 14px; }
  .trust-row { margin-top: 28px; gap: 10px 18px; }
  .trust-pill { font-size: 11px; }

  /* Section padding */
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 56px 0; }

  /* Product card stage smaller */
  .product-stage { aspect-ratio: 1 / 1; padding: 14px; margin-bottom: 14px; }
  .product-name { font-size: 15px; letter-spacing: -0.015em; }
  .product-purity { font-size: 10px; }
  .product-sub { font-size: 10px; letter-spacing: 0.08em; margin-top: 4px; }
  .product-price { font-size: 14px; }
  .product-add { width: 34px; height: 34px; }
  .product-add svg { width: 14px; height: 14px; }
  .product-card { padding: 14px; }
  .product-bottom { margin-top: 12px; }

  /* Purchase card */
  .purchase-card { padding: 20px; }
  .purchase-card h1 { font-size: clamp(28px, 8.5vw, 44px) !important; }
  .price { font-size: 26px; }
  .pay-row { grid-template-columns: 1fr; }
  .product-gallery-inner { padding: 12px !important; }
  .product-gallery {
    aspect-ratio: 4 / 5;
    max-height: 70vh;
  }

  /* Footer grid 2-col */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 18px;
    margin-top: 40px;
  }
  .pay-icons { flex-wrap: wrap; gap: 6px; }
  .legal-block { font-size: 11px; line-height: 1.55; }

  /* Eyebrow tiny */
  .eyebrow { font-size: 10px; letter-spacing: 0.16em; }
  .eyebrow::before { width: 14px; }

  /* Collection */
  .collection { padding-top: 92px; padding-bottom: 56px; }

  /* Coa stats — go 3 col still but smaller */
  .coa-stat-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .coa-stat { padding: 10px; }
  .coa-stat .v { font-size: 16px; }
  .coa-stat .l { font-size: 9px; letter-spacing: 0.12em; }

  /* Reviews */
  .review-card { flex: 0 0 86vw; max-width: 320px; margin-right: 12px; padding: 22px; }
  .review-quote { font-size: 14px; line-height: 1.5; }

  /* Product thumbs */
  .product-thumb { width: 56px; height: 56px; }
  .product-thumbs { gap: 8px; }

  /* COA archive */
  .coa-archive-body { padding: 14px; }
  .coa-archive-thumb { aspect-ratio: 4 / 5; }
  .coa-archive-title { font-size: 14px; }
  .coa-archive-sub { font-size: 10px; }
  .coa-archive-stats { grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 12px; padding-top: 10px; }
  .coa-archive-stats .l { font-size: 8px; letter-spacing: 0.1em; }
  .coa-archive-stats .v { font-size: 11px; }
  .coa-archive-actions { margin-top: 12px; gap: 6px; flex-wrap: wrap; }
  .coa-archive-key { font-size: 9px; }

  /* Sort dropdown full width on mobile */
  .sort-btn { width: 100%; justify-content: space-between; }

  /* Modals */
  .article-modal-inner { padding: 20px; }
  .account-modal-inner { padding: 22px; }
  .search-modal { padding: 48px 12px 12px; }

  /* Drawer (cart) full width on tiny */
  .drawer { width: 100vw; max-width: 100vw; border-left: 0; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONE (≤ 420px)
   ============================================================ */
@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  .h-display { font-size: clamp(38px, 14vw, 64px); }
  .nav-logo { font-size: 15px; }
  .nav-logo .mark svg { width: 20px; height: 20px; }

  .hero-ctas .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }

  .ticker-track { gap: 28px; font-size: 10.5px; }

  .coa-stat .v { font-size: 14px; }
  .coa-archive-stats .v { font-size: 12px; }

  .review-card { flex: 0 0 86vw; max-width: 320px; margin-right: 12px; }
}

/* iOS — prevent zoom on input focus by ensuring 16px minimum */
@media (max-width: 880px) {
  .email-form input,
  .faq-search input,
  .search-bar input,
  .form-input { font-size: 16px; }
}

/* ============================================================
   SHOPIFY-SPECIFIC OVERRIDES
   ============================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Shop Pay / dynamic checkout button container — Shopify renders its own
   buttons here via {{ form | payment_button }}. Make it slot cleanly into
   the purchase card. */
.shopify-payment-button {
  margin-top: 4px;
}
.shopify-payment-button__button {
  border-radius: 999px !important;
  height: 52px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
}
.shopify-payment-button__button--unbranded {
  background: linear-gradient(180deg, #228a5e, #15623f) !important;
  color: #fff !important;
}
.shopify-payment-button__more-options {
  margin-top: 8px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-family: var(--mono) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* Shopify cart errors / form errors */
.errors {
  list-style: none; padding: 12px 14px; margin: 12px 0;
  border-radius: 12px;
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.3);
  color: #ff8b8b; font-size: 13px;
}

/* Make Shopify-injected images cooperate with our stages */
.product-stage img,
.cart-thumb img,
.search-result-thumb img,
.product-thumb img,
.product-gallery-inner img,
.lab-photo img,
.hero-vial-img,
.coa-archive-thumb img,
.article-cover img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  user-select: none;
  -webkit-user-drag: none;
}
.cart-thumb img,
.search-result-thumb img,
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lab-photo img,
.hero-vial-img,
.coa-archive-thumb img,
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery-inner img {
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Anchor scroll offset so sections clear the fixed header + announcement bar */
#research, #coas, #faq, #support {
  scroll-margin-top: 110px;
}
/* ============================================================
   PRESS FEEDBACK — snappier transitions + add-to-cart pulse
   ============================================================ */

/* Faster, more responsive transitions on every button */
.btn,
.icon-btn,
.product-add,
.search-chip,
.acc-head .plus,
.sort-btn,
.filter-toggle,
.tag,
.faq-cat,
.mobile-drawer-nav button,
.mobile-drawer-nav a,
.nav-menu a,
.nav-menu button {
  transition:
    transform .12s cubic-bezier(.2,.7,.2,1),
    background .15s ease,
    color .15s ease,
    border-color .15s ease,
    box-shadow .15s ease,
    opacity .15s ease,
    filter .15s ease;
  will-change: transform;
}

/* Universal press depress */
.btn:active,
.icon-btn:active,
.product-add:active,
.search-chip:active,
.acc-head:active .plus,
.sort-btn:active,
.filter-toggle:active,
.faq-cat:active {
  transform: scale(.96) translateY(1px);
  transition-duration: .06s;
}

/* Add-to-cart pulse on the product plus button.
   Fired the moment the user taps — independent of the network response. */
@keyframes addPulse {
  0%   { transform: scale(1);    background: rgba(255,255,255,0.06); }
  18%  { transform: scale(0.88); }
  40%  { transform: scale(1.28); background: var(--emerald);
         box-shadow: 0 0 0 6px rgba(31,138,91,0.20), 0 8px 28px -4px rgba(31,138,91,0.55); }
  70%  { transform: scale(1.08); background: var(--emerald);
         box-shadow: 0 0 0 14px rgba(31,138,91,0), 0 8px 24px -4px rgba(31,138,91,0.45); }
  100% { transform: scale(1);    background: var(--emerald);
         box-shadow: 0 0 0 0    rgba(31,138,91,0), 0 4px 14px -4px rgba(31,138,91,0.35); }
}
@keyframes iconSwap {
  0%   { transform: scale(1) rotate(0deg); opacity: 1; }
  40%  { transform: scale(0)  rotate(90deg); opacity: 0; }
  60%  { transform: scale(0)  rotate(-90deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.product-add.adding {
  animation: addPulse .65s cubic-bezier(.34, 1.56, .64, 1) forwards;
  background: var(--emerald);
  color: #fff;
}
.product-add.adding svg {
  stroke: #fff;
  animation: iconSwap .55s ease both;
}
.product-add:hover {
  background: var(--emerald);
  box-shadow: 0 4px 14px -4px rgba(31,138,91,0.5);
}
.product-add:hover svg { stroke: #fff; }

/* PDP "Add to Cart" emerald button — same pulse, scaled to the button shape */
.btn-emerald.adding {
  animation: emeraldPulse .65s cubic-bezier(.34, 1.56, .64, 1) forwards;
}
@keyframes emeraldPulse {
  0%   { transform: scale(1); }
  18%  { transform: scale(0.98); }
  40%  { transform: scale(1.03);
         box-shadow: 0 0 0 6px rgba(31,138,91,0.20),
                     0 12px 32px -8px rgba(31,138,91,0.55),
                     inset 0 1px 0 rgba(255,255,255,0.12); }
  100% { transform: scale(1);
         box-shadow: 0 0 0 0 rgba(31,138,91,0),
                     0 10px 28px -8px rgba(31,138,91,0.45),
                     inset 0 1px 0 rgba(255,255,255,0.12); }
}
/* ============================================================
   SHIP-BAR — true edge-to-edge bleed + opaque scroll cover
   ============================================================ */

/* Kill the inherited max-width cap so the bar can extend past the
   drawer body's padding */
.drawer .ship-bar { max-width: none !important; }

/* MOBILE — drawer is full viewport width, so the bar uses 100vw
   directly. This guarantees it touches the phone's edges no matter
   what padding the parent has. */
@media (max-width: 880px) {
  .drawer .ship-bar {
    position: static !important;

    /* Force exact viewport width, ignoring all parent padding */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: -16px !important;        /* eat the drawer-body top padding */
    margin-bottom: 14px !important;

    padding: 14px 20px !important;
    box-sizing: border-box !important;

    /* OPAQUE background so items scrolling behind it disappear cleanly
       instead of bleeding through. Matches your drawer's dark theme. */
    background:
      linear-gradient(180deg, rgba(31,138,91,0.22), rgba(31,138,91,0.14)),
      #0c0c0c !important;
    border-bottom: 1px solid rgba(31,138,91,0.30) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Account for drawer-body's actual top padding at each phone size */
  @media (max-width: 430px) {
    .drawer .ship-bar { margin-top: -10px !important; padding: 12px 16px !important; }
  }
  @media (max-width: 375px) {
    .drawer .ship-bar { padding: 11px 14px !important; }
    .drawer .ship-bar-msg { font-size: 12px !important; }
  }
}

/* Desktop / tablet wide drawer — bleed to drawer width, not viewport */
@media (min-width: 881px) {
  .drawer .ship-bar {
    position: sticky !important;
    top: 0 !important;
    z-index: 20 !important;
    width: auto !important;
    margin: -16px -24px 16px -24px !important;
    padding: 14px 24px !important;
    background:
      linear-gradient(180deg, rgba(31,138,91,0.20), rgba(31,138,91,0.12)),
      #0c0c0c !important;
    border-bottom: 1px solid rgba(31,138,91,0.28) !important;
  }
}

.drawer .ship-bar-msg {
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.drawer .ship-bar-msg strong { color: #5dc593; font-weight: 600; }
.drawer .ship-bar-msg--win { color: #5dc593; font-weight: 500; }
.drawer .ship-bar-msg--win svg { stroke: #5dc593; }

.drawer .ship-bar-track {
  height: 6px; width: 100%;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.drawer .ship-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #1f8a5b, #5dc593);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 10px rgba(93,197,147,0.6);
}

/* Tablet — drawer-body padding becomes 12px 20px */
@media (max-width: 880px) {
  .drawer .ship-bar {
    margin: -12px -20px 14px -20px !important;
    padding: 13px 20px !important;
  }
}

/* Phone — drawer-body padding becomes 10px 16px */
@media (max-width: 430px) {
  .drawer .ship-bar {
    margin: -10px -16px 12px -16px !important;
    padding: 12px 16px !important;
  }
  .drawer .ship-bar-msg { font-size: 12.5px; }
}

/* Tiny phones */
@media (max-width: 375px) {
  .drawer .ship-bar {
    margin: -10px -14px 10px -14px !important;
    padding: 11px 14px !important;
  }
  .drawer .ship-bar-msg { font-size: 12px; }
}

/* Express checkout block */
.cart-express { margin-top: 10px; }
.cart-express-label {
  display: flex; align-items: center; gap: 10px;
  margin: 14px 0 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cart-express-label::before,
.cart-express-label::after {
  content: "";
  flex: 1; height: 1px;
  background: var(--border);
}

/* Shop Pay web component */
.cart-shop-pay,
shop-pay-button {
  width: 100% !important;
  display: block !important;
  --shop-pay-button-height: 50px;
  --shop-pay-button-border-radius: 999px;
  --shop-pay-button-width: 100%;
}
.cart-shop-pay::part(button) {
  width: 100% !important;
  height: 50px !important;
  border-radius: 999px !important;
}

/* PayPal / Apple Pay / Google Pay / Amazon Pay */
.cart-express .additional-checkout-buttons,
.cart-express .additional-checkout-button,
.cart-express [data-shopify="dynamic-checkout-cart"],
.cart-express shopify-buy-it-now-button,
.cart-express shopify-accelerated-checkout {
  width: 100% !important;
  display: block !important;
  margin-top: 8px;
}
.cart-express .additional-checkout-button {
  height: 50px !important;
  border-radius: 999px !important;
  overflow: hidden;
}
.cart-express button,
.cart-express .shopify-cleanslate { width: 100% !important; }
.cart-express shop-pay-button + .additional-checkout-buttons { margin-top: 8px; }

/* Small phones */
@media (max-width: 430px) {
  .ship-bar { margin: -12px -20px 12px; padding: 12px 20px; }
  .ship-bar-msg { font-size: 12.5px; }
  .cart-express-label { margin: 12px 0 8px; }
}
/* ============================================================
   CART DRAWER — LOCK IT DOWN ON MOBILE
   Stops side-to-side drift, iOS rubber-band, and ship-bar overflow.
   ============================================================ */

/* When drawer is open, freeze the page behind it so it can't scroll
   horizontally or bounce underneath. */
body.no-scroll,
html.no-scroll {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  overscroll-behavior: none !important;
  touch-action: none !important;
}

/* Drawer itself — pinned, full-width on mobile, no horizontal jitter */
@media (max-width: 880px) {
  .drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: auto !important;
    border-left: 0 !important;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,.2,.2,1) !important;
    will-change: transform;
    overflow: hidden !important;       /* no horizontal scroll inside drawer */
    overscroll-behavior: contain !important;
  }
  .drawer.open { transform: translateX(0) !important; }

  /* The scrollable inner area — vertical scroll only, no bounce escape */
  .drawer-body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y !important;     /* lock to vertical pan only */
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Drawer foot stays pinned, no horizontal shift */
  .drawer-foot {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Scrim covers the full viewport and blocks underlying touches */
  .drawer-scrim {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    touch-action: none !important;
  }

  /* SHIP-BAR — was using negative margins, which was the side-to-side
     drifter. Make it a normal full-width block instead. */
  .ship-bar {
    position: sticky;
    top: 0;
    z-index: 4;
    margin: 0 0 14px !important;        /* no negative margins */
    padding: 13px 20px !important;
    width: calc(100% + 40px);            /* match drawer-body's 20px sides */
    margin-left: -20px !important;
    margin-right: -20px !important;
    box-sizing: border-box;
  }

  /* Same correction at the 430/400/375 phone padding */
  @media (max-width: 430px) {
    .ship-bar {
      width: calc(100% + 32px);
      margin-left: -16px !important;
      margin-right: -16px !important;
      padding: 12px 16px !important;
    }
  }
}

/* Belt-and-braces: nothing inside the drawer is allowed to push wider
   than the drawer itself */
.drawer, .drawer * { max-width: 100% !important; }
.drawer img, .drawer iframe, .drawer video { max-width: 100% !important; }
/* ============================================================
   CART DRAWER — popout panel on mobile (not full screen)
   Shows a strip of the underlying page on the left, scrim dims it.
   ============================================================ */

/* Mobile drawer becomes an 88vw panel pinned to the right */
@media (max-width: 880px) {
  .drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(440px, 88vw) !important;
    max-width: 88vw !important;
    border-left: 1px solid var(--border) !important;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,.2,.2,1) !important;
    box-shadow: -24px 0 60px -12px rgba(0,0,0,0.55);
  }
  .drawer.open { transform: translateX(0) !important; }
}

@media (max-width: 430px) {
  .drawer {
    width: 88vw !important;
    max-width: 88vw !important;
  }
}

/* Scrim — make sure it dims the visible strip of the page behind */
@media (max-width: 880px) {
  .drawer-scrim {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.55) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    touch-action: none !important;
    z-index: 90 !important;
  }
  .drawer { z-index: 95 !important; }
}

/* Ship-bar now bleeds to the DRAWER edges (no longer 100vw) */
@media (max-width: 880px) {
  .drawer .ship-bar {
    width: auto !important;
    max-width: none !important;
    margin: -12px -20px 14px -20px !important;
    padding: 13px 20px !important;
  }
}
@media (max-width: 430px) {
  .drawer .ship-bar {
    margin: -10px -16px 12px -16px !important;
    padding: 12px 16px !important;
  }
}
@media (max-width: 375px) {
  .drawer .ship-bar {
    margin: -10px -14px 10px -14px !important;
    padding: 11px 14px !important;
  }
}
/* ============================================================
   SMALL PHONE POLISH — keep the desktop look, just stack tighter
   Targets: iPhone Pro / Pro Max / standard (≤430px)
   ============================================================ */

/* ---------- Collection page header ("Products") ---------- */
@media (max-width: 430px) {
  /* Kill the duplicate-text / outline ghost effect that's overlapping */
  .collection-head h1,
  .collection-head h1::before,
  .collection-head h1::after {
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
  }
  .collection-head h1::before,
  .collection-head h1::after { content: none !important; display: none !important; }
  .collection-head h1 {
    font-size: clamp(28px, 9vw, 44px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.025em !important;
  }
  .collection-head { gap: 8px !important; }
  .collection-head .results-row { font-size: 11px !important; letter-spacing: 0.14em !important; }
}

/* ---------- Product cards — stop overlaps cleanly ---------- */
@media (max-width: 430px) {
  /* Stack title above purity badge so they never overlap */
  .product-card .product-meta-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    width: 100% !important;
  }
  .product-card .product-name {
    font-size: 14px !important;
    line-height: 1.25 !important;
    width: 100% !important;
    overflow-wrap: anywhere !important;
  }
  .product-card .product-purity {
    align-self: flex-start !important;
    font-size: 10px !important;
    padding: 2px 7px !important;
  }
  .product-card .product-sub {
    font-size: 10px !important;
    letter-spacing: 0.06em !important;
    margin-top: 4px !important;
  }

  /* Star rating stays tight on its own line */
  .product-card .star-row {
    margin-top: 8px !important;
    gap: 3px !important;
  }
  .product-card .star-row svg { width: 11px !important; height: 11px !important; }
  .product-card .star-row .count { font-size: 10px !important; }

  /* Stack price above Add to Cart — no more side-by-side collision */
  .product-card .product-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    margin-top: 12px !important;
    min-width: 0 !important;
  }
  .product-card .product-price {
    width: 100% !important;
    flex: 0 0 auto !important;
    min-width: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }
  /* Add to Cart button becomes a full-width pill below the price */
  .product-card .product-add {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    border-radius: 999px !important;
    padding: 0 14px !important;
    font-size: 12.5px !important;
    letter-spacing: 0.02em !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }
  .product-card .product-add svg { width: 13px !important; height: 13px !important; }
}

/* ---------- PDP top crumb / breadcrumb ---------- */
@media (max-width: 430px) {
  .product-page .breadcrumb,
  .product-page .product-crumb,
  .product-page [class*="crumb"] {
    flex-wrap: wrap !important;
    row-gap: 4px !important;
    font-size: 10px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.12em !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* ---------- COA viewer modal — tighter padding on small phones ---------- */
@media (max-width: 430px) {
  .coa-viewer-inner { padding: 12px !important; border-radius: 16px !important; }
  .coa-viewer-image { aspect-ratio: 5/7 !important; max-height: 58vh !important; }
  .coa-viewer-head h3 { font-size: 15px !important; }
  .coa-viewer-meta { gap: 6px !important; font-size: 10.5px !important; }
}

/* ---------- iPhone 16/17 Pro standard width (~393px) ---------- */
@media (max-width: 400px) {
  .product-card { padding: 12px !important; border-radius: 16px !important; }
  .product-card .product-stage { padding: 10px !important; margin-bottom: 10px !important; }
  .product-card .product-name { font-size: 13.5px !important; }
  .product-card .product-price { font-size: 15px !important; }
  .product-card .product-add { height: 36px !important; font-size: 12px !important; }
  .product-grid { gap: 10px !important; }
}

/* ---------- iPhone Mini / SE (≤375px) ---------- */
@media (max-width: 375px) {
  .product-card { padding: 11px !important; }
  .product-card .product-name { font-size: 13px !important; }
  .product-card .product-price { font-size: 14.5px !important; }
  .product-card .product-add { height: 34px !important; font-size: 11.5px !important; }
  .product-grid { gap: 9px !important; }
  .collection-head h1 { font-size: clamp(26px, 8.5vw, 38px) !important; }
}
/* ============================================================
   SMALL PHONE NAV + COLLECTION TOP — fix overlap + edge clipping
   ============================================================ */

@media (max-width: 430px) {

  /* --- NAV: keep icons inside the viewport on tiny phones --- */
  .nav,
  .nav-inner {
    padding-left: max(10px, env(safe-area-inset-left)) !important;
    padding-right: max(10px, env(safe-area-inset-right)) !important;
    box-sizing: border-box !important;
    max-width: 100vw !important;
    overflow: visible !important;
  }
  .nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  /* Logo takes only what it needs; right cluster gets priority */
  .nav-logo {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    font-size: 14px !important;
    gap: 6px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }
  .nav-logo .mark { width: 24px !important; height: 24px !important; flex-shrink: 0; }

  /* Right-side icon cluster — make sure all icons stay visible */
  .nav-actions,
  .nav-icons,
  .nav-right {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin-right: 0 !important;
  }
  .icon-btn,
  .mobile-menu-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    flex-shrink: 0 !important;
  }
  .icon-btn svg,
  .mobile-menu-btn svg { width: 17px !important; height: 17px !important; }

  /* Cart badge stays attached to its icon and doesn't push it off-screen */
  .cart-badge,
  .icon-btn .badge,
  .icon-btn [data-cart-count] {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    min-width: 16px !important;
    height: 16px !important;
    font-size: 9.5px !important;
    padding: 0 4px !important;
  }
  .icon-btn { position: relative !important; }

@media (max-width: 430px) {
  /* Collection page — just clear the nav, then content sits close */
  .collection,
  .collection-page,
  .template-collection main,
  main.template-collection {
    padding-top: 80px !important;
    padding-bottom: 36px !important;
    gap: 14px !important;
  }
  /* Kill any section-pad top padding stacking on top of this */
  .template-collection .section-pad,
  .collection .section-pad { padding-top: 0 !important; }

  .collection-head {
    padding-top: 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }
  .collection-head .eyebrow,
  .collection-head .results-row,
  .collection-head .results { margin: 0 !important; padding: 0 !important; }
  .collection-head h1 {
    margin: 2px 0 !important;
    font-size: clamp(28px, 8.5vw, 42px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.025em !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    position: relative !important;
    z-index: 1 !important;
  }
  .collection-head h1::before,
  .collection-head h1::after { content: none !important; display: none !important; }

  /* Tighten the filter button area */
  .filter-toggle {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    height: 44px !important;
  }
}

@media (max-width: 400px) {
  .collection { padding-top: 76px !important; }
}

@media (max-width: 375px) {
  .collection { padding-top: 72px !important; }
}
/* ============================================================
   PRODUCT CARDS — universal horizontal layout
   Price (with strike) on the left, Add to Cart pill on the right.
   Applies to every screen size — desktop, tablet, phone.
   ============================================================ */

/* Title + purity badge — title left, badge right, both on one line */
.product-grid .product-card .product-meta-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  width: 100% !important;
}
.product-grid .product-card .product-name {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  letter-spacing: -0.015em !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: var(--text) !important;
}
.product-grid .product-card .product-purity {
  flex: 0 0 auto !important;
  font-size: 10.5px !important;
  font-family: var(--mono) !important;
  color: #5dc593 !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap !important;
}

/* Star rating row */
.product-grid .product-card .star-row {
  margin-top: 6px !important;
  gap: 4px !important;
  display: flex !important;
  align-items: center !important;
}
.product-grid .product-card .star-row svg { width: 12px !important; height: 12px !important; }
.product-grid .product-card .star-row .count {
  font-size: 11px !important;
  color: var(--muted) !important;
  margin-left: 4px !important;
}

/* PRICE + ADD TO CART — horizontal row, price gets all the room it needs */
.product-grid .product-card .product-bottom {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin-top: 12px !important;
  width: 100% !important;
  min-width: 0 !important;
}

/* Price column: strike-through + sale price on one line, always full width */
.product-grid .product-card .product-price {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 6px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #5dc593 !important;
  white-space: nowrap !important;
  overflow: visible !important;
}
.product-grid .product-card .product-compare,
.product-grid .product-card .product-price s,
.product-grid .product-card .product-price del,
.product-grid .product-card .compare-at {
  font-size: 12.5px !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
  white-space: nowrap !important;
}

/* Add to Cart — compact pill on the right, fixed width, never grows */
.product-grid .product-card .product-add {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 92px !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  border-radius: 999px !important;
  padding: 0 14px !important;
  background: linear-gradient(180deg, #228a5e, #15623f) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  border: 0 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 4px 12px -4px rgba(31,138,91,0.45) !important;
  transition: transform .12s ease, filter .15s ease !important;
}
.product-grid .product-card .product-add:hover { filter: brightness(1.08); }
.product-grid .product-card .product-add:active { transform: scale(.96); }
.product-grid .product-card .product-add svg {
  width: 13px !important;
  height: 13px !important;
  stroke: #fff !important;
}

/* Card overall */
.product-grid .product-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
/* Bottom row always pinned to the card bottom so buttons line up */
.product-grid .product-card .product-bottom { margin-top: auto !important; }

/* ---------- Phone sizing tweaks (keep same layout, just smaller) ---------- */
@media (max-width: 430px) {
  .product-grid .product-card .product-name { font-size: 14px !important; }
  .product-grid .product-card .product-price { font-size: 15px !important; gap: 5px !important; }
  .product-grid .product-card .product-compare,
  .product-grid .product-card .product-price s,
  .product-grid .product-card .product-price del { font-size: 11.5px !important; }
  .product-grid .product-card .product-bottom { gap: 8px !important; }
  .product-grid .product-card .product-add {
    min-width: 80px !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    font-size: 11.5px !important;
    padding: 0 12px !important;
  }
}

@media (max-width: 400px) {
  .product-grid .product-card .product-name { font-size: 13.5px !important; }
  .product-grid .product-card .product-price { font-size: 14px !important; }
  .product-grid .product-card .product-compare,
  .product-grid .product-card .product-price s,
  .product-grid .product-card .product-price del { font-size: 11px !important; }
  .product-grid .product-card .product-bottom { gap: 6px !important; }
  .product-grid .product-card .product-add {
    min-width: 72px !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    font-size: 11px !important;
    padding: 0 10px !important;
  }
}

@media (max-width: 375px) {
  .product-grid .product-card .product-name { font-size: 13px !important; }
  .product-grid .product-card .product-price { font-size: 13.5px !important; gap: 4px !important; }
  .product-grid .product-card .product-add {
    min-width: 64px !important;
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    font-size: 10.5px !important;
    padding: 0 8px !important;
  }
}
/* ============================================================
   ADD TO CART BUTTON — single source of text, compact size,
   clean fade animation. No more "Adding... Add to Cart" overlap.
   ============================================================ */

/* Hide any text the JS injects via textContent. The CSS pseudo-element
   below is the only thing that ever renders text in this button. */
.product-grid .product-card .product-add {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}

/* Hide the plus-icon SVG — we use text-only buttons now */
.product-grid .product-card .product-add svg,
.product-grid .product-card .product-add > * {
  display: none !important;
}

/* The ONE source of text in the button */
.product-grid .product-card .product-add::after {
  content: "Add to Cart";
  display: inline-block !important;
  font-size: 11.5px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  color: #fff !important;
  white-space: nowrap !important;
  transition: opacity .18s ease !important;
}

/* State swaps — single text source, clean fade, no overlap */
.product-grid .product-card .product-add.adding::after,
.product-grid .product-card .product-add.sv-loading::after,
.product-grid .product-card .product-add[data-state="loading"]::after {
  content: "Adding…";
}
.product-grid .product-card .product-add.added::after,
.product-grid .product-card .product-add.sv-added::after,
.product-grid .product-card .product-add[data-state="added"]::after {
  content: "✓ Added";
}

/* Button shape — compact pill so the price fits beside it */
.product-grid .product-card .product-add {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 78px !important;
  max-width: 90px !important;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  border: 0 !important;
  cursor: pointer !important;
  background: linear-gradient(180deg, #228a5e, #15623f) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 4px 12px -4px rgba(31,138,91,0.45) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition:
    transform .12s ease,
    filter .15s ease,
    box-shadow .15s ease,
    background .2s ease !important;
}

/* Hover + press — subtle */
.product-grid .product-card .product-add:hover { filter: brightness(1.08); }
.product-grid .product-card .product-add:active { transform: scale(.95); }

/* Added state — flash brighter emerald briefly */
.product-grid .product-card .product-add.added,
.product-grid .product-card .product-add.sv-added {
  background: linear-gradient(180deg, #2bb077, #1f8a5b) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 0 6px rgba(31,138,91,0.18),
    0 6px 18px -4px rgba(31,138,91,0.55) !important;
  animation: addedFlash .55s cubic-bezier(.34, 1.56, .64, 1) !important;
}
@keyframes addedFlash {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Price column gets all leftover room with a comfortable gap */
.product-grid .product-card .product-bottom {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0 !important;
}
.product-grid .product-card .product-price {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 6px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #5dc593 !important;
  white-space: nowrap !important;
  overflow: visible !important;
}
.product-grid .product-card .product-compare,
.product-grid .product-card .product-price s,
.product-grid .product-card .product-price del {
  font-size: 12px !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
}

/* Phone tightening — button stays small, price always wins the leftover space */
@media (max-width: 430px) {
  .product-grid .product-card .product-add {
    min-width: 72px !important;
    max-width: 84px !important;
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    padding: 0 10px !important;
  }
  .product-grid .product-card .product-add::after { font-size: 11px !important; }
  .product-grid .product-card .product-price { font-size: 14px !important; }
  .product-grid .product-card .product-compare,
  .product-grid .product-card .product-price s,
  .product-grid .product-card .product-price del { font-size: 11px !important; }
}

@media (max-width: 400px) {
  .product-grid .product-card .product-add {
    min-width: 66px !important;
    max-width: 78px !important;
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    padding: 0 9px !important;
  }
  .product-grid .product-card .product-add::after { font-size: 10.5px !important; }
  .product-grid .product-card .product-bottom { gap: 8px !important; }
}

@media (max-width: 375px) {
  .product-grid .product-card .product-add {
    min-width: 60px !important;
    max-width: 72px !important;
    height: 28px !important;
    padding: 0 8px !important;
  }
  .product-grid .product-card .product-add::after { font-size: 10px !important; }
}
/* ============================================================
   PRODUCT CARD BOTTOM ROW — guaranteed breathing room
   Forces space between price and Add to Cart on every phone size.
   ============================================================ */

@media (max-width: 880px) {
  /* Bigger gap between price column and button */
  .product-grid .product-card .product-bottom {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Price column: stack the strike + sale vertically so it's narrow */
  .product-grid .product-card .product-price {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    line-height: 1.05 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #5dc593 !important;
    white-space: nowrap !important;
  }
  .product-grid .product-card .product-compare,
  .product-grid .product-card .product-price s,
  .product-grid .product-card .product-price del,
  .product-grid .product-card .compare-at {
    font-size: 10.5px !important;
    line-height: 1.1 !important;
    color: var(--muted) !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
    margin-bottom: 1px !important;
  }

  /* Button — smaller, locked, never grows into the price */
  .product-grid .product-card .product-add {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 76px !important;
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    padding: 0 10px !important;
  }
  .product-grid .product-card .product-add::after {
    font-size: 10.5px !important;
    letter-spacing: 0 !important;
  }
}

/* iPhone Pro / Pro Max range */
@media (max-width: 430px) {
  .product-grid .product-card .product-bottom { gap: 12px !important; }
  .product-grid .product-card .product-price { font-size: 13.5px !important; }
  .product-grid .product-card .product-compare,
  .product-grid .product-card .product-price s,
  .product-grid .product-card .product-price del { font-size: 10px !important; }
  .product-grid .product-card .product-add {
    max-width: 72px !important;
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    padding: 0 8px !important;
  }
  .product-grid .product-card .product-add::after { font-size: 10px !important; }
}

/* iPhone 17 / 16 / 15 Pro standard width */
@media (max-width: 400px) {
  .product-grid .product-card .product-bottom { gap: 10px !important; }
  .product-grid .product-card .product-price { font-size: 13px !important; }
  .product-grid .product-card .product-compare,
  .product-grid .product-card .product-price s,
  .product-grid .product-card .product-price del { font-size: 9.5px !important; }
  .product-grid .product-card .product-add {
    max-width: 66px !important;
    padding: 0 7px !important;
  }
  .product-grid .product-card .product-add::after { font-size: 9.5px !important; }
}

/* iPhone SE / Mini */
@media (max-width: 375px) {
  .product-grid .product-card .product-bottom { gap: 8px !important; }
  .product-grid .product-card .product-price { font-size: 12.5px !important; }
  .product-grid .product-card .product-add {
    max-width: 60px !important;
    padding: 0 6px !important;
  }
  .product-grid .product-card .product-add::after { font-size: 9px !important; }
}
/* Always-visible fallback express checkout buttons */
.cart-express-fallback {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}
/* Hide fallback when Shopify's natives are working */
.cart-express:has(shop-pay-button[data-sp-rendered="1"]) .exp-shop-pay,
.cart-express:has([data-additional-cb]:not(:empty)) .exp-paypal,
.cart-express:has([data-additional-cb]:not(:empty)) .exp-apple-pay,
.cart-express:has([data-additional-cb]:not(:empty)) .exp-google-pay {
  display: none !important;
}

.cart-express-fallback .exp-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  height: 50px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: -0.005em !important;
  border: 0 !important;
  cursor: pointer !important;
  transition: transform .12s ease, filter .15s ease, box-shadow .15s ease !important;
}
.cart-express-fallback .exp-btn:hover { filter: brightness(1.08); }
.cart-express-fallback .exp-btn:active { transform: scale(.98); }
.cart-express-fallback .exp-label {
  font-size: 11px;
  font-weight: 400;
  opacity: .85;
  letter-spacing: 0;
}
.cart-express-fallback .exp-btn strong { font-weight: 700; font-size: 16px; }

.cart-express-fallback .exp-shop-pay {
  background: #5a31a8 !important;
  color: #fff !important;
}
.cart-express-fallback .exp-shop-pay strong { letter-spacing: -0.02em; }
.cart-express-fallback .exp-shop-pay strong span { color: #fff; }

.cart-express-fallback .exp-paypal {
  background: #ffc439 !important;
  color: #003087 !important;
}
.cart-express-fallback .exp-paypal strong { font-family: Georgia, serif; font-style: italic; }

.cart-express-fallback .exp-apple-pay {
  background: #000 !important;
  color: #fff !important;
}
.cart-express-fallback .exp-apple-pay strong::before {
  content: "";
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
}

.cart-express-fallback .exp-google-pay {
  background: #fff !important;
  color: #3c4043 !important;
  border: 1px solid #dadce0 !important;
}
.cart-express-fallback .exp-google-pay strong {
  color: #4285F4;
  font-size: 18px;
}

/* Only show Apple Pay fallback on Apple devices */
@supports not (-webkit-touch-callout: none) {
  .cart-express-fallback .exp-apple-pay { display: none; }
}
/* Desktop — let the shipping bar scroll up with the content */
@media (min-width: 881px) {
  .drawer .ship-bar {
    position: static !important;
    top: auto !important;
    z-index: auto !important;
  }
}
/* ============================================================
   PRICE STACK — strike-through above sale price on all phones
   (matches the smaller-phone layout, now applied through ≤ 880px)
   ============================================================ */
@media (max-width: 880px) {
  .product-grid .product-card .product-bottom {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    min-width: 0 !important;
  }

  /* Price column = vertical stack: strike-through on top, sale price below */
  .product-grid .product-card .product-price {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }
  .product-grid .product-card .product-price .sv-was {
    order: -1 !important;
    display: block !important;
    font-size: 11.5px !important;
    line-height: 1.1 !important;
    color: var(--muted, #8b8b8b) !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
    opacity: .75 !important;
    margin: 0 0 1px 0 !important;
  }
  .product-grid .product-card .product-price .sv-now {
    display: block !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
    color: #5dc593 !important;
    font-weight: 600 !important;
  }
}

/* Slightly tighter on iPhone Pro Max range */
@media (max-width: 480px) {
  .product-grid .product-card .product-price .sv-was { font-size: 11px !important; }
  .product-grid .product-card .product-price .sv-now { font-size: 14px !important; }
}

/* iPhone 17/16/15 Pro */
@media (max-width: 400px) {
  .product-grid .product-card .product-price .sv-was { font-size: 10.5px !important; }
  .product-grid .product-card .product-price .sv-now { font-size: 13.5px !important; }
}

/* iPhone SE / Mini */
@media (max-width: 375px) {
  .product-grid .product-card .product-price .sv-was { font-size: 10px !important; }
  .product-grid .product-card .product-price .sv-now { font-size: 13px !important; }
}