/* ============================================
   KOKILA NO PPD - Premium Funnel CSS
   Mobile-First | Clean Natural Botanical Theme
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors - Natural & Vibrant */
  --clr-bg-primary: #FAF8F5; /* Warm off-white */
  --clr-bg-secondary: #EBE5D9; /* Soft beige for cards/sections */
  
  --clr-text-primary: #2C352E; /* Deep forest green/black for readable text */
  --clr-text-secondary: #5C6B5F; /* Muted green/grey for paragraphs */
  
  --clr-brand: #6A8D73; /* Natural sage green */
  --clr-cta: #43A047; /* Vibrant, high-converting leaf green */
  --clr-cta-hover: #2E7D32; 
  
  --clr-border: rgba(44, 53, 46, 0.1);
  --clr-success: #4CAF50; /* Checkmarks */

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --fs-hero: clamp(2.5rem, 6vw, 4rem);
  --fs-h2: clamp(2rem, 5vw, 3rem);
  --fs-base: 16px;
  --fs-small: 0.85rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  /* Other */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --shadow-sm: 0 4px 6px rgba(44, 53, 46, 0.05);
  --shadow-md: 0 10px 20px rgba(44, 53, 46, 0.08);
  --shadow-btn: 0 8px 20px rgba(67, 160, 71, 0.3);
  --transition-fast: 0.2s;
  --duration-normal: 0.3s;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--fs-base);
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg-primary);
  color: var(--clr-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

/* Icons */
.icon {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
  flex-shrink: 0;
}
.icon-gold { color: #FBC02D; }
.icon-success { color: var(--clr-success); }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(67, 160, 71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(67, 160, 71, 0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Header ---------- */
.funnel-header {
  position: absolute;
  top: 0; left: 0; width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
}

.funnel-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--clr-text-primary);
}
.nav-logo span { font-weight: 400; }

.header-cta {
  background: rgba(44, 53, 46, 0.05);
  color: var(--clr-text-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  transition: all var(--duration-normal);
}
.header-cta:hover { 
  background: var(--clr-border);
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--clr-cta);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  font-weight: 800;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--duration-normal) var(--ease-smooth);
  box-shadow: var(--shadow-btn);
  width: 100%;
  max-width: 350px;
  white-space: nowrap;
  animation: pulseBtn 3s infinite;
  text-decoration: none;
}

.btn-primary .icon {
  width: 1.4em;
  height: 1.4em;
}

.btn-primary:hover {
  background: var(--clr-cta-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(67, 160, 71, 0.4);
  animation: none;
}

/* ---------- Hero Section (Clean Split Layout) ---------- */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: var(--space-xl);
  background: var(--clr-bg-primary);
  overflow: hidden;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-split {
    flex-direction: row-reverse;
    align-items: center;
  }
  .hero-image-col, .hero-content { flex: 1; }
}

.hero-image-col {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.hero-slideshow {
  width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(28, 35, 31, 0.1);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--clr-bg-secondary);
  transition: transform var(--duration-fast) var(--ease-smooth), box-shadow var(--duration-fast);
}

a:hover .hero-slideshow {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(28, 35, 31, 0.15);
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-content {
  text-align: center;
  animation: fadeInUp 1s var(--ease-smooth);
}

@media (min-width: 900px) {
  .hero-content { text-align: left; }
}

.hero h1, .hero p { color: var(--clr-text-primary); }

.hero p {
  color: var(--clr-text-secondary);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  margin-bottom: var(--space-lg);
  max-width: 650px;
  margin-left: auto; margin-right: auto;
}

@media (min-width: 900px) {
  .hero p { margin-left: 0; margin-right: 0; }
}

.brand-text { color: var(--clr-brand); }

.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
  color: var(--clr-text-primary);
}

.hero h1 {
  font-size: var(--fs-hero);
  margin-bottom: var(--space-md);
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  text-align: left;
  max-width: 400px;
  margin-left: auto; margin-right: auto;
}

@media (min-width: 900px) {
  .hero-bullet-list { margin-left: 0; margin-right: 0; }
}

.hero-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--clr-text-primary);
}

/* ---------- The Offer Section (Home Page) ---------- */
.offer-section {
  background: var(--clr-bg-secondary);
  padding: var(--space-xl) 0;
}

