/*
Theme Name: Nutrididi
Theme URI: https://nutrididi.com
Author: Nutrididi Team
Author URI: https://nutrididi.com
Description: Premium D2C Wellness Brand Theme for Nutrididi - Nourish Your Body Naturally
Version: 2.1.8
License: GNU General Public License v2 or later
Text Domain: nutrididi
Tags: woocommerce, ecommerce, wellness, premium, d2c
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Brand Colors */
  --color-primary:       #2D6A4F;
  --color-primary-dark:  #1B4332;
  --color-primary-light: #52B788;
  --color-accent:        #95D5B2;
  --color-accent-soft:   #D8F3DC;
  --color-gold:          #C9A84C;
  --color-gold-light:    #F5E6C2;

  /* Neutrals */
  --color-cream:         #FFFBF5;
  --color-beige:         #F5EFE6;
  --color-sand:          #E8DDD0;
  --color-white:         #FFFFFF;
  --color-light-grey:    #F8F9FA;
  --color-mid-grey:      #DEE2E6;
  --color-text:          #1A1A1A;
  --color-text-muted:    #6C757D;
  --color-text-light:    #9CA3AF;

  /* Typography */
  --font-serif:   'Playfair Display', 'Georgia', serif;
  --font-sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1.25rem;
  --radius-xl:   2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.10), 0 4px 14px rgba(0,0,0,0.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-green: 0 8px 32px rgba(45,106,79,0.18);

  /* Transitions */
  --transition-fast:   0.15s cubic-bezier(0.4,0,0.2,1);
  --transition-base:   0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow:   0.4s cubic-bezier(0.4,0,0.2,1);
  --transition-spring: 0.35s cubic-bezier(0.34,1.56,0.64,1);

  /* Layout */
  --container-max: 1280px;
  --container-sm:  720px;
  --header-height: 72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* BAAD (theek) */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;   /* ← yahan move kiya */
}
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden; /* some mobile browsers only fully suppress the
                          horizontal scrollbar when both html and body
                          have this set */
  max-width: 100vw;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-serif { font-family: var(--font-serif); }
.text-display { font-family: var(--font-display); }
.text-muted { color: var(--color-text-muted); }
.text-green { color: var(--color-primary); }
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(45,106,79,0.3);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), #B8962E);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(45,106,79,0.3); }
  50% { box-shadow: 0 4px 35px rgba(45,106,79,0.55); }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 0.6rem 0;
  overflow: hidden;
}

.announcement-bar .marquee-wrapper {
  display: flex;
  gap: 4rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.announcement-bar .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.announcement-bar .marquee-separator { color: var(--color-accent); }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,251,245,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45,106,79,0.08);
  transition: box-shadow var(--transition-base), background var(--transition-base);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: rgba(255,251,245,0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-xl);
}

/* Logo */
.site-logo.custom-logo-link .custom-logo { max-height: 55px; width: auto; display: block; }
.site-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.site-logo .logo-mark {
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 4px 12px rgba(45,106,79,0.3);
}
.site-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.site-logo .logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.site-logo .logo-tagline {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.main-nav ul a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}
.main-nav ul a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition-base);
}
.main-nav ul a:hover { color: var(--color-primary); }
.main-nav ul a:hover::after { width: 100%; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: var(--space-md); }
.header-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
  transition: all var(--transition-fast);
  position: relative;
  background: transparent;
  font-size: 1.1rem;
}
.header-icon-btn:hover { background: var(--color-accent-soft); color: var(--color-primary); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 10px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-primary-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: calc(100vh - var(--header-height) - 40px);
  background: linear-gradient(135deg, var(--color-cream) 0%, #E8F5EE 40%, var(--color-accent-soft) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(82,183,136,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-cream));
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
}

.hero-content { padding-right: var(--space-xl); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(45,106,79,0.1);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(45,106,79,0.2);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
}

.hero-title .highlight {
  color: var(--color-primary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: rgba(82,183,136,0.3);
  border-radius: 3px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 480px;
  line-height: 1.7;
}

.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #c0392b;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.hero-urgency .dot {
  width: 8px; height: 8px;
  background: #c0392b;
  border-radius: 50%;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.35rem 0.75rem;
  background: white;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-mid-grey);
  box-shadow: var(--shadow-sm);
}

.trust-badge .icon {
  font-size: 0.9rem;
  color: var(--color-primary);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #C8E6C9, #A5D6A7, #81C784);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.hero-image-placeholder .product-icon { font-size: 6rem; }
.hero-image-placeholder h3 { font-family: var(--font-serif); font-size: 1.5rem; }
.hero-image-placeholder p { font-size: 0.9rem; opacity: 0.8; }

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 0.5rem 0.95rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  white-space: nowrap;
  z-index: 11;
  transition: transform 0.3s ease;
}

.hero-floating-card .icon {
  font-size: 1rem;
}

.hero-floating-card.card-1 { top: 12%; left: -8%; animation: float1 4s ease-in-out infinite; }
.hero-floating-card.card-2 { bottom: 22%; right: -8%; animation: float2 4.5s ease-in-out infinite; }
.hero-floating-card.card-3 { top: 48%; left: -10%; animation: float3 3.8s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes float3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.why-choose { background: var(--color-white); }

.section-header { text-align: center; margin-bottom: var(--space-3xl); }
.section-tag {
  display: inline-block;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
  padding: 0.3rem 0.9rem;
  background: var(--color-accent-soft);
  border-radius: var(--radius-full);
}
.section-title { color: var(--color-primary-dark); margin-bottom: var(--space-md); }
.section-subtitle { color: var(--color-text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-cream);
  border: 1px solid rgba(45,106,79,0.08);
  transition: all var(--transition-spring);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45,106,79,0.2);
  background: white;
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { background: var(--color-light-grey); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.product-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-spring);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card-image {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--color-accent-soft), var(--color-beige));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image:hover img { transform: scale(1.05); }
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.product-image-placeholder {
  font-size: 5rem;
  text-align: center;
}

