/* ==========================================================================
   VIIRIFLOW - ADVANCED STYLESHEET

   ========================================================================== */

/* ===== GLOBAL RESETS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ==========================================================================
   CSS CUSTOM PROPERTIES (BRAND TOKENS)
  
   ========================================================================== */
:root {
  /* === VIIRIFLOW BRAND COLORS === */
  --brand-primary:   #1A6DC5;   /* Deep Prostate Blue – hero, headings, CTA bg */
  --brand-secondary: #155BB0;   /* Darker Blue for hover states */
  --brand-accent:    #1A6DC5;   /* CTA button fill */
  --brand-gold:      #F4A800;   /* Star rating / urgency badge yellow-gold */
  --brand-green:     #27AE60;   /* Checkmark / verified purchase green */
  --brand-red:       #e74c3c;   /* Strikethrough price red */
  --white:           #ffffff;
  --bg-light:        #F0F4FA;   /* Soft blue-tinted off-white for alternate sections */
  --bg-dark:         #0E1B2E;   /* Deep navy for footer */
  --text-main:       #0E1B2E;   /* Primary body text – deep navy */
  --text-muted:      #4A5568;   /* Secondary body text – steel grey */
  --border-color:    #D4E3F5;   /* Light blue-grey borders */

  /* Shadows tuned to blue brand */
  --shadow-sm: 0 2px  8px rgba(26, 109, 197, 0.10);
  --shadow-md: 0 4px 20px rgba(26, 109, 197, 0.18);
  --shadow-lg: 0 12px 35px rgba(26, 109, 197, 0.28);

  /* === TYPOGRAPHY SCALE === */
  --f-xs:    0.95rem;
  --f-sm:    1.05rem;
  --f-body:  1.15rem;
  --f-md:    1.35rem;
  --f-lg:    1.55rem;
  --f-xl:    2.0rem;
  --f-2xl:   2.5rem;
  --f-3xl:   3.1rem;
  --f-price: 3.4rem;
  --lh-body: 1.8;

  /* === NEW CUSTOM VARIABLES ADDED HERE === */
  --background-color: white;
  --main-font-color: #272727;
  --main-hover-color: lightgrey;
  --main-font-family: main-font, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-large: 2rem;
  --font-medium: 1.5rem;
  --font-normal: 1rem;
  --font-small: 0.5rem;
  --accent-color-light: green;
  --accent-color-hard: red;
  --accent-color-hard-contrast: white;
  --footer-background-color: black;
  --copywrite-background-color: darkgray;
  --footer-font-color: gray;
  --footer-hover-color: var(--main-hover-color);
  --color-dark: #3d56b0;
  --color-light: #2fb3c5;
  --references-clickable: auto;
  --countdown-title-color: red;
  --countdown-timer-color: orange;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: var(--f-body);
  line-height: var(--lh-body);
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: var(--f-3xl);
  font-weight: 800;
  line-height: 1.2;
}
h2 { font-size: var(--f-2xl); font-weight: 800; line-height: 1.25; }
h3 { font-size: var(--f-xl);  font-weight: 700; line-height: 1.3;  }
h4 { font-size: var(--f-lg);  font-weight: 700; line-height: 1.35; }
p, li {
  font-size: var(--f-body);
  line-height: var(--lh-body);
  margin-bottom: 16px;
  text-align: left;
}
a { text-decoration: none; color: var(--brand-primary); }

/* ===== UTILITIES ===== */
.section   { padding: 80px 24px; }
.bg-light  { background: var(--bg-light); }
.sec-title {
  text-align: center;
  font-size: var(--f-2xl);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 16px;
}
.sec-sub {
  text-align: center;
  font-size: var(--f-md);
  color: var(--text-muted);
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ===== CTA BUTTONS (Major Button Styling) ===== */
.btn-cta {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--white) !important;
  padding: 18px 45px;
  border-radius: 8px;
  font-weight: 800;
  font-size: var(--f-lg);
  margin-top: 20px;
  box-shadow: 0 6px 20px rgba(26, 109, 197, 0.40);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-cta:hover {
  background: var(--brand-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 109, 197, 0.55);
}
.btn-cta-xl { font-size: 1.4rem; padding: 18px 52px; }

/* ===== NAVIGATION ===== */
.main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
}
.nav-logo img { max-width: 180px; height: auto; display: block; }
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}
.nav-links a { color: var(--text-main); font-weight: 600; font-size: var(--f-sm); transition: color .2s; }
.nav-links a:hover { color: var(--brand-primary); }
.btn-nav {
  background: var(--brand-primary);
  color: var(--white) !important;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: var(--f-sm);
  transition: all .2s;
}
.btn-nav:hover { background: var(--brand-secondary); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span { display: block; width: 30px; height: 3px; background: var(--text-main); border-radius: 2px; }
.mob-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--border-color);
}
.mob-menu.open { display: flex; }
.mob-menu a { color: var(--text-main); font-weight: 600; font-size: var(--f-md); }

