@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Cormorant+SC:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================
   GOLD STAR PEPTIDES — Luxury Black/Gold Theme
   ============================================ */

:root {
  /* Brand Guidelines Colors */
  --bg-black: #2B2014;       /* Espresso (deep rich brand black) */
  --bg-near-black: #221A10;  /* Slightly darker Espresso */
  --bg-card: #35291C;        /* Espresso card base */
  --bg-elevated: #3E3123;    /* Espresso highlighted surface */
  --gold: #C9A45F;           /* Aurum signature gold */
  --gold-bright: #E7C57F;    /* Light Aurum gold */
  --gold-deep: #9A7338;      /* Deep Aurum gold */
  --line: #5B4A30;           /* Bronze / Warm border */
  --text: #FAF5EA;           /* Bone (clean warm light) */
  --text-muted: #C9B891;     /* Linen (soft accent rules) */
  --text-dim: #8C7855;       /* Sand (muted secondary) */
  
  --danger: #d97757;
  --success: #7ec488;
  --radius: 4px;
  --radius-lg: 8px;
  --container: 1280px;
  --header-h: 80px;
  
  /* Brand Guidelines Typography */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sc-serif: "Cormorant SC", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", monospace;
  
  --gold-gradient: linear-gradient(135deg, #E7C57F 0%, #C9A45F 50%, #9A7338 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg-black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-bright); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm { max-width: 880px; }
.container-narrow { max-width: 720px; }

/* ============================================
   GLOBAL ANIMATIONS & UTILITIES
   ============================================ */

/* Base hidden state for scroll reveal (Disabled per user request) */
[data-reveal], .fade-in-up, .slide-in-left, .slide-in-right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

[data-reveal].is-revealed, .fade-in-up.is-revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Staggered items */
.stagger-container [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: transparent; /* Completely transparent initially */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  z-index: 1000;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.3s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 95, 0.2) 50%, transparent);
  pointer-events: none;
  opacity: 0; /* Hidden initially for full-bleed feel */
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease;
}

.site-header.scrolled {
  background: rgba(35, 26, 16, 0.85); /* Premium Translucent Espresso when scrolled */
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled::after {
  background: linear-gradient(90deg, transparent, rgba(201, 164, 95, 0.55) 50%, transparent);
  opacity: 1; /* Shows up smoothly when scrolled */
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.brand-mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}

.brand-mark svg { width: 100%; height: 100%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn, .tx-action-btn {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.2s ease;
}

.icon-btn:hover, .tx-action-btn:hover { color: var(--gold); }

.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--bg-black);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle { display: none; }

/* ============================================
   HERO — HOMEPAGE
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060606 !important; /* Deep luxury off-black theme */
}

@media (max-width: 768px) {
  .hero {
    background: #060606 !important;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 40%, rgba(201, 169, 110, 0.02) 50%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 991px) {
  .hero-eyebrow {
    justify-content: center;
  }
}

.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .hero-sub {
    margin: 0 auto 32px auto;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-actions {
    justify-content: center;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Pulsing golden breath glow animation behind the vial */
@keyframes glow-breathing {
  0% {
    transform: scale(0.92);
    opacity: 0.38;
    filter: blur(35px);
  }
  50% {
    transform: scale(1.15);
    opacity: 0.82;
    filter: blur(50px);
  }
  100% {
    transform: scale(0.92);
    opacity: 0.38;
    filter: blur(35px);
  }
}

.hero-glow-pulsing {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 164, 95, 0.35) 0%, rgba(201, 164, 95, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: glow-breathing 4.5s ease-in-out infinite;
  mix-blend-mode: screen;
}

.hero-solitary-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.95));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-solitary-image:hover {
  transform: translateY(-10px) scale(1.04);
  filter: drop-shadow(0 30px 50px rgba(201, 164, 95, 0.25)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.98));
}



.hero-vial {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-near-black));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-vial::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 169, 110, 0.15), transparent 50%);
}

.hero-vial-svg { width: 60%; max-width: 280px; position: relative; z-index: 2; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  font-family: var(--sans);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg-black);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }
.btn-lg { padding: 18px 40px; font-size: 0.9rem; }

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--bg-near-black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.trust-item h4 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 6px;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section { padding: 100px 0; }
.section-tight { padding: 60px 0; }

.section-head {
  text-align: center;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-head h2 { margin-bottom: 16px; }

.section-head p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.category-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.cs-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cs-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 95, 0.4);
}

.cs-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.cs-text strong {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.cs-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .category-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ============================================
   CATEGORIES GRID — HOMEPAGE
   ============================================ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: var(--bg-elevated);
}

.category-watermark {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.04;
  color: var(--text);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-card:hover .category-watermark {
  opacity: 0.1;
  transform: scale(1.1);
  color: var(--gold);
}

.category-watermark svg {
  width: 100%;
  height: 100%;
}

.category-card .category-icon,
.category-card .count,
.category-card h3,
.category-card p,
.category-card .arrow {
  position: relative;
  z-index: 1;
}

.category-card:hover::before { opacity: 1; }

.category-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  transition: background 0.3s ease;
}

.category-card:hover .category-icon {
  background: rgba(201, 169, 110, 0.1);
}

.category-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.category-card .count {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.category-card .arrow {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.category-card:hover .arrow { gap: 14px; }

/* ============================================
   PRODUCT GRID
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  row-gap: 64px; /* Increased vertical margin between rows */
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  color: var(--text);
  position: relative;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  color: var(--text);
}

.product-card .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--bg-black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card .badge.out {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--line);
}

.product-image {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 60%, rgba(201, 169, 110, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-near-black), #050505);
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image svg { width: 55%; }

/* Real product images inside cards */
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
  display: block;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

/* Gallery main image */
.product-gallery-main .product-img {
  border-radius: var(--radius-lg);
  object-fit: contain;
  padding: 16px;
  background: transparent;
}

/* Thumbs */
.product-thumb .product-img {
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.product-thumb:hover .product-img,
.product-thumb.active .product-img {
  opacity: 1;
}


.product-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.product-card .product-cat {
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-card .price {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--serif);
}

/* ============================================
   BRAND STORY / EDITORIAL SECTION
   ============================================ */

.editorial {
  background: var(--bg-near-black);
  position: relative;
  overflow: hidden;
}

.editorial::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(201, 169, 110, 0.08), transparent 70%);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.editorial-img {
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 169, 110, 0.15), transparent 60%),
    linear-gradient(145deg, var(--bg-card), var(--bg-black));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-img svg { width: 50%; }

.editorial-content h2 { margin-bottom: 24px; }