.product-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-wishlist-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.product-wishlist-btn:hover { color: #e74c3c; transform: scale(1.1); }

.product-card-body { padding: var(--space-lg); }

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 0.1em; }
.rating-count { font-size: 0.78rem; color: var(--color-text-muted); }

.product-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.4rem;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}
.product-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  background: var(--color-accent-soft);
  color: var(--color-primary);
  border-radius: var(--radius-full);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}
.price-current {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--color-primary-dark);
}
.price-original {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
.price-off {
  font-size: 0.78rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* ============================================================
   MORINGA INFOGRAPHIC SECTION
   ============================================================ */
.moringa-section {
  background: linear-gradient(135deg, var(--color-cream), var(--color-accent-soft));
}

.moringa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.moringa-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45,106,79,0.06);
  transition: all var(--transition-spring);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45,106,79,0.15);
}

.stat-icon { font-size: 2rem; margin-bottom: var(--space-sm); }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.moringa-content .section-header { text-align: left; }
.moringa-content .section-header .section-subtitle { margin: 0; }

.nutrient-list { margin-top: var(--space-xl); }
.nutrient-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(45,106,79,0.08);
}
.nutrient-item:last-child { border-bottom: none; }
.nutrient-bar-wrapper { flex: 1; }
.nutrient-label { font-size: 0.85rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.3rem; }
.nutrient-bar {
  height: 6px;
  background: var(--color-accent-soft);
  border-radius: 3px;
  overflow: hidden;
}
.nutrient-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
  border-radius: 3px;
  transition: width 1s ease;
}
.nutrient-value { font-size: 0.8rem; font-weight: 700; color: var(--color-primary); min-width: 50px; text-align: right; }

/* ============================================================
   INGREDIENTS SCIENCE
   ============================================================ */
.ingredients-section { background: var(--color-white); }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.ingredient-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid rgba(45,106,79,0.08);
  transition: all var(--transition-spring);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  background: white;
  box-shadow: var(--shadow-lg);
  border-color: rgba(45,106,79,0.15);
}

.ingredient-icon { font-size: 3rem; margin-bottom: var(--space-md); }
.ingredient-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}
.ingredient-hindi {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.ingredient-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.ingredient-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.ingredient-benefit-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  background: var(--color-accent-soft);
  color: var(--color-primary);
  border-radius: var(--radius-full);
}

/* ============================================================
   WAYS TO ENJOY
   ============================================================ */
.ways-section { background: var(--color-light-grey); }

.ways-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.way-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-spring);
  cursor: default;
}

.way-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-md);
  background: var(--color-accent-soft);
}

.way-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.way-name { font-size: 0.82rem; font-weight: 600; color: var(--color-text); }

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-section {
  background: linear-gradient(180deg, var(--color-accent-soft) 0%, var(--color-cream) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
  transition: all var(--transition-spring);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45,106,79,0.15);
}

.benefit-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon-wrap {
  background: var(--color-primary);
  transform: scale(1.05) rotate(3deg);
}

.benefit-card:hover .benefit-icon-wrap .icon { filter: brightness(0) invert(1); }

.benefit-content h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 0.3rem; }
.benefit-content p { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.5; }

/* ============================================================
   HOW TO USE
   ============================================================ */
.how-to-use { background: var(--color-white); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 52px; left: calc(16.5% + 26px); right: calc(16.5% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  opacity: 0.3;
}

.step-card { text-align: center; }

.step-number-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-green);
}

.step-icon { font-size: 2rem; margin-bottom: var(--space-md); }
.step-title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }

.step-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.step-option {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  background: var(--color-accent-soft);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: 500;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--color-light-grey); }

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: white;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.rating-big {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--color-primary-dark);
  line-height: 1;
}

.rating-stars-big { color: #F59E0B; font-size: 1.3rem; }
.rating-total { font-size: 0.82rem; color: var(--color-text-muted); }

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

.review-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
  transition: all var(--transition-spring);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: var(--space-md); }
.reviewer-info { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.92rem; }
.reviewer-location { font-size: 0.75rem; color: var(--color-text-muted); }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

.review-rating { color: #F59E0B; font-size: 0.9rem; margin-bottom: 0.5rem; }
.review-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; }
.review-text { font-size: 0.84rem; color: var(--color-text-muted); line-height: 1.6; }

/* ============================================================
   PROMISE SECTION
   ============================================================ */
.promise-section {
  background: var(--color-cream);
  border-top: 1px solid rgba(45,106,79,0.08);
  border-bottom: 1px solid rgba(45,106,79,0.08);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.promise-item .icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
.promise-item h5 { font-size: 0.82rem; font-weight: 700; color: var(--color-primary-dark); font-family: var(--font-sans); }
.promise-item p { font-size: 0.72rem; color: var(--color-text-muted); line-height: 1.4; }

/* ============================================================
   FAQ PREVIEW
   ============================================================ */
.faq-section { background: var(--color-white); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(45,106,79,0.1);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.open { border-color: var(--color-primary); box-shadow: var(--shadow-green); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  background: white;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color var(--transition-fast);
  gap: var(--space-md);
}

.faq-item.open .faq-question { color: var(--color-primary); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
  color: var(--color-primary);
}
.faq-item.open .faq-icon { background: var(--color-primary); color: white; transform: rotate(45deg); }

.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

.faq-cta { text-align: center; margin-top: var(--space-2xl); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary) 50%, #40916C);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.final-cta .section-tag { background: rgba(255,255,255,0.15); color: white; }
.final-cta h2 { color: white; font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: var(--space-lg); }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 500px; margin: 0 auto var(--space-2xl); }

.final-cta-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-2xl); }
.final-cta-badges { display: flex; justify-content: center; gap: var(--space-xl); flex-wrap: wrap; }
.final-badge { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.8);
  padding-top: var(--space-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .site-logo .logo-name { color: white; }
.footer-brand .site-logo .logo-tagline { color: rgba(255,255,255,0.5); }

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: var(--space-lg) 0;
}

