/* ===== VAPOCEPT OFFICIAL-STYLE — Clinical Navy/Blue Brand Palette ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #135b43;        /* deep brand teal, from GlucoTide's own site */
  --primary-light: #1f7a5c;  /* lighter teal for section variants */
  --dark: #1c2b26;           /* body text — near-black with a teal cast */
  --accent: #d9a13f;         /* warm gold, contrasts against the green formula colors for CTAs */
  --accent2: #e8bd6e;
  --gold: #d9a13f;
  --gradient: linear-gradient(135deg, #0e4633 0%, #135b43 50%, #d9a13f 100%);
  --gradient-btn: linear-gradient(135deg, #d9a13f, #b8822c);
  --gradient-hero: linear-gradient(160deg, #0e4633 0%, #135b43 55%, #1f7a5c 100%);
  --white: #ffffff;
  --off-white: #f4f8f6;      /* barely-tinted cool white, echoing the mint label */
  --gray-light: #e2ece7;
  --gray: #5c6b64;           /* muted teal-gray for secondary text */
  --success: #2e8f5f;
  --warning: #c99a3f;
  --danger: #b3432f;
  --card-shadow: 0 4px 24px rgba(19,91,67,0.10);
  --card-shadow-hover: 0 12px 40px rgba(19,91,67,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* ===== SITE HEADER (promo bar hides on scroll down, reappears on scroll up) ===== */
.site-header {
  transition: transform 0.3s ease;
}
.site-header.header-hide-promo .promo-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  padding: 8px 16px;
  text-align: center;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.promo-bar strong { color: var(--accent2); }
.promo-bar .promo-note { opacity: 0.65; font-size: 11px; margin-left: 6px; }

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
* { -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad { padding: 80px 0; }
.bg-alt { background: var(--off-white); }

/* ===== PACKAGE / PRICING SECTION VARIANT (background color #2) ===== */
.bg-package {
  background: var(--primary-light);
  color: #ffffff;
}
.bg-package .section-header h2 { color: #ffffff; }
.bg-package .section-header h2 .gradient-text { color: #ffffff; -webkit-text-fill-color: #ffffff; }
.bg-package .section-header p { color: #c8e0d6; }
.bg-package .pricing-note { color: #c8e0d6; }
.gradient-text {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}
/* The hero sits on a dark background, so its highlighted word needs a light
   accent color instead of the default dark-on-white gradient-text style. */
.hero .gradient-text {
  color: var(--accent2);
  -webkit-text-fill-color: var(--accent2);
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.strike {
  text-decoration: line-through;
  color: var(--gray);
  font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
  text-align: center;
  letter-spacing: 0.3px;
}
.btn:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(36,19,82,0.35); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--gradient-btn); color: var(--white); }
.btn-nav { background: var(--gradient-btn); color: var(--white); padding: 10px 24px; font-size: 14px; }
.btn-hero {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: var(--white);
  font-size: clamp(15px, 2vw, 18px);
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(239,68,68,0.35);
  animation: pulseBtn 2.5s infinite;
  width: 100%;
  max-width: 460px;
}
.btn-order {
  background: var(--gradient-btn);
  color: var(--white);
  width: 100%;
  margin: 12px 0 8px;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 10px;
}
.btn-popular { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.btn-final {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: var(--white);
  font-size: clamp(16px, 2.5vw, 20px);
  padding: 20px 48px;
  border-radius: 50px;
  box-shadow: 0 8px 35px rgba(239,68,68,0.40);
  animation: pulseBtn 2.5s infinite;
  width: 100%;
  max-width: 500px;
}
@keyframes pulseBtn {
  0%,100% { box-shadow: 0 6px 30px rgba(239,68,68,0.35); }
  50% { box-shadow: 0 10px 45px rgba(239,68,68,0.60); transform: scale(1.02); }
}

/* ===== SITE HEADER WRAPPER (promo bar + navbar as one fixed unit) ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.promo-bar {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
/* ===== NAVBAR ===== */
.navbar {
  position: static;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22,74,72,0.08);
  transition: var(--transition);
  padding: 12px 0;
}
.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(36,19,82,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover { background: var(--gray-light); color: var(--primary-light); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  background: rgba(36,19,82,0.15);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(36,19,82,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-bottle {
  max-width: 380px;
  width: 100%;
  animation: bottleFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes bottleFloat {
  0%,100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-doctor-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  max-width: 460px;
  width: 100%;
  z-index: 2;
}
.hero-doctor-wrap img { width: 100%; display: block; }
.hero-doctor-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-align: center;
}
.hero-badge-float {
  position: absolute;
  top: 10px; right: 0;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,158,11,0.5);
  animation: badgeBounce 2s ease-in-out infinite;
  z-index: 3;
}
@keyframes badgeBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-tag {
  display: inline-block;
  background: rgba(36,19,82,0.15);
  border: 1px solid rgba(36,19,82,0.4);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  line-height: 1.75;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 28px;
}
.hero-stars span { color: rgba(255,255,255,0.8); }
.hero-guarantee {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.why-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--card-shadow-hover);
}
.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon img { width: 100%; height: 100%; object-fit: cover; }
.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== WHAT IS ===== */
.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.what-image {
  position: sticky;
  top: 110px;
  align-self: start;
}
.what-image img {
  border-radius: var(--radius);
  width: 100%;
}
.what-content h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.what-content p {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #334155;
  margin-bottom: 16px;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .what-inner { grid-template-columns: 1fr; }
  .what-image { position: static; }
}

/* ===== ACCORDION (HOW IT WORKS + SCIENCE) ===== */
.accordion-list, .science-list, .faq-list { display: flex; flex-direction: column; gap: 12px; }
.acc-item, .science-item, .faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--gray-light);
  overflow: hidden;
}
.acc-header, .sci-header, .faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  min-height: 56px;
}
.acc-header:hover, .sci-header:hover, .faq-header:hover { background: var(--off-white); }
.acc-icon { font-size: 20px; flex-shrink: 0; }
.acc-arrow { margin-left: auto; font-size: 12px; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.acc-item.active .acc-arrow, .science-item.open .acc-arrow, .faq-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body, .sci-body, .faq-body {
  display: none;
  padding: 0 24px 20px;
}
.acc-item.active .acc-body, .science-item.open .sci-body, .faq-item.open .faq-body { display: block; }
.acc-body p, .sci-body p, .faq-body p {
  font-size: clamp(14px, 1.5vw, 15px);
  color: var(--gray);
  line-height: 1.75;
}
.sci-header, .faq-header { justify-content: space-between; }

/* ===== SUPPLEMENT FACTS TABLE ===== */
.supplement-facts { margin-top: 48px; background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--card-shadow); }
.supplement-facts h3 { font-family: var(--font-heading); color: var(--primary); margin-bottom: 16px; font-size: 20px; }
.facts-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.facts-table th { text-align: left; padding: 10px 12px; background: var(--gray-light); color: var(--primary); font-family: var(--font-heading); font-weight: 500; }
.facts-table td { padding: 10px 12px; border-bottom: 1px solid var(--gray-light); color: var(--dark); }
.facts-table tr:last-child td { border-bottom: none; }
.facts-note { margin-top: 16px; font-size: 13px; color: var(--gray); font-style: italic; }

/* ===== SCIENCE SOURCES ===== */
.sci-source { font-size: 12.5px; color: var(--gray); margin-top: 10px; }
.sci-source a { color: var(--accent); text-decoration: underline; }
.science-disclaimer { text-align: center; font-size: 13px; color: var(--gray); margin-top: 28px; max-width: 700px; margin-left: auto; margin-right: auto; font-style: italic; }

/* ===== PRICING NOTE ===== */
.pricing-note { text-align: center; font-size: 14px; color: var(--gray); margin-top: 24px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}
.review-top strong {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--primary);
  display: block;
}
.review-location { font-size: 13px; color: var(--gray); }
.stars { font-size: 16px; margin-top: 4px; }
.review-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.overall-rating img { max-height: 30px; width: auto; }
.overall-rating span { font-family: var(--font-heading); font-weight: 500; color: var(--primary); font-size: 15px; }

/* ===== PRICING ===== */
.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
}
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-block {
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  min-width: 64px;
}
.cd-block span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1;
}
.cd-block small {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-top: 4px;
  display: block;
}
.cd-sep { font-family: var(--font-heading); font-weight: 600; font-size: 28px; color: var(--primary); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--primary);
  outline: 1.5px solid var(--accent);
  outline-offset: -6px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); }
.price-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fdf8ee 0%, #fff 100%);
  transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 6px;
}
.price-bottles {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 4px;
}
.price-supply {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
}
.price-img {
  max-height: 150px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}