/* ===== HERO SECTION ===== */
.hero {
  padding: 70px 24px;
  background: linear-gradient(90deg, #d8efe8 72%, #3e8e7e 72%);
  border-bottom: 1px solid var(--border-color);
  overflow-x: hidden;
}
.hero-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
/* Desktop: image left, content right */
.hero-img     { order: 1; display: flex; justify-content: center; align-items: center; }
.hero-content { order: 2; text-align: left; }

.hero-content h1 {
  color: var(--text-main);
  font-size: var(--f-3xl);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.hero-content h1 span { color: var(--brand-primary); }
.hero-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: var(--f-lg);
  text-align: left;
  font-weight: 400;
}
.hero-img img {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(26, 109, 197, 0.18));
}
.hero-badges img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
}

/* Star / trust line in hero */
.trust-stars {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 14px;
}
.trust-stars span {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 500;
}
.hero-divider {
  border: none;
  border-top: 2px solid var(--border-color);
  margin: 22px 0;
}

/* ===== BENEFIT BADGES STRIP ===== */
.badges-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.badge-card {
  text-align: center;
  padding: 35px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--white);
  transition: all .3s;
}
.badge-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.badge-card img { width: 70px; height: 70px; object-fit: contain; margin-bottom: 15px; }
.badge-card h4  { color: var(--brand-primary); font-size: 1.15rem; margin-bottom: 8px; }
.badge-card p   { color: var(--text-muted); font-size: var(--f-xs); margin-bottom: 0; line-height: 1.5; }

/* ===== INGREDIENT CARDS ===== */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
  text-align: left;
}
.ing-card {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(26, 109, 197, 0.07);
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s, transform 0.3s;
}
.ing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.ing-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 14px;
  height: 160px;
  object-fit: cover;
}
.ing-card h4 { color: var(--brand-primary); margin-bottom: 8px; font-size: 1.1rem; }
.ing-card p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0; }

/* Feature badges row inside ingredient section */
.ing-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.feature-badge { text-align: center; }
.feature-badge img { width: 60px; height: 60px; object-fit: contain; }
.feature-badge p { margin-top: 10px; font-weight: 600; color: var(--text-main); font-size: var(--f-xs); margin-bottom: 0; }

