/* ============================================================
   BOOSTER XT – PREMIUM AFFILIATE LANDING PAGE
   Theme Color: #513811 | White Premium Theme
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #513811;
  --primary-dark: #3a2809;
  --primary-light: #7a5520;
  --gold: #c8922a;
  --gold-light: #f0b84a;
  --red: #c0392b;
  --green: #1a7a3c;
  --white: #ffffff;
  --off-white: #faf8f5;
  --light: #f5f0e8;
  --text: #1a1208;
  --muted: #5a4a35;
  --border: #e0d5c0;
  --shadow: 0 4px 24px rgba(81,56,17,.10);
  --shadow-lg: 0 12px 48px rgba(81,56,17,.18);
  --shadow-xl: 0 20px 60px rgba(81,56,17,.22);
  --f-xs: 1.0rem;
  --f-sm: 1.1rem;
  --f-body: 1.2rem;
  --f-md: 1.35rem;
  --f-lg: 1.6rem;
  --f-xl: 2rem;
  --f-2xl: 2.5rem;
  --f-3xl: 3rem;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Merriweather', Georgia, serif;
  font-size: var(--f-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* SCROLL PROGRESS BAR */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  z-index: 9999; width: 0%; transition: width 0.1s;
}

/* ANTI-COPY */
body { user-select: none; -webkit-user-select: none; }

/* ============================================================
   STICKY HEADER
============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(81,56,17,.12);
  transition: var(--transition);
  padding: 0 24px;
}
#header.scrolled { padding: 0 24px; }
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 900;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo span { color: var(--gold); }
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  font-size: var(--f-sm); color: var(--muted); font-weight: 600;
  transition: var(--transition); font-family: 'Lato', sans-serif;
}
nav a:hover { color: var(--primary); }
.btn-header {
  background: linear-gradient(135deg, var(--gold), var(--primary));
  color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 700; font-size: var(--f-sm);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(81,56,17,.3);
  font-family: 'Lato', sans-serif;
}
.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(81,56,17,.4);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span {
  width: 26px; height: 2px;
  background: var(--primary); border-radius: 2px; transition: var(--transition);
}

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  min-height: 100vh; padding-top: 70px;
  background: linear-gradient(135deg, var(--off-white) 0%, #fff8ee 50%, var(--light) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(81,56,17,.08); border: 1px solid rgba(81,56,17,.2);
  padding: 6px 16px; border-radius: 50px;
  font-size: var(--f-sm); font-weight: 700; color: var(--primary);
  font-family: 'Lato', sans-serif; margin-bottom: 20px;
  letter-spacing: 1px; text-transform: uppercase;
}
.hero-badge span { color: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2; font-weight: 900;
  color: var(--primary-dark); margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-desc {
  font-size: var(--f-body); color: var(--muted);
  line-height: 1.8; margin-bottom: 28px;
}
.trust-badges {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 8px;
  font-size: var(--f-xs); font-weight: 700; color: var(--primary);
  box-shadow: var(--shadow); font-family: 'Lato', sans-serif;
}
.trust-badge svg { width: 18px; height: 18px; fill: var(--green); }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #e6a020, var(--primary));
  color: var(--white); padding: 18px 40px;
  border-radius: 50px; font-size: var(--f-md);
  font-weight: 800; font-family: 'Lato', sans-serif;
  letter-spacing: 0.5px; cursor: pointer; border: none;
  box-shadow: 0 6px 32px rgba(81,56,17,.35);
  transition: var(--transition);
  animation: pulse-btn 2s infinite;
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(81,56,17,.45);
  animation: none;
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 32px rgba(81,56,17,.35); }
  50% { box-shadow: 0 6px 48px rgba(200,146,42,.6); }
}
.urgency-notice {
  margin-top: 16px; display: flex; align-items: center; gap: 8px;
  font-size: var(--f-sm); color: var(--red); font-weight: 700;
  font-family: 'Lato', sans-serif;
}
.urgency-notice::before { content: '⚡'; }
.hero-img-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); max-height: 520px; object-fit: contain;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-timer {
  background: var(--white); border: 2px solid var(--gold);
  border-radius: var(--radius); padding: 16px 24px;
  text-align: center; margin-top: 24px;
  box-shadow: var(--shadow);
}
.timer-label {
  font-size: var(--f-xs); font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 1px;
  font-family: 'Lato', sans-serif; margin-bottom: 8px;
}
.timer-display {
  display: flex; justify-content: center; gap: 12px; align-items: center;
}
.timer-unit {
  text-align: center;
}
.timer-unit span:first-child {
  font-size: 1.8rem; font-weight: 900; color: var(--primary);
  font-family: 'Playfair Display', serif; display: block;
  min-width: 50px;
}
.timer-unit .unit-label {
  font-size: 0.7rem; color: var(--muted); font-family: 'Lato', sans-serif;
  text-transform: uppercase; letter-spacing: 1px;
}
.timer-sep { font-size: 1.5rem; font-weight: 900; color: var(--gold); margin-bottom: 18px; }

/* STOCK COUNTER */
.stock-bar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 20px; margin-top: 16px;
}
.stock-label {
  font-size: var(--f-xs); font-weight: 700; color: var(--red);
  font-family: 'Lato', sans-serif; margin-bottom: 8px;
  display: flex; justify-content: space-between;
}
.stock-track {
  background: #f0e8d5; border-radius: 50px; height: 10px; overflow: hidden;
}
.stock-fill {
  background: linear-gradient(90deg, var(--gold), var(--red));
  height: 100%; border-radius: 50px; width: 23%;
  animation: stock-pulse 2s infinite;
}
@keyframes stock-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .7; } }