.price-amount {
  font-size: 28px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.price-amount strong { color: var(--success); font-family: var(--font-heading); font-weight: 600; font-size: 34px; }
.price-per { font-size: 13px; color: var(--primary-light); font-weight: 600; margin-bottom: 10px; }
.discount-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 10px; }
.badge-percent {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 50px;
}
.badge-save {
  background: transparent;
  border: 1.5px solid #a8d9c4;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 50px;
}
.badge-bonus-included {
  background: linear-gradient(135deg, #f0c264, #d9a13f);
  color: #4a3410;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 50px;
}
.price-trust-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 10px 0; }
.badge-light {
  background: var(--gray-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 50px;
}
.badge-shipping-solid {
  background: linear-gradient(135deg, #f0c264, #d9a13f);
  color: #4a3410;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 50px;
}
.price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 4px;
}
.price-badges span {
  background: var(--gray-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 50px;
}
.price-badges span.bonus-chip {
  background: linear-gradient(135deg, #fdf0d5, #f8dfa8);
  color: #7a5416;
  font-weight: 600;
}
.atc-img { max-height: 24px; width: auto; display: inline; }
.cards-img { max-height: 28px; width: auto; margin: 6px auto 0; }
.price-stars { text-align: center; margin-top: 32px; }
.price-stars img { max-height: 35px; width: auto; margin: 0 auto; }

/* ===== BONUSES ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.bonus-num {
  display: inline-block;
  background: var(--gradient);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.bonus-card img { max-height: 200px; width: auto; margin: 0 auto 18px; border-radius: 10px; }
.bonus-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--primary);
  margin-bottom: 12px;
}
.bonus-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.bonus-value { font-family: var(--font-heading); font-size: 15px; color: var(--success); font-weight: 500; }
.bonus-value .strike { color: var(--gray); font-weight: 400; margin-right: 6px; }

/* ===== INGREDIENTS ===== */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ing-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.ing-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); border-color: var(--accent); }
.ing-icon { font-size: 32px; margin-bottom: 12px; }
.bonus-cover { width: 90px; border-radius: 6px; box-shadow: 0 4px 14px rgba(19,91,67,0.18); margin-bottom: 14px; }
.ing-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 10px;
}
.ing-card p { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 10px; }
.ing-benefit {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 50px;
}
.bonus-intro-pill {
  display: block;
  max-width: 480px;
  margin: 0 auto 32px;
  text-align: center;
  border: 1.5px solid #a8d9c4;
  border-radius: 50px;
  padding: 12px 24px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}
