@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&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg: #faf6f1;
  --bg-warm: #f5ede3;
  --bg-deep: #1a0f0a;
  --fg: #2c1810;
  --fg-muted: #6b5244;
  --fg-light: #a08879;
  --accent: #c4956a;
  --accent-hover: #b07d52;
  --accent-soft: rgba(196, 149, 106, 0.15);
  --rose: #d4a0a0;
  --rose-soft: rgba(212, 160, 160, 0.12);
  --cream: #fff8f0;
  --sage: #8a9a7b;
  --gold: #c9a96e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-warm) 40%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: var(--fg);
  max-width: 800px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 48px auto 0;
  position: relative;
  z-index: 1;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 120px 24px;
  background: var(--cream);
  text-align: center;
}

.philosophy-inner {
  max-width: 680px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.philosophy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}

.philosophy p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.9;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 120px 24px;
  background: var(--bg);
}

.products-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 72px;
}

.products-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 16px;
}

.products-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(196, 149, 106, 0.1);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.06);
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
}

.product-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 20px;
}

/* ===== TRANSFORMATION ===== */
.transformation {
  padding: 120px 24px;
  background: var(--bg-deep);
  color: #fff;
  text-align: center;
}

.transformation-inner {
  max-width: 800px;
  margin: 0 auto;
}

.transformation .section-label {
  color: var(--gold);
}

.transformation h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 48px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.transformation-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== RITUAL ===== */
.ritual {
  padding: 120px 24px;
  background: var(--bg-warm);
}

.ritual-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ritual-header {
  text-align: center;
  margin-bottom: 72px;
}

.ritual-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
}

.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ritual-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.step-number {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  min-width: 48px;
}

.step-content h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 24px;
  background: linear-gradient(175deg, var(--cream) 0%, var(--bg) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent);
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 24px;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid rgba(196, 149, 106, 0.15);
}

.footer-brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer p {
  font-size: 0.85rem;
  color: var(--fg-light);
}

/* ===== BUTTONS (shared across landing + PDP) ===== */
.pdp-btn-primary {
  display: inline-block;
  background: var(--fg);
  color: #fff8f0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.pdp-btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.pdp-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 15px 36px;
  border: 1px solid rgba(44, 24, 16, 0.18);
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.pdp-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pdp-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 15px 36px;
  border: 1px solid rgba(255, 248, 240, 0.3);
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.pdp-btn-outline:hover {
  border-color: var(--cream);
  background: rgba(255, 248, 240, 0.08);
}

/* ===== PRODUCT PAGE — NAVIGATION ===== */
.pdp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 149, 106, 0.12);
}
.pdp-nav-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  text-decoration: none;
}
.pdp-nav-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.pdp-nav-link:hover { color: var(--accent); }

/* ===== PRODUCT PAGE — HERO ===== */
.pdp-hero {
  padding: 80px 40px 100px;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-warm) 60%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.pdp-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-soft) 0%, transparent 60%);
  pointer-events: none;
}
.pdp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Bottle visual */
.pdp-visual { position: relative; }
.pdp-image-frame {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--cream) 0%, var(--bg-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(44, 24, 16, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(196, 149, 106, 0.15);
}
.pdp-image-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(196, 149, 106, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(212, 160, 160, 0.08) 0%, transparent 50%);
}
.pdp-bottle-placeholder {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pdp-bottle-shape { display: flex; flex-direction: column; align-items: center; }
.pdp-bottle-neck {
  width: 48px;
  height: 72px;
  background: linear-gradient(180deg, var(--fg) 0%, #3d2418 100%);
  border-radius: 8px 8px 0 0;
  position: relative;
}
.pdp-bottle-neck::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -6px;
  right: -6px;
  height: 8px;
  background: var(--fg);
  border-radius: 4px;
}
.pdp-bottle-body {
  width: 140px;
  height: 220px;
  background: linear-gradient(160deg, #2c1810 0%, #1a0f0a 50%, #2c1810 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 4px 8px 32px rgba(44, 24, 16, 0.3), inset -2px 0 8px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.pdp-bottle-body::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 2px;
}
.pdp-bottle-label-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}
.pdp-bottle-label-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.6);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.pdp-leaf {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: drift 6s ease-in-out infinite;
}
.pdp-leaf-1 { top: 15%; right: 12%; animation-delay: 0s; font-size: 2.4rem; }
.pdp-leaf-2 { top: 60%; right: 8%; animation-delay: 2s; font-size: 1.2rem; color: var(--rose); }
.pdp-leaf-3 { bottom: 15%; left: 10%; animation-delay: 4s; font-size: 1.6rem; }
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}
.pdp-badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--cream);
  border: 1px solid rgba(196, 149, 106, 0.2);
  border-radius: 40px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}
