/* ===== PISTIS PepLab Research — Brand Stylesheet v3 ===== */
/* Palette: Rose #EEBEC6 · Champagne Gold #C9A46E · Cream #FEF8F6 · Deep Wine #1A0C12 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

:root {
  /* ── Rose Palette ── */
  --rose:         #EEBEC6;   /* Primary brand rose */
  --rose-deep:    #D4899A;   /* Hover / deeper rose */
  --rose-dark:    #A85D6F;   /* Dark rose for text/icons */
  --rose-pale:    #FDF0F3;   /* Very pale rose surface */
  --rose-border:  #F2D8DE;   /* Light rose border */

  /* ── Champagne Gold ── */
  --gold:         #C9A46E;   /* Champagne gold — secondary accent */
  --gold-light:   #D8BB96;   /* Lighter gold */
  --gold-pale:    #F6EDE4;   /* Near-white gold surface */

  /* ── Deep Wine (luxury dark — replaces navy) ── */
  --wine:         #1A0C12;   /* Page dark / hero background */
  --wine-mid:     #2E1520;   /* Mid dark wine */
  --wine-light:   #42202E;   /* Lighter dark for cards in dark bg */
  --wine-border:  rgba(238,190,198,.18);

  /* ── Cream Backgrounds ── */
  --cream:        #FEF8F6;   /* Page background — close-to-white cream */
  --cream-mid:    #FAF2F4;   /* Section alternating surface */
  --white:        #FFFFFF;

  /* ── Text ── */
  --text:         #2C1619;   /* Primary text — warm dark */
  --text-mid:     #5A3340;   /* Mid-dark warm */
  --text-muted:   #9B7080;   /* Muted / metadata */

  /* ── UI ── */
  --border:       #F0E4E7;   /* Soft rose-tinted border */
  --border-mid:   #E2CDD2;
  --red:          #C0392B;

  /* ── Fonts ── */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  /* ── Elevation ── */
  --shadow-xs:  0 1px 3px rgba(42,10,20,.05);
  --shadow-sm:  0 2px 10px rgba(42,10,20,.08);
  --shadow-md:  0 6px 28px rgba(42,10,20,.12);
  --shadow-lg:  0 16px 52px rgba(42,10,20,.16);
  --shadow-rose: 0 6px 28px rgba(238,190,198,.45);

  /* ── Shape ── */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  14px;
  --radius-xl:  24px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ══════════════════════════════
   AGE GATE
══════════════════════════════ */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--wine);
  padding: 20px;
}
.ag-inner {
  text-align: center;
  max-width: 480px; width: 100%;
  padding: 52px 44px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--wine-border);
  border-radius: var(--radius-xl);
}
.ag-logo {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
  display: block;
}
.ag-line {
  width: 36px; height: 1px;
  background: var(--rose);
  margin: 0 auto 24px; opacity: .45;
}
.ag-badge {
  width: 60px; height: 60px;
  border: 1.5px solid var(--rose);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--rose);
}
#age-gate h1 {
  font-family: var(--font-display);
  font-size: 1.85rem; font-weight: 400;
  color: var(--white); line-height: 1.25;
  margin-bottom: 12px;
}
#age-gate .ag-sub {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px; line-height: 1.7;
}
.ag-buttons { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.ag-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body); font-size: .76rem;
  font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; border-radius: var(--radius);
  transition: var(--transition);
}
.ag-btn-yes {
  background: var(--rose); color: var(--wine);
}
.ag-btn-yes:hover {
  background: var(--rose-deep);
  box-shadow: var(--shadow-rose);
  transform: translateY(-1px);
}
.ag-btn-no {
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.45); font-size: .72rem;
}
.ag-btn-no:hover { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.7); }
.ag-disclaimer { font-size: .7rem; color: rgba(255,255,255,.22); line-height: 1.7; }

#age-denied {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: var(--wine); align-items: center; justify-content: center;
  text-align: center; color: var(--white);
}
#age-denied.show { display: flex; }
#age-denied h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 10px; }
#age-denied p { color: rgba(255,255,255,.45); font-size: .9rem; }

/* ══════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════ */
.announcement-bar {
  background: var(--wine);
  color: rgba(255,255,255,.6);
  text-align: center;
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: 9px 20px;
}
.announcement-bar span { color: var(--rose); font-weight: 500; }
.announcement-bar a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(254,248,246,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 20px;
  height: 72px;
}

