/* ================================================================
   SHAPEON — Bootstrap Override & Custom Styles
   Fonts: Montserrat (headings) + Open Sans (body/paragraphs)
   Base: 19px, 45+ optimized, light color website
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --lime:          #84d83b;
  --lime-light:    #a3e863;
  --dark-green:    #1a6244;
  --mid-green:     #1d7244;
  --black:         #0d1109;
  --off-white:     #f6fdf2;
  --text:          #1a2415;
  --text-muted:    #4a6340;
  --border:        rgba(155,225,93,.25);
  --cta-gradient:  linear-gradient(90deg,#23694c 0%,#85ed59 48.56%,#1b513b 97.12%);
  --h2-gradient:   linear-gradient(90deg,#3f6a52 0%,#4eb83e 48%,#1a3a28 100%);
  --radius:        16px;
  --shadow:        0 8px 40px rgba(31,77,58,.15);
  --shadow-lg:     0 20px 60px rgba(31,77,58,.25);
}

/* ── Base ──────────────────────────────────────────────── */
html { font-size: 19px; scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
}
p { font-family: 'Open Sans', sans-serif; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── Section Title Gradient Bar ────────────────────────── */
.section-title-bar {
  background: var(--cta-gradient);
  padding: 28px 0;
  text-align: center;
}
.section-title-bar h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: #fff;
  letter-spacing: -.02em;
  margin: 0;
}

