/* ============================================================
   VELORA — BioPeptide Sciences
   Color tokens + base typography + shared utilities
   ============================================================ */
:root {
  /* Brand */
  --emerald: #0e3d2e;
  --emerald-deep: #082a1f;
  --emerald-soft: #1b5a45;
  --gold: #c9a47a;
  --gold-deep: #a8855a;
  --gold-soft: #e3cdae;

  /* Grounds */
  --ivory: #fbf8f3;
  --pearl: #f4eee4;
  --paper: #efe7d8;
  --mist: #e8e2d5;
  --line: rgba(14, 61, 46, 0.14);
  --line-soft: rgba(14, 61, 46, 0.08);

  /* Ink */
  --ink: #161613;
  --ink-2: #3a3a35;
  --ink-3: #6a6a60;
  --ink-4: #97978b;

  /* Optional alt palette (pearl / pink) — toggled via Tweaks */
  --accent: var(--gold);

  /* Type */
  --f-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --f-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: default;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Layout helpers */
.wrap {
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
}
.wrap-wide {
  width: min(1440px, 100% - 32px);
  margin-inline: auto;
}

/* Type utilities */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
}
.eyebrow .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.mono {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.italic-serif {
  font-family: var(--f-display);
  font-style: italic;
}

/* Hairline rule */
.hr {
  height: 1px;
  background: var(--line);
  border: 0;
  width: 100%;
}
.hr-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  width: 120px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: default;
}
.btn-primary {
  background: var(--emerald);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--emerald-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -16px rgba(14, 61, 46, 0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--emerald);
}
.btn-ghost:hover {
  background: var(--emerald);
  color: var(--ivory);
}
.btn-gold {
  background: var(--gold);
  color: var(--emerald-deep);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--ivory);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.btn-link:hover {
  border-color: var(--emerald);
}
.btn .arr {
  transition: transform 0.25s ease;
}
.btn:hover .arr {
  transform: translateX(4px);
}

/* Reveal entrance — pure CSS, always ends visible */
@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 1;
  animation: reveal-in 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.reveal-delay-1 {
  animation-delay: 0.1s;
}
.reveal-delay-2 {
  animation-delay: 0.2s;
}
.reveal-delay-3 {
  animation-delay: 0.3s;
}
.reveal-delay-4 {
  animation-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
  }
}

/* Diagonal gold underline accent */
.gold-underline {
  position: relative;
  display: inline-block;
}
.gold-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Soft luminous radial — reused for hero / science backdrops */
.glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: all 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251, 248, 243, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-left {
  display: flex;
  gap: 28px;
}
.nav-right {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  align-items: center;
}
.nav-link {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  cursor: default;
  padding: 6px 0;
  position: relative;
}
.nav-link:hover {
  color: var(--emerald);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: 0.18em;
  color: var(--emerald);
  font-weight: 500;
}
.nav-mark {
  width: 32px;
  height: 32px;
}

/* Image-logo variant — used by <NavWithLogo/> (uploads/logo.png) */
.nav-logo-image {
  gap: 0;
  padding: 4px 0;
}
.nav-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.nav-mobile-hd-image {
  padding: 12px 0;
}
.nav-mobile-logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.nav-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--emerald-deep);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nav-mobile-close:hover {
  background: var(--emerald-deep);
  color: var(--ivory);
}
.nav-mobile-close:active {
  transform: scale(0.94);
}
.nav-mobile-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (max-width: 720px) {
  .nav-logo-img {
    height: 32px;
    max-width: 140px;
  }
}

/* Burger button (hidden by default, shown on mobile) */
.nav-burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
  justify-self: end;
}
.nav-burger:hover {
  background: rgba(14, 61, 46, 0.06);
}
.nav-burger span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1.5px;
  background: var(--emerald);
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-burger span:nth-child(1) {
  top: 14px;
}
.nav-burger span:nth-child(2) {
  top: 19px;
}
.nav-burger span:nth-child(3) {
  top: 24px;
}
.nav-burger.open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Mobile menu drawer */
.nav-mobile-scrim {
  position: fixed;
  inset: 0;
  background: rgba(8, 42, 31, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-mobile-scrim.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: var(--ivory);
  border-left: 1px solid var(--line);
  z-index: 96;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 70px -20px rgba(8, 42, 31, 0.35);
}
.nav-mobile-menu.open {
  transform: none;
}
.nav-mobile-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-brand {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--emerald);
  font-weight: 500;
}
.nav-mobile-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  gap: 4px;
  overflow-y: auto;
}
.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--emerald-deep);
  font-weight: 500;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.nav-mobile-link::after {
  content: '→';
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--gold-deep);
  opacity: 0.55;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-mobile-link:hover,