.footer-social { display: flex; gap: var(--space-sm); }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.social-link:hover { background: var(--color-primary-light); color: white; transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: var(--space-sm); }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--color-accent); }

.footer-newsletter h4 { font-family: var(--font-serif); font-size: 1rem; color: white; margin-bottom: 0.5rem; }
.footer-newsletter p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: var(--space-md); }

.newsletter-form { display: flex; gap: var(--space-sm); }
.newsletter-input {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-payment-icons { display: flex; align-items: center; gap: var(--space-sm); }
.payment-icon {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.fssai-info { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 0.3rem; }

/* ============================================================
   STICKY ELEMENTS
   ============================================================ */
/* Sticky WhatsApp */
.sticky-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: all var(--transition-spring);
  animation: whatsappBounce 3s ease-in-out infinite;
}

.sticky-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
  animation: none;
}

@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Sticky Mobile Buy Button */
.sticky-buy-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 890;
  padding: var(--space-md);
  background: white;
  border-top: 1px solid var(--color-mid-grey);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

/* ============================================================
   MINI CART SLIDE
   ============================================================ */
.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.mini-cart-overlay.open { opacity: 1; visibility: visible; }

.mini-cart {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  height: 100%;
  background: white;
  z-index: 1101;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.mini-cart.open { transform: translateX(0); }

.mini-cart-header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--color-mid-grey);
  display: flex; align-items: center; justify-content: space-between;
}
.mini-cart-header h3 { font-size: 1.1rem; }
.mini-cart-close { font-size: 1.3rem; cursor: pointer; color: var(--color-text-muted); transition: color var(--transition-fast); }
.mini-cart-close:hover { color: var(--color-text); }

.mini-cart-body { flex: 1; overflow-y: auto; padding: var(--space-xl); }
.mini-cart-item { display: flex; gap: var(--space-md); margin-bottom: var(--space-lg); padding-bottom: var(--space-lg); border-bottom: 1px solid var(--color-light-grey); }
.mini-cart-item-img { width: 72px; height: 72px; border-radius: var(--radius-md); background: var(--color-light-grey); flex-shrink: 0; overflow: hidden; }
.mini-cart-item-details { flex: 1; }
.mini-cart-item-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; }
.mini-cart-item-price { color: var(--color-primary); font-weight: 700; }

.mini-cart-footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--color-mid-grey);
  background: var(--color-light-grey);
}
.mini-cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.05rem; margin-bottom: var(--space-lg); }
.mini-cart-total span { color: var(--color-primary); }

/* ============================================================
   NOTIFICATION POPUP
   ============================================================ */
.order-notification {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 800;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 300px;
  transform: translateX(-120%);
  transition: transform var(--transition-spring);
  border-left: 4px solid var(--color-primary);
}
.order-notification.show { transform: translateX(0); }
.order-notification .notif-icon { font-size: 1.5rem; }
.order-notification .notif-text { flex: 1; }
.order-notification .notif-text strong { display: block; font-size: 0.85rem; }
.order-notification .notif-text span { font-size: 0.75rem; color: var(--color-text-muted); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in { opacity: 0; transition: opacity 0.6s ease; }
.fade-in.visible { opacity: 1; }

.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.5s ease, transform 0.5s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger-children > * { transition-delay: calc(var(--stagger-delay, 0.08s) * var(--i, 0)); }

/* ============================================================
   SHOP / WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce-page .woocommerce { max-width: var(--container-max); margin: 0 auto; padding: var(--space-3xl) var(--space-xl); }
/* WooCommerce Shop Grid */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: var(--space-xl) !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce ul.products.columns-2 { grid-template-columns: repeat(2, 1fr) !important; }

/* Product Card */
.woocommerce ul.products li.product {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-mid-grey);
  transition: all var(--transition-spring);
  display: flex !important;
  flex-direction: column !important;
  position: relative;
}
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

/* Product Image */
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 500px !important;
  object-fit: contain !important;
  display: block !important;
  padding: 1.25rem !important;
  background: #F8F9FA !important;
  box-sizing: border-box !important;
}

/* Sale Badge */
.woocommerce ul.products li.product .onsale {
  background: var(--color-primary) !important;
  color: white !important;
  border-radius: 50px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 0.2rem 0.75rem !important;
  top: 1rem !important; left: 1rem !important;
}

/* Product Title & Price */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--color-primary-dark) !important;
  padding: 1rem 1rem 0.25rem !important;
  font-family: var(--font-serif) !important;
}
.woocommerce ul.products li.product .price {
  color: var(--color-primary) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 0 1rem 0.5rem !important;
  display: block !important;
}
.woocommerce ul.products li.product .price del {
  color: var(--color-text-muted) !important;
  font-weight: 400 !important;
  font-size: 0.85rem !important;
  margin-right: 0.4rem;
}
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }

