/* ============================================
   Zero Waste Kitchen — Mobile-First Stylesheet
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark: #2c5e3b;
  --green-mid: #4a7c59;
  --green-light: #7aad8a;
  --green-pale: #e8f4ec;
  --earth-cream: #f5f0e8;
  --earth-tan: #c4a882;
  --white: #ffffff;
  --off-white: #fafaf8;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #777;
  --orange: #e67e22;
  --orange-dark: #d35400;
  --border: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --t: all .25s ease;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Inter',sans-serif;color:var(--text-dark);background:var(--white);line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--green-dark);text-decoration:none;transition:var(--t)}
a:hover{color:var(--green-mid)}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ---- HEADER ---- */
.site-header{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:1000;box-shadow:var(--shadow-sm)}
.header-inner{max-width:1200px;margin:0 auto;padding:0 16px;display:flex;align-items:center;justify-content:space-between;height:64px}
.logo-link{display:flex;align-items:center;gap:10px;font-family:'Playfair Display',serif;font-size:1.15rem;font-weight:700;color:var(--green-dark)}
.logo-link img{width:40px;height:40px;object-fit:contain;border-radius:50%}
.logo-text em{color:var(--green-light);font-style:normal}
.menu-toggle{display:flex;flex-direction:column;gap:5px;padding:8px;background:none;border:none}
.menu-toggle span{display:block;width:22px;height:2px;background:var(--text-dark);border-radius:2px;transition:var(--t)}
.main-nav{display:none;flex-direction:column;position:absolute;top:64px;left:0;right:0;background:var(--white);padding:12px 16px 20px;border-bottom:1px solid var(--border);box-shadow:var(--shadow-md);z-index:999}
.main-nav.open{display:flex}
.main-nav a{padding:11px 14px;font-size:.95rem;font-weight:500;color:var(--text-mid);border-radius:var(--r-sm);transition:var(--t)}
.main-nav a:hover,.main-nav a.active{background:var(--green-pale);color:var(--green-dark)}
.nav-shop{background:var(--green-dark)!important;color:var(--white)!important;border-radius:20px!important;margin-top:6px}

/* ---- HERO ---- */
.hero{position:relative;overflow:hidden;background:linear-gradient(150deg,var(--green-dark) 0%,var(--green-mid) 60%,var(--green-light) 100%);color:var(--white);text-align:center;padding:60px 20px 50px}
.hero-video-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.18;pointer-events:none}
.hero-inner{position:relative;max-width:700px;margin:0 auto}
.hero-badge{display:inline-block;background:rgba(255,255,255,.2);border:1px solid rgba(255,255,255,.35);padding:5px 14px;border-radius:20px;font-size:.8rem;font-weight:600;letter-spacing:.4px;margin-bottom:18px}
.hero h1{font-family:'Playfair Display',serif;font-size:clamp(1.7rem,5vw,3rem);font-weight:700;line-height:1.25;margin-bottom:16px}
.hero p{font-size:1rem;opacity:.9;max-width:560px;margin:0 auto 28px;line-height:1.7}
.hero-btns{display:flex;flex-direction:column;gap:12px;align-items:center}
.btn-white{background:var(--white);color:var(--green-dark);padding:13px 28px;border-radius:30px;font-weight:700;font-size:.95rem;box-shadow:var(--shadow-md);transition:var(--t);display:inline-block;text-align:center}
.btn-white:hover{background:var(--earth-cream);transform:translateY(-2px);color:var(--green-dark)}
.btn-outline{background:transparent;color:var(--white);padding:13px 28px;border-radius:30px;font-weight:600;font-size:.95rem;border:2px solid rgba(255,255,255,.6);transition:var(--t);display:inline-block;text-align:center}
.btn-outline:hover{background:rgba(255,255,255,.15);border-color:var(--white);color:var(--white)}