.nav-mobile-link:active {
  color: var(--gold-deep);
  padding-left: 6px;
}
.nav-mobile-link:hover::after,
.nav-mobile-link:active::after {
  opacity: 1;
  transform: translateX(4px);
}
.nav-mobile-foot {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--line);
  background: var(--pearl);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.nav-mobile-foot .btn {
  width: 100%;
  justify-content: center;
}
.nav-mobile-foot-note {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.nav-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink-2);
  position: relative;
}
.nav-icon:hover {
  color: var(--emerald);
  background: rgba(14, 61, 46, 0.05);
}
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--emerald);
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  background:
    radial-gradient(60% 80% at 78% 30%, rgba(201, 164, 122, 0.18), transparent 60%),
    radial-gradient(70% 90% at 12% 78%, rgba(14, 61, 46, 0.08), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--pearl) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 200px);
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--emerald-deep);
  margin: 24px 0 28px;
}
.hero h1 .it {
  font-style: italic;
  color: var(--emerald);
  font-weight: 300;
}
.hero h1 .au {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}
.hero p.lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hero-meta .m {
  flex: 1;
}
.hero-meta .m b {
  display: block;
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--emerald-deep);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta .m span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Mobile hero image — hidden on desktop, shown on tablet/mobile */
.hero-mobile-image {
  display: none;
}

/* Hero composition */
.hero-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 760px;
}
.hero-stage .plinth {
  position: absolute;
  inset: auto 6% 6% 6%;
  height: 60%;
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(228, 217, 194, 0.6), rgba(201, 164, 122, 0.18));
  border-radius: 50% / 18%;
  filter: blur(14px);
  opacity: 0.9;
}
.hero-stage .ring {
  position: absolute;
  inset: 8% 0 0 0;
  aspect-ratio: 1;
  margin: auto;
  border: 1px solid rgba(201, 164, 122, 0.4);
  border-radius: 50%;
  max-width: 78%;
}
.hero-stage .ring.r2 {
  inset: 14% 0 0 0;
  max-width: 66%;
  border-color: rgba(14, 61, 46, 0.12);
}
.hero-stage .ring.r3 {
  inset: 20% 0 0 0;
  max-width: 54%;
  border-color: rgba(201, 164, 122, 0.25);
}

.hero-stage .badge-spin {
  position: absolute;
  top: 6%;
  right: 6%;
  width: 140px;
  height: 140px;
}
.hero-stage .badge-spin svg {
  width: 100%;
  height: 100%;
  animation: spin 28s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Floating peptide markers */
.peptide-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-soft);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  box-shadow: 0 6px 22px -10px rgba(14, 61, 46, 0.25);
  animation: float 6s ease-in-out infinite;
}
.peptide-tag .swatch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.peptide-tag.t1 {
  top: 14%;
  left: -4%;
  animation-delay: 0s;
}
.peptide-tag.t2 {
  top: 46%;
  right: -2%;
  animation-delay: -2s;
}
.peptide-tag.t3 {
  bottom: 14%;
  left: 6%;
  animation-delay: -4s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Marquee at hero bottom */
.marquee {
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--emerald);
  font-size: 22px;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-track i.sep {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTION CHROME
   ============================================================ */
.section {
  padding: 120px 0;
  position: relative;
}
.section-paper {
  background: var(--pearl);
}
.section-ink {
  background: var(--emerald-deep);
  color: var(--ivory);
}
.section-ink .eyebrow {
  color: var(--gold);
}
.section-ink h2 {
  color: var(--ivory);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--emerald-deep);
  margin: 18px 0 0;
}
.section-head h2 .it {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}
.section-ink .section-head h2 .it {
  color: var(--gold);
}
.section-head p {
  font-size: 15.5px;
  color: var(--ink-2);
  max-width: 480px;
  margin: 0;
}
.section-ink .section-head p {
  color: rgba(251, 248, 243, 0.7);
}

/* ============================================================
   SCIENCE / PEPTIDES
   ============================================================ */
.science-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.science-text h3 {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--emerald-deep);
}
.science-text p {
  color: var(--ink-2);
  margin: 0 0 18px;
}
.science-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  gap: 14px;
}
.science-bullets li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.science-bullets li:last-child {
  border-bottom: 1px solid var(--line);
}
.science-bullets .num {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--gold-deep);
  font-style: italic;
}
.science-bullets b {
  display: block;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: var(--emerald-deep);
}
.science-bullets small {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

.molecule {
  position: relative;
  aspect-ratio: 1;
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
}
.molecule .ring-bg {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201, 164, 122, 0.25), transparent 55%),
    linear-gradient(135deg, rgba(14, 61, 46, 0.04), rgba(14, 61, 46, 0.08));
  border: 1px solid var(--line);
}
.molecule .ring-bg::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px dashed rgba(14, 61, 46, 0.18);
}
.molecule svg {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.product-tabs {
  display: flex;
  gap: 6px;
}
.product-tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: default;
}
.product-tab:hover {
  color: var(--emerald);
}
.product-tab.active {
  background: var(--emerald);
  color: var(--ivory);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: default;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(14, 61, 46, 0.25);
  border-color: var(--gold-soft);
}
.product-art {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: radial-gradient(80% 70% at 50% 30%, rgba(255, 255, 255, 1), rgba(244, 238, 228, 1) 70%);
}
.product-art .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ivory);
  color: var(--emerald);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.product-art .wish {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: var(--ink-3);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.3s ease;
}
.product-card:hover .wish {
  opacity: 1;
  transform: none;
}
.product-art .wish:hover {
  color: var(--emerald);
}
.product-art .wish.on {
  color: var(--gold-deep);
  opacity: 1;
  transform: none;
}