#bonuses .ing-card {
  text-align: center;
  padding: 0 0 22px;
  overflow: hidden;
}
.bonus-cover-wrap { position: relative; display: block; width: 100%; margin-bottom: 16px; }
.bonus-cover-wrap img { width: 100%; height: auto; display: block; border-radius: 0; }
.bonus-free-ribbon {
  position: absolute;
  top: 14px;
  right: -30px;
  background: linear-gradient(135deg, #f0c264, #d9a13f);
  color: #4a3410;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  width: 120px;
  text-align: center;
  padding: 5px 0;
  transform: rotate(35deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.bonus-claim-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 32px;
}
.bonus-claim-banner h3 { font-family: var(--font-heading); color: #fff; font-size: clamp(22px, 3vw, 28px); margin-bottom: 10px; }
.bonus-claim-banner p { color: rgba(255,255,255,0.8); margin-bottom: 22px; max-width: 560px; margin-left: auto; margin-right: auto; }
.bonus-access-line {
  display: block;
  margin-top: 10px;
  color: #b8461f;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}

/* ===== GUARANTEE ===== */
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.guarantee-image img {
  max-width: 300px;
  width: 100%;
}
.guarantee-content h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--primary);
  margin-bottom: 28px;
  line-height: 1.2;
}
.guarantee-point {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.gp-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.guarantee-point h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 6px;
}
.guarantee-point p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== BENEFITS ===== */
.benefits-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.benefits-img {
  background: transparent;
}
.benefits-img img {
  max-width: 300px;
  border-radius: 0;
  box-shadow: none;
}
.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.benefit-check { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.benefit-item h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 6px;
}
.benefit-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== BENEFIT TILES (photo + caption cards) ===== */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tile-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.tile-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.tile-img-wrap { border: 3px solid var(--accent); border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; margin: -1px -1px 0; }
.tile-img-wrap img { width: 100%; display: block; }
.tile-card p {
  padding: 20px 22px 24px;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 900px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tile-grid { grid-template-columns: 1fr; }
}

/* ===== ADVANTAGES CHECKLIST ===== */
.advantages-intro { max-width: 760px; margin: 0 auto 36px; text-align: center; font-size: 16.5px; color: var(--gray); }
.advantages-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.advantage-row { display: flex; align-items: flex-start; gap: 18px; }
.advantage-check {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 600;
}
.advantage-row p { font-size: 16px; line-height: 1.7; color: var(--dark); }
.advantage-row p strong { color: var(--primary); }

/* ===== BENEFIT CARDS (bordered list, with bottle image) ===== */
.benefits-detail-inner { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; margin-bottom: 44px; }
.benefits-detail-img { position: sticky; top: 100px; align-self: start; }
.benefits-detail-img img { width: 100%; display: block; }
.benefits-detail-text p { font-size: 16px; line-height: 1.8; color: var(--dark); margin-bottom: 16px; }
.benefits-detail-text p:first-child { font-weight: 600; color: var(--primary); font-size: 18px; }
.benefit-card-list { display: flex; flex-direction: column; gap: 14px; }
.benefit-card {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px 22px;
}
.benefit-card h4 { font-family: var(--font-heading); font-weight: 600; font-size: 16.5px; color: var(--primary); margin-bottom: 6px; }
.benefit-card p { font-size: 14.5px; color: var(--gray); line-height: 1.7; }
@media (max-width: 800px) {
  .benefits-detail-inner { grid-template-columns: 1fr; }
  .benefits-detail-img { position: static; max-width: 320px; margin: 0 auto; }
}

/* ===== HOW TO TAKE (banner header + numbered steps + safety callout) ===== */
.howto-section { background: var(--white); }
.section-banner {
  background: var(--gradient);
  padding: 28px 20px;
  text-align: center;
}
.section-banner h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  color: #fff;
  margin: 0;
}
.howto-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
.howto-row { display: flex; align-items: flex-start; gap: 20px; }
.howto-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
}
.howto-row h4 { font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--primary); margin-bottom: 4px; }
.howto-row p { font-size: 15px; line-height: 1.7; color: var(--gray); }
.howto-safety-callout {
  max-width: 820px;
  margin: 40px auto 0;
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 20px 24px;
}
.howto-safety-callout p { font-size: 14.5px; line-height: 1.75; color: var(--gray); }
.howto-safety-callout strong { color: var(--primary); }