.editorial-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.editorial-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.stat .num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat .label {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ============================================
   PRODUCT PAGE — DETAIL
   ============================================ */

.page-header {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }

.product-detail {
  padding: 60px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
}

.product-gallery-main {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 60%, rgba(201, 169, 110, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg-near-black), #050505);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-gallery-main svg { width: 50%; }

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-thumb {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.product-thumb:hover, .product-thumb.active { border-color: var(--gold); }
.product-thumb svg { width: 50%; opacity: 0.6; }

.product-info .cat-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.product-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.product-price {
  font-size: 2rem;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 500;
  margin-bottom: 24px;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-meta-row strong {
  color: var(--text);
  font-weight: 500;
}

.shipping-banner {
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-pricing {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  overflow: hidden;
}

.volume-pricing-head {
  background: var(--bg-elevated);
  padding: 14px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
}

.volume-table {
  width: 100%;
  border-collapse: collapse;
}

.volume-table th, .volume-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.volume-table tr:last-child td { border-bottom: none; }
.volume-table th {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.volume-table td.discount { color: var(--gold); font-weight: 600; }
.volume-table td.price { color: var(--gold); font-weight: 600; }

.qty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.editorial {
  background-color: #F2EADA;
  background-image: 
    linear-gradient(rgba(91, 74, 48, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 74, 48, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.qty-control button {
  background: none;
  border: none;
  color: var(--text);
  width: 44px; height: 48px;
  font-size: 1.1rem;
  cursor: pointer;
}

.qty-control button:hover { color: var(--gold); }

.qty-control input {
  width: 56px;
  text-align: center;
  border: none;
  background: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  height: 48px;
}

/* Product tabs */
.product-tabs {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding-top: 60px;
}

.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  overflow-x: auto;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  font-family: var(--sans);
  transition: color 0.2s ease;
}

.tab-btn:hover { color: var(--text); }

.tab-btn.active { color: var(--gold); }

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-panel h3 {
  margin-bottom: 20px;
  margin-top: 32px;
  font-size: 1.5rem;
}
.tab-panel h3:first-child { margin-top: 0; }

.tab-panel p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  max-width: 880px;
}

.tab-panel ul {
  margin-bottom: 16px;
  padding-left: 20px;
  color: var(--text-muted);
}

.tab-panel ul li {
  margin-bottom: 8px;
}

.tab-panel strong { color: var(--text); }

.warning-box {
  background: rgba(217, 119, 87, 0.08);
  border-left: 3px solid var(--danger);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.warning-box h4 {
  color: var(--danger);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.warning-box p { margin: 0; color: var(--text); font-size: 0.95rem; }

/* CTA box */
.consult-cta {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.1), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 60px 0;
  text-align: center;
}

.consult-cta h3 {
  margin-bottom: 12px;
}

.consult-cta p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ============================================
   CATEGORY PAGE
   ============================================ */

.category-hero {
  padding-top: 130px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.1), transparent 60%),
    var(--bg-near-black);
  border-bottom: 1px solid var(--line);
}

.category-hero-content {
  max-width: 720px;
}

.category-hero h1 { margin-bottom: 24px; }

.category-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}

.filter-bar .results {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.filter-bar select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--bg-card);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A45F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 10px 40px 10px 16px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.filter-bar select:hover,
.filter-bar select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 4px 12px rgba(0,0,0,0.15);
}

.filter-bar select option {
  background-color: var(--bg-card);
  color: var(--text);
  padding: 12px;
}

body.light-page .filter-bar select {
  background-color: #FAF5EA; /* Bone background */
  color: #2A2317; /* Ink text */
  border-color: rgba(91, 74, 48, 0.2);
}

body.light-page .filter-bar select option {
  background-color: #FAF5EA;
  color: #2A2317;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p {
  color: #d1c8b3; /* Brighter for readability */
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #a39b8b;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #bfae91; /* Brighter for readability */
  font-size: 0.85rem; /* Slightly larger */
}

.disclaimer {
  background: var(--bg-near-black);
  border-top: 1px solid var(--line);
  padding: 24px 0;
  text-align: center;
}

.disclaimer p {
  color: #bfae91; /* Brighter for readability */
  font-size: 0.8rem; /* Slightly larger */
  letter-spacing: 0.03em;
  max-width: 880px;
  margin: 0;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid, .editorial-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 400px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links { display: none; }
  .site-header .nav-cta { display: none; }
  .mobile-toggle {
    display: flex !important;
    background: none;
    border: none;
    color: var(--text);
    padding: 8px;
    cursor: pointer;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    bottom: 0;
    height: calc(100vh - var(--header-h));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(35, 26, 16, 0.95) !important; /* Translucent dark menu */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 48px 24px;
    gap: 32px;
    border-bottom: none;
    z-index: 999;
    animation: slideDownMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  body.light-page .nav-links.open,
  .site-header.navbar-light .nav-links.open {
    background: rgba(242, 234, 218, 0.96) !important; /* Translucent light menu */
  }

  .site-header.navbar-light .nav-links.open a {
    color: #2A2317 !important; /* Ink text */
  }

  .nav-links.open a {
    font-size: 1.4rem !important;
    letter-spacing: 0.2em;
    font-family: var(--sc-serif) !important;
    font-weight: 500;
  }

  @keyframes slideDownMenu {
    0% {
      opacity: 0;
      transform: translateY(-15px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  
  .nav-actions { gap: 12px; }

  .section { padding: 60px 0; }
  .hero { min-height: auto; padding-bottom: 60px; }
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .editorial-stats { grid-template-columns: 1fr; gap: 16px; }
  .product-meta { grid-template-columns: 1fr; }
  .consult-cta { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.25rem; }
  .container { padding: 0 18px; }
}

/* ============================================
   PRODUCT MOCKUP IMAGE + BADGE
   ============================================ */

/* Real product photo fills any vial container */
.vial-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.product-image .vial-img,
.product-gallery-main .vial-img,
.product-thumb .vial-img,
.hero-vial .vial-img {
  background: var(--bg-near-black);
}

/* [MOCKUP] watermark — non-removable visual flag for skeleton phase */
.mockup-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  background: rgba(10, 10, 10, 0.78);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Smaller badge on thumbnails */
.product-thumb .mockup-badge {
  font-size: 0.5rem;
  padding: 2px 5px;
  top: 4px;
  left: 4px;
  letter-spacing: 0.12em;
}

/* Hide the SVG-rule sizing now that we use img */
.product-image svg,
.product-gallery-main svg,
.product-thumb svg,
.hero-vial-svg svg { display: none; }

/* ============================================
   LIGHT SECTIONS — for elevated rhythm
   Apply .section-light to any <section>, or .light-page on body
   to switch the whole page to light surfaces.
   ============================================ */

/* Light-page surface tokens */
body.light-page {
  background: #F2EADA; /* Vellum */
  color: #2A2317;      /* Ink */
}
body.light-page h1,
body.light-page h2,
body.light-page h3,
body.light-page h4,
body.light-page h5 { color: #2A2317; /* Ink */ }

body.light-page p { color: #5B4A30; /* Bronze */ }

body.light-page .site-header {
  background: rgba(242, 234, 218, 0.75); /* Translucent Vellum base */
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border-bottom: none;
  box-shadow: 0 4px 30px rgba(43, 32, 20, 0.08);
}
body.light-page .site-header::after {
  background: linear-gradient(90deg, transparent, rgba(91, 74, 48, 0.25) 50%, transparent) !important;
}
body.light-page .site-header.scrolled {
  background: rgba(234, 224, 204, 0.9); /* Darker translucent Vellum when scrolled */
}
body.light-page .site-header.scrolled::after {
  background: linear-gradient(90deg, transparent, rgba(91, 74, 48, 0.4) 50%, transparent) !important;
}
body.light-page .site-header .nav-links a { color: #2A2317; /* Ink */ }
body.light-page .site-header .icon-btn { color: #2A2317; /* Ink */ }
body.light-page .site-header .cart-count { background: var(--bg-black); color: var(--gold); }

/* Single light section inside an otherwise dark page */
.section-light {
  background-color: #F2EADA; /* Vellum */
  color: #2A2317;      /* Ink */
  border-top: 1px solid #C9B891; /* Linen */
  border-bottom: 1px solid #C9B891; /* Linen */
}
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: #2A2317; /* Ink */ }
.section-light p { color: #5B4A30; /* Bronze */ }

.section-light .cs-text strong,
body.light-page .cs-text strong {
  color: #2A2317; /* Ensure stats row text is dark on beige background */
}

/* Cards & components on light surfaces */
.section-light .product-card,
body.light-page .product-card {
  background: #FAF5EA; /* Bone */
  border-color: rgba(91, 74, 48, 0.15); /* Bronze translucent */
}
.section-light .product-card:hover,
body.light-page .product-card:hover {
  border-color: var(--gold);
  background: #FAF5EA;
}
.section-light .product-card h4,
body.light-page .product-card h4 { color: #2A2317; /* Ink */ }
.section-light .product-card .product-cat,
body.light-page .product-card .product-cat { color: #8C7855; /* Sand */ }
.section-light .product-card .price,
body.light-page .product-card .price { color: var(--gold-deep); }

.section-light .category-card,
body.light-page .category-card {
  background: #FAF5EA; /* Bone */
  border-color: rgba(91, 74, 48, 0.15);
  color: #2A2317;      /* Ink */
}
.section-light .category-card:hover,
body.light-page .category-card:hover {
  background: #FAF5EA;
  border-color: var(--gold);
  color: #2A2317;
}
.section-light .category-card h3,
body.light-page .category-card h3 { color: #2A2317; /* Ink */ }
.section-light .category-card p,
body.light-page .category-card p { color: #5B4A30; /* Bronze */ }
.section-light .category-card .count,
body.light-page .category-card .count { color: var(--gold-deep); }
.section-light .category-card .arrow,
body.light-page .category-card .arrow { color: var(--gold-deep); }

/* Section eyebrow / heading */
.section-light .section-eyebrow,
body.light-page .section-eyebrow { color: var(--gold-deep); }
.section-light .section-head p,
body.light-page .section-head p { color: #5B4A30; /* Bronze */ }

/* Editorial in light mode */
.section-light.editorial {
  background: #F2EADA; /* Vellum */
}
.section-light .editorial-content p,
body.light-page .editorial-content p { color: #4a4a4a; }
.section-light .stat .num,
body.light-page .stat .num { color: var(--gold-deep); }
.section-light .stat .label,
body.light-page .stat .label { color: #666; }
.section-light .editorial-stats,
body.light-page .editorial-stats { border-top-color: rgba(10, 10, 10, 0.1); }

/* Trust bar on light */
.trust-bar.section-light,
body.light-page .trust-bar {
  background: #faf8f3;
  border-color: rgba(10, 10, 10, 0.06);
}
.trust-bar.section-light .trust-item p,
body.light-page .trust-bar .trust-item p { color: #4a4a4a; }
.trust-bar.section-light .trust-item h4,
body.light-page .trust-bar .trust-item h4 { color: #0a0a0a; }

/* Filter bar / page-header on light */
body.light-page .page-header {
  background: #faf8f3;
  border-bottom-color: rgba(10, 10, 10, 0.08);
}
body.light-page .breadcrumb { color: #888; }
body.light-page .breadcrumb a { color: #888; }
body.light-page .breadcrumb a:hover { color: var(--gold-deep); }

body.light-page .filter-bar { border-bottom-color: rgba(10, 10, 10, 0.08); }
body.light-page .filter-bar .results { color: #4a4a4a; }
body.light-page .filter-bar select {
  background: #fff;
  color: #1a1a1a;
  border-color: rgba(10, 10, 10, 0.12);
}

/* Category hero on light */
body.light-page .category-hero {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.07), transparent 60%),
    #faf8f3;
  border-bottom-color: rgba(10, 10, 10, 0.06);
}
body.light-page .category-hero p { color: #4a4a4a; }

/* PDP — Product detail */
body.light-page .product-detail-grid .product-info .product-meta-row { color: #555; }
body.light-page .product-detail-grid .product-info .product-meta-row strong { color: #0a0a0a; }
body.light-page .product-meta { border-bottom-color: rgba(10, 10, 10, 0.1); }

body.light-page .product-gallery-main {
  background: transparent;
  border-color: transparent;
}
body.light-page .product-thumb {
  background: transparent;
  border-color: rgba(10, 10, 10, 0.08);
}
body.light-page .product-thumb:hover,
body.light-page .product-thumb.active { border-color: var(--gold); }
body.light-page .product-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
body.light-page .product-card:hover {
  transform: translateY(-2px);
  border: none;
}
body.light-page .product-image {
  background: transparent; /* Removed beige box to prevent clashing with white mockups */
  border: none;
  border-radius: 8px; /* Minimalist rounding */
  padding: 0px; /* Removed padding so image sits cleanly */
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
body.light-page .product-card:hover .product-image {
  transform: translateY(-4px);
}
body.light-page .product-card .product-img {
  transform: scale(1.15);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.06));
}
body.light-page .product-card:hover .product-img {
  transform: scale(1.18);
}
body.light-page .product-card .product-cat {
  font-family: var(--sans);
  color: #999;
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-bottom: 6px;
}
body.light-page .product-card h4 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 8px;
}
body.light-page .product-card .product-meta-bottom {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
}

body.light-page .shipping-banner {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.4);
  color: var(--gold-deep);
}

body.light-page .volume-pricing {
  background: #fff;
  border-color: rgba(10, 10, 10, 0.08);
}
body.light-page .volume-pricing-head {
  background: #f5f1e8;
  color: var(--gold-deep);
  border-bottom-color: rgba(10, 10, 10, 0.08);
}
body.light-page .volume-table th { color: #666; }
body.light-page .volume-table td { color: #1a1a1a; border-bottom-color: rgba(10, 10, 10, 0.06); }
body.light-page .volume-table td.discount,
body.light-page .volume-table td.price { color: var(--gold-deep); }

body.light-page .qty-control {
  background: #fff;
  border-color: rgba(10, 10, 10, 0.12);
}
body.light-page .qty-control button { color: #1a1a1a; }
body.light-page .qty-control input { color: #1a1a1a; }

/* Tabs on light */
body.light-page .product-tabs { border-top-color: rgba(10, 10, 10, 0.08); }
body.light-page .tab-nav { border-bottom-color: rgba(10, 10, 10, 0.08); }
body.light-page .tab-btn { color: #888; }
body.light-page .tab-btn:hover { color: #1a1a1a; }
body.light-page .tab-btn.active { color: var(--gold-deep); }
body.light-page .tab-btn.active::after { background: var(--gold-deep); }
body.light-page .tab-panel p { color: #4a4a4a; }
body.light-page .tab-panel ul { color: #4a4a4a; }
body.light-page .tab-panel strong { color: #0a0a0a; }

/* Consult CTA stays gold-tinged on white */
body.light-page .consult-cta {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.12), transparent 60%),
    #fff;
  border: 1px solid rgba(201, 169, 110, 0.3);
}
body.light-page .consult-cta p { color: #4a4a4a; }

/* Shop secondary buttons */
body.light-page .btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border-color: rgba(10, 10, 10, 0.18);
}
body.light-page .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* Trust pills row near purchase button */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 32px;
}
.trust-pill {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body.light-page .trust-pill {
  color: #777;
}
body:not(.light-page) .trust-pill {
  color: #999;
}
.trust-pill::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8em;
  opacity: 0.7;
}

/* Stronger price on PDP */
.product-price-large {
  font-size: 2.5rem;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--gold);
}
body.light-page .product-price-large { color: var(--gold-deep); }

.product-price-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 24px;
}
.product-price-stock::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(126, 196, 136, 0.18);
}

/* ============================================
   ABOUT PAGE — bespoke layout pieces
   ============================================ */

/* Cinematic hero with quote */
.about-hero {
  position: relative;
  min-height: 90vh;
  padding-top: 180px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(201, 169, 110, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-black) 0%, var(--bg-near-black) 100%);
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 1px, rgba(201, 169, 110, 0.025) 1px 2px);
  pointer-events: none;
}

.about-hero .eyebrow-line {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-hero .eyebrow-line::before,
.about-hero .eyebrow-line::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(201, 169, 110, 0.6);
}

.about-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  max-width: 880px;
  margin: 0 auto 48px;
}
.about-hero h1 em { color: var(--gold); }

.about-hero .signature {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 32px;
}

/* Process timeline — 4-step vertical / staggered */
.process-section { background: var(--bg-near-black); }

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding 0.3s ease;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }

.process-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  font-style: italic;
}

.process-content h3 {
  font-size: 1.85rem;
  margin-bottom: 12px;
  color: var(--text);
}
.process-content .process-meta {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.process-content p {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 480px;
}

.process-img {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

/* Big metrics row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(10, 10, 10, 0.08);
}
.metric {
  padding: 48px 32px;
  border-right: 1px solid rgba(10, 10, 10, 0.08);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.metric .num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}
.metric .label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #555;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.metric .sub {
  font-size: 0.85rem;
  color: #777;
  display: block;
  line-height: 1.4;
}

/* Pull-quote section */
.pullquote-section {
  background: var(--bg-black);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.pullquote-section::before {
  content: '"';
  position: absolute;
  top: -40px; left: 8%;
  font-family: var(--serif);
  font-size: 28rem;
  color: rgba(201, 169, 110, 0.06);
  line-height: 1;
  pointer-events: none;
  font-style: italic;
}
.pullquote-section blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pullquote-section blockquote em { color: var(--gold); }

.pullquote-attr {
  text-align: center;
  margin-top: 48px;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

/* Anti-list: "What we don't do" */
.anti-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  border-left: 1px solid rgba(10, 10, 10, 0.08);
}
.anti-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(10, 10, 10, 0.08);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.anti-x {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 600;
}
.anti-item h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #0a0a0a;
}
.anti-item p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.55;
}

/* Dual close CTA */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-near-black);
}
.cta-side {
  padding: 96px 64px;
  border-right: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cta-side:last-child { border-right: none; }
.cta-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 169, 110, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cta-side:hover::before { opacity: 1; }

.cta-side h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative; z-index: 2;
}
.cta-side p {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 360px;
  position: relative; z-index: 2;
}
.cta-side .btn {
  position: relative; z-index: 2;
}

@media (max-width: 1024px) {
  .process-step { grid-template-columns: 56px 1fr; }
  .process-step .process-img { display: none; }
  .process-num { font-size: 2.75rem; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .anti-list { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-side { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .metrics-row { grid-template-columns: 1fr; }
  .about-hero { min-height: 70vh; padding-bottom: 80px; }
  .pullquote-section { padding: 80px 0; }
  .pullquote-section::before { font-size: 16rem; }
}

/* ============================================
   ELEVATED HERO + ROTATOR + MARQUEE + NAV CTA
   ============================================ */

/* Nav "Shop Now" CTA */
.nav-cta {
  margin-left: 4px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .nav-cta { display: none; }
}
body.light-page .nav-cta {
  background: var(--bg-black);
  border-color: var(--bg-black);
  color: var(--gold);
}
body.light-page .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-black);
}

/* ============================================
   ELEVATED HERO
   ============================================ */
.hero-elevated {
  min-height: 100vh;
  background: transparent !important;
}

.hero-elevated::before { display: none; }

/* Transparent Product Cards for clean modern look */
.product-card-transparent {
  background: transparent !important;
  border: none !important;
  padding: 12px !important;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block;
  color: var(--text);
  position: relative;
}

.product-card-transparent:hover {
  transform: translateY(-8px) scale(1.03) !important;
  border: none !important;
  background: transparent !important;
}

.product-card-transparent .product-image {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  margin-bottom: 16px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-transparent:hover .product-image {
  filter: drop-shadow(0 25px 35px rgba(201, 164, 95, 0.25)) drop-shadow(0 10px 15px rgba(0, 0, 0, 0.7));
  transform: scale(1.05);
}

.product-card-transparent h4 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--text);
  transition: color 0.3s ease;
}

.product-card-transparent:hover h4 {
  color: var(--gold-bright);
}

.product-card-transparent .product-cat {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sc-serif);
  margin-bottom: 8px;
}

.product-card-transparent .price {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 500;
  font-family: var(--mono);
}

/* Subtle grid pattern */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* Spotlight glow that gently follows mouse */
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 70%) var(--my, 30%), rgba(201, 169, 110, 0.12), transparent 35%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.4s ease;
}

/* Film grain noise */
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-elevated .container { position: relative; z-index: 3; }

.hero-elevated .hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  margin-bottom: 32px;
}

/* ============================================
   ROTATING WORD TICKER
   ============================================ */
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25em;
  margin-bottom: 32px;
}

.hero-line {
  color: var(--text);
  font-style: normal;
}

.hero-rotator {
  position: relative;
  display: inline-block;
  height: 1.05em;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 5em;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.hero-rotator .word {
  position: absolute;
  top: 0; left: 0;
  display: inline-block;
  white-space: nowrap;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.7, 0, 0.2, 1),
    opacity 0.5s ease;
}
.hero-rotator .word.active {
  transform: translateY(0);
  opacity: 1;
}
.hero-rotator .word.exit {
  transform: translateY(-110%);
  opacity: 0;
}

/* Underline accent under rotator */
.hero-rotator::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0.05em;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.4;
}

/* Hero meta row — small stat strip */
.hero-meta-row {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.18);
  flex-wrap: wrap;
}

.hero-meta-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-stat .num {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero-meta-stat .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

/* Hero vial — refined */
.hero-elevated .hero-vial {
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 169, 110, 0.25), transparent 55%),
    linear-gradient(160deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-vial-ring {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-lg);
  z-index: -1;
  animation: ringPulse 3.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.02); opacity: 0.7; }
}

.hero-vial-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  font-weight: 600;
  justify-content: center;
}
.hero-vial-caption .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(126, 196, 136, 0.18);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--text-dim);
  font-weight: 600;
  z-index: 4;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   LOGO MARQUEE
   ============================================ */
.logo-marquee {
  background: var(--bg-near-black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-near-black), transparent);
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-near-black), transparent);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.logo-marquee-group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}

.lm-item {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.lm-item:hover { color: var(--gold); }

.lm-sep {
  color: var(--gold);
  opacity: 0.45;
  font-size: 0.85rem;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

/* ============================================
   GLOBAL MOTION LAYER (reveals + counters) - Disabled per user request
   ============================================ */

[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}
[data-reveal="left"]  { transform: none !important; }
[data-reveal="right"] { transform: none !important; }
[data-reveal="scale"] { transform: none !important; }

[data-reveal].is-revealed { opacity: 1 !important; transform: none !important; }

.btn { will-change: transform; }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover {
  box-shadow: 0 12px 30px -10px rgba(201, 169, 110, 0.45);
}

/* Subtle product card hover */
.product-card { will-change: transform; transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), border-color 0.3s ease; }
.product-card:hover { transform: translateY(-6px); }
.product-image { overflow: hidden; }
.product-image .vial-img { transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
.product-card:hover .product-image .vial-img { transform: scale(1.04); }

/* Category card subtle accent line */
.category-card { will-change: transform; }
.category-card:hover { transform: translateY(-4px); }

@media (max-width: 1024px) {
  .hero-meta-row { gap: 24px; }
  .hero-meta-stat .num { font-size: 1.45rem; }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-rotator { min-width: 4em; }
  .lm-item { font-size: 0.9rem; }
  .logo-marquee-group { gap: 32px; padding-right: 32px; }
  .hero-scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rotator .word { transition: none; }
  .logo-marquee-track { animation: none; }
  .hero-vial-ring, .hero-vial-caption .dot, .hero-scroll-cue { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================
   PRODUCT PAGE — OPTIMIZED LAYOUT
   ============================================ */

.product-tagline {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.5;
}
body.light-page .product-tagline { color: #555; }

/* Star rating row */
.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}
.product-rating .stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 1rem;
}
.product-rating .rating-meta {
  color: var(--text-dim);
  font-weight: 500;
  font-family: var(--sans);
}
body.light-page .product-rating .rating-meta { color: #888; }

/* Price block */
.product-price-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
body.light-page .product-price-block { border-bottom-color: rgba(10,10,10,0.08); }

/* Volume tier cards (clickable) */
.volume-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.vol-tier {
  position: relative;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--text);
  transition: all 0.25s ease;
}
body.light-page .vol-tier {
  background: transparent;
  border-color: rgba(10,10,10,0.06);
  color: #333;
}

.vol-tier:hover {
  border-color: var(--gold);
}

.vol-tier.active {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}
body.light-page .vol-tier.active {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.vol-tier .vt-tag {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.vol-tier .vt-qty {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 8px;
}
body.light-page .vol-tier .vt-qty { color: #888; }

.vol-tier .vt-price {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
body.light-page .vol-tier .vt-price { color: var(--gold-deep); }

.vol-tier .vt-price span {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: var(--sans);
  font-weight: 500;
  margin-left: 4px;
}

.vol-tier .vt-save {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
  min-height: 1em;
}

.vol-tier:not(.active) .vt-save { opacity: 0.6; }

/* CTA trust strip */
.cta-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  padding: 24px 0;
  margin-top: 24px;
  margin-bottom: 24px;
}
body.light-page .cta-trust-strip {
  border-top: 1px solid rgba(10,10,10,0.04);
  border-bottom: 1px solid rgba(10,10,10,0.04);
}

.cts-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
}
body.light-page .cts-item { color: #1a1a1a; }
.cts-item svg { color: var(--gold); flex-shrink: 0; }
body.light-page .cts-item svg { color: var(--gold-deep); }

/* Storage / handling card */
.storage-card {
  background: transparent;
  padding: 0;
  margin-bottom: 32px;
}
body.light-page .storage-card {
  background: transparent;
}
.storage-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
body.light-page .storage-label { color: var(--gold-deep); }
.storage-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
body.light-page .storage-card p { color: #555; }

/* Consult link */
.consult-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
body.light-page .consult-link {
  color: #555;
  border-color: rgba(10,10,10,0.12);
}
.consult-link a {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}
body.light-page .consult-link a { color: var(--gold-deep); }

/* Sticky mobile purchase bar */
.sticky-buy {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
body.light-page .sticky-buy {
  background: rgba(255, 255, 255, 0.96);
  border-top-color: rgba(10,10,10,0.08);
  box-shadow: 0 -10px 30px -15px rgba(0,0,0,0.15);
}
.sticky-buy.visible { transform: translateY(0); }

.sticky-buy-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sticky-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.light-page .sticky-name { color: #0a0a0a; }
.sticky-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}
body.light-page .sticky-price { color: var(--gold-deep); }

.cta-add-cart-mobile {
  flex-shrink: 0;
}

@media (min-width: 1025px) {
  .sticky-buy { display: none !important; }
}

/* Stronger CTA add-to-cart with running total */
.cta-add-cart {
  font-size: 0.88rem;
  letter-spacing: 0.18em;
}
.cta-add-cart span {
  font-weight: 700;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .volume-tiers { grid-template-columns: 1fr; gap: 8px; }
  .vol-tier { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; }
  .vol-tier .vt-tag { display: none; }
  .vol-tier.popular::before {
    content: 'Popular';
    background: var(--gold);
    color: var(--bg-black);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 3px 10px;
    border-radius: 999px;
    margin-right: 8px;
  }
  .cta-trust-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ============================================
   HERO FIXES — clean polish
   ============================================ */

/* Tone the background grid + noise (was too busy) */
.hero-grid-bg { opacity: 0.4; }
.hero-noise { opacity: 0.025; }

/* Make sure the container fills the hero properly */
.hero-elevated { padding-bottom: 80px; }

/* Vial container — ensures the injected img fills it correctly,
   regardless of any leftover positioned children. */
.hero-vial {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.hero-vial > .vial-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-vial > .mockup-badge { z-index: 4; }
.hero-vial-ring { z-index: 0; }

/* Soften the rotator underline (was too strong) */
.hero-rotator::after {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.5), transparent);
  opacity: 0.5;
  height: 1px;
}

/* Keep "Precision" + rotator on a single line at common widths,
   and ensure baseline alignment is precise */
.hero-title {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25em 0.3em;
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .hero-title { gap: 0.1em 0.25em; }
  .hero-rotator { min-width: 0 !important; }
}

/* Cleaner hero meta row — no longer rendered, but if it returns later */
.hero-meta-row { display: none; }

/* Remove orphan scroll-cue rule effects */
.hero-scroll-cue { display: none; }

/* Better hero-visual centering on large screens */
.hero-visual {
  flex-direction: column;
  gap: 0;
}

/* ============================================
   LOGO PLACEHOLDER — skeleton marker
   ============================================ */
.brand-mark.logo-placeholder {
  width: auto;
  height: auto;
  padding: 4px 8px;
  border: 1px dashed var(--gold);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: lowercase;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.light-page .brand-mark.logo-placeholder {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

/* Footer brand placeholder reads on dark background */
.footer-brand .brand-mark.logo-placeholder {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   ROTATOR FIX — final overrides
   - block layout (no inline-flex baseline weirdness)
   - delayed-fade-in opacity so words don't overlap mid-transit
   ============================================ */

.hero-title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  white-space: normal;
}

.hero-line {
  display: inline;
  font-style: normal;
  color: var(--text);
}

.hero-rotator {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1em;
  vertical-align: -0.06em;
  min-width: 5em;
  margin-left: 0.18em;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.hero-rotator .word {
  position: absolute;
  top: 0; left: 0;
  display: inline-block;
  white-space: nowrap;
  /* default = below + invisible */
  transform: translateY(105%);
  opacity: 0;
  /* default transition: incoming. Slide first, fade in late. */
  transition:
    transform 0.7s cubic-bezier(0.22, 0.7, 0.22, 1),
    opacity 0.22s ease 0.46s;
  will-change: transform, opacity;
}

.hero-rotator .word.active {
  transform: translateY(0);
  opacity: 1;
}

.hero-rotator .word.exit {
  transform: translateY(-105%);
  opacity: 0;
  /* exit transition: fade out fast, slide invisibly */
  transition:
    transform 0.7s cubic-bezier(0.22, 0.7, 0.22, 1),
    opacity 0.18s ease 0s;
}

/* Soften the underline accent so it doesn't compete */
.hero-rotator::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.4), transparent);
  opacity: 0.5;
}

@media (max-width: 640px) {
  .hero-rotator { min-width: 0 !important; margin-left: 0.1em; }
}

/* ============================================
   SIGNUP WALL - LUXURY INTERSTITIAL
   ============================================ */

.signup-wall-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(250, 245, 234, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 24px;
  transition: opacity 0.5s ease;
}

.signup-wall-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.signup-wall-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  background: var(--text);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(0);
  transition: transform 0.5s ease;
  color: var(--bg-black);
}

.signup-wall-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.signup-wall-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  color: var(--bg-near-black);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.signup-wall-logo .brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-wall-logo .brand-mark svg {
  width: 60%;
  height: 60%;
}

.signup-wall-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.signup-wall-title .accent {
  color: var(--gold-deep);
  font-style: italic;
}

.signup-wall-desc {
  color: var(--bg-near-black);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

.signup-wall-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.signup-wall-input-group {
  position: relative;
  text-align: left;
}

.signup-wall-input {
  width: 100%;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bg-black);
  font-size: 1rem;
  font-family: var(--sans);
  transition: all 0.3s ease;
  outline: none;
}

.signup-wall-input::placeholder {
  color: var(--text-dim);
}

.signup-wall-input:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.2);
  background: #FFFFFF;
}

.signup-wall-submit {
  width: 100%;
  padding: 16px;
  background: var(--bg-black);
  color: var(--gold);
  border: 1px solid var(--bg-black);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.25s ease;
}

.signup-wall-submit:hover {
  background: var(--bg-near-black);
  border-color: var(--bg-near-black);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.signup-wall-submit:disabled {
  background: var(--text-dim);
  border-color: var(--text-dim);
  color: var(--bg-card);
  cursor: not-allowed;
  transform: none;
  opacity: 0.5;
}

.signup-wall-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-size: 0.85rem;
  color: var(--bg-near-black);
  margin-top: 8px;
  line-height: 1.4;
}

.signup-wall-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold-deep);
  cursor: pointer;
}

.signup-wall-checkbox-label a {
  color: var(--gold-deep);
  text-decoration: underline;
}

.signup-wall-checkbox-label a:hover {
  color: var(--gold);
}

.signup-wall-footer-disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.75rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hide body scrollbar when wall is active */
body.signup-wall-active {
  overflow: hidden !important;
  height: 100vh !important;
}

/* Blur background content for premium feel */
body.signup-wall-active #header,
body.signup-wall-active main,
body.signup-wall-active section,
body.signup-wall-active #footer,
body.signup-wall-active .site-header,
body.signup-wall-active .site-footer,
body.signup-wall-active header.terraelix-nav {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 640px) {
  .signup-wall-container {
    padding: 40px 24px;
  }
}

/* ============================================
   CINEMATIC BRANDING & LUXURY ANIMATIONS
   ============================================ */

/* Noise / Grain Overlay (Cinematic Film Texture) */
.hero-noise, .body-noise {
  position: absolute;
  inset: 0;
  opacity: 0.038; /* Extremely subtle and luxury */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 3;
}

/* Ambient glow breathing animation */
.hero-glow {
  animation: breatheGlow 9s ease-in-out infinite alternate;
}

@keyframes breatheGlow {
  0% {
    opacity: 0.45;
  }
  100% {
    opacity: 0.95;
  }
}

/* Smooth sinusoidal vial float animation */
.hero-vial img, .product-img {
  animation: floatVial 7s ease-in-out infinite alternate;
}

/* Float visual for cards */
.product-card:hover .product-image img {
  animation-play-state: paused;
  transform: scale(1.05);
}

@keyframes floatVial {
  0% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(6px);
  }
}

/* Slow golden shine sweep effect on buttons & visual elements */
.btn-primary, .btn-secondary, .product-card, .category-card {
  position: relative;
  overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(231, 197, 127, 0.22) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
  left: 150%;
  transition: left 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Premium Gold Shimmer keyframe for sweeping borders or backgrounds */
.shimmer-text {
  background: linear-gradient(
    120deg,
    #9A7338 0%,
    #C9A45F 25%,
    #E7C57F 50%,
    #C9A45F 75%,
    #9A7338 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldSweep 8s linear infinite;
}

@keyframes goldSweep {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Glassmorphism translucent header */
.site-header {
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Default state: Translucent dark (Espresso) navbar */
.site-header.navbar-dark {
  background: rgba(43, 32, 20, 0.72) !important;
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border-bottom: 1px solid rgba(201, 164, 95, 0.15) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.site-header.navbar-dark.scrolled {
  background: rgba(35, 26, 16, 0.88) !important;
  border-bottom-color: rgba(201, 164, 95, 0.25) !important;
}

.site-header.navbar-dark .nav-links a {
  color: #FAF5EA; /* Bone text */
}

.site-header.navbar-dark .icon-btn {
  color: #FAF5EA;
}

.site-header.navbar-dark .brand-text span:first-child {
  color: var(--gold) !important;
}

.site-header.navbar-dark .brand-text span:last-child {
  color: var(--text-muted) !important;
  border-top-color: rgba(201, 164, 95, 0.25) !important;
}

/* Active state: Translucent light (Vellum) navbar */
.site-header.navbar-light {
  background: rgba(242, 234, 218, 0.75) !important;
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border-bottom: none !important;
  box-shadow: 0 4px 30px rgba(43, 32, 20, 0.08);
}

.site-header.navbar-light::after {
  background: linear-gradient(90deg, transparent, rgba(91, 74, 48, 0.25) 50%, transparent) !important;
}

.site-header.navbar-light.scrolled {
  background: rgba(234, 224, 204, 0.9) !important;
}

.site-header.navbar-light.scrolled::after {
  background: linear-gradient(90deg, transparent, rgba(91, 74, 48, 0.4) 50%, transparent) !important;
}

.site-header.navbar-light .nav-links a {
  color: #2A2317 !important; /* Ink text */
}

.site-header.navbar-light .icon-btn {
  color: #2A2317 !important;
}

.site-header.navbar-light .brand-text span:first-child {
  color: #2A2317 !important; /* Ink Wordmark */
}

.site-header.navbar-light .brand-text span:last-child {
  color: #5B4A30 !important; /* Bronze Subtext */
  border-top-color: rgba(91, 74, 48, 0.25) !important;
}

/* ============================================
   RESPONSIVE OVERHAULS (MOBILE-FIRST POLISH)
   ============================================ */
@media (max-width: 768px) {
  /* Filter bar stacking on mobile */
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 0;
    margin-bottom: 24px;
    text-align: center;
  }

  .filter-bar div {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }

  .filter-bar select {
    width: 100%;
    font-size: 0.9rem;
    padding: 12px;
  }

  /* Product details layout */
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-gallery {
    margin-bottom: 16px;
  }

  .product-gallery-main {
    height: 320px; /* Force compact responsive height on mobile */
  }

  .product-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
  }

  .product-thumb {
    height: 64px;
  }

  /* Responsive grid layouts */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  /* Clamp headings on super-narrow mobile screens */
  h1 {
    font-size: 2.2rem !important;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  .product-grid {
    grid-template-columns: 1fr !important; /* Single column on tiny screens for maximum visual impact */
    gap: 20px !important;
  }

  .nav-wrap {
    padding: 0 16px;
  }

  .site-header {
    height: 64px;
  }

  /* Compact padding for sections */
  .section, .section-tight {
    padding: 40px 0 !important;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 2.8rem !important;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    min-height: 280px;
    margin-top: 24px;
  }


  .hero-vial {
    width: 180px;
    height: 180px;
  }
}

/* ============================================
   RESPONSIVE COMPLETIONS
   Filling gaps not covered by the initial
   media query blocks above.
   ============================================ */

/* ── 1024px — Tablet landscape ── */
@media (max-width: 1024px) {
  /* Editorial grid gap reduction */
  .editorial-grid {
    gap: 48px;
  }

  /* About hero full width heading */
  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
  }

  /* Process step number compact */
  .process-num { font-size: 3rem; }

  /* Process step gap tighter */
  .process-step { gap: 32px; padding: 40px 0; }

  /* CTA split padding reduction */
  .cta-side { padding: 72px 48px; }

  /* Anti-list padding */
  .anti-item { padding: 36px 32px; }

  /* Category hero padding */
  .category-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 56px;
  }

  /* Footer grid — 2×2 already set, tighten gap */
  .footer-grid { gap: 40px; }

  /* Section padding */
  .section { padding: 80px 0; }
}

/* ── 768px — Tablet portrait / large mobile ── */
@media (max-width: 768px) {
  /* Editorial grid: full stack with tighter gap */
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* About hero compact */
  .about-hero {
    min-height: 70vh;
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 72px;
  }
  .about-hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 32px;
  }

  /* Contact form: 2-col grid → 1-col */
  /* Targets the inline style grid in contact.html */
  .editorial-grid div > form > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  /* Contact form named class version */
  .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* Section headings tighter */
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 0.98rem; }

  /* Footer grid — single column, gap reduced */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer-brand p { max-width: 100%; }

  /* Pull quote section */
  .pullquote-section { padding: 80px 0; }
  .pullquote-section blockquote {
    font-size: clamp(1.35rem, 4vw, 2rem);
  }
  .pullquote-section::before {
    font-size: 14rem;
    top: -20px;
    left: 4%;
  }

  /* Category hero */
  .category-hero {
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 40px;
  }
  .category-hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

  /* Breadcrumb wrapping */
  .breadcrumb { flex-wrap: wrap; }

  /* Trust items — reduce gap */
  .trust-item { gap: 12px; }
  .trust-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
  }

  /* Process steps in about */
  .process-step { gap: 24px; padding: 32px 0; }
  .process-num { font-size: 2.5rem; }
  .process-content h3 { font-size: 1.5rem; }

  /* Metrics row 2-col */
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .metric { padding: 32px 24px; }

  /* CTA split — stack */
  .cta-split { grid-template-columns: 1fr; }
  .cta-side {
    padding: 64px 40px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .cta-side:last-child { border-bottom: none; }

  /* Anti-list single column */
  .anti-list { grid-template-columns: 1fr; }
  .anti-item { padding: 28px 24px; }

  /* Section padding */
  .section { padding: 60px 0; }
  .section-tight { padding: 40px 0; }

  /* Consult CTA */
  .consult-cta { padding: 40px 28px; }
  .consult-cta h3 { font-size: 1.6rem; }
}

/* ── 640px — Mobile standard ── */
@media (max-width: 640px) {
  /* Container padding */
  .container { padding: 0 18px; }

  /* Section padding */
  .section { padding: 48px 0; }
  .section-tight { padding: 32px 0; }
  .section-head { margin-bottom: 32px; }

  /* Trust grid: 2-col → single col items */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trust-item {
    gap: 16px;
    align-items: flex-start;
  }

  /* Category cards — compact padding */
  .category-card {
    padding: 28px 20px;
  }
  .category-card h3 { font-size: 1.25rem; }

  /* Product cards — compact */
  .product-card { padding: 18px; }

  /* Section eyebrow — tighter tracking */
  .section-eyebrow { letter-spacing: 0.2em; }

  /* Editorial stats — single col already handled */
  .editorial-stats { gap: 12px; }
  .stat .num { font-size: 2rem; }

  /* Consult CTA */
  .consult-cta { padding: 32px 18px; margin: 40px 0; }
  .consult-cta h3 { font-size: 1.45rem; }

  /* CTA split compact */
  .cta-side { padding: 56px 24px; }
  .cta-side h3 { font-size: 1.65rem; }

  /* Anti-list compact */
  .anti-item { padding: 22px 18px; gap: 18px; }
  .anti-item h4 { font-size: 1.25rem; }

  /* Metrics compact */
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .metric { padding: 24px 16px; }
  .metric .num { font-size: clamp(2rem, 8vw, 3rem); }

  /* About hero */
  .about-hero {
    min-height: 60vh;
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 56px;
  }
  .about-hero h1 { font-size: clamp(1.8rem, 9vw, 3rem); }

  /* Pullquote */
  .pullquote-section { padding: 56px 0; }
  .pullquote-section::before { display: none; }

  /* Process step */
  .process-step { gap: 16px; padding: 28px 0; }

  /* Category hero */
  .category-hero {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 32px;
  }

  /* Signup wall mobile */
  .signup-wall-container { padding: 36px 20px; }
  .signup-wall-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Footer bottom wrapping */
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Footer grid gap */
  .footer-grid { gap: 24px; }
  .footer-col h5 { margin-bottom: 16px; }

  /* Logo marquee */
  .logo-marquee-group { gap: 24px; padding-right: 24px; }
  .lm-item { font-size: 0.88rem; letter-spacing: 0.2em; }
}

/* ── 480px — Small mobile ── */
@media (max-width: 480px) {
  /* Base font size clamp */
  .container { padding: 0 16px; }

  /* Headings */
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem !important; }
  h3 { font-size: 1.4rem !important; }

  /* Hero (standard .hero component, not terraelix) */
  .hero { padding-top: 96px; padding-bottom: 40px; }
  .hero h1 { font-size: 2.2rem !important; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-visual { min-height: 260px; margin-top: 24px; }
  .hero-vial { width: 180px; height: 180px; }

  /* Hero elevated title */
  .hero-title { font-size: 2.8rem !important; }

  /* Buttons — compact */
  .btn-lg { padding: 14px 28px; font-size: 0.85rem; }
  .btn { padding: 13px 24px; }

  /* Sections */
  .section { padding: 40px 0 !important; }
  .section-tight { padding: 28px 0 !important; }

  /* Nav wrap padding */
  .nav-wrap { padding: 0 16px; }
  .site-header { height: 64px; }

  /* Footer brand */
  .footer-brand p { font-size: 0.85rem; }
  .footer-col a { font-size: 0.88rem; }

  /* Trust grid single col */
  .trust-grid { grid-template-columns: 1fr; }

  /* Metrics single col */
  .metrics-row { grid-template-columns: 1fr; }
  .metric { padding: 20px 16px; }

  /* Product thumbs 3-col on small screens */
  .product-thumbs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .product-thumb { height: 56px; }

  /* Tab buttons compact */
  .tab-btn { padding: 12px 16px; font-size: 0.8rem; letter-spacing: 0.1em; }

  /* Volume tiers stacked */
  .volume-tiers { grid-template-columns: 1fr; }

  /* CTA trust strip — 1 col */
  .cta-trust-strip { grid-template-columns: 1fr; gap: 10px; }

  /* Shipping banner compact */
  .shipping-banner { font-size: 0.82rem; padding: 12px 14px; }

  /* Product price large */
  .product-price-large { font-size: 2rem; }

  /* Signup wall compact */
  .signup-wall-container { padding: 32px 16px; }
  .signup-wall-overlay { padding: 24px 16px; }

  /* Logo marquee */
  .logo-marquee::before,
  .logo-marquee::after { width: 60px; }

  /* Filter bar selects full width */
  .filter-bar select { font-size: 0.88rem; }

  /* About hero */
  .about-hero { padding-top: calc(var(--header-h) + 20px); padding-bottom: 48px; }

  /* CTA split further reduced */
  .cta-side { padding: 48px 20px; }
  .cta-side h3 { font-size: 1.5rem; }
  .cta-side p { font-size: 0.9rem; }
}

/* ── 375px — Safety net (iPhone SE etc.) ── */
@media (max-width: 375px) {
  /* Absolute floor on container */
  .container { padding: 0 14px; }

  /* No horizontal overflow */
  body { overflow-x: hidden; }

  /* Headings floor */
  h1 { font-size: 1.9rem !important; }
  h2 { font-size: 1.6rem !important; }
  h3 { font-size: 1.25rem !important; }

  /* Hero title */
  .hero-title { font-size: 2.2rem !important; }
  .tx-title-new { font-size: 2.2rem !important; }

  /* Buttons floor */
  .btn { padding: 12px 18px; font-size: 0.8rem; }
  .btn-lg { padding: 12px 20px; font-size: 0.82rem; }

  /* Nav brand text */
  .brand { font-size: 1.1rem; }

  /* Section padding floor */
  .section { padding: 36px 0 !important; }

  /* Footer cols */
  .footer-col h5 { font-size: 0.75rem; }
  .footer-col a { font-size: 0.85rem; }
  .footer-col li { margin-bottom: 10px; }

  /* Product grid safe */
  .product-grid { grid-template-columns: 1fr !important; }

  /* Signup wall floor */
  .signup-wall-container { padding: 28px 14px; }
  .signup-wall-title { font-size: 1.6rem; }

  /* Trust item compact */
  .trust-item { gap: 10px; }
  .trust-icon { width: 32px; height: 32px; }

  /* Category card floor */
  .category-card { padding: 22px 16px; }
}

/* ============================================
   SHOP BANNER HERO (Glamora style)
   ============================================ */
.shop-banner {
  position: relative;
  background: linear-gradient(135deg, #e8e2d5, #f2eada); /* Vellum-like rounded background */
  border-radius: 32px;
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
}

.shop-banner-content {
  flex: 1;
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.shop-banner-visual {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 45%;
  max-width: 450px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.shop-banner-visual img {
  width: 100%;
  height: auto;
  transform: translateY(-12%); /* Pops out of the top, stays inside at the bottom */
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.10));
}

@media (max-width: 768px) {
  .shop-banner {
    flex-direction: column;
    padding: 40px 6% 0px; /* Reduced bottom padding to let image sit at bottom */
    text-align: center;
    border-radius: 24px;
    margin-top: 60px;
  }
  .shop-banner-content {
    max-width: 100%;
    margin-bottom: 60px; /* Big space so the image doesn't overlap text */
  }
  .shop-banner-content p {
    margin: 0;
  }
  .shop-banner-visual {
    position: relative;
    right: auto;
    width: 85%;
    max-width: 320px;
    margin: 0;
  }
  .shop-banner-visual img {
    transform: translateY(-10%); /* Pops out slightly but not enough to ruin layout */
  }
}

/* ============================================
   DESIGN ENHANCEMENTS (Trust Bar onwards)
   ============================================ */

/* 1. Trust Bar Hover */
.trust-item {
  transition: transform 0.3s ease;
}
.trust-item:hover .trust-icon {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(201, 164, 95, 0.15);
  background: rgba(201, 164, 95, 0.05);
}

/* 2. Categories Section Enhancements */
.category-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}
.category-card:hover .arrow {
  transform: translateX(6px);
}

/* 3. Featured Products Enhancements */
.product-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}
.product-card:hover .product-img {
  transform: scale(1.06);
}

/* 4. Editorial Section */
.editorial-img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}
.editorial-img::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(201, 164, 95, 0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* 5. Consult CTA Enhancements */
.consult-cta {
  background: radial-gradient(circle at 50% 50%, #3e3123 0%, var(--bg-card) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.consult-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a45f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.pulse-btn {
  position: relative;
  animation: pulse-glow 3s infinite;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(201, 164, 95, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(201, 164, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 164, 95, 0); }
}

/* ============================================
   TERRAELIX NAV (COPIED FROM INDEX.HTML)
   ============================================ */
.terraelix-nav {
    position: absolute;
    gap: 20px;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 4%;
    z-index: 100;
}

.tx-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.tx-logo-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.tx-logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tx-logo-title {
    white-space: nowrap;
    font-family: "Cormorant SC", serif;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    line-height: 1;
}

.tx-logo-divider {
    width: 100%;
    height: 1px;
    background: var(--gold);
    margin: 4px 0;
    opacity: 0.4;
}

.tx-logo-subtitle {
    white-space: nowrap;
    font-family: "Inter", sans-serif;
    font-size: 0.5rem;
    color: var(--gold);
    letter-spacing: 0.4em;
    font-weight: 600;
    text-transform: uppercase;
}

.tx-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tx-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 6px;
}

.tx-links a:hover, .tx-links a.active {
    color: #fff;
}



.tx-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tx-icon {
    color: #fff;
    width: 18px;
    height: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.tx-icon:hover {
    opacity: 1;
}

.tx-cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.tx-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--gold);
    color: #111;
    font-size: 0.6rem;
    font-weight: 700;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tx-nav-btn {
    background: var(--gold);
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.3s;
    border-radius: 2px;
    margin-left: 8px;
}

.tx-nav-btn:hover {
    background: var(--gold-bright);
}

/* ── RESPONSIVE TERRAELIX NAV ── */
.terraelix-nav.menu-open {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
}
.tx-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: rgba(255,255,255,0.85);
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    z-index: 101;
}
.tx-mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.tx-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.tx-mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.tx-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.tx-mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(12, 9, 6, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 80px 24px 48px;
}
.tx-mobile-menu.open {
    display: flex;
    animation: txMenuIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes txMenuIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tx-mobile-menu a {
    font-family: "Cormorant SC", serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.tx-mobile-menu a:hover,
.tx-mobile-menu a.active { color: var(--gold); }
.tx-mobile-menu .tx-mobile-cta {
    margin-top: 16px;
    background: var(--gold);
    color: #111;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.tx-mobile-menu .tx-mobile-cta:hover { background: var(--gold-bright); color: #111; }
.tx-mobile-menu-close {
    position: absolute;
    top: 28px; right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    transition: color 0.2s;
}
.tx-mobile-menu-close:hover { color: #fff; }

@media (max-width: 1180px) {
    .terraelix-nav { padding: 28px 4%; }
    .tx-links { gap: 28px; }
}
@media (max-width: 900px) {
    .tx-links { gap: 20px; }
    .tx-links a { font-size: 0.68rem; }
}
@media (max-width: 1180px) {
    .tx-links { display: none !important; }
    .tx-nav-btn { display: none !important; }
    .tx-mobile-toggle { display: flex !important; }
    .tx-actions { gap: 16px; }
}

/* ============================================
   TERRAELIX NAV (IMPORTED FROM INDEX)
   ============================================ */
.terraelix-nav {
    position: absolute;
    gap: 20px;
    top: 0;
    left: 0;
    right: 0;
    padding: 35px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

        .tx-logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .tx-logo-icon {
            width: 32px;
            height: 32px;
            color: var(--gold);
        }

        .tx-logo-text-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .tx-logo-title {
    white-space: nowrap;
            font-family: "Cormorant SC", serif;
            font-size: 1.6rem;
            color: var(--gold);
            letter-spacing: 0.15em;
            line-height: 1;
        }

        .tx-logo-divider {
            width: 100%;
            height: 1px;
            background: var(--gold);
            margin: 4px 0;
            opacity: 0.4;
        }

        .tx-logo-subtitle {
    white-space: nowrap;
            font-family: "Inter", sans-serif;
            font-size: 0.5rem;
            color: var(--gold);
            letter-spacing: 0.4em;
            font-weight: 600;
            text-transform: uppercase;
        }

        .tx-links {
            display: flex;
            gap: 40px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .tx-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
            padding-bottom: 6px;
        }

        .tx-links a:hover, .tx-links a.active {
            color: #fff;
        }

        

        .tx-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .tx-icon {
            color: #fff;
            width: 18px;
            height: 18px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .tx-icon:hover {
            opacity: 1;
        }

        .tx-cart-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .tx-cart-badge {
            position: absolute;
            top: -6px;
            right: -8px;
            background: var(--gold);
            color: #111;
            font-size: 0.6rem;
            font-weight: 700;
            width: 15px;
            height: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .tx-nav-btn {
    background: var(--gold);
    color: #fff !important;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 10px 24px;
            text-decoration: none;
            transition: background 0.3s;
            border-radius: 2px;
            margin-left: 8px;
        }

        .tx-nav-btn:hover {
            background: var(--gold-bright);
        }

        .terraelix-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 6%;
            overflow: hidden;
            background: radial-gradient(circle at 75% 50%, rgba(201, 164, 95, 0.25) 0%, rgba(154, 115, 56, 0.1) 45%, var(--bg-black) 100%);
        }

        .tx-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            padding-top: 130px; /* Clears nav at all zoom levels */
        }

        .tx-eyebrow {
            font-size: 0.85rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            font-weight: 600;
        }

        .tx-eyebrow::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .tx-title-new {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(4rem, 8vw, 7.5rem);
            font-weight: 500;
            line-height: 1;
            color: #fff;
            margin-bottom: 30px;
            letter-spacing: -0.02em;
        }

        .tx-title-new .italic-gold {
            font-style: italic;
            color: var(--gold);
        }

        .tx-sub {
            color: #d1d1d1;
            font-size: 1.15rem;
            line-height: 1.6;
            max-width: 540px;
            margin-bottom: 48px;
            font-family: "Inter", sans-serif;
            font-weight: 400;
        }

        .tx-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .tx-btn {
            background: var(--gold);
            color: #111;
            border: none;
            padding: 18px 36px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            font-family: "Inter", sans-serif;
            text-decoration: none;
            border-radius: 4px;
        }

        .tx-btn:hover {
            background: var(--gold-bright);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(201, 164, 95, 0.2);
        }

        .tx-btn-outline {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(201, 164, 95, 0.4);
            padding: 18px 36px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            font-family: "Inter", sans-serif;
            text-decoration: none;
            border-radius: 4px;
        }

        .tx-btn-outline:hover {
            border-color: var(--gold-bright);
            color: var(--gold-bright);
        }

        #mouse-glow {
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201, 164, 95, 0.15) 0%, rgba(201, 164, 95, 0.05) 35%, transparent 70%);
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 1; /* Sits behind content, subtly brightens background */
            mix-blend-mode: screen;
            transition: left 0.3s cubic-bezier(0.1, 0, 0.1, 1), top 0.3s cubic-bezier(0.1, 0, 0.1, 1);
            left: 50%;
            top: 50%;
            opacity: 0;
        }

        .terraelix-hero:hover #mouse-glow {
            opacity: 1;
        }

        @keyframes bokeh-breathe {
            0%, 100% { opacity: 0.1; transform: scale(0.9); }
            50% { opacity: 0.5; transform: scale(1.15); }
        }

        .tx-bokeh-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .tx-bokeh {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201, 164, 95, 0.4) 0%, transparent 65%);
            mix-blend-mode: screen;
            animation: bokeh-breathe 6s infinite ease-in-out;
        }

        .tx-b1 { width: 180px; height: 180px; top: 15%; left: 15%; animation-duration: 5s; animation-delay: 0s; }
        .tx-b2 { width: 280px; height: 280px; top: 65%; left: 8%; animation-duration: 7s; animation-delay: -2s; }
        .tx-b3 { width: 120px; height: 120px; top: 35%; left: 40%; animation-duration: 4s; animation-delay: -1s; }
        .tx-b4 { width: 350px; height: 350px; top: -5%; right: 20%; animation-duration: 8s; animation-delay: -4s; }
        .tx-b5 { width: 220px; height: 220px; bottom: 5%; right: 35%; animation-duration: 6s; animation-delay: -3s; }
        .tx-b6 { width: 150px; height: 150px; top: 80%; left: 45%; animation-duration: 5.5s; animation-delay: -2.5s; }

        .tx-visual {
            position: absolute;
            right: -2%;
            bottom: -5%;
            width: 55vw;
            height: 55vw;
            max-width: 800px;
            max-height: 800px;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

        .tx-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures the mask becomes fully transparent just before hitting the edges of the box */
            -webkit-mask-image: radial-gradient(circle, black 40%, transparent 68%);
            mask-image: radial-gradient(circle, black 40%, transparent 68%);
            filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
        }

        /* Hide the default signup wall temporarily for this preview if needed */
        /* .signup-wall-overlay { display: none !important; } */

        /* ============================================
           TERRAELIX NAV (INLINE FOR PREVIEW)
           ============================================ */
        .terraelix-nav {
            position: absolute;
            gap: 20px;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 4%;
            z-index: 100; /* Ensure nav is above hero */
        }

        /* ============================================
           TERRAELIX NAV — RESPONSIVE
           ============================================ */

        /* Hamburger button */
        .tx-mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: rgba(255,255,255,0.85);
            flex-direction: column;
            gap: 5px;
            align-items: center;
            justify-content: center;
            z-index: 101; /* Ensure hamburger is ABOVE the menu overlay (99) */
        }
        .tx-mobile-toggle span {
            display: block;
            width: 22px;
            height: 1.5px;
            background: currentColor;
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform-origin: center;
        }
        .tx-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .tx-mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .tx-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

        /* Mobile overlay menu */
        .tx-mobile-menu {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(12, 9, 6, 0.97);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            z-index: 99;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            padding: 80px 24px 48px;
        }
        .tx-mobile-menu.open {
            display: flex;
            animation: txMenuIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        @keyframes txMenuIn {
            from { opacity: 0; transform: translateY(-12px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .tx-mobile-menu a {
            font-family: "Cormorant SC", serif;
            font-size: 1.8rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            text-transform: uppercase;
            transition: color 0.2s ease;
        }
        .tx-mobile-menu a:hover,
        .tx-mobile-menu a.active { color: var(--gold); }
        .tx-mobile-menu .tx-mobile-cta {
            margin-top: 16px;
            background: var(--gold);
            color: #111;
            font-family: "Inter", sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 14px 36px;
            border-radius: 4px;
            text-decoration: none;
            transition: background 0.2s ease;
        }
        .tx-mobile-menu .tx-mobile-cta:hover { background: var(--gold-bright); color: #111; }
        .tx-mobile-menu-close {
            position: absolute;
            top: 28px; right: 24px;
            background: none;
            border: none;
            color: rgba(255,255,255,0.6);
            font-size: 1.6rem;
            cursor: pointer;
            line-height: 1;
            padding: 8px;
            transition: color 0.2s;
        }
        .tx-mobile-menu-close:hover { color: #fff; }

        /* ============================================
           HERO — RESPONSIVE
           ============================================ */

        @media (max-width: 1100px) {
            .terraelix-hero { min-height: 80vh; }
            .terraelix-nav { padding: 28px 4%; }
            .tx-links { gap: 28px; }
            .tx-content { padding-top: 60px; } /* Reduced from 130px to fix empty space */
            .tx-visual {
                width: 46vw;
                max-width: 600px;
            }
        }

        @media (max-width: 900px) {
            .tx-links { gap: 20px; }
            .tx-links a { font-size: 0.68rem; }
            .tx-visual {
                width: 42vw;
            }
            .tx-title-new {
                font-size: clamp(3rem, 7vw, 6rem);
            }
        }

        @media (max-width: 768px) {
            /* Nav: hide desktop links, show hamburger */
            .tx-links { display: none !important; }
            .tx-nav-btn { display: none !important; }
            .tx-mobile-toggle { display: flex !important; }

            /* Nav actions: keep icons */
            .tx-actions { gap: 16px; }

            /* ── HERO LAYOUT: texto top, imagen filling bottom ── */
            .terraelix-hero {
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 0;
                min-height: auto; /* NO forced full-viewport — content dictates height */
                position: relative;
                overflow: hidden;
            }

            /* Texto: arriba con padding */
            .tx-content {
                padding: 90px 6% 0 6%;
                max-width: 100%;
                width: 100%;
                position: relative;
                z-index: 3;
                flex-shrink: 0;
            }

            .tx-title-new {
                font-size: clamp(2.8rem, 11vw, 4.5rem);
                margin-bottom: 14px;
                line-height: 0.95;
            }

            .tx-sub {
                font-size: 0.95rem;
                max-width: 85%;
                margin-bottom: 24px;
                line-height: 1.55;
            }

            .tx-eyebrow {
                font-size: 0.75rem;
                letter-spacing: 0.2em;
                margin-bottom: 14px;
            }

            /* CTA buttons */
            .terraelix-hero .tx-actions {
                flex-direction: row;
                width: 100%;
                gap: 10px;
                padding: 0 6% 0;
                margin-top: 4px;
                position: relative;
                z-index: 3;
            }

            .tx-btn,
            .tx-btn-outline {
                flex: 1;
                justify-content: center;
                padding: 14px 10px;
                font-size: 0.75rem;
                text-align: center;
            }

            /* Imagen: positioned relative, flows after buttons, BIG and visible */
            .tx-visual {
                position: relative !important;
                bottom: auto !important;
                right: auto !important;
                width: 100%;
                height: auto;
                max-width: none;
                max-height: none;
                margin-top: -20px; /* Overlap slightly with buttons area */
                margin-right: -15%;
                align-self: flex-end;
                opacity: 1;
                pointer-events: none;
                z-index: 2;
                -webkit-mask-image: radial-gradient(circle at 50% 45%, black 50%, transparent 78%);
                mask-image: radial-gradient(circle at 50% 45%, black 50%, transparent 78%);
            }

            .tx-visual img {
                width: 100%;
                height: auto;
                max-height: 55vh;
                object-fit: contain;
            }

            /* Bokeh on mobile — scale down */
            .tx-b1 { width: 100px; height: 100px; }
            .tx-b2 { width: 160px; height: 160px; }
            .tx-b4 { width: 200px; height: 200px; }
        }

        @media (max-width: 480px) {
            .tx-content {
                padding: 80px 5% 0 5%;
            }
            .tx-title-new {
                font-size: clamp(2.5rem, 13vw, 3.5rem);
            }
            .tx-sub {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }
            .terraelix-hero .tx-actions {
                padding: 0 5% 0;
            }
            .terraelix-nav {
                padding: 18px 5%;
            }
            .tx-logo-title {
    white-space: nowrap;
                font-size: 1.3rem;
            }
            .tx-visual {
                margin-top: -10px;
                margin-right: -12%;
            }
            .tx-visual img {
                max-height: 50vh;
            }
        }

        @media (max-width: 375px) {
            .tx-title-new { font-size: 2.4rem; }
            .tx-btn, .tx-btn-outline { padding: 14px 20px; font-size: 0.8rem; }
        }
    
/* LIGHT NAV OVERRIDES FOR PEPTIDES CATEGORY */
.terraelix-nav.tx-nav-light {
    background: transparent !important;
}
.terraelix-nav.tx-nav-light .tx-links a { color: #2A2317; font-weight: 700; }
.terraelix-nav.tx-nav-light .tx-links a:hover, .terraelix-nav.tx-nav-light .tx-links a.active { color: #9A7338; }



.terraelix-nav.tx-nav-light .tx-icon { color: #1a140f; opacity: 0.85; }
.terraelix-nav.tx-nav-light .tx-icon:hover { opacity: 1; }
.terraelix-nav.tx-nav-light .tx-logo-divider { background: #1a140f; opacity: 0.4; }
.terraelix-nav.tx-nav-light .tx-mobile-toggle { color: #1a140f; }

/* Ensure absolute positioning works well globally */
.terraelix-nav {
    position: absolute !important;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.tx-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
}

body[data-page="home"] .tx-links { margin: 0 auto; }
body[data-page="home"] .tx-links a.active::after { display: none; }


@media (max-width: 1024px) {
    .terraelix-nav {
        gap: 16px;
        padding: 16px 4%;
    }
}


/* ============================================
   SIGNUP WALL - LUXURY INTERSTITIAL
   ============================================ */

.signup-wall-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(250, 245, 234, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 24px;
  transition: opacity 0.5s ease;
}

.signup-wall-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.signup-wall-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  background: var(--text);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: var(--bg-black);
}

.signup-wall-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.signup-wall-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  color: var(--bg-near-black);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.signup-wall-logo .brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-wall-logo .brand-mark svg {
  width: 60%;
  height: 60%;
  color: var(--gold);
}

.signup-wall-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  color: var(--bg-black);
}

.signup-wall-title .accent {
  color: var(--gold-deep);
  font-style: italic;
}

.signup-wall-desc {
  color: var(--bg-near-black);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

.signup-wall-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.signup-wall-input-group {
  position: relative;
  text-align: left;
}

.signup-wall-input {
  width: 100%;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bg-black);
  font-size: 1rem;
  font-family: var(--sans);
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.signup-wall-input::placeholder {
  color: var(--text-dim);
}

.signup-wall-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.15);
  background: #0d0d0d;
}

.signup-wall-submit {
  width: 100%;
  padding: 16px;
  background: var(--bg-black);
  color: var(--gold);
  border: 1px solid var(--bg-black);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.25s ease;
}

.signup-wall-submit:hover {
  background: var(--bg-near-black);
  border-color: var(--bg-near-black);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.signup-wall-submit:disabled {
  background: var(--text-dim);
  border-color: var(--text-dim);
  color: var(--bg-card);
  cursor: not-allowed;
  transform: none;
  opacity: 0.5;
}

.signup-wall-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.signup-wall-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  margin-top: 2px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .signup-wall-container { padding: 40px 20px; }
  .signup-wall-title { font-size: 1.75rem; }
  .signup-wall-desc { font-size: 0.9rem; }
  .signup-wall-logo { font-size: 1.2rem; }
}

body.signup-wall-active {
  overflow: hidden !important;
}

.signup-wall-footer-disclaimer {
  margin-top: 32px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.6;
}


.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ==========================================================================
   GOLD STAR PEPTIDES — Premium Dynamic Overlays (Cart, Search, Lab Portal)
   ========================================================================= */

/* Shared Backdrop / Modal Base */
.gsp-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 13, 9, 0.45);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gsp-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Close Button Utility */
.gsp-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 95, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gsp-close-btn:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  background: rgba(201, 164, 95, 0.08);
  transform: rotate(90deg);
}

.gsp-close-btn svg {
  width: 16px;
  height: 16px;
}

/* ----------------------------------------------------
   1. SHOPPING CART SIDE DRAWER
   ---------------------------------------------------- */
.gsp-cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: rgba(35, 26, 16, 0.95);
  border-left: 1px solid var(--line);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 480px) {
  .gsp-cart-drawer {
    max-width: 100%;
    right: -100%;
    border-left: none;
  }
}

.gsp-cart-drawer.active {
  right: 0;
}

.gsp-cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(201, 164, 95, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gsp-cart-header h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.gsp-cart-header h3 span {
  font-family: var(--sans);
  font-size: 0.8rem;
  background: var(--gold);
  color: var(--bg-black);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
}

.gsp-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gsp-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
  gap: 16px;
  padding: 40px;
}

.gsp-cart-empty svg {
  width: 48px;
  height: 48px;
  color: var(--text-dim);
  opacity: 0.5;
}

.gsp-cart-empty p {
  font-size: 0.95rem;
  max-width: 240px;
}

/* Individual Cart Item */
.gsp-cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 164, 95, 0.08);
  position: relative;
  align-items: center;
}

.gsp-cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-near-black);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gsp-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsp-cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gsp-cart-item-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.gsp-cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gsp-cart-item-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.gsp-cart-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}

.gsp-cart-item-price span.original {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--text-dim);
  margin-right: 6px;
}

.gsp-cart-item-discount-label {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 500;
  margin-top: 2px;
}

/* Quantity selector inside drawer */
.gsp-cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.gsp-cart-qty button {
  background: none;
  border: none;
  color: var(--text);
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.gsp-cart-qty button:hover {
  background: rgba(201, 164, 95, 0.1);
  color: var(--gold);
}

.gsp-cart-qty input {
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--text);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  -moz-appearance: textfield;
}

.gsp-cart-qty input::-webkit-outer-spin-button,
.gsp-cart-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gsp-cart-remove {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px;
  position: absolute;
  top: 0;
  right: 0;
  transition: color 0.2s;
}

.gsp-cart-remove:hover {
  color: var(--danger);
}

.gsp-cart-remove svg {
  width: 14px;
  height: 14px;
}

/* Drawer Footer */
.gsp-cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(201, 164, 95, 0.15);
  background: rgba(28, 20, 12, 0.95);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gsp-shipping-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gsp-shipping-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gsp-shipping-label span {
  color: var(--gold-bright);
  font-weight: 600;
}

.gsp-progress-bar {
  height: 4px;
  background: rgba(201, 164, 95, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.gsp-progress-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  width: 0%;
  transition: width 0.4s ease;
}

.gsp-cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gsp-totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gsp-totals-row.discount {
  color: var(--success);
}

.gsp-totals-row.grand-total {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--text);
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 4px;
}

.gsp-totals-row.grand-total span {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
}

.gsp-checkout-btn {
  background: var(--gold-gradient);
  color: var(--bg-black);
  border: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(201, 164, 95, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gsp-checkout-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 164, 95, 0.3);
}

/* ----------------------------------------------------
   2. PREMIUM REAL-TIME SEARCH OVERLAY
   ---------------------------------------------------- */
.gsp-search-overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 13, 9, 0.95);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  z-index: 2200;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.gsp-search-overlay.active {
  top: 0;
}

.gsp-search-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.gsp-search-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gsp-search-top h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.gsp-search-input-wrapper {
  position: relative;
  width: 100%;
}

.gsp-search-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid var(--line);
  padding: 16px 48px 16px 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.4s ease;
}

.gsp-search-input::placeholder {
  color: var(--text-dim);
  opacity: 0.6;
}

.gsp-search-input:focus {
  border-image: var(--gold-gradient) 1;
}

.gsp-search-input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.gsp-search-input-icon svg {
  width: 28px;
  height: 28px;
}

.gsp-search-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.gsp-shortcut-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gsp-shortcut-pill {
  background: rgba(201, 164, 95, 0.06);
  border: 1px solid rgba(201, 164, 95, 0.15);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gsp-shortcut-pill:hover {
  background: rgba(201, 164, 95, 0.12);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.gsp-search-results-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gsp-search-results-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gsp-search-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .gsp-search-results-grid {
    grid-template-columns: 1fr;
  }
}

/* Search result item */
.gsp-search-item {
  background: rgba(35, 29, 22, 0.6);
  border: 1px solid rgba(201, 164, 95, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.gsp-search-item:hover {
  background: rgba(35, 29, 22, 0.95);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.gsp-search-item-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 164, 95, 0.15);
  overflow: hidden;
  background: var(--bg-near-black);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gsp-search-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsp-search-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gsp-search-item-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}

.gsp-search-item-cat {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gsp-search-item-pricing {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.gsp-search-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}

.gsp-search-item-size {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.gsp-search-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: var(--text-muted);
  gap: 12px;
  text-align: center;
}

.gsp-search-no-results svg {
  width: 36px;
  height: 36px;
  color: var(--text-dim);
}

/* ----------------------------------------------------
   3. ACADEMIC USER PORTAL MODAL
   ---------------------------------------------------- */
.gsp-modal-container {
  background: rgba(35, 26, 16, 0.95);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  position: relative;
  z-index: 2300;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 520px) {
  .gsp-modal-container {
    max-width: calc(100% - 32px);
    margin: 16px;
  }
}

.gsp-backdrop.active .gsp-modal-container {
  transform: translateY(0);
  opacity: 1;
}

.gsp-modal-header {
  padding: 24px;
  border-bottom: 1px solid rgba(201, 164, 95, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gsp-modal-header h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.gsp-modal-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gsp-portal-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Forms in Modal */
.gsp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gsp-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gsp-input-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gsp-input {
  width: 100%;
  background: var(--bg-near-black);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  border-radius: var(--radius);
  outline: none;
  transition: all 0.3s;
}

.gsp-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.gsp-submit-btn {
  background: var(--gold-gradient);
  color: var(--bg-black);
  border: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 14px;
  border-radius: var(--radius);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.gsp-submit-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(201, 164, 95, 0.2);
}

/* Lab Credentials Badge Look */
.gsp-badge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(53, 41, 28, 0.8) 0%, rgba(35, 26, 16, 0.95) 100%);
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gsp-badge-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}

.gsp-badge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gsp-badge-logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gsp-badge-logo svg {
  width: 18px;
  height: 18px;
}

.gsp-badge-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gsp-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  animation: gsp-pulse 1.8s infinite;
}

@keyframes gsp-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(126, 196, 136, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(126, 196, 136, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(126, 196, 136, 0);
  }
}

.gsp-badge-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top: 1px solid rgba(201, 164, 95, 0.1);
  padding-top: 14px;
}

.gsp-badge-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gsp-badge-field span.lbl {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gsp-badge-field span.val {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  word-break: break-all;
}

.gsp-badge-perks {
  background: rgba(126, 196, 136, 0.08);
  border: 1px solid rgba(126, 196, 136, 0.2);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gsp-badge-perks-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gsp-badge-perks-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gsp-logout-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 10px;
  border-radius: var(--radius);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
  text-align: center;
}

.gsp-logout-btn:hover {
  border-color: var(--danger);
  color: var(--danger);
  background: rgba(217, 119, 87, 0.05);
}

/* ----------------------------------------------------
   4. CHECKOUT SUCCESS SIMULATED MODAL
   ---------------------------------------------------- */
.gsp-success-modal {
  max-width: 440px;
  text-align: center;
}

.gsp-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.gsp-success-icon svg {
  width: 28px;
  height: 28px;
}

.gsp-success-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 8px;
}

.gsp-success-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.gsp-success-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  background: var(--bg-near-black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.gsp-success-step {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gsp-success-step.active {
  color: var(--gold-bright);
}

.gsp-success-step.done {
  color: var(--success);
}

/* ============================================
   GSP ELEGANT PAGES — Minimalist & Luxury Layouts
   ============================================ */

.gsp-elegant-hero {
  padding: calc(var(--header-h) + 64px) 0 80px 0;
  border-bottom: 1px solid rgba(201, 164, 95, 0.1);
  background: radial-gradient(circle at 50% 100%, rgba(201, 169, 110, 0.05), transparent 70%);
  text-align: center;
  position: relative;
}

.gsp-elegant-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--gold-gradient);
}

.gsp-elegant-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.gsp-elegant-hero p {
  font-family: var(--sans);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Category stats in Hero */
.gsp-elegant-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 48px;
}

.gsp-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.gsp-stat-item svg {
  color: var(--gold);
  opacity: 0.8;
}

.gsp-stat-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.gsp-stat-text span {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Minimalist Cards */
.gsp-elegant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.gsp-elegant-card {
  background: rgba(53, 41, 28, 0.25);
  border: 1px solid rgba(201, 164, 95, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text);
  height: 100%;
}

.gsp-elegant-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 10% 10%, rgba(201, 169, 110, 0.04), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gsp-elegant-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 95, 0.35);
  background: rgba(53, 41, 28, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gsp-elegant-card:hover::before {
  opacity: 1;
}

.gsp-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 95, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 28px;
  transition: all 0.4s ease;
  background: rgba(201, 164, 95, 0.02);
}

.gsp-elegant-card:hover .gsp-card-icon {
  background: rgba(201, 164, 95, 0.1);
  border-color: var(--gold);
  transform: scale(1.05);
}

.gsp-card-tag {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.gsp-elegant-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text);
}

.gsp-elegant-card p {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 300;
  flex-grow: 1;
}

.gsp-card-arrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.gsp-elegant-card:hover .gsp-card-arrow {
  transform: translateX(4px);
  color: var(--gold-bright);
}

/* Category card count specific style */
.gsp-elegant-card .count {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* Watermark */
.gsp-card-watermark {
  position: absolute;
  right: -24px; bottom: -24px;
  width: 140px; height: 140px;
  opacity: 0.02;
  pointer-events: none;
  transition: all 0.4s ease;
  color: var(--text);
}

.gsp-elegant-card:hover .gsp-card-watermark {
  opacity: 0.08;
  transform: scale(1.1) rotate(5deg);
  color: var(--gold);
}

.gsp-card-watermark svg {
  width: 100%; height: 100%;
}

/* Elegant Luxury Form Controls */
.gsp-elegant-form-group {
  margin-bottom: 32px;
  position: relative;
}

.gsp-elegant-form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.gsp-elegant-form-control {
  width: 100%;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(201, 164, 95, 0.25);
  border-radius: 0;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text);
  transition: all 0.3s ease;
}

.gsp-elegant-form-control:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 var(--gold);
}

.gsp-elegant-form-group:focus-within label {
  color: var(--gold);
}

select.gsp-elegant-form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A45F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

textarea.gsp-elegant-form-control {
  min-height: 120px;
  resize: vertical;
}

.gsp-elegant-btn {
  background: var(--gold-gradient);
  color: var(--bg-black);
  border: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 16px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.gsp-elegant-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 164, 95, 0.25);
  filter: brightness(1.05);
  color: var(--bg-black);
}

/* Sidebar Contact Info Cards */
.gsp-contact-sidebar-card {
  padding: 36px;
  background: rgba(53, 41, 28, 0.2);
  border: 1px solid rgba(201, 164, 95, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.gsp-contact-sidebar-card:hover {
  border-color: rgba(201, 164, 95, 0.25);
  background: rgba(53, 41, 28, 0.3);
}

.gsp-contact-sidebar-card .section-eyebrow {
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.gsp-contact-sidebar-card h4 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.gsp-contact-sidebar-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 300;
}

/* Responsive constraints */
@media (max-width: 1024px) {
  .gsp-elegant-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .gsp-elegant-stats {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .gsp-elegant-grid {
    grid-template-columns: 1fr;
  }
  .gsp-elegant-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 36px;
  }
  .gsp-elegant-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 56px;
  }
}