/* Logo image */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 52px; width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(42,10,20,.06));
}
/* Text fallback (hidden when logo.png present) */
.logo-text-wrap {
  display: flex; flex-direction: column; align-items: flex-start; line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: .03em;
}
.logo-tag {
  font-size: .56rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-top: 2px;
}

.main-nav {
  display: flex; align-items: center; gap: 26px;
  margin: 0 auto;
}
.main-nav a {
  font-size: .74rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-mid); transition: color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--rose-dark); }
.main-nav a.active {
  color: var(--rose-dark);
  border-bottom: 1.5px solid var(--rose);
  padding-bottom: 2px;
}

.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.action-btn {
  position: relative;
  display: flex; align-items: center; gap: 5px;
  padding: 8px 10px;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-mid); border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap;
}
.action-btn:hover { color: var(--rose-dark); background: var(--rose-pale); }
.action-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.action-btn .btn-label { display: none; }
@media (min-width: 1140px) { .action-btn .btn-label { display: inline; } }
.badge {
  position: absolute; top: 3px; right: 3px;
  background: var(--rose);
  color: var(--wine);
  font-size: .55rem; font-weight: 700;
  min-width: 15px; height: 15px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px; line-height: 1;
}
.cart-btn {
  background: var(--wine);
  color: var(--white) !important;
  padding: 9px 16px; border-radius: var(--radius);
  margin-left: 4px;
}
.cart-btn:hover { background: var(--wine-mid) !important; color: var(--white) !important; }
.cart-btn .badge { top: -5px; right: -5px; border: 2px solid var(--cream); }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--rose); color: var(--wine);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius); transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-rose);
}
.btn-primary svg { width: 14px; height: 14px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.72);
  font-size: .76rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius); transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border: 1.5px solid var(--border-mid);
  color: var(--text-mid);
  font-size: .74rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius); transition: all var(--transition);
}
.btn-outline-dark:hover { border-color: var(--rose); color: var(--rose-dark); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background: var(--wine);
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .12;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 60%, rgba(238,190,198,.12) 0%, transparent 45%),
    radial-gradient(circle at 75% 20%, rgba(201,164,110,.07) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(238,190,198,.08) 0%, transparent 35%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: 80px 32px; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .66rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--rose); opacity: .6; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400; color: var(--white);
  line-height: 1.08; margin-bottom: 22px;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-desc {
  font-size: .95rem; color: rgba(255,255,255,.55);
  max-width: 420px; margin-bottom: 40px; line-height: 1.8;
}
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-trust {
  display: flex; flex-direction: column; gap: 11px;
  padding-top: 32px; margin-top: 32px;
  border-top: 1px solid rgba(238,190,198,.12);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .76rem; color: rgba(255,255,255,.42);
}
.trust-item svg { width: 13px; height: 13px; color: var(--rose); flex-shrink: 0; }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-product-img {
  width: 100%; max-width: 520px;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(26,12,18,.25);
  position: relative; z-index: 2;
  object-fit: contain;
}
.hero-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle, rgba(238,190,198,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-float-badge {
  position: absolute; bottom: 24px; left: -20px; z-index: 3;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  min-width: 175px;
  border: 1px solid var(--border);
}
.hfb-icon {
  width: 34px; height: 34px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--rose-dark);
}
.hfb-icon svg { width: 15px; height: 15px; }
.hfb-num {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--text); line-height: 1;
}
.hfb-label { font-size: .66rem; color: var(--text-muted); margin-top: 2px; letter-spacing: .06em; }

/* ══════════════════════════════
   TRUST STRIP
══════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: stretch; justify-content: center;
}
.trust-strip-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
  flex: 1; justify-content: center;
}
.trust-strip-item:last-child { border-right: none; }
.tsi-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--rose-dark);
}
.tsi-icon svg { width: 15px; height: 15px; }
.tsi-title {
  font-size: .74rem; font-weight: 600;
  color: var(--text); letter-spacing: .03em; display: block;
}
.tsi-sub {
  font-size: .67rem; color: var(--text-muted);
  display: block; margin-top: 1px;
}

/* ══════════════════════════════
   DISCLAIMER BANNER
══════════════════════════════ */
.disclaimer-banner {
  background: #fff5f7;
  border-top: 1px solid #fdd5dc;
  border-bottom: 1px solid #fdd5dc;
  padding: 11px 32px;
  text-align: center;
}
.disclaimer-banner p {
  font-size: .74rem; letter-spacing: .04em; color: #8B3048;
}
.disclaimer-banner strong { font-weight: 600; }

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.section { padding: 88px 32px; }
.section-inner { max-width: 1320px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 58px; }
.section-eyebrow {
  font-size: .66rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 400;
  color: var(--text); line-height: 1.2; margin-bottom: 14px;
}
.section-sub {
  font-size: .9rem; color: var(--text-muted);
  max-width: 520px; margin: 0 auto; line-height: 1.8;
}