/* ── CTA Button ─────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  background: var(--lime);
  color: var(--black) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 18px 44px;
  border-radius: 50px;
  min-height: 58px;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 22px rgba(132,216,59,.38);
  line-height: 1.2;
  text-align: center;
}
.btn-cta:hover {
  background: var(--lime-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(132,216,59,.55);
  color: var(--black) !important;
}

/* ── Fade-up animation ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
#navbar {
  background: var(--black) !important;
  border-bottom: 1px solid rgba(132,216,59,.12);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.5); }
.navbar-brand img { height: 44px; width: auto; }
.navbar-nav .nav-link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  color: rgba(255,255,255,.82) !important;
  letter-spacing: .03em;
  padding: 8px 14px !important;
  min-height: 44px;
  display: flex; align-items: center;
  transition: color .2s;
}
.navbar-nav .nav-link:hover { color: var(--lime) !important; }
.navbar-nav .nav-cta-link {
  background: var(--lime);
  color: var(--black) !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 800;
  margin-left: 8px;
}
.navbar-nav .nav-cta-link:hover { background: var(--lime-light); }
.navbar-toggler {
  border: none; padding: 6px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
#hero {
  background: var(--black);
  min-height: 100vh;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('image/hero.png') center/cover no-repeat;
  opacity: .14;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(13,17,9,.96) 0%,rgba(13,17,9,.72) 55%,rgba(26,98,68,.48) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0 64px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(132,216,59,.1);
  border: 1px solid rgba(132,216,59,.3);
  border-radius: 50px;
  padding: 9px 20px;
  color: var(--lime);
  font-size: 0.84rem; font-weight: 700;
  margin-bottom: 22px;
  font-family: 'Open Sans', sans-serif;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}
.hero-title span { color: var(--lime); }
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(132,216,59,.1);
  border: 1px solid rgba(132,216,59,.25);
  border-radius: 50px;
  padding: 7px 16px;
  color: rgba(255,255,255,.88);
  font-size: 0.82rem; font-weight: 600;
  min-height: 38px;
  font-family: 'Open Sans', sans-serif;
}
.hero-pill img { width: 16px; height: 16px; }
.hero-rating { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.stars { display: flex; gap: 3px; }
.stars img { width: 18px; height: 18px; }
.hero-rating-text { color: rgba(255,255,255,.7); font-size: 0.84rem; margin: 0; }
.hero-rating-text strong { color: #fff; }
.hero-img-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 0;
}
.hero-bottle {
  max-height: 520px; width: auto;
  filter: drop-shadow(0 28px 64px rgba(0,0,0,.55));
  animation: floatBottle 4s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes floatBottle { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.hero-glow {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle,rgba(132,216,59,.18) 0%,transparent 70%);
  border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%,-50%); pointer-events: none;
}
.hero-leaf { position: absolute; opacity: .45; pointer-events: none; }
.hero-leaf-1 { bottom: 0; left: -20px; width: 170px; transform: rotate(18deg); }
.hero-leaf-2 { top: 20px; right: -10px; width: 140px; transform: rotate(-28deg) scaleX(-1); }

/* ════════════════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════════════════ */
#trust-bar {
  background: var(--off-white);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  overflow: hidden;
  padding: 0;
}
.trust-track {
  display: flex;
  animation: scrollTrust 24s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700; font-size: 0.84rem;
  color: var(--dark-green);
  border-right: 1px solid var(--border);
  min-height: 58px;
}
.trust-item img { width: 20px; height: 20px; flex-shrink: 0; }
@keyframes scrollTrust {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
#trust-bar:hover .trust-track { animation-play-state: paused; }

/* ════════════════════════════════════════════════════════
   WHY CHOOSE
════════════════════════════════════════════════════════ */
#why { background: #fff; }
.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 60px; height: 60px;
  background: rgba(132,216,59,.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.why-icon img { width: 32px; height: 32px; }
.why-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.8; }

/* ════════════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════════════ */
#reviews { background: var(--off-white); }
.reviews-rating-bar {
  display: flex; align-items: center; gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
}
.big-score {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 3rem;
  color: var(--dark-green); line-height: 1;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px; height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-avatar img {
  width: 62px; height: 62px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.review-stars img { width: 15px; height: 15px; }
.review-text {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.75; font-style: italic; margin-bottom: 10px;
}
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--text); margin-bottom: 4px; }
.review-verified {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.76rem; color: var(--mid-green); font-weight: 600;
}
.review-verified img { width: 13px; }

/* ════════════════════════════════════════════════════════
   WHAT IS SHAPEON
════════════════════════════════════════════════════════ */
#about { background: #fff; }
.about-img-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-img-wrap img.about-main {
  max-width: 400px; width: 100%;
  filter: drop-shadow(0 16px 40px rgba(26,98,68,.22));
}
.about-badge {
  position: absolute; bottom: 20px; left: 0;
  background: var(--lime); color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 0.78rem; line-height: 1.3;
  padding: 12px 16px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.about-tag {
  display: inline-block;
  background: rgba(132,216,59,.12);
  color: var(--mid-green);
  font-weight: 700; font-size: 0.76rem;
  padding: 5px 14px; border-radius: 50px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase; letter-spacing: .06em;
}
.about-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900; margin-bottom: 18px;
  background: var(--h2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-content p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.85; }
.about-checks { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 28px; }
.about-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  min-height: 36px;
}
.about-check img { width: 20px; height: 20px; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════ */
#pricing { background: var(--off-white); }
.pricing-note {
  text-align: center; font-size: 0.9rem;
  color: var(--text-muted); margin-bottom: 32px;
}
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  height: 100%; display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--lime);
  box-shadow: 0 8px 40px rgba(132,216,59,.22);
  transform: scale(1.03); position: relative; z-index: 2;
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  background: var(--lime); color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 0.82rem;
  text-align: center; padding: 11px;
  letter-spacing: .06em;
}
.pricing-header {
  background: var(--dark-green); color: #fff;
  text-align: center; padding: 11px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 0.82rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.pricing-body {
  padding: 24px 20px;
  flex: 1; display: flex; flex-direction: column; gap: 12px;
}
.pricing-bottles { text-align: center; padding: 6px 0; }
.pricing-bottles img { max-height: 170px; width: auto; margin: 0 auto; }
.pricing-label {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.1rem; color: var(--text);
}
.pricing-supply {
  text-align: center; font-size: 0.82rem;
  color: var(--text-muted); font-weight: 600; margin-top: -6px;
}
.pricing-price {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 2.4rem;
  color: var(--text); line-height: 1;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-per { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: -4px; }
.pricing-save {
  text-align: center;
  background: rgba(132,216,59,.12);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 12px;
  font-size: 0.82rem; font-weight: 800; color: var(--mid-green);
}
.pricing-perks { display: flex; flex-direction: column; gap: 7px; }
.pricing-perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--text); min-height: 30px;
}
.pricing-perk img { width: 16px; height: 16px; flex-shrink: 0; }
.pricing-total { text-align: center; font-size: 0.86rem; color: var(--text-muted); margin-top: 4px; }
.pricing-total strong { color: var(--mid-green); font-size: 0.95rem; }
.pricing-cards-row { text-align: center; margin-top: 6px; }
.pricing-cards-row img { max-width: 170px; margin: 0 auto; opacity: .7; }
.pricing-card.featured .btn-cta {
  animation: pulseCTA 2.2s ease-in-out infinite;
}
@keyframes pulseCTA {
  0%,100% { box-shadow: 0 4px 22px rgba(132,216,59,.38); }
  50%      { box-shadow: 0 4px 32px rgba(132,216,59,.65); }
}