/* ---- AMAZON BUTTON ---- */
.btn-amazon{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:var(--orange);color:var(--white);padding:14px 28px;border-radius:8px;font-weight:700;font-size:1rem;transition:var(--t);box-shadow:0 4px 14px rgba(230,126,34,.4);text-align:center;width:100%}
.btn-amazon:hover{background:var(--orange-dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(230,126,34,.5);color:var(--white)}
.btn-amazon svg{flex-shrink:0;width:18px;height:18px}
.amazon-block{padding:24px 0;text-align:center}

/* ---- LAYOUT ---- */
.container{max-width:1200px;margin:0 auto;padding:0 16px}
.section{padding:48px 0}
.section-alt{background:var(--off-white)}
.section-green{background:var(--green-pale)}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(1.4rem,3vw,2.2rem);color:var(--green-dark);margin-bottom:10px;line-height:1.3}
.section-sub{font-size:.95rem;color:var(--text-light);max-width:580px;margin-bottom:32px;line-height:1.7}
.text-center{text-align:center}
.text-center .section-sub{margin-left:auto;margin-right:auto}

/* ---- PRODUCT CARDS (homepage grid) ---- */
.products-grid{display:grid;grid-template-columns:1fr;gap:20px;margin-top:28px}
.product-card{background:var(--white);border-radius:var(--r-md);overflow:hidden;box-shadow:var(--shadow-sm);border:1px solid var(--border);display:flex;flex-direction:column;transition:var(--t)}
.product-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:var(--green-light)}
.product-card-img{width:100%;height:200px;object-fit:cover}
.product-card-body{padding:16px;flex:1;display:flex;flex-direction:column}
.product-tag{display:inline-block;background:var(--green-pale);color:var(--green-dark);font-size:.72rem;font-weight:700;padding:3px 10px;border-radius:12px;margin-bottom:8px;text-transform:uppercase;letter-spacing:.4px}
.product-card h3{font-family:'Playfair Display',serif;font-size:1.05rem;color:var(--text-dark);margin-bottom:6px;line-height:1.4}
.product-card p{font-size:.88rem;color:var(--text-light);line-height:1.6;flex:1;margin-bottom:14px}
.card-footer{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}
.price-range{font-size:.9rem;font-weight:700;color:var(--green-dark)}
.btn-card{background:var(--orange);color:var(--white);padding:8px 16px;border-radius:6px;font-size:.82rem;font-weight:700;transition:var(--t);white-space:nowrap}
.btn-card:hover{background:var(--orange-dark);color:var(--white)}