/* Add to Cart Button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  background: var(--color-primary) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  padding: 0.65rem 1.25rem !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  border: none !important;
  margin: 0 1rem 1rem !important;
  display: block !important;
  text-align: center !important;
  width: calc(100% - 2rem) !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
  background: var(--color-primary-dark) !important;
}

/* Star Rating */
.woocommerce ul.products li.product .star-rating { padding: 0 1rem 0.25rem !important; }

/* Responsive: Tablet */
@media (max-width: 900px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: var(--space-md) !important; }
  .woocommerce ul.products li.product a img { height: 200px !important; padding: 0.75rem !important; }
}
.woocommerce button.button { background: var(--color-primary) !important; color: white !important; border-radius: var(--radius-full) !important; padding: 0.75rem 1.5rem !important; font-weight: 600 !important; transition: all var(--transition-base) !important; }
.woocommerce button.button:hover { background: var(--color-primary-dark) !important; }
.woocommerce a.button { background: var(--color-primary); color: white; border-radius: var(--radius-full); padding: 0.75rem 1.5rem; font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding-right: 0; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust-badges { justify-content: center; }
  .hero-image-wrapper { order: -1; }
  .hero-image-container { max-width: 380px; margin: 0 auto; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .moringa-inner { grid-template-columns: 1fr; }
  .moringa-content .section-header { text-align: center; }
  .moringa-content .section-header .section-subtitle { margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ways-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }

  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .whatsapp-btn .btn-text { display: none; }
  .sticky-buy-mobile { display: block; }
}

@media (max-width: 600px) {
  :root { --space-5xl: 4rem; --space-4xl: 3rem; }
  .container { padding: 0 var(--space-md); }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-cart { width: 100%; }
  .product-card-actions { grid-template-columns: 1fr; }
  .hero-floating-card { display: none; }
  .moringa-stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}
/* ============================================================
   HERO PRODUCT SLIDER (ORIGINAL RESTORED + ZOOMED IN PRODUCT)
   ============================================================ */
.hero-product-slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transform: translateX(40px);
  pointer-events: none;
  background: linear-gradient(145deg, #C8E6C9, #A5D6A7, #81C784);
}
.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-slide.exit-left {
  opacity: 0;
  transform: translateX(-40px);
}
.hero-slide.enter-right {
  transform: translateX(40px);
  opacity: 0;
}

.hero-slide-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

/* ZOOMED IN PRODUCT IMAGE (Large, Bold & Crisp) */
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 18%;
  transform: scale(1.35) translateY(-8px);
  filter: drop-shadow(0 15px 25px rgba(27, 67, 50, 0.25));
  transition: transform 0.6s ease;
}
.hero-slide.active .hero-slide-img {
  transform: scale(1.35) translateY(-8px);
}
.hero-slide:not(.active) .hero-slide-img {
  transform: scale(1.4) translateY(-8px);
}

.hero-slide-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide-emoji { font-size: 7rem; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15)); }

.hero-slide-info {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(to top, rgba(27,67,50,0.96) 0%, rgba(27,67,50,0.85) 60%, rgba(27,67,50,0.35) 88%, transparent 100%);
  padding: 1.75rem 1.5rem 1.35rem;
  color: white;
  text-align: center;
}
.hero-slide-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.hero-slide-price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.hero-slide-current {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: #95D5B2;
}
.hero-slide-orig {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
}
.hero-slide-tags {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero-slide-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: white;
  backdrop-filter: blur(4px);
}
.hero-slide-cta {
  background: white !important;
  color: var(--color-primary-dark) !important;
  font-size: 0.85rem !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2) !important;
  transition: all 0.2s !important;
}
.hero-slide-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.28) !important;
}

.hero-slider-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  color: var(--color-primary-dark);
  font-size: 1.4rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: all 0.2s;
  line-height: 1;
  padding: 0;
}
.hero-slider-btn:hover { background: white; transform: translateY(-50%) scale(1.1); }
.hero-slider-btn.prev { left: 12px; }
.hero-slider-btn.next { right: 12px; }