/* ══════════════════════════════
   CATEGORY CARDS
══════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 3/4;
  cursor: pointer; transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-3px); }
.cat-card:hover img { transform: scale(1.04); }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.cat-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; display: block;
}
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,12,18,.88) 0%, rgba(26,12,18,.15) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
}
.cat-label {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 500; color: var(--white); margin-bottom: 4px; line-height: 1.2;
}
.cat-count {
  font-size: .64rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
}
.cat-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px;
  background: rgba(238,190,198,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); opacity: 0; transition: opacity var(--transition);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(238,190,198,.3);
}
.cat-card:hover .cat-arrow { opacity: 1; }

/* ══════════════════════════════
   PRODUCT CARDS
══════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--rose-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-img-wrap {
  position: relative; aspect-ratio: 1/1;
  overflow: hidden; background: var(--cream-mid, #FAF2F4);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--wine);
  color: var(--rose);
  font-size: .58rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.product-badge.new { background: var(--rose); color: var(--wine); }
.product-badge.limited { background: #7f1d1d; color: #fca5a5; }
.product-fav {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}
.product-fav svg { width: 15px; height: 15px; color: var(--text-muted); transition: color var(--transition); }
.product-fav:hover { border-color: var(--rose); background: var(--rose-pale); }
.product-fav:hover svg { color: var(--rose-dark); }
.product-fav.active { background: var(--rose-pale); border-color: var(--rose); }
.product-fav.active svg { color: var(--rose-dark); fill: var(--rose); }
.product-body {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; flex: 1;
}
.product-category {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 5px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
  line-height: 1.25; letter-spacing: .02em;
}
.product-formula {
  font-size: .72rem; color: var(--text-muted);
  margin-bottom: 10px; font-style: italic;
}
.product-desc {
  font-size: .8rem; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 16px; flex: 1;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600; color: var(--text); line-height: 1;
}
.product-price span {
  font-size: .72rem; color: var(--text-muted);
  font-weight: 400; font-family: var(--font-body);
}
.btn-add-cart {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 16px;
  background: var(--wine); color: var(--white);
  font-size: .68rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.btn-add-cart:hover { background: var(--rose); color: var(--wine); }

/* ══════════════════════════════
   FEATURES / WHY
══════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--rose-border);
  box-shadow: 0 4px 20px rgba(238,190,198,.2);
  transform: translateY(-2px);
}
.feature-icon {
  width: 50px; height: 50px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--rose-dark);
}
.feature-icon svg { width: 21px; height: 21px; }
.feature-title {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 600; color: var(--text); margin-bottom: 8px;
}
.feature-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════
   ABOUT SPLIT
══════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 40px;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-img-wrap img { width: 100%; height: auto; object-fit: contain; display: block; }
.about-accent {
  position: absolute; bottom: -12px; right: -12px;
  width: 110px; height: 110px;
  border: 1px solid var(--rose);
  border-radius: var(--radius-lg);
  opacity: .35; pointer-events: none;
}
.about-content .section-title { text-align: left; }
.about-content .section-eyebrow { text-align: left; }
.about-content p { font-size: .9rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 18px; }
.about-stats {
  display: flex; gap: 32px; margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.astat { text-align: center; }
.astat-num {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 600; color: var(--rose-dark); display: block; line-height: 1;
}
.astat-label {
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 4px; display: block;
}

/* ══════════════════════════════
   NEWSLETTER
══════════════════════════════ */
.newsletter-section {
  background: var(--wine);
  padding: 72px 32px;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-inner .section-title { color: var(--white); }
.newsletter-inner p { color: rgba(255,255,255,.45); font-size: .88rem; margin-bottom: 32px; }
.newsletter-inner .section-eyebrow { color: var(--rose); }
.newsletter-form {
  display: flex; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  border: 1px solid rgba(238,190,198,.18);
}
.newsletter-form input {
  flex: 1; padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: none; outline: none;
  color: var(--white); font-family: var(--font-body); font-size: .88rem; min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.28); }