/* SECURE BADGES */
.secure-row {
  display: flex; align-items: center; gap: 12px; margin-top: 12px; flex-wrap: wrap;
}
.secure-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--muted); font-family: 'Lato', sans-serif;
}
.secure-badge svg { width: 16px; height: 16px; }

/* ============================================================
   SECTION COMMONS
============================================================ */
section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--light); border: 1px solid var(--border);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; color: var(--primary);
  font-family: 'Lato', sans-serif; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--primary-dark);
  line-height: 1.25; margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-sub {
  font-size: var(--f-body); color: var(--muted);
  max-width: 650px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.divider {
  height: 4px; width: 60px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  border-radius: 2px; margin: 16px 0 24px;
}
.text-center .divider { margin: 16px auto 24px; }

/* ============================================================
   REVIEWS SECTION
============================================================ */
#reviews { background: var(--off-white); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 48px;
}
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: var(--transition);
  position: relative;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.quote-icon {
  font-size: 3rem; color: var(--gold); line-height: 1;
  font-family: Georgia, serif; margin-bottom: 12px; display: block;
}
.stars { color: #f4a100; font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-title {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  font-weight: 700; color: var(--primary-dark); margin-bottom: 12px;
}
.review-text {
  font-size: var(--f-sm); color: var(--muted);
  line-height: 1.75; margin-bottom: 20px;
}
.reviewer {
  display: flex; align-items: center; gap: 14px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.reviewer img {
  width: 54px; height: 54px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
}
.reviewer-info strong {
  display: block; font-size: var(--f-sm); font-weight: 700;
  color: var(--primary-dark); font-family: 'Lato', sans-serif;
}
.reviewer-info span { font-size: 0.85rem; color: var(--muted); font-family: 'Lato', sans-serif; }
.verified-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--green); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  font-family: 'Lato', sans-serif; letter-spacing: 0.5px;
}

/* ============================================================
   TRUST BADGES SECTION
============================================================ */
#trust-badges { background: var(--white); }
.badges-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.badge-card {
  text-align: center; padding: 36px 24px;
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  transition: var(--transition); background: var(--white);
}
.badge-card:hover {
  border-color: var(--gold); box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.badge-card img {
  width: 80px; height: 80px; object-fit: contain;
  margin: 0 auto 16px; border-radius: 50%;
}
.badge-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 800; color: var(--primary); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 1px;
}
.badge-card p { font-size: var(--f-sm); color: var(--muted); line-height: 1.6; }