.hero-slider-dots {
  position: absolute;
  bottom: calc(36% + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.4rem;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.hero-dot.active {
  width: 22px;
  border-radius: 4px;
  background: white;
}

/* Floating Cards */
.hero-floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  white-space: nowrap;
  z-index: 10;
}

.hero-floating-card.card-1 { top: 8%; left: -12%; animation: float1 4s ease-in-out infinite; }
.hero-floating-card.card-2 { bottom: 18%; right: -8%; animation: float2 4.5s ease-in-out infinite; }
.hero-floating-card.card-3 { top: 45%; left: -15%; animation: float3 3.8s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 900px) {
  .hero-product-slider { max-width: 380px; margin: 0 auto; }
  .hero-slide-name { font-size: 1rem; }
  .hero-floating-card { display: none; }
}
@media (max-width: 600px) {
  .hero-product-slider { aspect-ratio: 3/4; }
  .hero-slider-btn { display: none; }
}
/* ============================================================
   FIX 3b: Related Products Image — Full Display Fix
   ============================================================ */
.woocommerce .related ul.products li.product .woocommerce-loop-product__link img,
.woocommerce .upsells ul.products li.product .woocommerce-loop-product__link img,
.related.products .woocommerce-loop-product__link img,
.related ul.products li.product img {
  width: 100% !important;
  height: 220px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  background: var(--color-cream, #FAF8F5);
  padding: 1rem;
}

.woocommerce .related ul.products li.product,
.woocommerce .upsells ul.products li.product {
  overflow: hidden;
  border-radius: 1rem !important;
  background: white;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

/* ============================================================
   FIX 7b: Cart Alignment Issues
   ============================================================ */
.nd-item-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: .25rem;
  min-width: 100px;
  text-align: right;
}

.nd-item-price-current {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark, #1B4332);
  line-height: 1.2;
}

.nd-item-price-original {
  font-size: .8rem;
  color: var(--color-text-muted, #6C757D);
  text-decoration: line-through;
}

.nd-item-savings {
  font-size: .72rem;
  color: #16a34a;
  font-weight: 600;
  background: #f0fdf4;
  padding: .15rem .5rem;
  border-radius: 50px;
}

/* Cart totals alignment */
.nd-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--color-mid-grey, #DEE2E6);
}

.nd-grand-total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary-dark, #1B4332);
  border-bottom: none;
  padding-top: .75rem;
}

/* ============================================================
   FIX 2: Enhanced product image hover (Amazon-style zoom)
   ============================================================ */
.product-card-image {
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  transition: transform 0.4s ease;
  transform-origin: center center;
  will-change: transform;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

/* WooCommerce shop product image hover fix */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block;
  overflow: hidden;
  border-radius: .75rem .75rem 0 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link img {
  transition: transform 0.4s ease !important;
  transform-origin: center center;
  width: 100% !important;
  height: 220px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: var(--color-cream, #FAF8F5);
  padding: .75rem;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__link img {
  transform: scale(1.06) !important;
}

/* ============================================================
   FIX 7a: Free Gift Popup Styles
   ============================================================ */
#nd-free-gift-popup {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #1B4332, #2D6A4F);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 9999;
  max-width: 320px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#nd-free-gift-popup.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 600px) {
  #nd-free-gift-popup {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}

#nd-free-gift-popup .gift-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  align-self: center;
  animation: giftBounce 0.6s ease;
}

@keyframes giftBounce {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

#nd-free-gift-popup .gift-text {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 1.25rem;
}

#nd-free-gift-popup .gift-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

#nd-free-gift-popup .gift-text span {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

#nd-free-gift-popup .gift-close {
  position: absolute;
  top: .6rem;
  right: .6rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

#nd-free-gift-popup .gift-close:hover { color: white; }

/* ============================================================
   FIX 6b: Premium Hero Section Enhancements
   ============================================================ */

/* Hero section enhanced background */
.hero-section {
  background: linear-gradient(135deg, #0d3326 0%, #1B4332 40%, #2D6A4F 100%) !important;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(149, 213, 178, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* The base .hero-section::after (further up this file) fades to the old light
   cream background — on this dark hero that left a pale stripe across the
   bottom of the section. Kill it here since the hero now ends in a flat
   dark tone and the section below has its own background. */
.hero-section::after {
  display: none !important;
}

/* .btn-secondary is white-background/dark-text by default (used across the
   light-background parts of the site) — on the dark hero it was rendering as
   near-invisible dark-on-dark. Scoped override so it stays untouched
   everywhere else. */
.hero-section .btn-secondary {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}
.hero-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em;
  font-weight: 800 !important;
  color: #ffffff !important;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #95D5B2, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: .78rem !important;
  color: #ffffff !important;
}

.hero-urgency {
  background: rgba(201, 168, 76, 0.15) !important;
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  color: #f5e6c2 !important;
  font-weight: 600 !important;
}

/* Recipe/media grid hover effect */
.nd-grid-6 a:hover img {
  transform: scale(1.08);
}

.nd-grid-6 a:hover > div {
  opacity: 0.5;
}

/* ============================================================
   FIX 6: Media Section Subheading
   ============================================================ */
.nd-media-section-note {
  text-align: center;
  font-size: .8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* ============================================================
   Premium Product Page Enhancements (Fix 4)
   ============================================================ */
.nd-product-main-img img {
  transition: opacity 0.3s ease;
}

/* ============================================================
   NUTRIDIDI MASTER MOBILE RESPONSIVENESS OVERHAUL
   ============================================================ */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding-right: 0; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust-badges { justify-content: center; }
  .hero-image-wrapper { order: -1; }
  .hero-image-container { max-width: 380px; margin: 0 auto; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .moringa-inner { grid-template-columns: 1fr; }
  .moringa-content .section-header { text-align: center; }
  .moringa-content .section-header .section-subtitle { margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ways-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }

  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .whatsapp-btn .btn-text { display: none; }
  .sticky-buy-mobile { display: block; }
}

@media (max-width: 768px) {
  /* Header Mobile Optimization */
  .site-header {
    height: 64px !important;
  }
  .header-inner {
    gap: 0.5rem !important;
  }
  .site-logo.custom-logo-link .custom-logo,
  .site-logo img {
    max-height: 38px !important;
    width: auto !important;
  }
  .site-logo .logo-mark {
    width: 34px !important;
    height: 34px !important;
    font-size: 1.1rem !important;
  }
  .site-logo .logo-name {
    font-size: 1.2rem !important;
  }
  .site-logo .logo-tagline {
    font-size: 0.52rem !important;
  }
  /* Streamline header action icons to prevent row breaking on mobile */
  .hide-mobile,
  .header-actions .search-toggle,
  .header-actions .wishlist-btn,
  .header-actions .account-btn,
  .header-actions .header-icon-btn[aria-label="Wishlist"],
  .header-actions .header-icon-btn[aria-label="My Account"],
  .header-actions .header-icon-btn[aria-label="Search"] {
    display: none !important;
  }
  .header-actions {
    gap: 0.35rem !important;
  }
  .header-icon-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.95rem !important;
  }
  .whatsapp-btn {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25D366 !important;
    color: white !important;
  }
  .whatsapp-btn .btn-text {
    display: none !important;
  }
  .whatsapp-btn i {
    font-size: 1.1rem !important;
    margin: 0 !important;
  }
  .mobile-menu-toggle {
    width: 36px !important;
    height: 36px !important;
    margin-left: 0.2rem !important;
  }

  /* Containers and Layout */
  .container, .container-sm {
    padding: 0 1rem !important;
  }
  .section {
    padding: 3rem 0 !important;
  }
  .section-sm {
    padding: 2rem 0 !important;
  }

  /* Typography */
  h1 { font-size: clamp(1.75rem, 5.5vw, 2.3rem) !important; }
  h2 { font-size: clamp(1.4rem, 4.5vw, 1.85rem) !important; }
  h3 { font-size: clamp(1.15rem, 3.5vw, 1.35rem) !important; }

  /* Hero Section */
  .hero-section {
    padding: 2.5rem 0 3rem !important;
  }
  .hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.4rem) !important;
  }
  .hero-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.25rem !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.85rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  .hero-trust-badges {
    gap: 0.35rem 0.6rem !important;
    justify-content: center !important;
  }
  .trust-badge {
    font-size: 0.72rem !important;
    padding: 0.25rem 0.6rem !important;
  }
  .hero-product-slider {
    max-width: 340px !important;
    margin: 0 auto !important;
  }
  .hero-slide-info {
    padding: 1.25rem 1rem 1rem !important;
  }
  .hero-slide-name {
    font-size: 1rem !important;
  }
  .hero-slide-tags {
    margin-bottom: 0.6rem !important;
  }

  /* Single Product Layout Mobile */
  .woocommerce div.product {
    gap: 1.5rem !important;
    padding: 1rem 0 !important;
  }
  .woocommerce div.product .woocommerce-product-gallery,
  .woocommerce div.product .entry-summary {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    position: static !important;
  }
  .woocommerce div.product .product_title {
    font-size: 1.45rem !important;
  }
  .woocommerce div.product p.price {
    font-size: 1.5rem !important;
  }
  .nd-product-main-img img {
    padding: 0.75rem !important;
  }

  /* Sticky Elements Alignment */
  .sticky-whatsapp {
    bottom: 78px !important;
    right: 14px !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 1.35rem !important;
    z-index: 910 !important;
  }
  .back-to-top {
    bottom: 134px !important;
    right: 16px !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 0.8rem !important;
  }
  .sticky-buy-mobile {
    padding: 0.6rem 1rem !important;
    z-index: 900 !important;
  }
  .sticky-buy-mobile .btn {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.95rem !important;
  }
  #nd-sticky-product-cta {
    padding: 0.65rem 1rem !important;
    z-index: 905 !important;
  }
  #nd-sticky-product-cta .btn {
    padding: 0.65rem 1.25rem !important;
    font-size: 0.88rem !important;
  }
}