.newsletter-form button {
  padding: 14px 24px;
  background: var(--rose); color: var(--wine);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--transition); white-space: nowrap;
}
.newsletter-form button:hover { background: var(--rose-deep); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: #120810;
  color: rgba(255,255,255,.45);
  padding: 64px 32px 0;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(238,190,198,.08);
}
.footer-logo-img {
  height: 44px; width: auto;
  margin-bottom: 16px;
  /* Invert to work on dark bg if needed — adjust based on actual logo */
  filter: brightness(0) invert(1) opacity(0.85);
}
.footer-brand-text .logo-name { color: var(--white); font-size: 1.1rem; }
.footer-brand-text .logo-tag { color: var(--rose); margin-bottom: 16px; display: block; }
.footer-brand p {
  font-size: .78rem; line-height: 1.85;
  color: rgba(255,255,255,.38); margin-bottom: 18px; max-width: 270px;
}
.footer-email {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; color: var(--rose);
  transition: color var(--transition);
}
.footer-email:hover { color: var(--rose-deep); }
.footer-col h4 {
  font-size: .64rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  font-size: .78rem; color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--rose); }
.footer-disclaimer {
  background: rgba(238,190,198,.06);
  border: 1px solid rgba(238,190,198,.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px; margin: 28px 0;
  font-size: .7rem; color: rgba(238,190,198,.45);
  line-height: 1.75; text-align: center;
}
.footer-disclaimer strong { color: rgba(238,190,198,.65); }
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-legal { font-size: .68rem; color: rgba(255,255,255,.18); }

/* ══════════════════════════════
   PAGE HERO
══════════════════════════════ */
/* ── Product collage strip ── */
.collage-section {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.collage-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-hero {
  background: var(--wine);
  padding: 72px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(238,190,198,.1) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white); font-weight: 400;
  margin-bottom: 10px; position: relative;
}
.page-hero p { color: rgba(255,255,255,.45); font-size: .9rem; position: relative; }

/* ══════════════════════════════
   FILTERS
══════════════════════════════ */
.filters-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 13px 32px;
  position: sticky; top: 72px; z-index: 100;
}
.filters-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 16px;
  font-size: .66rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted); transition: all var(--transition);
  background: var(--white);
}
.filter-btn:hover { border-color: var(--rose); color: var(--rose-dark); }
.filter-btn.active { background: var(--wine); color: var(--white); border-color: var(--wine); }
.filter-search {
  margin-left: auto;
  display: flex; align-items: center; gap: 7px;
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 7px 12px;
  background: var(--cream); transition: border-color var(--transition);
}
.filter-search:focus-within { border-color: var(--rose); }
.filter-search input {
  border: none; background: none; outline: none;
  font-family: var(--font-body); font-size: .82rem;
  color: var(--text); width: 170px;
}
.filter-search input::placeholder { color: var(--text-muted); }
.filter-search svg { width: 15px; height: 15px; color: var(--text-muted); flex-shrink: 0; }

/* ══════════════════════════════
   STATIC PAGES
══════════════════════════════ */
.static-page { max-width: 780px; margin: 0 auto; padding: 72px 32px; }
.static-page h1 { font-family: var(--font-display); font-size: 2.4rem; color: var(--text); margin-bottom: 6px; }
.static-page .subtitle {
  color: var(--gold); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 36px; display: block;
}
.static-page h2 {
  font-family: var(--font-display); font-size: 1.35rem; color: var(--text);
  margin: 32px 0 10px;
}
.static-page p { color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; font-size: .92rem; }
.alert-box {
  background: #fff5f7;
  border: 1px solid #fdd5dc;
  border-left: 4px solid var(--rose-dark);
  border-radius: var(--radius);
  padding: 18px 22px; margin: 24px 0;
  font-size: .86rem; color: #8B3048; line-height: 1.75;
}

/* ══════════════════════════════
   TOAST
══════════════════════════════ */
.toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9000;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--wine);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: .8rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 9px;
  animation: toastIn .25s ease;
  border-left: 3px solid var(--rose);
  pointer-events: all; max-width: 280px;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