/* ===== BONUS SECTION ===== */
.bonus-grid {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.bonus-card {
  flex: 1;
  min-width: 290px;
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(26, 109, 197, 0.07);
  text-align: left;
  border-top: 5px solid var(--brand-primary);
  display: flex;
  flex-direction: column;
}
.bonus-label {
  background: var(--brand-primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 18px;
}
.bonus-card h4 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.4;
  min-height: 70px;
}
.bonus-card img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 18px;
  display: block;
}
.bonus-card p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.bonus-price {
  font-size: 1.05rem;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.testi-card {
  background: var(--white);
  border-radius: 15px;
  padding: 38px 28px;
  text-align: center;
  border: 1px solid #EAEAEA;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.testi-photo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 4px solid var(--brand-primary);
  display: block;
}
.testi-stars   { font-size: 1.4rem; color: var(--brand-gold); margin-bottom: 8px; }
.testi-verified { color: var(--brand-green); font-weight: 700; font-size: 0.92rem; margin-bottom: 18px; }
.testi-text    { font-style: italic; color: var(--text-muted); margin-bottom: 22px; line-height: 1.75; font-size: 1.02rem; }
.testi-name    { font-weight: 700; color: var(--brand-primary); font-size: 1.15rem; }

/* ===== PRICING SECTION ===== */
.pricing-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.p-card {
  flex: 1;
  min-width: 290px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 30px 16px 18px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(26, 109, 197, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.p-card.pop {
  border-color: var(--brand-primary);
  box-shadow: 0 8px 30px rgba(26, 109, 197, 0.25);
}
.p-card .pop-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-gold);
  color: #000;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 6px 22px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.p-card h3      { font-size: 1.65rem; color: var(--brand-primary); margin-bottom: 6px; font-weight: 800; }
.p-card .supply { color: #666; font-size: 1.05rem; margin-bottom: 18px; }
.p-card a.img-link { margin-bottom: 18px; min-height: 190px; display: flex; align-items: center; }
.p-card .img-link img { max-width: 160px; }
.price-big {
  font-size: var(--f-price);
  color: var(--brand-primary);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}
.price-big span { font-size: 1.15rem; font-weight: 600; }
.savings-row { font-size: 1.05rem; color: #888; margin-bottom: 6px; font-weight: 600; }
.savings-row strong { color: var(--text-main); font-size: 1.25rem; }
.badge-save {
  background: #c4c4c4;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  width: 84%;
  justify-content: center;
}
.badge-guarantee {
  background: #7bc124;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  width: 84%;
  justify-content: center;
}
.badge-ship {
  background: var(--brand-green);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  width: 84%;
  justify-content: center;
}
.btn-buy {
  background: var(--brand-primary);
  color: var(--white) !important;
  padding: 15px 12px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.4rem;
  width: 90%;
  display: block;
  margin-bottom: 18px;
  box-shadow: 0 4px 0 var(--brand-secondary);
  text-transform: uppercase;
  text-align: center;
  transition: all 0.2s;
}
.btn-buy:hover { background: var(--brand-secondary); transform: translateY(-2px); }

/* ===== GUARANTEE BLOCK ===== */
.guarantee-block {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.guarantee-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}
.guarantee-inner img { width: 180px; flex-shrink: 0; }
.guarantee-inner h3  { color: var(--brand-primary); margin-bottom: 14px; }
.guarantee-inner p   { margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 950px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--f-lg);
  font-weight: 700;
  color: var(--brand-primary);
  font-family: inherit;
}
.faq-arrow { color: var(--brand-secondary); transition: transform .3s; font-size: 1.5rem; font-weight: bold; }
.faq-ans   { max-height: 0; overflow: hidden; transition: all .4s ease; padding: 0 28px; }
.faq-item.open .faq-ans { max-height: 900px; padding: 0 28px 24px; }

/* ===== REFERENCES ===== */
.references-list {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.6;
  column-count: 2;
  column-gap: 40px;
}
.references-list ol { padding-left: 18px; margin: 0; }
.references-list li { margin-bottom: 10px; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  color: #CCCCCC;
  padding: 70px 24px 40px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.foot-disc {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: justify;
  text-align-last: center;
}
.foot-disc p { margin-bottom: 12px; }

/* --- THE BUG FIX: THIS FORCES THE FOOTER LINKS TO STAY AT THE BOTTOM --- */
nav.foot-links, .foot-links  {
  display: flex !important;
  justify-content: center;
  gap: 28px;
  margin: 36px 0 22px;
  flex-wrap: wrap;
  position: static !important; /* Removes the "fixed to top" problem completely */
  top: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  width: auto !important;
}
.foot-links a { color: #CCCCCC; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.4px; transition: color 0.2s; }
.foot-links a:hover { color: var(--white); }
.foot-copy { font-size: 0.88rem; color: #888888; margin-top: 14px; }

/* ===== COOKIE GDPR BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  background: #1A2B3C;
  color: var(--white);
  padding: 16px 20px;
  border-radius: 10px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  font-family: 'Inter', 'Poppins', sans-serif;
  gap: 16px;
}
.cookie-banner p { margin: 0; font-size: 0.88rem; text-align: left; color: #ccc; }
.cookie-accept {
  background: var(--brand-primary);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.92rem;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--brand-secondary); }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* ---- Tablet (max 1024px) ---- */
@media (max-width: 1024px) {
  :root {
    --f-body: 1.05rem;
    --f-md:   1.2rem;
    --f-lg:   1.35rem;
    --f-xl:   1.7rem;
    --f-2xl:  2.05rem;
    --f-3xl:  2.5rem;
    --f-price:2.8rem;
  }

  /* Nav: hide desktop links, show hamburger */
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero: stack vertically, image first */
  .hero {
    padding: 0 0 40px 0;
    background: linear-gradient(to bottom, #1A6DC5 44%, #F4F8FE 44%) !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 20px !important;
  }
  .hero-img     { order: 1; padding-top: 28px; }
  .hero-content { order: 2; text-align: center; }
  .hero-img img { max-width: 260px; }
  .hero-content h1 { font-size: var(--f-2xl); }
  .hero-content p  { text-align: center; font-size: var(--f-body); }
  .hero-badges     { text-align: center; }
  .hero-badges img { margin: 12px auto 0; max-width: 100%; }
  .hero-content h1 { color: var(--white); }
  .hero-content p  { color: rgba(255,255,255,0.85); }

  /* Sections */
  .section { padding: 60px 20px; }

  /* Badges grid → 2 col on tablet */
  .badges-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin: 0 auto; }

  /* Pricing → single col */
  .pricing-grid  { flex-direction: column; max-width: 480px; margin: 0 auto; }
  .p-card        { min-width: unset; width: 100%; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }

  /* Guarantee */
  .guarantee-inner { flex-direction: column; text-align: center; }
  .guarantee-inner img { margin: 0 auto; }

  /* References: single column */
  .references-list { column-count: 1; }
}

/* ---- Mobile (max 768px) ---- */
@media (max-width: 768px) {
  :root {
    --f-body: 1.0rem;
    --f-md:   1.08rem;
    --f-lg:   1.2rem;
    --f-xl:   1.5rem;
    --f-2xl:  1.8rem;
    --f-3xl:  2.05rem;
    --f-price:2.2rem;
  }

  .nav-inner { padding: 0 16px; }
  .nav-logo img { max-width: 150px; }

  /* Hero */
  .hero {
    padding: 0 0 36px 0 !important;
    background: linear-gradient(to bottom, #1A6DC5 48%, #F4F8FE 48%) !important;
  }
  .hero-grid { padding: 0 16px !important; gap: 16px !important; }
  .hero-img  { order: 1; padding-top: 24px; }
  .hero-content { order: 2; text-align: center; }
  .hero-img img { max-width: 220px; }
  .hero-content h1 { font-size: 1.65rem; line-height: 1.3; margin-bottom: 12px; }
  .hero-content p  { font-size: 0.96rem; text-align: center; }
  .hero-badges img { max-width: 100% !important; margin: 10px auto 0; }

  /* Sections */
  .section { padding: 48px 16px; }
  .wrap    { padding: 0; }
  .sec-title { font-size: 1.65rem; }
  .sec-sub   { font-size: 0.98rem; margin-bottom: 28px; }

  /* Badges: 2 col */
  .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .badge-card  { padding: 20px 12px; }
  .badge-card img { width: 56px; height: 56px; }

  /* Ingredient: 2 col */
  .ingredient-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  .ing-card { padding: 12px !important; }
  .ing-card img { height: 120px; }
  .ing-card h4 { font-size: 0.98rem !important; }
  .ing-card p  { font-size: 0.85rem !important; }

  /* Feature row: 2 per line */
  .ing-features { gap: 14px !important; }
  .feature-badge { width: calc(50% - 10px); }
  .feature-badge p { font-size: 0.83rem; }

  /* Bonus: single col */
  .bonus-grid { flex-direction: column !important; gap: 22px !important; }
  .bonus-card { min-width: unset !important; width: 100% !important; }

  /* Testimonial cards */
  .testi-card { padding: 26px 18px !important; }
  .testi-text { font-size: 0.93rem !important; }

  /* CTA buttons */
  .btn-cta, .btn-cta-xl {
    width: 100%;
    padding: 16px 12px;
    font-size: 1.02rem;
    box-sizing: border-box;
  }

  /* Guarantee */
  .guarantee-block { padding: 36px 22px; }
  .guarantee-inner img { width: 150px; }
  .guarantee-inner h3  { font-size: 1.35rem; }

  /* Footer */
  .foot-disc  { text-align: left; text-align-last: left; padding: 0 4px; }
  .foot-links { gap: 10px 18px; }
  .foot-links a { font-size: 0.85rem; }

  /* Cookie: stack on mobile */
  .cookie-banner { flex-direction: column; gap: 10px; text-align: center; }
  .cookie-accept { width: 100%; }

  /* FAQ */
  .faq-q { font-size: 1.0rem; padding: 18px 18px; }
  .faq-ans { padding: 0 18px; }
  .faq-item.open .faq-ans { padding: 0 18px 18px; }
}

/* ---- Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
  :root {
    --f-body: 0.93rem;
    --f-md:   1.02rem;
    --f-lg:   1.12rem;
    --f-xl:   1.38rem;
    --f-2xl:  1.62rem;
    --f-3xl:  1.85rem;
    --f-price:2.0rem;
  }

  .hero { background: linear-gradient(to bottom, #1A6DC5 46%, #F4F8FE 46%) !important; }
  .hero-content h1 { font-size: 1.48rem; }
  .hero-img img    { max-width: 200px; }

  /* Ingredient: single col on very small screens */
  .ingredient-grid { grid-template-columns: 1fr !important; }

  /* Badges: single col */
  .badges-grid   { grid-template-columns: 1fr !important; max-width: 300px; }
  .feature-badge { width: 100%; }

  /* Nav logo tighter */
  .nav-logo img { max-width: 130px; }

  /* Spacing */
  .section { padding: 38px 14px; }

  /* References: always 1 col */
  .references-list { column-count: 1; }
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== NEW TEAL/GREEN INGREDIENT GRID & 3D GOLD BUTTON ===== */
.new-ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.new-ing-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(37, 74, 69, 0.08);
    border-bottom: 5px solid #3e8e7e; /* Teal/Green accent from new design */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
}
.new-ing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37, 74, 69, 0.18);
    border-bottom: 5px solid #254a45; /* Darker green on hover */
}
.new-ing-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}
.new-ing-card h4 {
    font-family: ebold-font, 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #254a45; /* Dark Green Heading */
    margin-bottom: 12px;
}
.new-ing-card p {
    font-family: medium-font, 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Major Button - 3D Gold Pill Shape */
.btn-gold-pill {
    display: inline-block;
    background: linear-gradient(to bottom, #FFDF73, #F4A800);
    color: #1A1A1A !important;
    padding: 22px 55px;
    border-radius: 50px; /* Perfect Pill Shape */
    font-family: ebold-font, 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 8px 0 #C98A00, 0 15px 25px rgba(0,0,0,0.15); /* 3D Effect */
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    border: 2px solid #FFF3C4;
    width: 100%;
    max-width: 500px;
}
.btn-gold-pill:hover {
    background: linear-gradient(to bottom, #F4A800, #FFDF73);
    transform: translateY(4px);
    box-shadow: 0 4px 0 #C98A00, 0 10px 15px rgba(0,0,0,0.15); /* Button pressing down */
}
.btn-gold-pill:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 #C98A00, 0 5px 10px rgba(0,0,0,0.15); /* Button fully pressed */
}
.cta-wrapper {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

/* ===== MOBILE HERO TEXT READABILITY FIX ===== */
@media (max-width: 1024px) {
  .hero-content p {
    color: #4A5568 !important; /* Makes the paragraph text dark grey on mobile/tablet */
  }
}

/* ===== UPDATED BONUS SECTION ===== */
.bonus-section-wrapper {
    background: linear-gradient(135deg, #f7fcfb 0%, #ffffff 100%);
    padding: 80px 20px;
}
.bonus-pre-title {
    color: #3e8e7e;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.bonus-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 74, 69, 0.1);
    border: 1px solid #d8efe8;
    text-align: left;
    transition: transform 0.3s ease;
}
.bonus-card:hover { transform: translateY(-10px); }
.bonus-label {
    background: #254a45;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}
.bonus-card h4 {
    font-size: 1.3rem;
    color: #254a45;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 60px;
}
.bonus-price {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}