/* ===== DOUBLE-BORDER CARD MOTIF (navy outer + copper inner, matching the site imagery) ===== */
.double-border {
  position: relative;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  padding: 3px;
}
.double-border::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid var(--accent);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}
.double-border-inner {
  background: var(--white);
  border-radius: calc(var(--radius) - 6px);
  padding: 24px;
  height: 100%;
}

/* ===== PROS & CONS ===== */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.pros-cons-col h3 { font-family: var(--font-heading); font-weight: 600; font-size: 20px; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.pros-col { border-color: var(--success); }
.cons-col { border-color: var(--gray); }
.pros-cons-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pros-cons-col li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--dark); line-height: 1.6; }
.pros-cons-col .icon-pro { color: var(--success); font-weight: 700; flex-shrink: 0; }
.pros-cons-col .icon-con { color: #a8613f; font-weight: 700; flex-shrink: 0; }
@media (max-width: 700px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
}

/* ===== BUYER'S GUIDE (informational content block) ===== */
.buyers-guide { max-width: 820px; margin: 0 auto; }
.buyers-guide h3 { font-family: var(--font-heading); font-weight: 600; font-size: 18px; color: var(--primary); margin: 26px 0 8px; }
.buyers-guide h3:first-child { margin-top: 0; }
.buyers-guide p { font-size: 15.5px; line-height: 1.75; color: var(--gray); margin-bottom: 4px; }

/* ===== RELATED SEARCHES (transparent SEO reference block) ===== */
.related-searches { background: var(--off-white); padding: 40px 0; }
.related-searches h4 { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; text-align: center; }
.related-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 900px; margin: 0 auto; }
.related-tags span { font-size: 12.5px; color: var(--gray); background: var(--white); border: 1px solid var(--gray-light); padding: 5px 12px; border-radius: 50px; }