/* ════════════════════════════════════════════════════════
   SHIPPING BANNER
════════════════════════════════════════════════════════ */
#shipping-banner { background: var(--black); overflow: hidden; position: relative; }
.shipping-wrap { position: relative; }
.shipping-wrap img {
  width: 100%; max-height: 220px;
  object-fit: cover; opacity: .3; display: block;
}
.shipping-text-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 24px;
}
.shipping-text-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 2.5vw, 1.7rem);
  color: #fff; margin-bottom: 6px;
}
.shipping-text-overlay h3 span { color: var(--lime); }
.shipping-text-overlay p { color: rgba(255,255,255,.62); font-size: 0.84rem; margin: 0; }

/* ════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
#how { background: #fff; }
.how-step {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px; text-align: center;
  height: 100%; transition: transform .25s, box-shadow .25s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.how-number {
  width: 60px; height: 60px;
  background: var(--cta-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.4rem; color: #fff;
  box-shadow: 0 4px 16px rgba(132,216,59,.32);
}
.how-step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.how-step p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.8; }

/* ════════════════════════════════════════════════════════
   INGREDIENTS
════════════════════════════════════════════════════════ */
#ingredients { background: var(--off-white); }
.ing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  height: 100%; transition: transform .25s, box-shadow .25s;
}
.ing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ing-img-wrap {
  width: 88px; height: 88px; min-width: 88px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border);
}
.ing-img-wrap img { width: 62px; height: 62px; object-fit: contain; }
.ing-card h3 { font-size: 0.92rem; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.ing-latin { font-size: 0.76rem; color: var(--text-muted); font-style: italic; margin-bottom: 8px; }
.ing-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ════════════════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════════════════ */
#benefits { background: #fff; }
.benefit-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px; height: 100%;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; gap: 12px;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.benefit-icon {
  width: 52px; height: 52px;
  background: rgba(132,216,59,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.benefit-icon img { width: 28px; height: 28px; }
.benefit-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--text); margin: 0; }
.benefit-card p { font-size: 0.86rem; color: var(--text-muted); margin: 0; line-height: 1.75; }

/* ════════════════════════════════════════════════════════
   GUARANTEE
════════════════════════════════════════════════════════ */
#guarantee { background: var(--black); padding: 72px 0; }
.guarantee-seal img {
  width: 180px;
  filter: drop-shadow(0 8px 24px rgba(132,216,59,.28));
}
.guarantee-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: #fff; margin-bottom: 16px;
  -webkit-text-fill-color: #fff; background: none;
}
.guarantee-content h2 span { color: var(--lime); }
.guarantee-content p { color: rgba(255,255,255,.72); font-size: 0.95rem; margin-bottom: 12px; }