.product-art .vial-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Photo-based product art (real product images) */
.product-card.photo .product-art {
  background: radial-gradient(80% 70% at 50% 30%, rgba(255, 255, 255, 0.85), rgba(244, 238, 228, 0.85) 70%);
}
.product-art .product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 0.5s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-card.photo:hover .product-art .product-img {
  transform: scale(1.04);
}
.product-art .product-img.bottle {
  opacity: 0;
  background: radial-gradient(80% 70% at 50% 30%, rgba(255, 255, 255, 1), rgba(244, 238, 228, 1) 70%);
}
.product-art .product-img.bottle.show {
  opacity: 1;
}
.product-art .quick {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 16px;
  background: var(--emerald);
  color: var(--ivory);
  border-radius: 999px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.product-card:hover .quick {
  opacity: 1;
  transform: none;
}
.product-card.added .quick {
  background: var(--gold);
  color: var(--emerald-deep);
  opacity: 1;
  transform: none;
}

.product-meta {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-meta .cat {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.product-meta h4 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: var(--emerald-deep);
  letter-spacing: -0.01em;
}
.product-meta .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product-meta .price {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
}
.product-meta .stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold-deep);
  font-size: 11px;
}
.product-meta .reviews {
  font-size: 11px;
  color: var(--ink-3);
  margin-left: 6px;
}

/* SVG vial shading */
.vial .body {
  fill: url(#vialGrad);
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 1;
}
.vial .cap {
  stroke: rgba(0, 0, 0, 0.15);
  stroke-width: 0.5;
}
.vial .label {
  fill: #fcfaf5;
  stroke: rgba(0, 0, 0, 0.06);
}

/* ============================================================
   SHOWCASE — Real product photography gallery
   ============================================================ */
.showcase-hero {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ivory), var(--pearl));
  border: 1px solid var(--line-soft);
  box-shadow: 0 60px 120px -60px rgba(14, 61, 46, 0.35);
  margin-bottom: 72px;
}
.showcase-hero-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.showcase-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 42, 31, 0) 40%, rgba(8, 42, 31, 0.55) 100%),
    radial-gradient(60% 60% at 50% 50%, transparent 50%, rgba(8, 42, 31, 0.18) 100%);
  pointer-events: none;
}
.showcase-hero-cap {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  color: var(--ivory);
}
.showcase-hero-cap h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  max-width: 620px;
}
.showcase-hero-cap h3 .it {
  font-style: italic;
  color: var(--gold-soft);
}
.showcase-hero-cap .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(251, 248, 243, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 248, 243, 0.25);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 12px;
}
.showcase-hero-cap p {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, 0.7);
  margin: 0;
  font-family: var(--f-mono);
  white-space: nowrap;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.showcase-tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  transition: all 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.showcase-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 64px -30px rgba(14, 61, 46, 0.3);
  border-color: var(--gold-soft);
}
.showcase-tile-art {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: radial-gradient(80% 70% at 50% 35%, rgba(255, 255, 255, 1), rgba(244, 238, 228, 0.95) 70%);
}
.showcase-tile-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.showcase-tile:hover .showcase-tile-img {
  transform: scale(1.04);
}
.showcase-tile-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  background: var(--ivory);
  color: var(--emerald);
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.showcase-tile-tag.gold {
  background: var(--gold);
  color: var(--emerald-deep);
  border-color: var(--gold-deep);
}
.showcase-tile-meta {
  padding: 16px 18px 18px;
  background: var(--ivory);
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.showcase-tile-meta h5 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--emerald-deep);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.showcase-tile-meta small {
  display: block;
  margin-top: 4px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.showcase-tile-meta .dose {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-deep);
  white-space: nowrap;
}