/* ---- PRODUCT PAGE ---- */
.breadcrumb{padding:12px 0;font-size:.82rem;color:var(--text-light);border-bottom:1px solid var(--border)}
.breadcrumb a{color:var(--green-mid)}
.breadcrumb span{margin:0 5px}
.product-page{padding:28px 0 52px}
.product-hero-img{width:100%;border-radius:var(--r-md);box-shadow:var(--shadow-md);margin-bottom:20px}
.product-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:24px}
.product-gallery img{width:100%;height:90px;object-fit:cover;border-radius:var(--r-sm);cursor:pointer;transition:var(--t);border:2px solid transparent}
.product-gallery img:hover,.product-gallery img.active{border-color:var(--green-mid)}
.product-info h1{font-family:'Playfair Display',serif;font-size:clamp(1.4rem,4vw,2rem);color:var(--green-dark);margin-bottom:10px;line-height:1.3}
.product-rating{display:flex;align-items:center;gap:8px;margin-bottom:12px;flex-wrap:wrap}
.stars{color:#f4a623;font-size:1rem;letter-spacing:1px}
.rating-text{font-size:.85rem;color:var(--text-light)}
.product-price{font-size:1.3rem;font-weight:700;color:var(--green-dark);margin-bottom:18px}
.product-price span{font-size:.9rem;font-weight:400;color:var(--text-light)}
.product-overview{font-size:.95rem;color:var(--text-mid);line-height:1.8;margin-bottom:20px}
.features-list{margin-bottom:20px}
.features-list h3{font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--text-dark);margin-bottom:10px}
.features-list li{display:flex;align-items:flex-start;gap:8px;padding:6px 0;font-size:.9rem;color:var(--text-mid);border-bottom:1px solid var(--border)}
.features-list li:last-child{border-bottom:none}
.feat-icon{color:var(--green-mid);flex-shrink:0;margin-top:2px}
.pros-cons{display:grid;grid-template-columns:1fr;gap:16px;margin:32px 0}
.pros-box,.cons-box{padding:20px;border-radius:var(--r-md)}
.pros-box{background:#f0faf4;border:1px solid #b8e6c8}
.cons-box{background:#fff8f0;border:1px solid #f4d0a8}
.pros-box h3{color:var(--green-dark);margin-bottom:12px;font-size:.95rem}
.cons-box h3{color:#c0392b;margin-bottom:12px;font-size:.95rem}
.pros-box li,.cons-box li{display:flex;align-items:flex-start;gap:8px;padding:5px 0;font-size:.9rem;color:var(--text-mid);line-height:1.5}
.review-box{background:var(--off-white);padding:28px 20px;border-radius:var(--r-md);margin:28px 0}
.review-box h2{font-family:'Playfair Display',serif;font-size:1.3rem;color:var(--green-dark);margin-bottom:16px}
.review-box p{font-size:.95rem;color:var(--text-mid);line-height:1.8;margin-bottom:14px}
.best-for{background:var(--green-pale);border-left:4px solid var(--green-mid);padding:16px 18px;border-radius:0 var(--r-sm) var(--r-sm) 0;margin:24px 0}
.best-for h4{color:var(--green-dark);font-size:.78rem;text-transform:uppercase;letter-spacing:.5px;margin-bottom:6px}
.best-for p{color:var(--text-mid);font-size:.9rem;line-height:1.6;margin:0}
.product-video{margin:24px 0;border-radius:var(--r-md);overflow:hidden;box-shadow:var(--shadow-sm)}
.product-video video{width:100%;display:block;max-height:320px;object-fit:cover}

/* ---- DISCLOSURE ---- */
.disclosure{background:var(--earth-cream);border:1px solid var(--earth-tan);border-radius:var(--r-sm);padding:12px 16px;font-size:.82rem;color:var(--text-light);text-align:center;margin:20px 0}

/* ---- WHY SECTION ---- */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:28px}
.why-card{text-align:center;padding:22px 14px;background:var(--white);border-radius:var(--r-md);box-shadow:var(--shadow-sm);border:1px solid var(--border);transition:var(--t)}
.why-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.why-icon{width:52px;height:52px;background:var(--green-pale);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 12px;font-size:1.4rem}
.why-card h3{font-size:.9rem;font-weight:700;color:var(--text-dark);margin-bottom:6px}
.why-card p{font-size:.82rem;color:var(--text-light);line-height:1.6}

/* ---- RELATED PRODUCTS ---- */
.related-section{padding:40px 0;background:var(--off-white)}
.related-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:20px}
.related-card{background:var(--white);border-radius:var(--r-sm);overflow:hidden;border:1px solid var(--border);transition:var(--t)}
.related-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.related-card img{width:100%;height:110px;object-fit:cover}
.related-card-body{padding:12px}
.related-card h4{font-size:.85rem;font-weight:600;color:var(--text-dark);margin-bottom:5px;line-height:1.4}
.related-card a{font-size:.8rem;color:var(--green-mid);font-weight:600}

/* ---- BLOG ---- */
.blog-grid{display:grid;grid-template-columns:1fr;gap:20px;margin-top:28px}
.blog-card{background:var(--white);border-radius:var(--r-md);overflow:hidden;box-shadow:var(--shadow-sm);border:1px solid var(--border);transition:var(--t)}
.blog-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.blog-card img{width:100%;height:180px;object-fit:cover}
.blog-card-body{padding:20px}
.blog-meta{font-size:.78rem;color:var(--text-light);margin-bottom:8px}
.blog-card h3{font-family:'Playfair Display',serif;font-size:1.05rem;color:var(--text-dark);margin-bottom:8px;line-height:1.4}
.blog-card p{font-size:.88rem;color:var(--text-light);line-height:1.6;margin-bottom:14px}
.read-more{color:var(--green-mid);font-weight:700;font-size:.88rem}

/* ---- FOOTER ---- */
.site-footer{background:var(--green-dark);color:rgba(255,255,255,.85);padding:44px 0 16px}
.footer-grid{display:grid;grid-template-columns:1fr;gap:28px;margin-bottom:32px}
.footer-brand p{font-size:.88rem;line-height:1.7;opacity:.8;margin-top:12px}
.footer-brand .logo-link{color:var(--white)}
.footer-col h4{color:var(--white);font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;margin-bottom:14px}
.footer-col li{margin-bottom:8px}
.footer-col a{color:rgba(255,255,255,.7);font-size:.88rem;transition:var(--t)}
.footer-col a:hover{color:var(--white)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.15);padding-top:16px;font-size:.78rem;opacity:.65;text-align:center}

