/* =========================================================
   SLIMTIDE — Landing Page Stylesheet
   Palette: Forest #1B4332 · Lime #74C69D · Coral #FF6B4A
            Cream #FBF7F0 · Charcoal #22303C · Gold #D4A24C
   Type: Montserrat (headings) / Open Sans (body)
   ========================================================= */

:root{
  --forest:#1B4332;
  --forest-dark:#12301F;
  --lime:#74C69D;
  --lime-light:#B7E4C7;
  --coral:#FF6B4A;
  --coral-dark:#E8532F;
  --cream:#FBF7F0;
  --cream-dim:#F1EAE0;
  --charcoal:#22303C;
  --gold:#D4A24C;
  --white:#FFFFFF;
  --line:#E4DCCB;

  --font-head:'Montserrat', sans-serif;
  --font-body:'Open Sans', sans-serif;

  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;

  --shadow-sm:0 2px 10px rgba(27,67,50,.08);
  --shadow-md:0 12px 32px rgba(27,67,50,.14);
  --shadow-lg:0 24px 60px rgba(27,67,50,.20);

  --container:1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
*{ -webkit-tap-highlight-color:transparent; }

html{
  font-size:16px;
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
  -ms-text-size-adjust:100%;
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--charcoal);
  background:var(--cream);
  line-height:1.7;
  overflow-x:hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input,select,textarea{ font-size:16px; font-family:inherit; }

.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:20px;
}

h1,h2,h3,h4{
  font-family:var(--font-head);
  font-weight:800;
  color:var(--forest);
  line-height:1.15;
  margin:0 0 16px;
}

h1{ font-size:28px; }
h2{ font-size:24px; }
h3{ font-size:19px; }
h4{ font-size:17px; }

p{ margin:0 0 14px; }

.eyebrow{
  display:inline-block;
  font-family:var(--font-head);
  font-weight:700;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--coral);
  background:rgba(255,107,74,.1);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:14px;
}

.section{ padding:60px 0; position:relative; }
.section-alt{ background:var(--cream-dim); }
.section-dark{ background:var(--forest); color:var(--cream); }
.section-dark h2, .section-dark h3, .section-dark h4{ color:var(--cream); }

.section-head{ text-align:center; max-width:640px; margin:0 auto 36px; }
.section-head p{ color:#51606B; }
.section-dark .section-head p{ color:var(--lime-light); }

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  padding:14px 30px;
  border-radius:999px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:15px;
  letter-spacing:.02em;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space:nowrap;
}
.btn:active{ transform:scale(.98); }

.btn-primary{
  background:linear-gradient(135deg, var(--coral), var(--coral-dark));
  color:var(--white);
  box-shadow:var(--shadow-md);
}
.btn-primary:hover{ transform:scale(1.05); box-shadow:var(--shadow-lg); }

.btn-outline{
  background:transparent;
  border:2px solid var(--forest);
  color:var(--forest);
}
.btn-outline:hover{ transform:scale(1.05); background:var(--forest); color:var(--cream); }

.btn-light{
  background:var(--cream);
  color:var(--forest);
}
.btn-light:hover{ transform:scale(1.05); box-shadow:var(--shadow-md); }

.btn-block{ width:100%; }

/* ============ NAV ============ */
.nav{
  position:sticky;
  top:0;
  z-index:900;
  background:rgba(251,247,240,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:box-shadow .3s ease, border-color .3s ease, padding .3s ease;
  padding:14px 0;
}
.nav.scrolled{
  box-shadow:var(--shadow-sm);
  border-color:var(--line);
  padding:8px 0;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  font-family:var(--font-head);
  font-weight:800;
  font-size:22px;
  color:var(--forest);
  display:flex;
  align-items:center;
  gap:8px;
}
.brand-dot{
  width:10px; height:10px; border-radius:50%;
  background:var(--coral);
  box-shadow:0 0 0 4px rgba(255,107,74,.18);
}
.nav-links{
  display:none;
  align-items:center;
  gap:32px;
  font-family:var(--font-head);
  font-weight:600;
  font-size:14.5px;
}
.nav-links a{
  position:relative;
  padding:4px 0;
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px;
  background:var(--coral);
  transition:width .25s ease;
}
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:none; }
.nav-actions{ display:flex; align-items:center; gap:12px; }