/* Tirzepatide editorial spotlight (between gallery & authenticity panel) */
.tirze-spotlight {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.tirze-spotlight-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.tirze-spotlight-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(14, 61, 46, 0.35);
  border: 1px solid var(--line-soft);
  background: var(--ivory);
}
.tirze-spotlight-img img {
  width: 100%;
  height: auto;
  display: block;
}
.tirze-spotlight-copy h3 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--emerald-deep);
  margin: 14px 0 18px;
}
.tirze-spotlight-copy h3 .it {
  font-style: italic;
  color: var(--gold-deep);
}
.tirze-spotlight-copy p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 22px;
}
.tirze-spotlight-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.tirze-spotlight-feat li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.tirze-spotlight-feat li:last-child {
  border-bottom: 1px solid var(--line);
}
.tirze-spotlight-feat b {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-deep);
  font-style: italic;
}
.tirze-spotlight-feat span {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

.tirze-spotlight-family {
  margin: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  box-shadow: 0 40px 80px -40px rgba(14, 61, 46, 0.3);
}
.tirze-spotlight-family img {
  width: 100%;
  height: auto;
  display: block;
}
.tirze-spotlight-family figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid var(--line-soft);
  background: var(--ivory);
  flex-wrap: wrap;
}
.tirze-spotlight-family .cap-label {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--emerald-deep);
  letter-spacing: -0.005em;
}
.tirze-spotlight-family .cap-sub {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Authenticity panel */
.showcase-auth {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  background: linear-gradient(135deg, var(--emerald-deep), var(--emerald));
  color: var(--ivory);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.showcase-auth::before {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(201, 164, 122, 0.18), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(201, 164, 122, 0.12), transparent 60%);
}
.showcase-auth-seal {
  position: relative;
  aspect-ratio: 1;
  max-width: 340px;
  margin-inline: auto;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}
.showcase-auth-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: spin 36s linear infinite;
}
.showcase-auth-text {
  position: relative;
  z-index: 2;
}
.showcase-auth-text .eyebrow {
  color: var(--gold);
}
.showcase-auth-text h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin: 14px 0 18px;
}
.showcase-auth-text h3 .it {
  font-style: italic;
  color: var(--gold);
}
.showcase-auth-text p {
  color: rgba(251, 248, 243, 0.72);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 540px;
}
.showcase-auth-feat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.showcase-auth-feat li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(201, 164, 122, 0.22);
}
.showcase-auth-feat li .num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
}
.showcase-auth-feat li b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: 4px;
}
.showcase-auth-feat li small {
  font-size: 12px;
  color: rgba(251, 248, 243, 0.6);
  line-height: 1.5;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.benefit {
  background: var(--ivory);
  padding: 48px 36px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: background 0.3s ease;
  position: relative;
}
.benefit:hover {
  background: #fffcf7;
}
.benefit-icon {
  width: 64px;
  height: 64px;
  color: var(--emerald);
}
.benefit h4 {
  font-family: var(--f-display);
  font-size: 26px;
  margin: 0;
  color: var(--emerald-deep);
  font-weight: 400;
  line-height: 1.1;
}
.benefit p {
  font-size: 13px;
  color: var(--ink-3);
  margin: 6px 0 0;
  line-height: 1.6;
}
.benefit .stat {
  font-family: var(--f-display);
  font-size: 14px;
  font-style: italic;
  color: var(--gold-deep);
  margin-top: 14px;
}
.benefit:hover .benefit-icon {
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.ba-stage {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 580px;
  border-radius: 8px;
  overflow: hidden;
  background: #332;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.5);
  user-select: none;
}
.ba-side {
  position: absolute;
  inset: 0;
}
.ba-side.before {
  background: radial-gradient(70% 60% at 50% 30%, #d6c1a8, #6e5a45 80%);
}
.ba-side.after {
  background: radial-gradient(70% 60% at 50% 30%, #f3dfc4, #8a6e4d 80%);
  clip-path: inset(0 50% 0 0);
}
/* Skin-like texture via radial dots */
.ba-side.before::before,
.ba-side.after::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.18) 1px, transparent 1.5px),
    radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1.5px);
  background-size:
    6px 6px,
    10px 10px;
  mix-blend-mode: multiply;
}
.ba-side.after::before {
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1.5px);
  background-size: 14px 14px;
}
.ba-label {
  position: absolute;
  bottom: 18px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  border-radius: 999px;
}
.ba-label.l {
  left: 18px;
}
.ba-label.r {
  right: 18px;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ivory);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.ba-knob {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.ba-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: default;
  width: 100%;
  height: 100%;
}

.ba-info h3 {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--emerald-deep);
}
.ba-info h3 .it {
  font-style: italic;
  color: var(--gold-deep);
}
.ba-info .results {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.ba-info .res {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.ba-info .res:last-child {
  border-bottom: 1px solid var(--line);
}
.ba-info .res b {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--gold-deep);
  font-weight: 500;
}
.ba-info .res span {
  font-size: 13px;
  color: var(--ink-2);
}
.ba-info .res small {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: right;
}
.ba-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 164, 122, 0.25);
  padding: 40px 36px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 340px;
}
.section-ink .test-card {
  background: linear-gradient(180deg, rgba(201, 164, 122, 0.07), rgba(201, 164, 122, 0.02));
}
.test-quote {
  font-family: var(--f-display);
  font-size: 21px;
  line-height: 1.4;
  font-weight: 300;
  color: var(--ivory);
  flex: 1;
}
.test-quote::before {
  content: '\201C';
  display: block;
  font-size: 48px;
  color: var(--gold);
  line-height: 0.4;
  margin-bottom: 18px;
}
.test-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 164, 122, 0.15);
}
.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.test-name b {
  display: block;
  font-size: 13px;
  color: var(--ivory);
  font-weight: 500;
}
.test-name span {
  font-size: 11px;
  color: rgba(251, 248, 243, 0.55);
}
.test-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

/* ============================================================
   CONTACT — Social-first concierge
   ============================================================ */
.contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(201, 164, 122, 0.18), transparent 60%),
    linear-gradient(180deg, var(--pearl), var(--paper));
}
.contact-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin-inline: auto;
}
.contact h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--emerald-deep);
  margin: 16px 0 18px;
}
.contact h2 .it {
  font-style: italic;
  color: var(--gold-deep);
}
.contact-lede {
  color: var(--ink-2);
  font-size: 15.5px;
  margin: 0 auto 56px;
  max-width: 560px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
  text-align: left;
}
.social-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px 22px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.social-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(14, 61, 46, 0.28);
  border-color: var(--gold-soft);
}
.social-card:hover::after {
  opacity: 1;
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pearl);
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-icon svg {
  width: 22px;
  height: 22px;
}
.social-card:hover .social-icon {
  background: var(--emerald);
  color: var(--ivory);
}
.social-card h4 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  margin: 6px 0 0;
  color: var(--emerald-deep);
  letter-spacing: -0.01em;
}
.social-handle {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  text-transform: none;
}
.social-card p {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 4px 0 14px;
}
.social-cta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-cta .arr {
  transition: transform 0.25s ease;
}
.social-card:hover .social-cta {
  color: var(--emerald-deep);
}
.social-card:hover .social-cta .arr {
  transform: translateX(4px);
}