.pdp-badge-icon {
  color: var(--sage);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Product info column */
.pdp-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pdp-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}
.pdp-tagline {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.pdp-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 1px; }
.pdp-rating-text { font-size: 0.85rem; color: var(--fg-muted); }

/* Pricing options */
.pdp-pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pdp-price-option {
  padding: 18px 20px;
  border: 1.5px solid rgba(44, 24, 16, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  background: transparent;
}
.pdp-price-option:hover { border-color: var(--accent); }
.pdp-price-option.pdp-price-active {
  border-color: var(--fg);
  background: var(--cream);
}
.pdp-price-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.pdp-price-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--fg);
}
.pdp-price-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 10px;
}
.pdp-price-amount {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg);
}
.pdp-price-freq {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.pdp-price-detail {
  font-size: 0.83rem;
  color: var(--fg-light);
  line-height: 1.5;
}

/* CTAs */
.pdp-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.pdp-shipping-note {
  font-size: 0.82rem;
  color: var(--fg-light);
  margin-bottom: 28px;
}

/* Trust row */
.pdp-trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
}
.pdp-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 400;
}
.pdp-trust-icon { font-size: 1rem; }

/* ===== SCIENCE STRIP ===== */
.pdp-science-strip {
  background: var(--bg-deep);
  padding: 48px 40px;
}
.pdp-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.pdp-stat { text-align: center; padding: 0 48px; }
.pdp-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.pdp-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.pdp-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ===== SHARED SECTION STYLES ===== */
.pdp-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pdp-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.pdp-section-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.pdp-section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== INGREDIENTS ===== */
.pdp-ingredients {
  padding: 100px 40px;
  background: var(--cream);
}
.pdp-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.pdp-ingredient-card {
  background: var(--bg);
  border: 1px solid rgba(196, 149, 106, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pdp-ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.07);
}
.pdp-ingredient-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.pdp-ing-1 { background: rgba(138, 154, 123, 0.15); }
.pdp-ing-2 { background: rgba(196, 149, 106, 0.12); }
.pdp-ing-3 { background: rgba(201, 169, 110, 0.12); }
.pdp-ing-4 { background: rgba(212, 160, 160, 0.12); }
.pdp-ingredient-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 4px;
}
.pdp-ingredient-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.pdp-ingredient-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.pdp-ingredient-study {
  font-size: 0.78rem;
  color: var(--fg-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(160, 136, 121, 0.3);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
a.pdp-ingredient-study:hover { color: var(--accent); }
.pdp-full-ingredients {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--bg-warm);
  border-radius: 10px;
  border: 1px solid rgba(196, 149, 106, 0.12);
}
.pdp-full-ingredients-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pdp-full-ingredients-text {
  font-size: 0.85rem;
  color: var(--fg-light);
  font-style: italic;
  line-height: 1.8;
}

/* ===== BUNDLE ===== */
.pdp-bundle {
  padding: 100px 40px;
  background: var(--bg);
}
.pdp-bundle-card {
  background: linear-gradient(145deg, var(--bg-deep) 0%, #2c1810 100%);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.pdp-bundle-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.12) 0%, transparent 60%);
}
.pdp-bundle-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
}
.pdp-bundle-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pdp-bundle-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #fff8f0;
  margin-bottom: 16px;
}
.pdp-bundle-desc {
  font-size: 1rem;
  color: rgba(255,248,240,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}
.pdp-bundle-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-bundle-items li {
  font-size: 0.9rem;
  color: rgba(255,248,240,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pdp-bundle-check {
  color: var(--gold);
  font-weight: 600;
}
.pdp-bundle-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  min-width: 200px;
}
.pdp-bundle-price {
  text-align: right;
}
.pdp-bundle-price-old {
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(255,248,240,0.35);
  text-decoration: line-through;
  margin-right: 8px;
}
.pdp-bundle-price-new {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.pdp-bundle-btn { white-space: nowrap; }
.pdp-bundle-note {
  font-size: 0.78rem;
  color: rgba(255,248,240,0.4);
  text-align: right;
}

/* ===== HOW TO USE ===== */
.pdp-how {
  padding: 100px 40px;
  background: var(--bg-warm);
}
.pdp-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 680px;
  margin: 0 auto;
}
.pdp-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.pdp-step-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  min-width: 56px;
}
.pdp-step-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 10px;
}
.pdp-step-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ===== FAQ ===== */
.pdp-faq {
  padding: 100px 40px;
  background: var(--cream);
}
.pdp-faq-inner { max-width: 760px; margin: 0 auto; }
.pdp-faq-list {
  display: flex;
  flex-direction: column;
}
.pdp-faq-item {
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}
.pdp-faq-item:first-of-type { border-top: 1px solid rgba(44, 24, 16, 0.08); }
.pdp-faq-q {
  list-style: none;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s ease;
}
.pdp-faq-q::-webkit-details-marker { display: none; }
.pdp-faq-q::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.2s ease;
}
details[open] .pdp-faq-q::after { transform: rotate(45deg); }
details[open] .pdp-faq-q { color: var(--accent); }
.pdp-faq-a {
  padding: 0 0 24px;
  overflow: hidden;
}
.pdp-faq-a p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.85;
}
.pdp-faq-a p em { color: var(--fg); font-style: italic; }