/* ============================================================
   WHAT IS SECTION
============================================================ */
#what-is { background: var(--off-white); }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 48px;
}
.what-is-img img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  width: 100%;
}
.highlight-block {
  background: linear-gradient(135deg, var(--light), #fff8ee);
  border-left: 4px solid var(--gold);
  padding: 18px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0; font-size: var(--f-sm); color: var(--muted);
  line-height: 1.75;
}
.what-is-text p { font-size: var(--f-body); color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

/* ============================================================
   HOW IT WORKS
============================================================ */
#how-it-works { background: var(--white); }
.pathway-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.pathway-grid::before {
  content: ''; position: absolute; top: 50px; left: 10%; right: 10%;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--primary));
  z-index: 0;
}
.pathway-step {
  text-align: center; padding: 0 10px;
  position: relative; z-index: 1;
}
.step-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(81,56,17,.3);
  border: 4px solid var(--white);
}
.pathway-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 800;
  color: var(--primary); margin-bottom: 8px;
}
.pathway-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   PRICING / PACKAGE SECTION
============================================================ */
.packages-section { background: var(--off-white); }
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px; align-items: start;
}
.pkg-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; border: 2px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card.popular {
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}
.pkg-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-tag {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--primary));
  color: var(--white); font-size: 0.78rem; font-weight: 800;
  padding: 6px 24px; border-radius: 0 0 12px 12px;
  font-family: 'Lato', sans-serif; letter-spacing: 1px; text-transform: uppercase;
}
.pkg-badge {
  display: inline-block; background: var(--light); border: 1px solid var(--border);
  padding: 4px 14px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; color: var(--primary); font-family: 'Lato', sans-serif;
  margin-bottom: 16px; margin-top: 16px;
}
.pkg-card img {
  width: 130px; height: 180px; object-fit: contain;
  margin: 0 auto 16px;
}
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 4px;
}
.pkg-bottles { font-size: var(--f-sm); color: var(--muted); font-family: 'Lato', sans-serif; margin-bottom: 12px; }
.pkg-savings {
  background: linear-gradient(135deg, #fff0d0, #ffeaaa);
  border: 1px solid var(--gold); border-radius: 8px;
  padding: 8px 16px; font-size: 0.9rem; font-weight: 700;
  color: var(--primary); font-family: 'Lato', sans-serif; margin-bottom: 16px;
}
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: var(--primary); margin-bottom: 4px;
}
.pkg-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.pkg-per { font-size: var(--f-sm); color: var(--muted); font-family: 'Lato', sans-serif; margin-bottom: 4px; }
.pkg-original { font-size: var(--f-sm); color: #999; text-decoration: line-through; font-family: 'Lato', sans-serif; margin-bottom: 20px; }
.btn-pkg {
  display: block; width: 100%;
  background: linear-gradient(135deg, #e6a020, var(--primary));
  color: var(--white); padding: 16px 24px; border-radius: 50px;
  font-size: var(--f-sm); font-weight: 800; font-family: 'Lato', sans-serif;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(81,56,17,.35); margin-bottom: 12px;
  text-align: center;
}
.btn-pkg:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(81,56,17,.45); }
.pkg-secure { font-size: 0.8rem; color: var(--muted); font-family: 'Lato', sans-serif; }
.pkg-features {
  list-style: none; margin: 16px 0 20px; text-align: left;
}
.pkg-features li {
  font-size: var(--f-sm); color: var(--muted); padding: 6px 0;
  font-family: 'Lato', sans-serif;
  display: flex; align-items: center; gap: 8px;
}
.pkg-features li::before { content: '✓'; color: var(--green); font-weight: 900; }

/* ============================================================
   BENEFITS
============================================================ */
#benefits { background: var(--white); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.benefit-card {
  background: var(--off-white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--border);
  transition: var(--transition);
}
.benefit-card:hover {
  background: var(--white); box-shadow: var(--shadow-lg);
  transform: translateY(-4px); border-color: var(--gold);
}
.benefit-icon {
  font-size: 2.2rem; margin-bottom: 14px;
}
.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 800; color: var(--primary);
  margin-bottom: 10px;
}
.benefit-card p { font-size: var(--f-sm); color: var(--muted); line-height: 1.7; }