.toast svg { color: var(--rose); flex-shrink: 0; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-strip-item { border-right: none; border-bottom: 1px solid var(--border); flex-basis: 50%; }
  .trust-strip-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 768px) {
  .section { padding: 56px 20px; }
  .main-nav { display: none; }
  .header-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-form button { border-radius: 0 0 var(--radius) var(--radius); }
  .about-stats { gap: 20px; }
  .trust-strip-item { flex-basis: 100%; border-right: none; }
  .trust-strip-item:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .hero-content { padding: 56px 20px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .page-hero { padding: 48px 20px; }
  .filters-bar { padding: 10px 16px; }
}

/* ══════════════════════════════
   LABEL-STYLE PRODUCT CARDS
   Inspired by the actual PISTIS vial labels
══════════════════════════════ */

/* Hex honeycomb background via CSS gradients */
.hex-bg {
  background-color: var(--white);
  background-image:
    linear-gradient(60deg, #f9edf0 12.5%, transparent 12.5%, transparent 87.5%, #f9edf0 87.5%),
    linear-gradient(120deg, #f9edf0 12.5%, transparent 12.5%, transparent 87.5%, #f9edf0 87.5%);
  background-size: 32px 56px;
  background-position: 0 0, 0 28px;
}

.label-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.label-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.label-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--rose-border);
  transform: translateY(-2px);
}

/* The label area (hex bg + content) */
.label-main {
  padding: 20px 36px 16px 20px; /* right padding for the tab */
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.label-main.hex-bg {
  background-color: var(--white);
}

/* PISTIS logo mark in label */
.label-logo-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.label-logo-icon {
  width: 28px; height: 28px;
}
.label-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  padding-left: 8px;
  border-left: 1px solid var(--border-mid);
}
.label-logo-name {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--rose-dark);
}
.label-logo-sub {
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.label-logo-sub2 {
  font-size: .52rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Divider line under logo */
.label-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
  margin-bottom: 10px;
}

/* Peptide name */
.label-peptide-name {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--rose-dark);
  line-height: 1.1;
  margin: 4px 0 8px;
  letter-spacing: .01em;
  /* Scale font size to name length via JS class */
}
.label-peptide-name.name-short  { font-size: 2.2rem; }
.label-peptide-name.name-medium { font-size: 1.8rem; }
.label-peptide-name.name-long   { font-size: 1.4rem; }

/* Gold underline accent */
.label-gold-line {
  width: 44px; height: 1.5px;
  background: var(--gold);
  margin: 0 auto 8px;
  opacity: .7;
}

/* Dosage */
.label-dosage {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* Spec lines */
.label-spec {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .04em;
  line-height: 1.6;
}
.label-spec-sep { margin: 0 5px; opacity: .4; }

/* Storage meta row */
.label-meta-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 0 4px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
}
.label-meta-item {}
.label-meta-label {
  display: block;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 2px;
}
.label-meta-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

/* Pink research use banner */
.label-ruo-banner {
  background: var(--rose-dark);
  padding: 8px 12px;
  text-align: center;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}

/* Vertical refrigerate tab */
.label-tab {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 22px;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.label-tab-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .46rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
/* Gold accent strip beside tab */
.label-tab::after {
  content: '';
  position: absolute;
  right: -6px; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold-light), var(--gold-pale));
  pointer-events: none;
}

/* Price + actions strip */
.label-actions-row {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.label-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.label-price-per {
  font-size: .68rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
  margin-top: 1px;
}
.label-action-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}
.label-fav-btn {
  width: 32px; height: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.label-fav-btn svg { width: 14px; height: 14px; color: var(--text-muted); }
.label-fav-btn:hover { border-color: var(--rose); background: var(--rose-pale); }
.label-fav-btn:hover svg { color: var(--rose-dark); }
.label-fav-btn.active { background: var(--rose-pale); border-color: var(--rose); }
.label-fav-btn.active svg { color: var(--rose-dark); fill: var(--rose); }

/* Category section titles */
.cat-section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cat-section-title h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
}
.cat-section-title .pill {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--rose-pale);
  color: var(--rose-dark);
  border: 1px solid var(--rose-border);
  padding: 4px 12px;
  border-radius: 100px;
}

@media (max-width: 720px) {
  .label-grid { grid-template-columns: 1fr; }
  .label-peptide-name.name-short  { font-size: 1.8rem; }
  .label-peptide-name.name-medium { font-size: 1.5rem; }
  .label-peptide-name.name-long   { font-size: 1.2rem; }
}