.contact-direct {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 32px 36px;
  text-align: left;
  box-shadow: 0 20px 50px -30px rgba(14, 61, 46, 0.18);
}
.cd-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.cd-label {
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.cd-value {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--emerald-deep);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.1;
  word-break: break-word;
}
a.cd-value:hover {
  color: var(--gold-deep);
}
.cd-col small {
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-top: 2px;
}
.cd-sep {
  width: 1px;
  height: 48px;
  background: var(--line);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--emerald-deep);
  color: rgba(251, 248, 243, 0.72);
  padding: 80px 0 32px;
}
.footer h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(201, 164, 122, 0.18);
}
.footer-grid a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: rgba(251, 248, 243, 0.72);
}
.footer-grid a:hover {
  color: var(--gold);
}
.footer-brand {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: 0.16em;
  color: var(--ivory);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-blurb {
  font-size: 13px;
  color: rgba(251, 248, 243, 0.55);
  max-width: 280px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 122, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 248, 243, 0.72);
  padding: 0;
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--emerald-deep);
  border-color: var(--gold);
}
.footer-bot {
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: rgba(251, 248, 243, 0.4);
  text-align: center;
}

/* ============================================================
   MESSENGER WIDGET (lower-right floating button + preview card)
   ============================================================ */
.msgr-root {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}
.msgr-root > * {
  pointer-events: auto;
}

.msgr-fab {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b2ff 0%, #006aff 50%, #ff006a 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 38px -8px rgba(0, 106, 255, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.3s ease;
}
.msgr-fab:hover {
  transform: scale(1.06);
  box-shadow:
    0 18px 44px -8px rgba(0, 106, 255, 0.65),
    0 6px 16px rgba(0, 0, 0, 0.22);
}
.msgr-fab:active {
  transform: scale(0.97);
}
.msgr-fab.is-open {
  background: var(--emerald-deep);
  box-shadow: 0 14px 38px -10px rgba(14, 61, 46, 0.55);
}
.msgr-fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Attention pulse — first impression only */
.msgr-fab-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #00b2ff;
  opacity: 0.55;
  pointer-events: none;
  animation: msgrPing 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes msgrPing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  80%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Tooltip on hover */
.msgr-fab-tip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--emerald-deep);
  color: var(--ivory);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--f-sans);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.3);
}
.msgr-fab-tip::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--emerald-deep);
}
.msgr-fab:hover .msgr-fab-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.msgr-fab.is-open .msgr-fab-tip {
  display: none;
}

/* Preview card */
.msgr-card {
  width: 320px;
  max-width: calc(100vw - 48px);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.28),
    0 10px 24px -12px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.msgr-card.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.msgr-card-hd {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #006aff 0%, #00b2ff 100%);
  color: #fff;
}
.msgr-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.msgr-card-who b {
  display: block;
  font-family: var(--f-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.msgr-card-who span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}
.msgr-dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d27a;
  box-shadow: 0 0 0 2px rgba(34, 210, 122, 0.25);
  display: inline-block;
}
.msgr-card-x {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
}
.msgr-card-x:hover {
  background: rgba(255, 255, 255, 0.24);
}

.msgr-card-body {
  padding: 18px 16px 14px;
  background: var(--pearl);
}
.msgr-bubble {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  padding: 12px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  box-shadow: 0 4px 10px -6px rgba(14, 61, 46, 0.18);
}
.msgr-bubble b {
  color: var(--emerald-deep);
  font-weight: 600;
}