/* ============================================================
   GUARANTEE
============================================================ */
#guarantee { background: linear-gradient(135deg, var(--off-white), var(--light)); }
.guarantee-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.guarantee-badge-wrap { text-align: center; }
.guarantee-seal {
  width: 200px; height: 200px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--primary));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: 0 12px 40px rgba(81,56,17,.35);
  border: 8px solid var(--white);
}
.guarantee-seal .seal-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1;
}
.guarantee-seal .seal-text {
  font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,.9);
  font-family: 'Lato', sans-serif; letter-spacing: 1px;
  text-transform: uppercase; text-align: center; line-height: 1.3;
}
.guarantee-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900;
  color: var(--primary-dark); margin-bottom: 12px;
}
.guarantee-text p { font-size: var(--f-body); color: var(--muted); line-height: 1.8; }

/* ============================================================
   INGREDIENTS
============================================================ */
#ingredients { background: var(--white); }
.ingredients-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.ing-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition);
}
.ing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.ing-img { width: 100%; height: 160px; object-fit: cover; }
.ing-body { padding: 20px; }
.ing-body h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 800; color: var(--primary); margin-bottom: 8px;
}
.ing-body p { font-size: var(--f-sm); color: var(--muted); line-height: 1.7; }

/* ============================================================
   FAQ
============================================================ */
#faq { background: var(--off-white); }
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Lato', sans-serif; font-size: var(--f-body);
  font-weight: 700; color: var(--primary-dark);
  transition: var(--transition);
}
.faq-q:hover { background: var(--light); }
.faq-q .arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary); transition: var(--transition);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); background: var(--gold); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: var(--f-sm); color: var(--muted); line-height: 1.8;
}

/* ============================================================
   FINAL CTA
============================================================ */
#final-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center; padding: 100px 24px;
  position: relative; overflow: hidden;
}
#final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='15'/%3E%3C/g%3E%3C/svg%3E");
}
.final-cta-inner { position: relative; max-width: 800px; margin: 0 auto; }
#final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900;
  color: var(--white); margin-bottom: 20px;
}
#final-cta p { font-size: var(--f-body); color: rgba(255,255,255,.8); margin-bottom: 32px; }
.price-display {
  margin-bottom: 28px;
}
.price-regular {
  font-size: var(--f-sm); color: rgba(255,255,255,.6);
  text-decoration: line-through; font-family: 'Lato', sans-serif; margin-bottom: 6px;
}
.price-today {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: var(--gold-light);
}
.btn-glow {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--primary-dark); padding: 20px 56px;
  border-radius: 50px; font-size: var(--f-md); font-weight: 900;
  font-family: 'Lato', sans-serif; cursor: pointer; border: none;
  box-shadow: 0 0 40px rgba(240,184,74,.5);
  animation: glow 2s infinite; transition: var(--transition);
  text-align: center;
}
.btn-glow:hover { transform: translateY(-3px) scale(1.03); }
@keyframes glow {
  0%, 100% { box-shadow: 0 0 40px rgba(240,184,74,.5); }
  50% { box-shadow: 0 0 80px rgba(240,184,74,.8); }
}
.scarcity-msg {
  margin-top: 20px; color: rgba(255,255,255,.75);
  font-size: var(--f-sm); font-family: 'Lato', sans-serif;
}

/* ============================================================
   ADD TO CART STICKY SECTION
============================================================ */
#add-to-cart { background: var(--light); }
.cart-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cart-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.cart-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 12px;
}
.cart-content p { font-size: var(--f-sm); color: var(--muted); margin-bottom: 24px; }