.hamburger{
  width:44px; height:44px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:5px;
  border-radius:10px;
}
.hamburger span{
  width:22px; height:2.5px; background:var(--forest); border-radius:2px;
  transition:transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

.mobile-menu{
  position:fixed; top:0; right:0;
  width:min(320px, 82vw); height:100%;
  background:var(--forest);
  color:var(--cream);
  z-index:999;
  padding:100px 30px 30px;
  transform:translateX(100%);
  transition:transform .35s ease;
  display:flex; flex-direction:column; gap:26px;
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu a{
  font-family:var(--font-head); font-weight:700; font-size:19px;
}
.menu-backdrop{
  position:fixed; inset:0; background:rgba(18,48,31,.55);
  z-index:998; opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.menu-backdrop.open{ opacity:1; pointer-events:auto; }

@media (min-width:768px){
  .nav-links{ display:flex; }
  .nav-cta{ display:inline-flex; }
  .hamburger{ display:none; }
}

/* ============ HERO ============ */
.hero{
  padding:44px 0 60px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(116,198,157,.35), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(255,107,74,.18), transparent 50%),
    var(--cream);
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
  align-items:center;
}
.hero-media{
  position:relative;
  display:flex;
  justify-content:center;
  order:1;
}
.hero-blob{
  position:absolute;
  width:320px; height:320px;
  border-radius:50%;
  background:radial-gradient(circle, var(--lime) 0%, rgba(116,198,157,0) 70%);
  filter:blur(2px);
  animation:blob-float 7s ease-in-out infinite;
  z-index:0;
}
@keyframes blob-float{
  0%,100%{ transform:translateY(0) scale(1); }
  50%{ transform:translateY(-18px) scale(1.05); }
}
.hero-bottle{
  position:relative;
  z-index:1;
  width:min(280px, 70vw);
  animation:bottle-rise 1.1s cubic-bezier(.2,.8,.2,1) both;
  filter:drop-shadow(0 30px 40px rgba(27,67,50,.28));
}
@keyframes bottle-rise{
  from{ opacity:0; transform:translateY(40px) scale(.92) rotate(-4deg); }
  to{ opacity:1; transform:translateY(0) scale(1) rotate(0); }
}
.hero-badge-float{
  position:absolute;
  background:var(--white);
  border-radius:999px;
  padding:8px 16px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:12.5px;
  color:var(--forest);
  box-shadow:var(--shadow-md);
  display:flex; align-items:center; gap:6px;
  animation:badge-drift 4.5s ease-in-out infinite;
  z-index:2;
}
.hero-badge-float.b1{ top:8%; left:2%; animation-delay:.2s; }
.hero-badge-float.b2{ bottom:10%; right:0%; animation-delay:1s; }
@keyframes badge-drift{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
.hero-content{ order:2; text-align:center; }
.hero-content h1{ font-size:30px; margin-bottom:18px; }
.hero-content .lede{ font-size:16px; color:#3D4C56; max-width:520px; margin-inline:auto; }
.hero-stars{ display:flex; align-items:center; justify-content:center; gap:8px; margin-bottom:16px; font-size:13px; color:#51606B; }
.hero-stars .stars{ color:var(--gold); letter-spacing:2px; }
.hero-cta-wrap{ margin-top:26px; display:flex; flex-direction:column; align-items:center; gap:10px; }
.hero-cta-note{ font-size:12.5px; color:#5C6B75; }
.hero-price-tag{
  display:inline-flex; align-items:baseline; gap:8px;
  font-family:var(--font-head); font-weight:800;
  margin-bottom:6px;
}
.hero-price-tag .old{ text-decoration:line-through; color:#9AA6AC; font-size:15px; font-weight:600; }
.hero-price-tag .new{ color:var(--coral); font-size:24px; }

@media (min-width:768px){
  .hero-grid{ grid-template-columns:1fr 1fr; gap:50px; }
  .hero-media{ order:0; }
  .hero-content{ order:0; text-align:left; }
  .hero-content h1{ font-size:42px; }
  .hero-stars{ justify-content:flex-start; }
  .hero-cta-wrap{ align-items:flex-start; }
  .hero-content .lede{ margin-inline:0; }
}
@media (min-width:1024px){
  .hero-content h1{ font-size:48px; }
}

/* ============ WHY CHOOSE (badge cards) ============ */
.badge-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
.badge-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:28px 22px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  transition:transform .3s ease, box-shadow .3s ease;
}
.badge-card:hover{ transform:scale(1.05) rotate(-1deg); box-shadow:var(--shadow-lg); }
.badge-card img{ width:72px; margin:0 auto 16px; }
.badge-card h3{ font-size:16px; margin-bottom:8px; }
.badge-card p{ font-size:14px; color:#51606B; margin:0; }

@media (min-width:576px){ .badge-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:992px){ .badge-grid{ grid-template-columns:repeat(4,1fr); } }

/* ============ WHAT IS / SPLIT SECTIONS ============ */
.split{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  align-items:center;
}
.split img{ border-radius:var(--radius-lg); box-shadow:var(--shadow-md); }
.split .split-img{ order:1; }
.split .split-text{ order:2; }
.split.reverse .split-img{ order:1; }
@media (min-width:768px){
  .split{ grid-template-columns:1fr 1fr; gap:50px; }
  .split .split-img{ order:0; }
  .split .split-text{ order:0; }
  .split.reverse .split-img{ order:1; }
  .split.reverse .split-text{ order:0; }
}

/* ============ HOW IT WORKS — accordion ============ */
.accordion{ display:flex; flex-direction:column; gap:14px; max-width:800px; margin:0 auto; }
.acc-item{
  background:var(--white);
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}
.acc-trigger{
  width:100%;
  min-height:56px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:16px 20px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:15.5px;
  color:var(--forest);
  text-align:left;
}
.acc-trigger .plus{
  width:26px; height:26px; flex:0 0 26px;
  border-radius:50%;
  background:var(--lime-light);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; color:var(--forest);
  transition:transform .3s ease;
}
.acc-item.open .acc-trigger .plus{ transform:rotate(45deg); }
.acc-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}
.acc-panel-inner{ padding:0 20px 20px; font-size:14.5px; color:#4A5860; }

/* ============ REVIEWS ============ */
.review-grid{ display:grid; grid-template-columns:1fr; gap:22px; }
.review-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:26px;
  box-shadow:var(--shadow-sm);
}
.review-top{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.review-top img{ width:52px; height:52px; border-radius:50%; }
.review-name{ font-family:var(--font-head); font-weight:700; font-size:15px; color:var(--forest); }
.review-loc{ font-size:12.5px; color:#8A9198; }
.review-stars{ color:var(--gold); letter-spacing:2px; margin-bottom:8px; font-size:14px; }
.review-card p{ font-size:14.5px; color:#4A5860; margin:0; }
.review-note{ font-size:11px; color:#9AA6AC; font-style:italic; }

@media (min-width:576px){ .review-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:992px){ .review-grid{ grid-template-columns:repeat(3,1fr); } }

/* ============ PRICING ============ */
.urgency-banner{
  background:linear-gradient(135deg, var(--coral), var(--coral-dark));
  color:var(--white);
  text-align:center;
  border-radius:var(--radius-md);
  padding:16px 20px;
  max-width:560px;
  margin:0 auto 30px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:14px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.urgency-banner .tag{
  background:rgba(255,255,255,.2);
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}
.price-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:26px 22px 30px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  border:2px solid var(--line);
  position:relative;
  transition:transform .3s ease, box-shadow .3s ease;
}
.price-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.price-card.popular{
  border-color:var(--coral);
  background:linear-gradient(180deg, #FFF6F2, var(--white) 40%);
  box-shadow:var(--shadow-md);
}
.price-card .ribbon{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--coral); color:var(--white);
  font-family:var(--font-head); font-weight:800; font-size:11.5px;
  letter-spacing:.06em;
  padding:6px 16px; border-radius:999px;
  box-shadow:var(--shadow-sm);
  white-space:nowrap;
}
.price-label{ font-family:var(--font-head); font-weight:700; font-size:12.5px; letter-spacing:.1em; color:var(--gold); text-transform:uppercase; margin-bottom:6px; }
.price-card h3{ margin-bottom:2px; }
.price-supply{ font-size:13px; color:#8A9198; margin-bottom:14px; }
.price-card img{ width:120px; margin:0 auto 16px; }
.price-per{ font-family:var(--font-head); font-weight:800; font-size:30px; color:var(--forest); }
.price-per span{ font-size:14px; font-weight:600; color:#8A9198; }
.price-total{ font-size:13.5px; color:#8A9198; margin-bottom:16px; }
.price-total .old{ text-decoration:line-through; margin-right:6px; }
.price-total .new{ color:var(--coral); font-weight:700; }
.price-badges{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-bottom:18px; }
.price-badges span{
  background:var(--lime-light); color:var(--forest);
  font-size:11px; font-weight:700; font-family:var(--font-head);
  padding:5px 10px; border-radius:999px;
}
.price-pay{ margin-top:14px; opacity:.75; }

@media (min-width:576px){ .pricing-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:992px){ .pricing-grid{ grid-template-columns:repeat(3,1fr); } .price-card.popular{ transform:scale(1.04); } }

.stars-row{ display:flex; justify-content:center; margin-top:30px; }

/* ============ BONUS ============ */
.bonus-grid{ display:grid; grid-template-columns:1fr; gap:22px; }
.bonus-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:22px;
  text-align:center;
  box-shadow:var(--shadow-sm);
}
.bonus-card img{ border-radius:var(--radius-sm); margin-bottom:14px; }
.bonus-tag{ display:inline-block; background:var(--gold); color:#fff; font-size:11px; font-weight:700; font-family:var(--font-head); padding:4px 10px; border-radius:999px; margin-bottom:10px; }
@media (min-width:768px){ .bonus-grid{ grid-template-columns:1fr 1fr; } }

/* ============ INGREDIENTS ============ */
.ingredient-grid{ display:grid; grid-template-columns:1fr; gap:16px; }
.ingredient-card{
  background:var(--white);
  border-radius:var(--radius-sm);
  padding:20px 22px;
  box-shadow:var(--shadow-sm);
  border-left:4px solid var(--lime);
}
.ingredient-card h4{ margin-bottom:6px; }
.ingredient-card p{ font-size:14px; color:#4A5860; margin:0; }
@media (min-width:768px){ .ingredient-grid{ grid-template-columns:1fr 1fr; } }

/* ============ SCIENTIFIC EVIDENCE ============ */
.science-list{ display:flex; flex-direction:column; gap:14px; max-width:800px; margin:0 auto; }
.science-item{
  background:var(--white);
  border-radius:var(--radius-sm);
  padding:18px 20px;
  box-shadow:var(--shadow-sm);
  font-size:14.5px;
  color:#4A5860;
}
.science-item strong{ color:var(--forest); font-family:var(--font-head); }
.science-note{ font-size:12.5px; color:#8A9198; text-align:center; margin-top:20px; }

/* ============ GUARANTEE ============ */
.guarantee-points{ display:flex; flex-direction:column; gap:16px; margin-top:10px; }
.guarantee-point{ display:flex; gap:12px; align-items:flex-start; }
.guarantee-point .check{
  flex:0 0 30px; width:30px; height:30px; border-radius:50%;
  background:var(--lime); color:var(--forest-dark);
  display:flex; align-items:center; justify-content:center;
  font-weight:800;
}

/* ============ BENEFITS ============ */
.benefit-list{ display:flex; flex-direction:column; gap:14px; max-width:560px; margin:0 auto; }
.benefit-item{
  display:flex; align-items:center; gap:14px;
  background:var(--white);
  border-radius:var(--radius-sm);
  padding:14px 18px;
  box-shadow:var(--shadow-sm);
  font-family:var(--font-head); font-weight:600; font-size:14.5px;
  color:var(--charcoal);
}
.benefit-item .tick{
  flex:0 0 28px; width:28px; height:28px; border-radius:50%;
  background:var(--coral); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:14px;
}

/* ============ FAQ ============ */
/* reuses .accordion */

/* ============ FINAL CTA ============ */
.final-cta{
  background:linear-gradient(135deg, var(--forest), var(--forest-dark));
  color:var(--cream);
  border-radius:var(--radius-lg);
  padding:44px 26px;
  text-align:center;
  margin-inline:16px;
  position:relative;
  overflow:hidden;
}
.final-cta::before{
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(circle at 20% 20%, rgba(116,198,157,.25), transparent 55%);
}
.final-cta > *{ position:relative; z-index:1; }
.final-cta img{ width:180px; margin:0 auto 20px; animation:bottle-pulse 3s ease-in-out infinite; }
@keyframes bottle-pulse{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}
.final-cta h2{ color:var(--cream); }
.final-price{ font-family:var(--font-head); font-weight:800; margin-bottom:22px; }
.final-price .old{ text-decoration:line-through; color:#9db8a8; font-size:16px; margin-right:10px; }
.final-price .new{ color:var(--gold); font-size:28px; }

/* ============ FOOTER ============ */
.footer{
  background:var(--charcoal);
  color:#C9D2D8;
  padding:50px 0 24px;
  font-size:14px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  margin-bottom:30px;
  text-align:center;
}
.footer-brand{ font-family:var(--font-head); font-weight:800; font-size:20px; color:#fff; margin-bottom:10px; }
.footer-disclaimer{ font-size:12px; color:#8C99A2; line-height:1.7; max-width:760px; margin-inline:auto; }
.footer-legal-links{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin:20px 0; }
.legal-link{ color:#C9D2D8; font-size:13px; }
.legal-link:hover{ color:var(--lime); }
.link-separator{ color:#4A5860; }
.social-row{ display:flex; justify-content:center; gap:14px; margin:20px 0; }
.social-row a{
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  transition:background .25s ease, transform .25s ease;
}
.social-row a:hover{ background:var(--coral); transform:translateY(-3px); }
.copyright{ text-align:center; font-size:12px; color:#8C99A2; border-top:1px solid #34424C; padding-top:20px; }

@media (min-width:768px){
  .footer-grid{ grid-template-columns:1.3fr 1fr 1fr; text-align:left; }
  .footer-legal-links{ justify-content:flex-start; }
  .social-row{ justify-content:flex-start; }
}

/* ============ SCROLL TOP ============ */
.scroll-top{
  position:fixed;
  bottom:24px; right:20px;
  width:56px; height:56px;
  border-radius:50%;
  background:var(--forest);
  color:var(--cream);
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
  box-shadow:var(--shadow-md);
  opacity:0; pointer-events:none;
  transform:translateY(20px);
  transition:opacity .3s ease, transform .3s ease, background .3s ease;
  z-index:500;
}
.scroll-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.scroll-top:hover{ background:var(--coral); }

/* ============ STICKY MOBILE CTA (legit, non-deceptive helper bar) ============ */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0;
  background:var(--white);
  box-shadow:0 -6px 20px rgba(27,67,50,.15);
  padding:10px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  z-index:600;
  transform:translateY(100%);
  transition:transform .35s ease;
}
.sticky-cta.show{ transform:translateY(0); }
.sticky-cta .price{ font-family:var(--font-head); font-weight:800; color:var(--forest); font-size:14px; }
.sticky-cta .price .old{ text-decoration:line-through; color:#9AA6AC; font-weight:600; font-size:12px; margin-right:4px; }
@media (min-width:768px){ .sticky-cta{ display:none; } }

/* ============ POPUP (discount capture, exit-intent / delay / scroll) ============ */
.popup-overlay{
  position:fixed; inset:0; background:rgba(18,48,31,.6);
  display:flex; align-items:flex-end; justify-content:center;
  z-index:1000; opacity:0; pointer-events:none; transition:opacity .3s ease;
  padding:0;
}
.popup-overlay.show{ opacity:1; pointer-events:auto; }
.popup-card{
  background:var(--cream);
  width:100%;
  max-width:440px;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  padding:28px 24px 26px;
  position:relative;
  box-shadow:var(--shadow-lg);
  transform:translateY(30px);
  transition:transform .35s ease;
  text-align:center;
}
.popup-overlay.show .popup-card{ transform:translateY(0); }
.popup-close{
  position:absolute; top:12px; right:12px;
  width:36px; height:36px; border-radius:50%;
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; color:var(--charcoal);
  box-shadow:var(--shadow-sm);
}
.popup-card h3{ margin-bottom:10px; }
.popup-card p{ font-size:14px; color:#4A5860; }

@media (min-width:768px){
  .popup-overlay{ align-items:center; }
  .popup-card{ border-radius:var(--radius-lg); }
}

/* ============ MISC ============ */
.hidden{ display:none !important; }
.text-center{ text-align:center; }

::selection{ background:var(--lime); color:var(--forest-dark); }

/* Visible focus states for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline:3px solid var(--coral);
  outline-offset:2px;
}
