/* ================================================
   GLUCOVIVE – Custom Stylesheet
   Domain  : glucovivve.com
   Font    : Jost (Google Fonts)
   Framework: Bootstrap 5.3.3
   Updated : 2026
================================================ */

/* ── CSS Variables (Brand Colors) ─────────────
   !! CHANGE brand colors here to update site-wide !! */
:root {
  --main-color:   #64436C;   /* Deep teal-blue — primary brand */
  --main-dark:    #64436C;   /* Darker teal — hover states */
  --accent-color: #f59e0b;   /* Amber gold — CTA buttons & highlights */
  --accent-hover: #d97706;   /* Darker amber — CTA hover */
  --bg-light:     #f0f8ff;   /* Very light blue — alternate sections */
  --bg-white:     #ffffff;
  --text-dark:    #1c1c1c;
  --text-muted:   #555555;
  --border-light: #c8e6f5;
  --star-gold:    #f59e0b;   /* Star ratings */
  --green-check:  #16a34a;   /* Checkmarks */
  --timer-red:    #dc2626;   /* Countdown timer */
  --best-card-bg: #0d3347;   /* Dark teal for best offer card */
}

/* ── Base Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 19px;           /* Slightly larger for older-adult readability */
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  width: 100%;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--main-color); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Jost', sans-serif; font-weight: 700; line-height: 1.3; }

/* ── Shared Section Title Bar ──────────────────── */
.section-title-bar {
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 22px 20px;
  margin: 0 0 36px 0;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--bg-white);
  border-bottom: 3px solid var(--main-color);
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  font-size: 30px;
  font-weight: 900;
  color: var(--main-color);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo-accent {
  color: var(--accent-color);
}

/* Desktop nav wrap */
.nav-wrap { display: flex; align-items: center; gap: 24px; }

/* Nav links */
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 7px 13px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { color: var(--main-color); background: var(--bg-light); }

/* Order button */
.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--accent-color);
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
}
.order-btn:hover { background: var(--accent-hover); transform: translateY(-2px); color: #000; }

/* Hamburger button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
}
.hamburger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--main-color);
  border-radius: 3px;
}

/* ════════════════════════════════════════════════
   MOBILE SIDEBAR
════════════════════════════════════════════════ */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100%;
  background-color: var(--main-color);
  color: #fff;
  padding: 70px 22px 40px;
  transition: right 0.3s ease;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
}
.mobile-sidebar.open { right: 0; }

.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.15); }

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
}

.sidebar-order-btn {
  font-size: 17px;
  justify-content: center;
  padding: 14px 20px;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 250;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

/* ════════════════════════════════════════════════
   PAGE H1 (SEO Title Bar)
════════════════════════════════════════════════ */
.page-h1 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  background-color: var(--main-dark);
  text-align: center;
  margin: 0;
  padding: 14px 20px;
  letter-spacing: 0.2px;
}

/* ════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════ */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 36px 20px 48px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-img-wrap {
  flex: 1 1 280px;
  max-width: 460px;
  display: flex;
  justify-content: center;
}
.hero-img-wrap img { width: 100%; filter: drop-shadow(0 10px 24px rgba(26,92,122,0.18)); }

.hero-content { flex: 2 1 320px; max-width: 680px; }

.hero-title    { font-size: 34px; color: var(--main-color); margin-bottom: 12px; font-weight: 900; }
.hero-subtitle { font-size: 20px; font-weight: 600; font-style: italic; margin-bottom: 16px; color: var(--main-dark); }
.hero-desc     { font-size: 18px; margin-bottom: 20px; line-height: 1.8; }

/* Hero bullet list */
.hero-benefits-list { list-style: none; padding: 0; margin: 0 0 24px; }
.hero-benefits-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 9px;
  font-size: 17px;
  font-weight: 500;
}
.hero-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--main-color);
  font-weight: 800;
  font-size: 18px;
}