/* ---- BADGES ---- */
.badge-eco{display:inline-flex;align-items:center;gap:5px;background:var(--green-pale);color:var(--green-dark);padding:4px 10px;border-radius:16px;font-size:.78rem;font-weight:700}
.divider{border:none;border-top:1px solid var(--border);margin:32px 0}

/* ============================================
   TABLET (≥600px)
   ============================================ */
@media(min-width:600px){
  .hero{padding:70px 24px 60px}
  .hero-btns{flex-direction:row;justify-content:center}
  .btn-white,.btn-outline{width:auto}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .pros-cons{grid-template-columns:1fr 1fr}
  .product-gallery{grid-template-columns:repeat(4,1fr)}
  .product-gallery img{height:80px}
  .why-grid{grid-template-columns:repeat(4,1fr)}
  .related-grid{grid-template-columns:repeat(3,1fr)}
  .btn-amazon{width:auto}
}

/* ============================================
   DESKTOP (≥900px)
   ============================================ */
@media(min-width:900px){
  .menu-toggle{display:none}
  .main-nav{display:flex;flex-direction:row;position:static;background:none;padding:0;border:none;box-shadow:none;gap:4px}
  .nav-shop{margin-top:0}
  .header-inner{height:70px}
  .logo-link{font-size:1.3rem}
  .logo-link img{width:44px;height:44px}
  .hero{padding:90px 24px 80px}
  .products-grid{grid-template-columns:repeat(3,1fr)}
  .product-page-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
  .product-image-col{position:sticky;top:90px}
  .product-hero-img{margin-bottom:12px}
  .blog-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:2fr 1fr 1fr}
  .footer-bottom{text-align:left;display:flex;justify-content:space-between}
  .related-grid{grid-template-columns:repeat(4,1fr)}
}

@media(min-width:1200px){
  .products-grid{grid-template-columns:repeat(4,1fr)}
}