/* ===== FINAL CTA ===== */
/* ===== 60-DAY MONEY-BACK GUARANTEE (standalone section) ===== */
.guarantee-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}
.guarantee-badge img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
.guarantee-content h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--primary);
  margin-bottom: 24px;
}
.guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.guarantee-list .check {
  color: var(--accent);
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee-list li > span:last-child {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.7;
}
.guarantee-list strong { color: var(--primary); }
@media (max-width: 768px) {
  .guarantee-card { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .guarantee-list li { text-align: left; }
}

/* ===== STANDALONE CONTENT PAGES (What Is / How It Works / Benefits / Ingredients / Reviews) ===== */
.page-hero {
  background: var(--gradient-hero);
  padding: 48px 0 44px;
}
.page-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.8); }
.page-breadcrumb a:hover { color: var(--accent2); }
.page-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 46px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 800px;
}
.page-byline {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.page-body { padding: 56px 0 20px; background: var(--white); }
.page-content { max-width: 760px; margin: 0 auto; }
.page-content > p { font-size: 16.5px; line-height: 1.8; color: var(--dark); margin-bottom: 20px; }
.page-content > p a, .page-content li a { color: var(--primary-light); text-decoration: underline; }
.page-content h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  color: var(--primary);
  margin: 42px 0 16px;
}
.page-content h2:first-of-type { margin-top: 8px; }
.page-content h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 19px;
  color: var(--primary-light);
  margin: 26px 0 10px;
}
.page-content ul { margin: 0 0 20px 22px; }
.page-content li {
  list-style: disc;
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 10px;
}
.page-callout {
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}
.page-callout strong { color: var(--primary); }
blockquote.page-callout { margin: 20px 0; font-style: normal; }
.page-content p.src { font-size: 13px; color: var(--gray); margin-top: -10px; margin-bottom: 20px; }
.page-content p.src a { color: var(--primary-light); }

.continue-reading {
  max-width: 760px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
}
.continue-reading h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 14px;
}
.continue-reading-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.continue-reading-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  background: var(--gray-light);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}
.continue-reading-links a:hover { background: var(--primary); color: var(--white); }

.page-cta {
  max-width: 760px;
  margin: 48px auto 0;
  background: var(--gradient-hero);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.page-cta h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}
.page-cta p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 20px; }
.page-cta .btn { display: inline-block; }

@media (max-width: 640px) {
  .page-hero { padding: 36px 0 32px; }
  .page-body { padding: 40px 0 10px; }
  .page-cta { padding: 28px 20px; }
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2306b6d4' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.final-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.final-content { text-align: center; color: rgba(255,255,255,0.85); }
.final-content h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 46px);
  color: var(--white);
  margin-bottom: 8px;
}
.final-content h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--accent);
  margin-bottom: 16px;
}
.final-content p {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.final-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}
.final-strike { font-size: 18px; color: rgba(255,255,255,0.5); }
.final-special {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--gold);
}
.final-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.final-trust span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 5px;
}
.final-img img {
  max-width: 320px;
  animation: bottleFloat 4s ease-in-out infinite;
}
.final-img {
  position: sticky;
  top: 110px;
  align-self: start;
}
@media (max-width: 800px) {
  .final-inner { grid-template-columns: 1fr; }
  .final-img { position: static; margin: 0 auto; }
}
.floating-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(36,19,82,0.06);
  animation: shapeDrift linear infinite;
}
.s1 { width: 300px; height: 300px; top: -100px; left: -80px; animation-duration: 15s; }
.s2 { width: 200px; height: 200px; bottom: -60px; right: 10%; animation-duration: 20s; animation-direction: reverse; }
.s3 { width: 150px; height: 150px; top: 50%; right: -50px; animation-duration: 12s; }
@keyframes shapeDrift {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(30px,20px) rotate(120deg); }
  66% { transform: translate(-20px,30px) rotate(240deg); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.6); max-width: 380px; }