/* CTA Buttons */
.hero-cta-wrap { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: var(--accent-color);
  color: #000;
  font-weight: 800;
  font-size: 18px;
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 5px 18px rgba(245,158,11,0.38);
}
.cta-btn:hover { background: var(--accent-hover); transform: translateY(-2px); color: #000; }

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
}
.secondary-btn:hover { background: var(--main-dark); transform: translateY(-2px); color: #fff; }

/* Countdown Timer */
.hero-timer-wrap { margin-top: 6px; }
.timer-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--timer-red);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.countdown-box {
  display: inline-flex;
  align-items: center;
  font-size: 46px;
  font-weight: 900;
  color: var(--timer-red);
  background: #fff8f8;
  border: 2px solid var(--timer-red);
  border-radius: 10px;
  padding: 6px 20px;
  letter-spacing: 2px;
}
.timer-colon { margin: 0 4px; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ════════════════════════════════════════════════
   PRICING SECTION
════════════════════════════════════════════════ */
.pricing-section {
  background: linear-gradient(160deg, #0d3347 0%, #64436C 100%);
  padding: 0 20px 56px;
  position: relative;
  text-align: center;
}
.pricing-section-alt   { background: linear-gradient(160deg, #64436C 0%, #64436C 100%); }
.pricing-section-final { background: linear-gradient(160deg, #0d2e40 0%, #64436C 100%); }

/* Arrow at top of pricing */
.pricing-arrow-top {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 44px solid var(--bg-white);
  margin: 0 auto 0;
  display: block;
}

.pricing-main-title {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  padding-top: 36px;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.2;
}
.pricing-step-label {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-note-sub {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  margin-bottom: 4px;
}

/* Timer in pricing */
.pricing-timer-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 8px 18px;
  margin-bottom: 30px;
}
.pricing-timer-text   { color: #fff; font-size: 15px; font-weight: 600; }
.pricing-timer-display{ color: var(--accent-color); font-size: 28px; font-weight: 900; letter-spacing: 1px; }

/* Cards wrap */
.pricing-cards-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Price Card */
.price-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  transition: transform 0.25s;
}
.price-card:hover { transform: translateY(-4px); }

/* Best Value Card — enlarged / featured */
.best-value-card {
  background: var(--best-card-bg);
  color: #fff;
  transform: scale(1.04);
  border: 3px solid var(--accent-color);
  z-index: 2;
}
.best-value-card:hover { transform: scale(1.04) translateY(-4px); }

/* Popular Card */
.popular-card {
  border: 2px solid var(--main-color);
}

/* Ribbon badge */
.ribbon-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  color: #000;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
}
.popular-ribbon { background: var(--main-color); color: #fff; }

/* Card Header */
.price-card-header {
  text-align: center;
  padding: 14px 12px 12px;
  margin-top: 28px; /* room for ribbon */
}
.price-card-header.basic-header   { background: #f0f8ff; }
.price-card-header.best-header    { background: rgba(245,158,11,0.18); }
.price-card-header.popular-header { background: #f0f8ff; }

.best-value-card .price-card-header.best-header {
  background: rgba(245,158,11,0.12);
}

.card-offer-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--main-color);
  margin-bottom: 4px;
}
.best-value-card .card-offer-label { color: var(--accent-color); }

.card-bottles {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
}
.best-value-card .card-bottles { color: #fff; }

.card-supply {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.best-value-card .card-supply { color: rgba(255,255,255,0.7); }

/* Card Body */
.price-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

/* Price Display */
.price-display {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.dollar-sign   { font-size: 26px; font-weight: 800; color: var(--text-dark); padding-top: 6px; }
.best-value-card .dollar-sign { color: #fff; }
.price-num     { font-size: 76px; font-weight: 900; color: var(--text-dark); line-height: 1; }
.best-value-card .price-num { color: #fff; }
.per-bottle-txt{ font-size: 14px; font-weight: 600; color: var(--text-muted); padding-top: 14px; text-align: left; line-height: 1.3; }
.best-value-card .per-bottle-txt { color: rgba(255,255,255,0.75); }

/* Price Features list */
.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 1px dashed #dde;
  padding-top: 12px;
}
.price-features li {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.best-value-card .price-features li { color: #fff; }
.price-features .fa-circle-check { color: var(--green-check); font-size: 16px; }
.price-features .fa-star          { color: var(--accent-color); font-size: 15px; }
.price-features .fa-shield-halved { color: var(--main-color); font-size: 15px; }
.best-value-card .price-features .fa-shield-halved { color: var(--accent-color); }

/* Buy Buttons */
.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #8a8a8a;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}
.buy-btn:hover { background: #6d6d6d; color: #fff; transform: scale(1.02); }

.buy-btn-best {
  background: var(--accent-color);
  color: #000;
  font-size: 22px;
  box-shadow: 0 5px 20px rgba(245,158,11,0.4);
  animation: pulse-btn 2s infinite;
}
.buy-btn-best:hover { background: var(--accent-hover); color: #000; }

@keyframes pulse-btn {
  0%,100% { box-shadow: 0 5px 20px rgba(245,158,11,0.4); }
  50%      { box-shadow: 0 5px 30px rgba(245,158,11,0.7); }
}

/* Price Total */
.price-total {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.best-value-card .price-total { color: #fff; }
.price-total s { color: var(--text-muted); font-weight: 400; margin-right: 4px; }
.best-value-card .price-total s { color: rgba(255,255,255,0.55); }
.price-total strong { color: var(--main-color); }
.best-value-card .price-total strong { color: var(--accent-color); font-size: 17px; }

/* Shipping Note */
.shipping-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.shipping-note.free-ship { color: var(--green-check); font-weight: 700; }
.best-value-card .shipping-note.free-ship { color: #6ee7b7; }

/* Credit card image */
.cards-img { margin: 0 auto; }

/* ════════════════════════════════════════════════
   TRUST BADGES
════════════════════════════════════════════════ */
.badges-section { background: var(--bg-white); padding-bottom: 48px; }
.badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 240px;
  gap: 12px;
}
.badge-item img { margin: 0 auto; }
.badge-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════════════════════
   WHAT IS GLUCOVIVE (Info Section)
════════════════════════════════════════════════ */
.info-section { background: var(--bg-light); padding-bottom: 52px; }
.info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: flex-start;
}
.info-img-col {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  justify-content: center;
}
.info-img-col img {
  filter: drop-shadow(0 10px 24px rgba(26,92,122,0.16));
  border-radius: 8px;
}
.info-text-col { flex: 2 1 320px; }
.info-text-col p {
  font-size: 17px;
  margin-bottom: 18px;
  line-height: 1.85;
  color: var(--text-dark);
}

/* ════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════ */
.works-section { background: var(--bg-white); padding-bottom: 52px; }
.works-wrap    { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.works-intro   { font-size: 17px; margin-bottom: 36px; line-height: 1.85; color: var(--text-dark); }

.works-step {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 36px;
  padding: 28px 28px;
  background: var(--bg-light);
  border-radius: 14px;
  border-left: 5px solid var(--main-color);
}
.step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--main-color);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content { flex: 1; }
.step-head  { font-size: 20px; font-weight: 800; color: var(--main-color); margin-bottom: 10px; }
.step-para  { font-size: 16px; color: var(--text-dark); line-height: 1.85; }

.works-cta-wrap { text-align: center; margin-top: 36px; }

/* ════════════════════════════════════════════════
   BENEFITS SECTION
════════════════════════════════════════════════ */
.benefits-section { background: var(--bg-light); padding-bottom: 52px; }
.benefits-wrap    { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.benefits-intro   { font-size: 17px; margin-bottom: 32px; line-height: 1.85; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 3px 14px rgba(26,92,122,0.08);
  border-top: 3px solid var(--main-color);
}
.benefit-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--main-color);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.benefit-card h3 { font-size: 17px; margin-bottom: 7px; color: var(--main-dark); }
.benefit-card p  { font-size: 15px; color: var(--text-muted); line-height: 1.72; margin: 0; }

/* ════════════════════════════════════════════════
   INGREDIENTS SECTION
════════════════════════════════════════════════ */
.ingredients-section { background: var(--bg-white); padding-bottom: 0; }
.ingredients-intro-text {
  font-size: 17px;
  max-width: 900px;
  margin: -16px auto 32px;
  padding: 0 20px;
  text-align: center;
  line-height: 1.85;
  color: var(--text-dark);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 32px;
}
.ingredient-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 24px 22px;
  border-left: 4px solid var(--main-color);
}
.ingredient-text-col { flex: 1; }
.ingredient-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 10px;
}
.ingredient-text-col p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

/* Synergy Row */
.synergy-section {
  background: var(--main-color);
  padding: 36px 20px;
  text-align: center;
  margin-top: 0;
}
.synergy-title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.synergy-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.synergy-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  padding: 10px 22px;
}
.synergy-item p {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
.synergy-item p strong { color: var(--accent-color); }

/* ════════════════════════════════════════════════
   CUSTOMER REVIEWS
════════════════════════════════════════════════ */
.reviews-section  { background: var(--bg-light); padding-bottom: 52px; }
.reviews-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--main-color);
  margin: -20px 0 28px;
  padding: 0 20px;
}
.reviews-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 4px 18px rgba(26,92,122,0.09);
  border-left: 4px solid var(--main-color);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.reviewer-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--border-light);
}
.verified-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-check);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}
.reviewer-name { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.star-row { display: flex; gap: 3px; }
.star-row .fa-star { color: var(--star-gold); font-size: 17px; }
.review-body { font-size: 16px; color: var(--text-dark); line-height: 1.82; margin: 0; }

/* ════════════════════════════════════════════════
   60-DAY GUARANTEE
════════════════════════════════════════════════ */
.guarantee-section { background: var(--bg-white); padding-bottom: 52px; }
.guarantee-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.guarantee-badge-col {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.guarantee-badge-col img { max-width: 220px; filter: drop-shadow(0 6px 18px rgba(26,92,122,0.16)); }
.guarantee-text-col { flex: 1 1 300px; }
.guarantee-text-col h3 { font-size: 24px; color: var(--main-color); margin-bottom: 14px; font-weight: 800; }
.guarantee-text-col p  { font-size: 16px; margin-bottom: 14px; line-height: 1.82; color: var(--text-dark); }

/* ════════════════════════════════════════════════
   IS IT SAFE
════════════════════════════════════════════════ */
.safe-section { background: var(--bg-light); padding-bottom: 52px; }
.safe-content { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

.quality-steps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}
.quality-step {
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px;
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(26,92,122,0.07);
}
.q-step-num {
  width: 52px;
  height: 52px;
  background: var(--main-color);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.q-step-title { font-size: 16px; font-weight: 800; color: var(--main-color); margin-bottom: 9px; }
.q-step-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.q-step-arrow { font-size: 30px; color: var(--main-color); font-weight: 700; align-self: center; }

.safe-text-block p { font-size: 16px; margin-bottom: 16px; line-height: 1.85; color: var(--text-dark); }

/* ════════════════════════════════════════════════
   PAYMENT SECURITY
════════════════════════════════════════════════ */
.payment-section { background: var(--bg-white); padding-bottom: 52px; }
.payment-content { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.payment-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.payment-icons-row .fa-lock          { color: var(--main-color); }
.payment-icons-row .fa-cc-visa       { color: #1a1f71; }
.payment-icons-row .fa-cc-mastercard { color: #eb001b; }
.payment-icons-row .fa-cc-amex       { color: #007bc1; }
.payment-icons-row .fa-cc-discover   { color: #f76f20; }
.payment-icons-row .fa-shield-halved { color: var(--green-check); }
.payment-content p { font-size: 16px; margin-bottom: 16px; line-height: 1.85; color: var(--text-dark); }

/* ════════════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════════════ */
.faq-section { background: var(--bg-light); padding-bottom: 48px; }
.faq-list    { list-style: none; padding: 0 20px; margin: 0 auto 36px; max-width: 880px; }
.faq-item    { border-bottom: 1px solid var(--border-light); }

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 20px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Jost', sans-serif;
  gap: 12px;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--main-color); }
.faq-icon { font-size: 24px; font-weight: 700; color: var(--main-color); flex-shrink: 0; }
.faq-answer { padding: 0 8px 20px; }
.faq-answer p { font-size: 16px; color: var(--text-muted); line-height: 1.82; }
.faq-answer a { color: var(--main-color); font-weight: 600; }

/* FAQ CTA banner */
.faq-cta-banner {
  background: var(--main-color);
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}
.faq-banner-img img { width: 240px; margin: 0 auto; filter: drop-shadow(0 5px 16px rgba(0,0,0,0.24)); }
.faq-banner-text    { flex: 1; min-width: 230px; }
.faq-banner-text h3 { font-size: 24px; color: #fff; margin-bottom: 18px; line-height: 1.3; }
.faq-order-btn      { font-size: 17px; padding: 14px 26px; }

/* ════════════════════════════════════════════════
   SCIENTIFIC REFERENCES
════════════════════════════════════════════════ */
.references-section { background: var(--bg-white); padding-bottom: 48px; text-align: center; }
.references-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 700px;
  margin: -20px auto 26px;
  padding: 0 20px;
}
.references-imgs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 0 20px;
}
.references-imgs-wrap img {
  max-width: 820px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.08);
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  background-color: #111c22;
  color: #ccc;
  padding: 40px 20px 26px;
}

/* Product description above disclaimer */
.footer-product-desc {
  max-width: 900px;
  margin: 0 auto 22px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-product-desc p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.7;
  margin: 0;
}

.footer-disclaimer { max-width: 1000px; margin: 0 auto 28px; }
.footer-disclaimer p { font-size: 12px; line-height: 1.7; margin-bottom: 10px; color: #888; }

.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #2a3a44;
  padding-top: 24px;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; font-size: 13px; }
.footer-links a { color: #bbb; text-decoration: underline; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-color); }
.fsep { color: #444; }

.footer-ftc, .footer-gdpr {
  background: #1a2c36;
  border-radius: 8px;
  padding: 14px 20px;
  max-width: 920px;
  width: 100%;
}
.footer-ftc p, .footer-gdpr p { font-size: 12px; color: #888; margin: 0; line-height: 1.65; text-align: center; }
.footer-gdpr a { color: #bbb; text-decoration: underline; }

.footer-copy { font-size: 13px; color: #666; text-align: center; }

/* ════════════════════════════════════════════════
   EXIT-INTENT MODAL
════════════════════════════════════════════════ */
.exit-bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 990;
  display: none;
}
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  padding: 38px 34px 34px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: fadeInModal 0.3s ease;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.exit-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 32px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}
.exit-close-btn:hover { color: #000; }
.exit-badge {
  display: inline-block;
  background: var(--timer-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.exit-heading {
  font-size: 26px;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 10px;
  line-height: 1.25;
}
.exit-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.exit-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.exit-old-price {
  font-size: 20px;
  font-weight: 700;
  text-decoration: line-through;
  color: #aaa;
}
.exit-new-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--main-color);
}
.exit-bottles-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-check);
  background: #f0fdf4;
  padding: 5px 12px;
  border-radius: 20px;
}
.exit-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--accent-color);
  color: #000;
  font-weight: 900;
  font-size: 20px;
  padding: 16px 24px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}
.exit-cta-btn:hover { background: var(--accent-hover); transform: scale(1.02); color: #000; }
.exit-guarantee-note {
  font-size: 13px;
  color: var(--green-check);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.exit-dismiss-link {
  background: none;
  border: none;
  font-size: 12px;
  color: #999;
  cursor: pointer;
  text-decoration: underline;
  font-family: 'Jost', sans-serif;
  transition: color 0.2s;
}
.exit-dismiss-link:hover { color: #555; }

/* ════════════════════════════════════════════════
   RESPONSIVE – TABLET ≤ 1024px
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .header-container { padding: 0 16px; }
  .hero-section { gap: 28px; padding: 28px 16px 38px; }
  .ingredients-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .best-value-card { transform: none; }
  .best-value-card:hover { transform: translateY(-4px); }
}

/* ════════════════════════════════════════════════
   RESPONSIVE – MOBILE ≤ 768px
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .hamburger-btn { display: flex; }
  .nav-wrap { display: none; }

  /* Base font */
  body { font-size: 17px; }

  /* H1 */
  .page-h1 { font-size: 17px; padding: 12px 14px; }

  /* Section title */
  .section-title-bar { font-size: 21px; padding: 18px 14px; margin-bottom: 26px; }

  /* Hero */
  .hero-section { flex-direction: column; gap: 18px; padding: 22px 14px 32px; }
  .hero-img-wrap { max-width: 300px; }
  .hero-title    { font-size: 24px; }
  .hero-subtitle { font-size: 16px; }
  .hero-desc     { font-size: 16px; }
  .hero-cta-wrap { flex-direction: column; align-items: stretch; }
  .cta-btn, .secondary-btn { font-size: 16px; padding: 14px 20px; justify-content: center; }
  .countdown-box { font-size: 36px; }

  /* Pricing */
  .pricing-main-title { font-size: 22px; }
  .pricing-step-label { font-size: 16px; }
  .pricing-cards-wrap { flex-direction: column; align-items: center; }
  .price-card { width: 92%; max-width: 340px; }
  .best-value-card { transform: none; }

  /* Badges */
  .badges-grid { flex-direction: column; align-items: center; }
  .badge-item  { max-width: 100%; width: 100%; }

  /* Info */
  .info-content { flex-direction: column; }
  .info-img-col { max-width: 100%; }
  .info-text-col p { font-size: 15px; }

  /* Works */
  .works-step { flex-direction: column; }
  .step-head  { font-size: 17px; }
  .step-para  { font-size: 14px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-intro { font-size: 15px; }

  /* Ingredients */
  .ingredients-grid { grid-template-columns: 1fr; }
  .ingredients-intro-text { font-size: 15px; }

  /* Synergy */
  .synergy-grid { gap: 12px; }
  .synergy-title { font-size: 18px; }

  /* Reviews */
  .review-top      { flex-direction: column; text-align: center; }
  .reviewer-avatar { margin: 0 auto; }
  .verified-tag    { justify-content: center; }
  .star-row        { justify-content: center; }
  .review-body     { font-size: 15px; }

  /* Guarantee */
  .guarantee-wrap { flex-direction: column; align-items: center; text-align: center; }
  .guarantee-badge-col img { width: 180px; }
  .guarantee-text-col p  { font-size: 15px; }

  /* Safe */
  .quality-steps-row { flex-direction: column; align-items: center; }
  .q-step-arrow { display: none; }
  .quality-step { max-width: 100%; }
  .safe-text-block p { font-size: 14px; }

  /* Payment */
  .payment-content p { font-size: 14px; }

  /* FAQ */
  .faq-trigger { font-size: 16px; }
  .faq-cta-banner { flex-direction: column; align-items: center; text-align: center; }
  .faq-banner-text h3 { font-size: 20px; }

  /* Exit Modal */
  .exit-modal { padding: 30px 20px 26px; }
  .exit-heading { font-size: 21px; }
  .exit-cta-btn { font-size: 17px; }

  /* Footer */
  .site-footer { padding: 28px 14px 18px; }
  .footer-disclaimer p { font-size: 11px; }
  .footer-links { gap: 4px 2px; }

  /* Pricing arrow smaller on mobile */
  .pricing-arrow-top {
    border-left-width: 46px;
    border-right-width: 46px;
    border-top-width: 34px;
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE – SMALL PHONES ≤ 480px
════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .logo-link          { font-size: 24px; }
  .hero-title         { font-size: 20px; }
  .price-num          { font-size: 60px; }
  .buy-btn            { font-size: 18px; }
  .section-title-bar  { font-size: 18px; }
  .faq-trigger        { font-size: 15px; }
  .countdown-box      { font-size: 32px; }
  .pricing-timer-display { font-size: 24px; }
  .exit-heading       { font-size: 19px; }
  .exit-new-price     { font-size: 30px; }
}

/* ── Reduced motion support ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