/* ── Recommendations Section ───────────────────────────────────────────── */
.recommendations-section {
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}
.rec-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin: 0 0 1.5rem;
  font-weight: 700;
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.rec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.rec-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rec-card-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(44,94,59,0.92);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
  max-width: 140px;
}
.rec-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.rec-card-body { padding: 0.9rem; display: flex; flex-direction: column; flex: 1; gap: 0.35rem; }
.rec-card-category { font-size: 0.68rem; font-weight: 700; color: var(--green-mid); text-transform: uppercase; letter-spacing: 0.06em; }
.rec-card-name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin: 0; line-height: 1.3; }
.rec-card-price { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.rec-card-btn {
  display: block;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 0.7rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  margin-top: auto;
  transition: var(--t);
}
.rec-card-btn:hover { background: var(--orange-dark); color: var(--white); }
.rec-card-review {
  display: block;
  text-align: center;
  color: var(--green-mid);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.25rem 0;
}
.rec-card-review:hover { text-decoration: underline; }

/* ── Dashboard CSS variables bridge ──────────────────────────────────────── */
:root {
  --primary: var(--green-dark);
  --primary-light: var(--green-mid);
  --accent: var(--orange);
  --bg: var(--off-white);
  --surface: var(--white);
  --text: var(--text-dark);
  --text-muted: var(--text-light);
  --radius: var(--r-md);
  --earth3: var(--earth-cream);
}

/* ============================================
   LEAD MAGNET — Hero Opt-in Box
   ============================================ */
.hero-lead-magnet {
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.38);
  border-radius: var(--r-md);
  padding: 20px 22px;
  margin: 28px auto 0;
  max-width: 520px;
  text-align: left;
}
.hero-lead-magnet .lm-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.75);
  margin-bottom: 6px;
}
.hero-lead-magnet h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.35;
}
.lm-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lm-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: none;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  color: var(--text-dark);
  background: var(--white);
}
.lm-form input[type="email"]::placeholder { color: var(--text-light); }
.btn-lm {
  background: var(--orange);
  color: var(--white);
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: var(--t);
  text-align: center;
  font-family: inherit;
}
.btn-lm:hover { background: var(--orange-dark); transform: translateY(-1px); }
.lm-privacy {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  text-align: center;
}
.lm-success {
  display: none;
  background: rgba(255,255,255,.2);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  text-align: center;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
}
@media(min-width:600px){
  .lm-form { flex-direction: row; }
  .lm-form input[type="email"] { flex: 1; }
  .btn-lm { white-space: nowrap; }
}

/* ============================================
   STICKY BOTTOM BAR — Lead Magnet
   ============================================ */
.sticky-lead-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.sticky-lead-bar.visible { transform: translateY(0); }
.sticky-lead-bar.hidden { display: none; }
.slb-text {
  font-size: .88rem;
  font-weight: 600;
  flex: 1;
  min-width: 180px;
  text-align: center;
}
.slb-text span { color: var(--green-light); }
.slb-form {
  display: flex;
  gap: 8px;
  flex: 2;
  min-width: 260px;
  max-width: 480px;
}
.slb-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  border: none;
  font-size: .88rem;
  font-family: inherit;
  outline: none;
  color: var(--text-dark);
}
.btn-slb {
  background: var(--orange);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .85rem;
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  font-family: inherit;
}
.btn-slb:hover { background: var(--orange-dark); }
.slb-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
}
.slb-close:hover { color: var(--white); }
@media(min-width:900px){
  .sticky-lead-bar { flex-wrap: nowrap; justify-content: center; }
  .slb-text { text-align: right; flex: 0 0 auto; }
}

/* ============================================
   BENEFIT TILES — Product Pages
   ============================================ */
.benefit-tiles-section {
  background: var(--green-pale);
  border-radius: var(--r-md);
  padding: 22px 18px;
  margin: 24px 0;
}
.benefit-tiles-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.4;
}
.benefit-tiles-img {
  width: 100%;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   TRUST CTA — Secondary Amazon CTA on product pages
   ============================================ */
.trust-cta-block {
  background: var(--earth-cream);
  border: 1px solid var(--earth-tan);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin: 20px 0;
  text-align: center;
}
.trust-cta-block .btn-amazon {
  margin-bottom: 10px;
}
.trust-cta-block .trust-note {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.5;
}
.trust-cta-block .trust-note strong { color: var(--green-dark); }

/* ============================================
   REVIEW COUNT BADGE on product cards
   ============================================ */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.review-badge .stars-mini { color: #f4a623; font-size: .78rem; }