/* ============================================================
   NOTIFICATION POPUP
============================================================ */
#notif-popup {
  position: fixed; bottom: 90px; left: 24px; z-index: 999;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--green); max-width: 280px;
  display: none; animation: slideIn 0.4s ease;
}
@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.notif-inner { display: flex; align-items: center; gap: 12px; }
.notif-icon { font-size: 1.5rem; }
.notif-text strong {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--text); font-family: 'Lato', sans-serif;
}
.notif-text span { font-size: 0.75rem; color: var(--muted); font-family: 'Lato', sans-serif; }

/* ============================================================
   EXIT INTENT POPUP
============================================================ */
#exit-popup {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.75); align-items: center; justify-content: center;
}
#exit-popup.show { display: flex; }
.exit-popup-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px 40px; max-width: 520px; width: 90%; text-align: center;
  position: relative; box-shadow: var(--shadow-xl);
}
.exit-popup-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--primary-dark);
  margin-bottom: 12px;
}
.exit-popup-box p { font-size: var(--f-sm); color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.popup-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 1.5rem; cursor: pointer; color: var(--muted);
}
.popup-no {
  margin-top: 14px; font-size: var(--f-sm); color: var(--muted);
  cursor: pointer; text-decoration: underline; font-family: 'Lato', sans-serif;
}

/* ============================================================
   FLOATING BUY BUTTON
============================================================ */
#floating-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 9000;
  background: linear-gradient(135deg, var(--gold), var(--primary));
  color: var(--white); padding: 16px 28px; border-radius: 50px;
  font-size: var(--f-sm); font-weight: 800; font-family: 'Lato', sans-serif;
  box-shadow: 0 8px 32px rgba(81,56,17,.4); cursor: pointer;
  transition: var(--transition); animation: pulse-btn 2s infinite;
  display: none;
}
#floating-btn:hover { transform: translateY(-3px); animation: none; }

/* STICKY MOBILE CTA */
#mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 8999;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 12px 20px; box-shadow: 0 -4px 20px rgba(81,56,17,.25);
}
.mobile-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.mobile-cta-text { color: var(--white); font-family: 'Lato', sans-serif; }
.mobile-cta-text strong { display: block; font-size: 0.95rem; font-weight: 800; }
.mobile-cta-text span { font-size: 0.8rem; opacity: .8; }
.mobile-cta-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--primary-dark); padding: 12px 24px; border-radius: 50px;
  font-weight: 800; font-size: var(--f-sm); font-family: 'Lato', sans-serif;
  white-space: nowrap; flex-shrink: 0; text-align: center;
}

/* ============================================================
   DISCLAIMER / FOOTER
============================================================ */
#footer {
  background: var(--primary-dark); color: rgba(255,255,255,.7);
  padding: 48px 24px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  font-weight: 900; color: var(--gold); margin-bottom: 20px;
}
.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 28px;
}
.footer-links a {
  color: rgba(255,255,255,.6); font-size: var(--f-sm);
  font-family: 'Lato', sans-serif; transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.disclaimer {
  font-size: 0.82rem; line-height: 1.75;
  color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px; margin-top: 20px; font-family: 'Lato', sans-serif;
}
.affiliate-disclosure {
  background: rgba(255,255,255,.07); border-radius: 8px;
  padding: 14px 18px; margin-bottom: 16px;
  font-size: 0.82rem; color: rgba(255,255,255,.55); font-family: 'Lato', sans-serif;
}

/* ============================================================
   LAZY LOAD ANIMATION
============================================================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .pathway-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pathway-grid::before { display: none; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 60px 20px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-img-wrap { order: -1; }
  .hero-img-wrap img { max-height: 320px; }
  .trust-badges { justify-content: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .pathway-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pkg-card.popular { transform: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .cart-inner { grid-template-columns: 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  #mobile-cta { display: block; }
  #floating-btn { display: none !important; }
  body { padding-bottom: 70px; }
  .divider { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .badges-grid { grid-template-columns: 1fr; }
  .timer-display { gap: 8px; }
  .timer-unit span:first-child { font-size: 1.4rem; }
}