.footer-credentials {
  margin-top: 20px !important;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px !important;
  line-height: 1.9 !important;
  color: rgba(255,255,255,0.55) !important;
}
.footer-credentials strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.footer-links-col h4, .footer-social h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links-col { display: flex; flex-direction: column; }
.footer-links-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 13px;
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--accent2); }
.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
}
.social-icon:hover { background: var(--accent); color: var(--white); }
.social-icon svg { width: 18px; height: 18px; }
.footer-disclaimer {
  padding: 24px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy {
  background: rgba(0,0,0,0.3);
  padding: 16px 20px;
}
.footer-copy p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.footer-copy a { color: var(--accent); }

/* ===== PURCHASE POPUP ===== */
.purchase-popup {
  position: fixed;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  max-width: 320px;
  border-left: 4px solid var(--success);
  transform: translateX(-400px);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.purchase-popup.show { transform: translateX(0); }
.popup-img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.popup-text { font-size: 13px; color: var(--dark); flex: 1; line-height: 1.4; }
.popup-text strong { display: block; color: var(--primary); font-family: var(--font-heading); }
.popup-close { background: none; border: none; cursor: pointer; color: var(--gray); font-size: 16px; padding: 4px; min-width: 28px; min-height: 28px; display: flex; align-items: center; justify-content: center; }

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-overlay.show { display: flex; }
.exit-popup {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gray-light);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 14px;
  min-width: 44px; min-height: 44px;
}
.exit-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.exit-popup h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
}
.exit-popup p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 22px;
  line-height: 1.6;
}
.exit-cta {
  display: inline-flex;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.exit-cta:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(239,68,68,0.4); }
.exit-small { font-size: 12px; color: var(--gray); margin-top: 12px; margin-bottom: 0; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(36,19,82,0.35);
  transition: var(--transition);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { transform: translateY(-4px) scale(1.1); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===== RESPONSIVE — TABLET (768px) ===== */
@media (max-width: 991px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .what-inner { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-image { text-align: center; }
  .guarantee-image img { margin: 0 auto; }
  .guarantee-point { text-align: left; }
  .benefits-wrap { grid-template-columns: 1fr; }
  .benefits-img { display: none; }
  .final-inner { grid-template-columns: 1fr; text-align: center; }
  .final-img { display: none; }
}

/* ===== RESPONSIVE — MOBILE (768px) ===== */
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 40px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    z-index: 999;
    gap: 6px;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; animation: slideInRight 0.3s ease; }
  @keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .nav-link { font-size: 16px; padding: 14px 12px; width: 100%; border-radius: 10px; }
  .btn-nav { width: 100%; text-align: center; margin-top: 12px; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 260px; }
  .hero-glow { width: 240px; height: 240px; }
  .hero-badge-float { right: 50%; transform: translateX(50%); top: -20px; }
  .hero-stars { justify-content: center; }
  .btn-hero { max-width: 100%; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .bonus-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-disclaimer { font-size: 12px; }
  .purchase-popup { left: 12px; right: 12px; max-width: none; bottom: 12px; }
  .countdown-wrap { flex-direction: column; gap: 12px; }
  .acc-header, .sci-header, .faq-header { font-size: 14px; padding: 16px 18px; }
  .cd-block { min-width: 70px; padding: 14px 20px; }
  .cd-block span { font-size: 28px; }
}

/* ===== RESPONSIVE — SMALL PHONES (480px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-h1 { font-size: 24px; }
  .section-header h2 { font-size: 22px; }
  .final-content h2 { font-size: 24px; }
  .price-amount strong { font-size: 28px; }
  .promo-bar { font-size: 11.5px; padding: 7px 12px; line-height: 1.4; }
  .promo-bar .promo-note { display: block; margin-left: 0; margin-top: 2px; }
}

/* ===== MOBILE OVERLAY FOR NAV ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav-overlay.show { display: block; }