/* ════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════ */
#faq { background: var(--off-white); }
.faq-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px; overflow: hidden; background: #fff;
}
.accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  color: var(--text) !important; background: #fff !important;
  padding: 20px 24px; min-height: 64px; box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--mid-green) !important;
  background: rgba(132,216,59,.06) !important;
}
.accordion-button::after {
  filter: invert(35%) sepia(60%) saturate(500%) hue-rotate(90deg);
}
.accordion-body {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.82; padding: 0 24px 22px; background: #fff;
}
.faq-supplement { text-align: center; margin-top: 44px; }
.faq-supplement img { max-width: 340px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ════════════════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════════════════ */
#final-cta { background: #fff; padding: 80px 0; }
.final-cta-inner { text-align: center; }
.final-cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; margin-bottom: 16px;
  background: var(--h2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta-inner > p { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto 28px; }
.final-cta-inner > img { max-height: 240px; margin: 0 auto 28px; display: block; }
.final-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.final-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 18px;
  font-size: 0.84rem; font-weight: 700; color: var(--text); min-height: 42px;
}
.final-badge img { width: 18px; height: 18px; }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
#footer { background: var(--black); color: rgba(255,255,255,.6); padding: 56px 0 28px; }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,.46); line-height: 1.75; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 0.88rem; color: #fff;
  margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase;
}
.footer-col a {
  display: block; font-size: 0.82rem;
  color: rgba(255,255,255,.5); padding: 5px 0;
  transition: color .2s; min-height: 34px;
}
.footer-col a:hover { color: var(--lime); }
.footer-divider { border-color: rgba(255,255,255,.07); margin: 28px 0; }
.footer-disclaimer { font-size: 0.74rem; color: rgba(255,255,255,.34); line-height: 1.72; margin-bottom: 16px; }
.footer-bottom { font-size: 0.76rem; color: rgba(255,255,255,.28); text-align: center; }

/* ════════════════════════════════════════════════════════
   EXIT POPUP
════════════════════════════════════════════════════════ */
#exit-popup {
  display: none; position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(13,17,9,.75);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
#exit-popup.show { display: flex; }
.popup-box {
  background: #fff; border-radius: 24px;
  max-width: 520px; width: 100%; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  animation: popIn .35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
@keyframes popIn { from{transform:scale(.85);opacity:0} to{transform:scale(1);opacity:1} }
.popup-close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; color: #fff;
  transition: background .2s, color .2s;
  z-index: 2; border: none; font-family: inherit;
}
.popup-close:hover { background: var(--lime); color: var(--black); }
.popup-top {
  background: var(--black);
  padding: 32px 32px 24px; text-align: center;
}
.popup-tag {
  display: inline-block;
  background: var(--lime); color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 0.72rem;
  padding: 5px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.popup-top h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #fff; margin-bottom: 8px;
  -webkit-text-fill-color: #fff; background: none;
}
.popup-top h2 span { color: var(--lime); }
.popup-top p { color: rgba(255,255,255,.65); font-size: 0.88rem; margin: 0; }
.popup-body {
  padding: 28px 32px 32px;
  display: flex; align-items: center; gap: 24px;
}
.popup-bottle { width: 130px; flex-shrink: 0; }
.popup-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 2.4rem;
  color: var(--text); line-height: 1; margin-bottom: 4px;
}
.popup-price sub { font-size: 1.1rem; vertical-align: sub; }
.popup-sub { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 16px; font-weight: 600; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  #hero { padding-top: 76px; }
  .hero-inner { padding: 50px 0 24px; }
  .hero-img-wrap { padding: 10px 0 40px; }
  .hero-bottle { max-height: 360px; }
  .popup-body { flex-direction: column; text-align: center; gap: 16px; }
  .popup-bottle { width: 100px; }
  .guarantee-content h2 { -webkit-text-fill-color: #fff; }
}
@media (max-width: 767.98px) {
  html { font-size: 17px; }
  .trust-item { padding: 14px 20px; font-size: 0.8rem; }
  .ing-card { flex-direction: column; }
  .ing-img-wrap { margin: 0 auto; }
  .reviews-rating-bar { flex-direction: column; text-align: center; gap: 10px; }
  .big-score { font-size: 2.4rem; }
  .popup-body { padding: 20px; }
  .popup-top { padding: 24px 20px 18px; }
  .guarantee-inner { gap: 28px; }
}
@media (max-width: 575.98px) {
  .btn-cta { width: 100%; padding: 18px 24px; }
  .hero-pills { gap: 7px; }
  .hero-pill { font-size: 0.76rem; padding: 6px 12px; }
  .final-badges { gap: 8px; }
  .final-badge { font-size: 0.78rem; }
}