@media (max-width: 600px) {
  :root { --space-5xl: 3.5rem; --space-4xl: 2.5rem; }

  /* Product Grid: 2 Columns on Mobile */
  .woocommerce ul.products,
  .products-grid,
  .related.products ul.products {
  /* ── MOBILE PRODUCT CARDS OVERHAUL ── */
  .products-grid,
  .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .woocommerce ul.products li.product,
  .product-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    border-radius: 1rem !important;
    border: 1px solid #e5e7eb !important;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    overflow: hidden !important;
    min-height: auto !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }
  .product-card-image,
  .woocommerce ul.products li.product a:first-child {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: 140px !important;
    background: #faf8f5 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .woocommerce ul.products li.product a img,
  .product-card-image img {
    height: 100% !important;
    max-height: 130px !important;
    width: 100% !important;
    padding: 0.35rem !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }
  .product-badge,
  .product-card .product-badge,
  .woocommerce ul.products li.product .onsale {
    position: absolute !important;
    top: 0.4rem !important;
    left: 0.4rem !important;
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 50px !important;
    z-index: 2 !important;
    background: #2D6A4F !important;
    color: white !important;
  }
  .product-wishlist-btn {
    position: absolute !important;
    top: 0.4rem !important;
    right: 0.4rem !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 0.75rem !important;
    z-index: 2 !important;
  }
  .product-card-body {
    padding: 0.6rem 0.55rem 0.65rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
  }
  .product-rating {
    display: flex !important;
    align-items: center !important;
    gap: 0.2rem !important;
    margin-bottom: 0.2rem !important;
  }
  .stars {
    font-size: 0.72rem !important;
    letter-spacing: 0.05em !important;
    color: #F59E0B !important;
  }
  .rating-count {
    font-size: 0.65rem !important;
    color: #6C757D !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .product-card .product-name {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    padding: 0 !important;
    margin: 0 0 0.25rem 0 !important;
    line-height: 1.25 !important;
    color: #1B4332 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 2.2em !important;
  }
  .product-card .product-name a {
    color: inherit !important;
    text-decoration: none !important;
  }
  /* Hide long descriptions and redundant View Details on mobile */
  .product-desc,
  .product-card .product-desc,
  .hide-on-mobile,
  .product-card-actions .btn-secondary,
  .product-card-actions .btn-view-details {
    display: none !important;
  }
  .product-tags {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.2rem !important;
    margin-bottom: 0.35rem !important;
    overflow: hidden !important;
  }
  .product-tag {
    font-size: 0.62rem !important;
    padding: 0.15rem 0.4rem !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    background: #d8f3dc !important;
    color: #1B4332 !important;
    font-weight: 600 !important;
  }
  .woocommerce ul.products li.product .price,
  .product-card .product-price {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #1B4332 !important;
    padding: 0 !important;
    margin: auto 0 0.45rem 0 !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 0.3rem !important;
    flex-wrap: wrap !important;
  }
  .price-current {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #1B4332 !important;
  }
  .price-original,
  .woocommerce ul.products li.product .price del {
    font-size: 0.75rem !important;
    color: #888 !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
  }
  .price-off {
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    color: #16a34a !important;
    background: #dcfce7 !important;
    padding: 0.1rem 0.35rem !important;
    border-radius: 50px !important;
  }
  .product-card-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    margin-top: 0.2rem !important;
  }
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product a.button,
  .product-card .btn-primary,
  .product-card-actions .btn-add-to-cart {
    width: 100% !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    padding: 0.5rem 0.4rem !important;
    margin: 0 !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.3rem !important;
    white-space: nowrap !important;
    background: #2D6A4F !important;
    color: white !important;
    border: none !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  /* WooCommerce Shop Controls */
  .woocommerce .woocommerce-result-count {
    float: none !important;
    text-align: center !important;
    font-size: 0.82rem !important;
    margin: 0 0 0.5rem 0 !important;
    color: #6C757D !important;
  }
  .woocommerce .woocommerce-ordering {
    float: none !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto 1.5rem !important;
    text-align: center !important;
  }
  .woocommerce .woocommerce-ordering select {
    width: 100% !important;
    border-radius: 50px !important;
    padding: 0.5rem 1rem !important;
    border: 1.5px solid #dee2e6 !important;
    font-size: 0.85rem !important;
    background: white !important;
  }

  /* Grid Conversions */
  .features-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
  .benefits-grid { grid-template-columns: 1fr !important; gap: 1rem !important; width: 100% !important; }
  .benefit-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.25rem 1rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    border-radius: 1rem !important;
  }
  .benefit-icon-wrap {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    font-size: 1.3rem !important;
    flex-shrink: 0 !important;
    border-radius: 0.75rem !important;
  }
  .benefit-content {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }
  .benefit-content h4 {
    font-size: 1.05rem !important;
    margin-bottom: 0.35rem !important;
  }
  .benefit-content p {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin: 0 !important;
  }
  .ways-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.5rem !important; }
  .reviews-grid { grid-template-columns: 1fr !important; gap: 1rem !important; width: 100% !important; }
  .review-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.25rem 1rem !important;
    border-radius: 1rem !important;
  }
  .review-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
    margin-bottom: 0.75rem !important;
  }
  .reviewer-info {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    min-width: 0 !important;
  }
  .reviewer-avatar {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    font-size: 0.95rem !important;
  }
  .reviewer-name {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
  }
  .reviewer-location {
    font-size: 0.75rem !important;
  }
  .verified-badge {
    font-size: 0.72rem !important;
    padding: 0.2rem 0.55rem !important;
  }
  .review-rating {
    font-size: 1rem !important;
    margin-bottom: 0.4rem !important;
    color: #f59e0b !important;
  }
  .review-title {
    font-size: 0.98rem !important;
    margin-bottom: 0.35rem !important;
  }
  .review-text {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
  .ingredients-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .promise-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .mini-cart { width: 100% !important; }
  .hero-floating-card { display: none !important; }
  .moringa-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }

  /* Utility Grid overrides */
  .nd-grid-2, .nd-grid-3, .nd-grid-4, .nd-grid-5 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .nd-grid-6 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
  }

  /* Fix inline grid-template-columns 4fr on single product stats */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"],
  [style*="grid-template-columns:repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* Tables horizontal scroll */
  table {
    min-width: 460px;
  }
  div:has(> table) {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

@media (max-width: 400px) {
  .ways-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .features-grid { grid-template-columns: 1fr !important; }
  .moringa-stats { grid-template-columns: 1fr !important; }
  .nd-grid-6 { grid-template-columns: 1fr !important; }
}

/* ============================================================
   GLOBAL CART & CHECKOUT MOBILE SAFETY RULES
   ============================================================ */
@media (max-width: 768px) {
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce {
    padding: 0 !important;
    max-width: 100% !important;
  }
  .nd-cart-wrap,
  .nd-checkout-wrap {
    padding: 1rem 0.5rem 3rem !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .nd-cart-layout,
  .nd-checkout-layout {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 1.25rem !important;
  }
  .nd-cart-left {
    order: 1 !important;
  }
  .nd-cart-right {
    order: 2 !important;
  }
  .nd-checkout-right {
    order: -1 !important;
  }
  .nd-checkout-left {
    order: 2 !important;
  }
  /* Suppress any duplicate collaterals / cart totals */
  .nd-cart-wrap .cart_totals,
  .nd-cart-wrap .woocommerce-cart-collaterals,
  .nd-cart-wrap .wc-proceed-to-checkout,
  .nd-cart-trust-strip,
  .nd-checkout-progress,
  .nd-checkout-steps,
  .nd-checkout-security,
  .nd-checkout-trust-row,
  .nd-cart-security,
  .nd-cart-save-banner {
    display: none !important;
  }
  .nd-order-summary,
  .nd-checkout-summary,
  .nd-form-card {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
    border-radius: 1rem !important;
  }
  .nd-progress-bar {
    width: 100% !important;
    overflow-x: hidden !important;
    padding: 0.5rem 0 !important;
  }
  .nd-progress-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0.25rem !important;
    box-sizing: border-box !important;
  }
  .nd-step span {
    font-size: 0.55rem !important;
  }
  .nd-step-line {
    min-width: 8px !important;
    max-width: 35px !important;
    margin: 0 2px 1rem !important;
  }
  .nd-step-circle {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.72rem !important;
  }
  .nd-trust-strip {
    gap: 0.35rem 0.6rem !important;
    padding: 0.6rem 0.75rem !important;
    border-radius: 0.75rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .nd-trust-item {
    font-size: 0.68rem !important;
  }
  .nd-checkout-btn,
  #place_order,
  .nd-payment-card #place_order {
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem !important;
  }
  .nd-total-row {
    font-size: 0.85rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 0.4rem 0 !important;
  }
  .nd-total-row span:last-child {
    max-width: 65% !important;
    word-break: break-word !important;
    text-align: right !important;
  }
  .nd-totals-box ul#shipping_method {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
  }
  .nd-totals-box .woocommerce-shipping-destination {
    font-size: 0.75rem !important;
    margin: 0.2rem 0 !important;
  }
  .nd-totals-box .shipping-calculator-button {
    font-size: 0.75rem !important;
  }
}

/* ============================================================
   WOOCOMMERCE NOTICES & ALERTS (Clean icon & text layout)
   ============================================================ */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.75rem !important;
  padding: 0.9rem 1.25rem !important;
  border-radius: 1rem !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 1.5rem !important;
  list-style: none !important;
  clear: both !important;
  position: relative !important;
}