/* ===== CLOSING CTA ===== */
.pdp-closing {
  padding: 120px 40px;
  background: var(--bg-deep);
  text-align: center;
}
.pdp-closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.pdp-closing-inner .section-label { color: var(--gold); }
.pdp-closing-inner h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff8f0;
  line-height: 1.15;
  margin-bottom: 20px;
}
.pdp-closing-inner h2 em { color: var(--gold); font-style: italic; }
.pdp-closing-inner > p {
  font-size: 1rem;
  color: rgba(255,248,240,0.55);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.pdp-closing-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-row {
    gap: 40px;
  }

  .ritual-step {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding: 60px 20px;
    min-height: 90vh;
  }

  .philosophy,
  .products,
  .transformation,
  .ritual,
  .closing {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 2.2rem;
  }

  .stats-row {
    flex-direction: column;
    gap: 32px;
  }
}

/* ===== PRODUCT PAGE RESPONSIVE ===== */
@media (max-width: 900px) {
  .pdp-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pdp-visual { order: -1; }
  .pdp-image-frame { max-width: 380px; margin: 0 auto; }
  .pdp-ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-bundle-content { grid-template-columns: 1fr; gap: 32px; }
  .pdp-bundle-cta-group { align-items: flex-start; }
  .pdp-bundle-price, .pdp-bundle-note { text-align: left; }
}

@media (max-width: 640px) {
  .pdp-nav { padding: 16px 20px; }
  .pdp-hero { padding: 40px 20px 60px; }
  .pdp-ingredient-grid { grid-template-columns: 1fr; }
  .pdp-bundle-card { padding: 32px 24px; }
  .pdp-step { flex-direction: column; gap: 8px; }
  .pdp-step-num { font-size: 2rem; min-width: auto; }
  .pdp-ingredients, .pdp-bundle, .pdp-how, .pdp-faq { padding: 64px 20px; }
  .pdp-closing { padding: 80px 20px; }
  .pdp-closing-ctas { flex-direction: column; align-items: center; }
  .pdp-science-strip { padding: 32px 20px; }
  .pdp-stat { padding: 16px 24px; }
  .pdp-stat-divider { display: none; }
}