.offer-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.offer-header p {
  color: var(--clr-text-secondary);
  font-size: 1.1rem;
}

.products-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.offer-card {
  background: var(--clr-bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: transform var(--duration-normal), box-shadow var(--duration-normal);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Make the entire card clickable by expanding the image link's click area */
.offer-card .card-overlay-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media (min-width: 768px) {
  .offer-card {
    flex-direction: row;
    align-items: center;
    padding: var(--space-lg);
  }
}

.offer-badge {
  position: absolute;
  top: -15px; left: 20px;
  background: var(--clr-brand);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(106, 141, 115, 0.3);
}

.offer-image-wrap {
  flex: 0 0 35%;
  background: var(--clr-bg-secondary);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-image {
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.offer-info { flex: 1; }

.offer-subtitle {
  color: var(--clr-brand);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.offer-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.offer-desc {
  color: var(--clr-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.offer-bullet-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.offer-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  margin-bottom: 0.3rem;
}

.offer-bullet-list .icon {
  color: var(--clr-success);
  width: 1em; height: 1em;
}

.offer-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-block { display: flex; align-items: baseline; gap: 0.5rem; }

.price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-text-primary);
  line-height: 1;
}

.price-regular {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
}

/* ---------- PDP E-Commerce Layout ---------- */
.pdp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .pdp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pdp-main-image-wrap {
  background: var(--clr-bg-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdp-main-image {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.pdp-thumbnails {
  display: flex;
  gap: 1rem;
}

.pdp-thumb {
  flex: 1;
  background: var(--clr-bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.pdp-thumb:hover { border-color: var(--clr-text-secondary); }
.pdp-thumb.active { border-color: var(--clr-text-primary); }

.pdp-thumb img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.pdp-info {
  display: flex;
  flex-direction: column;
}

.pdp-reviews {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
  margin-bottom: 1rem;
}

.pdp-reviews .icon {
  width: 1rem; height: 1rem;
}

.pdp-subtitle {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--clr-text-primary);
}

.pdp-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--clr-text-primary);
}

.pdp-desc {
  font-size: 1rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pdp-benefits-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pdp-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.pdp-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  margin-bottom: 0.5rem;
}

.pdp-checkout-box {
  background: transparent;
  margin-bottom: 2rem;
}

.pdp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background: var(--clr-bg-primary);
}

.pdp-price-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.pdp-price-label::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 4px solid var(--clr-brand);
  background: #fff;
}

.pdp-price-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.pdp-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-direction: column;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.recommendations-grid > div {
  position: relative;
}

/* Make recommendation card fully clickable */
.recommendations-grid > div > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media (max-width: 767px) {
  .recommendations-grid > div > a {
    padding: 0.5rem !important;
  }
  .recommendations-grid > div > a > img {
    height: 100px !important;
  }
  .recommendations-grid > div > div {
    padding: 0.5rem !important;
  }
  .recommendations-grid > div > div h3 {
    font-size: 0.8rem !important;
    margin-bottom: 0.2rem !important;
  }
  .recommendations-grid > div > div > div {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }
  .recommendations-grid > div > div > div > span {
    font-size: 0.7rem !important;
    display: block;
    margin-left: 0 !important;
  }
  .recommendations-grid .btn-primary {
    padding: 0.4rem 0 !important;
    font-size: 0.55rem !important;
    letter-spacing: 0 !important;
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .recommendations-grid {
    gap: 1.5rem;
  }
}

@media (min-width: 500px) {
  .pdp-actions {
    flex-direction: row;
  }
}

.pdp-qty {
  flex: none;
  height: 50px;
  width: 120px;
}

.pdp-paypal-wrap {
  flex: 1;
  min-height: 50px;
  width: 100%;
}

.pdp-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--clr-border);
}

.pdp-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pdp-accordions {
  margin-top: 1rem;
}
.pdp-accordions .faq-item {
  border-bottom: 1px solid var(--clr-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
}
.pdp-accordions .faq-question {
  padding: 1.2rem 0;
  font-size: 0.95rem;
}

/* ---------- PAS / Problem Solution ---------- */
.pas-section {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-primary);
}

.pas-content { max-width: 800px; margin: 0 auto; }
.pas-content > p { margin-bottom: var(--space-lg); color: var(--clr-text-secondary); font-size: 1.1rem; }

.feature-list {
  display: grid;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  gap: 1rem;
  background: var(--clr-bg-secondary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.feature-item .icon {
  width: 2rem; height: 2rem;
  color: var(--clr-brand);
}

.feature-item h4 { margin-bottom: 0.5rem; font-family: var(--font-body); font-size: 1.1rem; }
.feature-item p { color: var(--clr-text-secondary); font-size: 0.95rem; }

/* ---------- Social Proof ---------- */
.proof-section {
  background: var(--clr-bg-secondary);
  padding: var(--space-xl) 0;
}

.testimonial-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonial-stack { grid-template-columns: 1fr 1fr; }
}

.testimonial-card {
  background: var(--clr-bg-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}

.stars { color: #FBC02D; margin-bottom: 1rem; display: flex; gap: 2px; }
.testimonial-card p { font-style: italic; color: var(--clr-text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-section {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-primary);
}

.faq-item {
  max-width: 700px;
  margin: 0 auto 1rem;
  background: var(--clr-bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}
.faq-answer p { color: var(--clr-text-secondary); font-size: 0.95rem; }

/* ---------- Quantity Selector ---------- */
.qty-selector {
  display: inline-flex;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--clr-bg-primary);
}

.qty-btn {
  background: none;
  border: none;
  outline: none;
  width: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-text-primary);
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}

.qty-btn:hover { background: var(--clr-bg-secondary); }

.qty-value {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
  background: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-text-primary);
}

/* ---------- Trust Badges ---------- */
.trust-badges-small {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-badges-small span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-secondary);
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 2rem 0;
  background: var(--clr-text-primary);
  color: var(--clr-bg-secondary);
  font-size: 0.9rem;
}

/* ---------- Success Overlay ---------- */
.checkout-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(28, 35, 31, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.checkout-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal {
  background: var(--clr-bg-primary);
  width: 90%;
  max-width: 450px;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.checkout-overlay.open .checkout-modal { transform: translateY(0); }

/* ---------- Sticky CTA (Mobile Home) ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: var(--clr-bg-primary);
  padding: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-smooth);
}

.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn-primary { width: 100%; max-width: 100%; margin: 0; }

/* ---------- Amazon Style Reviews ---------- */
.reviews-section {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--clr-border);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: 350px 1fr;
    gap: 4rem;
  }
}

.reviews-summary h2 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.stars-large {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.stars-large .icon { width: 1.5rem; height: 1.5rem; color: #FFA41C; } /* Amazon Gold */

.global-ratings {
  color: var(--clr-text-secondary);
  font-size: 0.95rem;
  margin: 0.5rem 0 1.5rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  cursor: pointer;
}
.rating-bar-row:hover {
  color: var(--clr-brand);
}

.rating-bar-row > span:first-child { flex: 0 0 45px; }
.rating-bar-row > span:last-child { flex: 0 0 35px; text-align: right; }

.rating-bar-track {
  flex: 1;
  height: 16px;
  background: var(--clr-bg-secondary);
  border-radius: 4px;
  border: 1px solid var(--clr-border);
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #FFA41C; 
}

.reviews-list h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.review-item {
  margin-bottom: 2.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.review-author .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--clr-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--clr-text-secondary);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.review-rating .stars .icon { width: 1rem; height: 1rem; color: #FFA41C; }

.review-title {
  font-weight: 700;
  font-size: 1rem;
}

.verified-purchase {
  color: #C45500; /* Amazon verified orange */
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.review-body {
  font-size: 0.95rem;
  color: var(--clr-text-primary);
  line-height: 1.5;
}

/* ============================================
   PREMIUM FOOTER — MOBILE-FIRST
   ============================================ */
.site-footer {
  background: #1a2119;
  color: #c8d5c9;
  padding: 2.5rem 0 0;
  margin-top: 3rem;
  font-size: 0.92rem;
}

/* ── Trust strip ── */
.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1.5rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 599px) {
  .footer-trust-row {
    /* Vertical stack perfectly aligned */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
    gap: 1rem;
    padding: 1.2rem 1rem;
  }
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #7a9e7e;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 599px) {
  .footer-trust-item { white-space: normal; font-size: 0.75rem; }
}

.footer-trust-item .icon {
  width: 1.2rem;
  height: 1.2rem;
  color: #6A8D73;
  flex-shrink: 0;
}

/* ── Main grid ── */
/* Mobile: 2-col grid — brand spans both cols, nav cols share space */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand always takes the full width row */
.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .footer-brand { grid-column: auto; }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
  }
}

/* ── Brand column ── */
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.footer-brand .footer-logo span { font-weight: 400; }

.nav-logo img,
.footer-logo img {
  transform: rotate(-90deg);
}

.footer-tagline {
  color: #8fa590;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 100%;
  font-size: 0.88rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(106, 141, 115, 0.15);
  border: 1px solid rgba(106, 141, 115, 0.3);
  color: #9dc4a2;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
}

/* ── Link columns ── */
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  color: #8fa590;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

/* ── Bottom bar ── */
.footer-bottom {
  padding: 1.2rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1.5rem 0;
  }
}

.footer-bottom p {
  color: #576658;
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bottom-links a {
  color: #576658;
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-bottom-links a:hover { color: #8fa590; }

/* ---------- Videos Section ---------- */
.video-section {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-primary);
}

.video-section h2 {
  margin-bottom: var(--space-lg);
}

.video-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-bg-primary);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  cursor: pointer;
}

.video-nav-btn.prev-btn { left: 0; }
.video-nav-btn.next-btn { right: 0; }

.video-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin: 0 auto;
}

.video-grid::-webkit-scrollbar {
  display: none;
}

@media (min-width: 600px) {
  .video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
  }
  .video-wrapper {
    flex: auto;
  }
}

@media (min-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .video-nav-btn {
    display: none;
  }
}

.video-wrapper {
  flex: 0 0 85%;
  scroll-snap-align: center;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
  position: relative;
  aspect-ratio: 9/16;
  cursor: pointer;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Custom Video Player UI ---------- */
.video-play-pause {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.video-play-pause .icon {
  width: 2rem;
  height: 2rem;
  margin-left: 5px; /* Offset to make play button visually centered */
}

.video-play-pause.paused {
  opacity: 1;
}

/* ---------- Hero Trust Strip ---------- */
.hero-trust-strip {
  background: var(--clr-bg-primary);
  padding: 1.5rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text-secondary);
}
@media (min-width: 768px) {
  .trust-strip-inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
  }
}

.trust-strip-inner span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-strip-inner .icon {
  color: var(--clr-brand);
  width: 1.2rem;
  height: 1.2rem;
}

/* ---------- Amazon-Style Reviews ---------- */
.amz-review-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 900px) {
  .amz-review-container {
    grid-template-columns: 300px 1fr;
  }
}
.amz-review-left {
  /* left summary */
}
.amz-review-right {
  /* right list */
}
.amz-rating-bars {
  margin: 1.5rem 0;
}
.amz-rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--clr-brand);
  cursor: pointer;
}
.amz-rating-bar-row:hover {
  text-decoration: underline;
}
.amz-bar-track {
  flex-grow: 1;
  height: 14px;
  background: #f0f2f2;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  overflow: hidden;
}
.amz-bar-fill {
  height: 100%;
  background: #de7921;
}
.amz-pct {
  width: 30px;
  text-align: right;
  color: #007185;
}

.amz-write-review {
  margin-top: 2rem;
  border-top: 1px solid #ddd;
  padding-top: 2rem;
}
.amz-write-review .btn-primary {
  width: 100%;
  background: var(--clr-cta);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(67, 160, 71, 0.2);
  margin-top: 1rem;
  padding: 0.8rem;
  font-weight: 700;
  transition: background 0.2s;
}
.amz-write-review .btn-primary:hover {
  background: var(--clr-cta-hover);
}

/* Image Gallery */
.amz-gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.amz-gallery-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
}
.amz-gallery-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.amz-gallery-thumb:hover {
  opacity: 0.9;
}

/* Review List */
.amz-review-item {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.amz-review-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.amz-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}
.amz-review-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.amz-review-title {
  font-weight: 700;
  font-size: 1rem;
}
.amz-review-date {
  font-size: 0.85rem;
  color: #565959;
  margin-bottom: 0.5rem;
}
.amz-review-verified {
  font-size: 0.75rem;
  color: #c45500;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.amz-review-photo {
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: block;
}
.amz-review-body {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #111;
}