.msgr-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 12px 12px;
  padding: 12px;
  background: linear-gradient(135deg, #006aff, #00b2ff);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}
.msgr-card-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.msgr-card-foot {
  display: block;
  text-align: center;
  padding: 0 16px 14px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* Don't overlap cart drawer when open */
.cart-drawer.open ~ .msgr-root,
body:has(.cart-drawer.open) .msgr-root {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 720px) {
  .msgr-root {
    right: 16px;
    bottom: 16px;
  }
  .msgr-fab {
    width: 54px;
    height: 54px;
  }
  .msgr-fab-tip {
    display: none;
  }
  .msgr-card {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .msgr-root {
    right: 12px;
    bottom: 12px;
  }
  .msgr-fab {
    width: 50px;
    height: 50px;
  }
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-scrim {
  position: fixed;
  inset: 0;
  background: rgba(8, 42, 31, 0.4);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.cart-scrim.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  z-index: 100;
  background: var(--ivory);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: none;
}
.cart-hd {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.cart-hd h3 {
  font-family: var(--f-display);
  font-size: 24px;
  margin: 0;
  color: var(--emerald-deep);
  font-weight: 500;
}
.cart-hd button {
  font-size: 22px;
  color: var(--ink-3);
  width: 32px;
  height: 32px;
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 28px;
}
.cart-empty {
  padding: 80px 0;
  text-align: center;
  color: var(--ink-3);
  font-style: italic;
  font-family: var(--f-display);
  font-size: 18px;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item .pic {
  width: 64px;
  height: 80px;
  border-radius: 4px;
  background: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item b {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--emerald-deep);
}
.cart-item small {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cart-item .qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-item .qty button {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 12px;
  color: var(--ink-2);
}
.cart-item .qty button:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}
.cart-item .qty span {
  font-size: 12px;
  color: var(--ink-2);
  min-width: 18px;
  text-align: center;
}
.cart-item .pr {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
  align-self: start;
  padding-top: 4px;
}
.cart-foot {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  background: var(--pearl);
}
.cart-tot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.cart-tot span {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cart-tot b {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--emerald-deep);
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .wrap,
  .wrap-wide {
    width: min(100%, 100% - 36px);
  }
  .hero-grid,
  .science-grid,
  .ba-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ba-wrap > * {
    min-width: 0;
  }
  .ba-stage {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .eyebrow {
    display: inline-block;
  }
  .hero p.lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-meta {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .hero-stage {
    display: none;
  }
  .hero-mobile-image {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px rgba(14, 61, 46, 0.25);
  }
  .hero-visual {
    order: 1;
  }
  .hero-copy {
    order: 2;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 56px;
  }
  .product-grid,
  .benefits-grid,
  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
  }
  .showcase-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .showcase-auth {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px;
  }
  .showcase-auth-seal {
    max-width: 240px;
  }
  .tirze-spotlight-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-direct {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }
  .cd-sep {
    width: 100%;
    height: 1px;
  }
}

/* ============================================================
   MOBILE — phones (720px and below)
   ============================================================ */
@media (max-width: 720px) {
  /* Layout helpers */
  .wrap,
  .wrap-wide {
    width: min(100%, 100% - 28px);
  }

  /* Nav */
  .nav {
    padding: 14px 0;
  }
  .nav.scrolled {
    padding: 10px 0;
  }
  .nav-left,
  .nav-right {
    display: none;
  }
  .nav-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .nav-logo {
    font-size: 18px;
    justify-self: start;
  }
  .nav-burger {
    display: inline-flex;
  }

  /* Sections */
  .section {
    padding: 64px 0;
  }
  .section-head {
    margin-bottom: 36px;
    gap: 14px;
  }
  .section-head h2 {
    font-size: clamp(34px, 8vw, 52px);
  }
  .section-head p {
    font-size: 14.5px;
  }

  /* Hero */
  .hero {
    padding: 88px 0 40px;
  }
  .hero-grid {
    gap: 32px;
  }
  .hero h1 {
    font-size: clamp(40px, 8.4vw, 56px);
  }
  .hero p.lede {
    font-size: 15px;
  }
  .hero-ctas {
    width: 100%;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero-ctas .btn {
    flex: 1 1 auto;
    justify-content: center;
    padding: 13px 18px;
    font-size: 11.5px;
  }
  .hero-meta {
    gap: 18px;
    padding-top: 22px;
    flex-wrap: wrap;
  }
  .hero-meta .m {
    flex: 1 1 calc(50% - 9px);
    min-width: 130px;
  }
  .hero-meta .m b {
    font-size: 22px;
  }

  /* Hero stage */
  .hero-stage {
    aspect-ratio: 1 / 1;
    max-height: 480px;
  }
  .hero-stage .badge-spin {
    width: 78px;
    height: 78px;
    top: 4%;
    right: 4%;
  }
  .peptide-tag {
    padding: 6px 12px;
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }
  .peptide-tag .swatch {
    width: 6px;
    height: 6px;
  }
  .peptide-tag.t1 {
    top: 8%;
    left: 0;
  }
  .peptide-tag.t2 {
    top: 48%;
    right: 0;
  }
  .peptide-tag.t3 {
    bottom: 8%;
    left: 4%;
  }

  /* Marquee */
  .marquee {
    margin-top: 48px;
    padding: 14px 0;
  }
  .marquee-track {
    font-size: 15px;
    gap: 36px;
  }
  .marquee-track span {
    gap: 36px;
  }
  .marquee-track i.sep {
    width: 5px;
    height: 5px;
  }

  /* Science */
  .science-bullets li {
    grid-template-columns: 24px 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  /* Products */
  .product-grid,
  .benefits-grid,
  .test-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .product-meta {
    padding: 14px 14px 18px;
  }
  .product-meta h4 {
    font-size: 19px;
  }
  .products-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
  }
  .product-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }
  .product-tab {
    padding: 8px 14px;
    font-size: 10.5px;
  }

  /* Benefits */
  .benefit {
    padding: 28px 22px;
    min-height: 0;
    gap: 16px;
  }
  .benefit h4 {
    font-size: 22px;
  }
  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  /* Before/After */
  .ba-wrap {
    gap: 32px;
  }
  .ba-stage {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .ba-label {
    font-size: 9px;
    padding: 5px 10px;
    letter-spacing: 0.14em;
    bottom: 12px;
  }
  .ba-label.l {
    left: 12px;
  }
  .ba-label.r {
    right: 12px;
  }
  .ba-info h3 {
    font-size: 32px;
  }
  .ba-info .res {
    grid-template-columns: 60px 1fr 46px;
    gap: 12px;
    padding: 12px 0;
  }
  .ba-info .res b {
    font-size: 22px;
  }
  .ba-cta {
    justify-content: center;
    margin-top: 28px;
  }

  /* Testimonials */
  .test-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .test-card {
    min-height: 0;
    padding: 28px 24px;
    gap: 18px;
  }
  .test-quote {
    font-size: 17px;
  }

  /* Showcase */
  .showcase-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .showcase-hero {
    margin-bottom: 36px;
  }
  .showcase-hero-img {
    aspect-ratio: 4 / 3;
  }
  .showcase-hero-cap {
    left: 16px;
    right: 16px;
    bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .showcase-hero-cap h3 {
    font-size: clamp(22px, 5.6vw, 32px);
  }
  .showcase-hero-cap p {
    white-space: normal;
    font-size: 11px;
  }
  .showcase-hero-cap .badge {
    font-size: 9px;
    padding: 6px 10px;
  }
  .showcase-tile-meta {
    padding: 12px 14px 14px;
  }
  .showcase-tile-meta h5 {
    font-size: 17px;
  }
  .showcase-tile-meta .dose {
    font-size: 14px;
  }

  /* Tirzepatide spotlight */
  .tirze-spotlight {
    margin-top: 48px;
    gap: 28px;
  }
  .tirze-spotlight-copy h3 {
    font-size: clamp(26px, 6.4vw, 36px);
  }
  .tirze-spotlight-copy p {
    font-size: 14px;
  }
  .tirze-spotlight-feat li {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 10px 0;
  }
  .tirze-spotlight-feat b {
    font-size: 18px;
  }
  .tirze-spotlight-feat span {
    font-size: 12px;
  }
  .tirze-spotlight-family figcaption {
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
  }

  /* Authenticity panel */
  .showcase-auth {
    padding: 32px 24px;
  }
  .showcase-auth-text h3 {
    font-size: clamp(26px, 6.4vw, 36px);
  }
  .showcase-auth-feat {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Contact */
  .contact {
    padding: 64px 0;
  }
  .contact h2 {
    font-size: clamp(34px, 8vw, 48px);
  }
  .contact-lede {
    font-size: 14.5px;
    margin-bottom: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 32px;
  }
  .social-card {
    padding: 22px 20px 18px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }
  .social-card .social-icon {
    flex-shrink: 0;
  }
  .social-card h4 {
    margin: 0;
    flex: 1;
    font-size: 20px;
  }
  .social-card .social-handle {
    width: 100%;
    order: 5;
  }
  .social-card p {
    width: 100%;
    margin: 0;
    font-size: 12px;
    order: 6;
  }
  .social-card .social-cta {
    width: 100%;
    padding-top: 12px;
    margin-top: 4px;
    order: 7;
  }
  .contact-direct {
    padding: 22px 20px;
    gap: 18px;
  }
  .cd-value {
    font-size: 18px;
  }

  /* Footer */
  .footer {
    padding: 64px 0 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  .footer-brand {
    font-size: 26px;
  }
  .footer-bot {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 10.5px;
  }

  /* Cart drawer adjustments */
  .cart-drawer {
    width: 100vw;
  }
}

/* ============================================================
   SMALL MOBILE — tight phones (480px and below)
   ============================================================ */
@media (max-width: 480px) {
  .wrap,
  .wrap-wide {
    width: min(100%, 100% - 24px);
  }
  .section {
    padding: 48px 0;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .section-head h2 {
    font-size: clamp(30px, 8.4vw, 40px);
  }

  /* Hero */
  .hero {
    padding: 80px 0 32px;
  }
  .hero h1 {
    font-size: clamp(36px, 9vw, 48px);
  }
  .hero p.lede {
    font-size: 14.5px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .ba-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .ba-cta .btn {
    width: 100%;
  }
  .hero-meta {
    gap: 14px;
  }
  .hero-meta .m {
    flex: 1 1 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line-soft);
  }
  .hero-meta .m:last-child {
    border-bottom: 0;
  }
  .hero-stage .badge-spin {
    width: 62px;
    height: 62px;
  }

  /* Single-column grids for small screens */
  .product-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .showcase-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Marquee even tighter */
  .marquee-track {
    font-size: 13px;
    gap: 24px;
  }
  .marquee-track span {
    gap: 24px;
  }

  /* Products */
  .product-meta h4 {
    font-size: 20px;
  }

  /* Showcase auth */
  .showcase-auth {
    padding: 26px 18px;
  }

  /* Tirzepatide */
  .tirze-spotlight-feat li {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }
  .tirze-spotlight-feat b {
    font-size: 16px;
  }

  /* Contact */
  .contact-direct {
    padding: 20px 16px;
  }
  .cd-value {
    font-size: 17px;
  }

  /* Messenger widget */
  .msgr-root {
    right: 12px;
    bottom: 12px;
  }
  .msgr-fab {
    width: 50px;
    height: 50px;
  }
  .msgr-card {
    width: calc(100vw - 24px);
    max-width: 320px;
  }

  /* Footer */
  .footer-grid {
    gap: 28px;
    padding-bottom: 32px;
  }
}

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
@keyframes velora-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes velora-modal-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 20, 16, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: velora-modal-fade 0.22s ease;
}
.product-modal-card {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow: auto;
  background: var(--ivory);
  border-radius: 10px;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 60px 120px rgba(14, 61, 46, 0.35);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  animation: velora-modal-rise 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (max-width: 720px) {
  .product-modal-scrim {
    padding: 12px;
  }
  .product-modal-card {
    grid-template-columns: 1fr;
    max-height: 94vh;
  }
}

/* ============================================================
   SCROLL-TO-TOP FAB
   Sits above the Messenger FAB (60px tall + 14px gap + 24px
   inset = bottom: 98px). Hidden until the user scrolls past
   the threshold defined in ScrollTopButton.
   ============================================================ */
.scroll-top-fab {
  position: fixed;
  /* Messenger FAB: 60px wide @ right:24px → its center sits 54px from the right edge.
     Scroll-top is 48px wide, so right = 54 - 24 = 30px keeps both centers on one vertical axis. */
  right: 30px;
  bottom: 98px;
  z-index: 89;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--emerald-deep);
  color: var(--gold-soft);
  border: 1px solid rgba(201, 164, 122, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 38px -10px rgba(14, 61, 46, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0s linear 0.32s,
    background 0.2s ease,
    color 0.2s ease;
  pointer-events: none;
}
.scroll-top-fab.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0s linear 0s,
    background 0.2s ease,
    color 0.2s ease;
}
.scroll-top-fab:hover {
  background: var(--emerald);
  color: var(--ivory);
  transform: translateY(-2px) scale(1.04);
}
.scroll-top-fab:active {
  transform: scale(0.96);
}
.scroll-top-fab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
@media (max-width: 720px) {
  .scroll-top-fab {
    /* Messenger: 54px @ right:16px → center at 43px. Scroll-top 44px → right = 43 - 22 = 21px */
    right: 21px;
    bottom: 82px;
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 480px) {
  .scroll-top-fab {
    /* Messenger: 50px @ right:12px → center at 37px. Scroll-top 42px → right = 37 - 21 = 16px */
    right: 16px;
    bottom: 72px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   STUDIO — Interactive 3D Product Viewer
   ============================================================ */
.studio-stage {
  display: grid;
  grid-template-columns: 56px minmax(0, 1.1fr) minmax(0, 1fr) 56px;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 32px;
}
.studio-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(201, 164, 122, 0.4);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.studio-nav:hover {
  background: rgba(201, 164, 122, 0.14);
  color: var(--ivory);
  border-color: var(--gold);
  transform: scale(1.06);
}
.studio-nav:active {
  transform: scale(0.96);
}
.studio-nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.studio-frame {
  position: relative;
  aspect-ratio: 1;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  /* Ambient gold halo behind the WebGL canvas */
  background:
    radial-gradient(60% 50% at 50% 58%, rgba(201, 164, 122, 0.12) 0%, transparent 60%),
    radial-gradient(30% 30% at 50% 92%, rgba(201, 164, 122, 0.16) 0%, transparent 70%);
}
.studio-frame:active {
  cursor: grabbing;
}
.studio-canvas-mount {
  position: absolute;
  inset: 0;
  display: block;
}
.studio-canvas-mount canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.studio-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, 0.45);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.studio-frame.is-paused .studio-hint {
  opacity: 0;
}

.studio-info {
  padding-left: 8px;
}
.studio-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, 0.65);
  margin-bottom: 14px;
}
.studio-info h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ivory);
  font-weight: 400;
}
.studio-info p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--gold-soft);
  margin: 0 0 24px;
  font-style: italic;
  font-family: var(--f-display);
  padding-left: 14px;
  border-left: 1px solid rgba(201, 164, 122, 0.4);
}
.studio-counter {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(251, 248, 243, 0.5);
}
.studio-counter .cur {
  color: var(--gold);
  font-size: 20px;
  font-family: var(--f-display);
  font-style: italic;
  letter-spacing: 0;
}
.studio-counter .sep {
  opacity: 0.45;
}

.studio-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.studio-dot {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(201, 164, 122, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.studio-dot:hover {
  background: rgba(201, 164, 122, 0.55);
}
.studio-dot.active {
  background: var(--gold);
  width: 52px;
}
.studio-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Fade-in when product switches (info column; the bottle stays put while
   the canvas texture swaps live) */
.studio-info h3,
.studio-info p {
  animation: studio-swap 0.5s ease;
}
@keyframes studio-swap {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .studio-stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .studio-nav {
    display: none; /* dots handle navigation on mobile */
  }
  .studio-frame {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .studio-info {
    text-align: center;
    padding-left: 0;
  }
  .studio-info p {
    border-left: none;
    padding-left: 0;
  }
  .studio-counter {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .studio-dot { width: 24px; }
  .studio-dot.active { width: 38px; }
  .studio-hint { font-size: 9px; letter-spacing: 0.22em; }
}