.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before {
  position: static !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  margin: 0 !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
  width: 24px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  font-weight: 900 !important;
}

.woocommerce-message {
  background: #f0fdf4 !important;
  color: #166534 !important;
  border: 1.5px solid #86efac !important;
}
.woocommerce-message::before {
  content: "✔" !important;
  color: #16a34a !important;
}

.woocommerce-info {
  background: #eff6ff !important;
  color: #1e40af !important;
  border: 1.5px solid #93c5fd !important;
}
.woocommerce-info::before {
  content: "ℹ" !important;
  color: #2563eb !important;
}

.woocommerce-error {
  background: #fef2f2 !important;
  color: #991b1b !important;
  border: 1.5px solid #fca5a5 !important;
}
.woocommerce-error::before {
  content: "⚠" !important;
  color: #dc2626 !important;
}

.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
  order: 2 !important;
  margin-left: auto !important;
  background: #2D6A4F !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 0.45rem 1.1rem !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(45,106,79,0.2) !important;
  transition: all 0.2s !important;
}

.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover {
  background: #1B4332 !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 600px) {
  .woocommerce-error,
  .woocommerce-message,
  .woocommerce-info {
    padding: 0.8rem 0.85rem !important;
    font-size: 0.82rem !important;
    gap: 0.5rem !important;
  }
  .woocommerce-message a.button,
  .woocommerce-info a.button,
  .woocommerce-error a.button {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.8rem !important;
  }
}

/* ============================================================
   PREMIUM SINGLE PRODUCT QUANTITY & ADD TO CART (DESK & MOBILE)
   ============================================================ */
.woocommerce div.product form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  margin: 1.5rem 0 !important;
  flex-wrap: wrap !important;
}

.woocommerce div.product form.cart .quantity,
.nd-quantity-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  background: #F8F9FA !important;
  border: 1.5px solid #DEE2E6 !important;
  border-radius: 50px !important;
  padding: 0.2rem 0.4rem !important;
  height: 52px !important;
  box-sizing: border-box !important;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04) !important;
  margin: 0 !important;
}

.nd-quantity-wrapper .nd-qty-minus-btn,
.nd-quantity-wrapper .nd-qty-plus-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: none !important;
  background: white !important;
  color: #1B4332 !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1) !important;
  transition: all 0.2s ease !important;
  line-height: 1 !important;
  padding: 0 !important;
  outline: none !important;
}

.nd-quantity-wrapper .nd-qty-minus-btn:hover,
.nd-quantity-wrapper .nd-qty-plus-btn:hover {
  background: #2D6A4F !important;
  color: white !important;
  transform: scale(1.06) !important;
}

.nd-quantity-wrapper input.qty {
  width: 44px !important;
  height: 100% !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #1B4332 !important;
  outline: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  -moz-appearance: textfield !important;
}
.nd-quantity-wrapper input.qty::-webkit-inner-spin-button,
.nd-quantity-wrapper input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  flex: 1 1 200px !important;
  height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  background: linear-gradient(135deg, #2D6A4F, #1B4332) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 0 2rem !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(45,106,79,0.3) !important;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1) !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  margin: 0 !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(45,106,79,0.4) !important;
  background: linear-gradient(135deg, #1B4332, #0d281e) !important;
}

@media (max-width: 600px) {
  .woocommerce div.product form.cart {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.6rem !important;
    width: 100% !important;
  }
  .woocommerce div.product form.cart .quantity,
  .nd-quantity-wrapper {
    height: 48px !important;
    flex: 0 0 auto !important;
    padding: 0.15rem 0.35rem !important;
  }
  .nd-quantity-wrapper .nd-qty-minus-btn,
  .nd-quantity-wrapper .nd-qty-plus-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }
  .nd-quantity-wrapper input.qty {
    width: 36px !important;
    font-size: 1rem !important;
  }
  .woocommerce div.product form.cart .single_add_to_cart_button {
    height: 48px !important;
    font-size: 0.95rem !important;
    padding: 0 1rem !important;
    flex: 1 1 auto !important;
  }
}

/* Hide sticky mobile bottom bar on Cart and Checkout pages */
.woocommerce-cart .sticky-buy-mobile,
.woocommerce-checkout .sticky-buy-mobile,
.woocommerce-cart #sticky-buy-mobile,
.woocommerce-checkout #sticky-buy-mobile {
  display: none !important;
}

