/* =================================
   A GRADE PRODUCTS - ORGANIC STORE
   Traditional Indian Aesthetic
   ================================= */

/* CSS Variables - Indian Ethnic Color Palette */
:root {
  /* Primary Colors - Earth Tones */
  --primary-green: #1f5d3a;
  --primary-green-dark: #0f3d2e;
  --primary-green-light: #2f7d4e;
  
  /* Accent Colors - Traditional */
  --accent-terracotta: #c85a3e;
  --accent-turmeric: #f4a51f;
  --accent-sandalwood: #d4a574;
  --accent-safflower: #e8744f;
  
  /* Neutral Colors */
  --cream: #f9faf7;
  --beige-light: #f5f2ed;
  --beige: #e8e3d8;
  --sand: #d4cfc4;
  --earth-brown: #6b4e3d;
  --text-dark: #2f2f2f;
  --text-medium: #555;
  
  /* Gradients */
  --gradient-green: linear-gradient(135deg, #0f3d2e 0%, #1f7a5a 100%);
  --gradient-warm: linear-gradient(135deg, #f1f7f2 0%, #e4f0e7 100%);
  --gradient-terracotta: linear-gradient(135deg, #c85a3e 0%, #e8744f 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 35px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  
  /* Typography */
  --font-display: 'Rozha One', serif;
  --font-heading: 'Martel', serif;
  --font-body: 'Hind', sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--primary-green-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
  line-height: 1.8;
  color: var(--text-medium);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Section Styling */
section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-tag {
  display: inline-block;
  background: var(--gradient-green);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
  font-size: 3rem;
  font-family: var(--font-display);
}

.section-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.highlight-price {
  color: var(--accent-terracotta);
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: var(--spacing-sm);
}

/* Navigation */
.navbar {
  background: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary-green);
  width: 100%;
}

.nav-container {
  max-width: 1600px; /* Increased to fit all items comfortably */
  margin: 0 auto;
  padding: 18px 3%; /* Reduced padding for more space */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* Added gap between logo and nav */
}
.sidebar-card {
  background: rgb(186, 219, 219);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  gap:30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.sidebar-card.highlight {
  background: var(--gradient-green);
  color: white;
}

.sidebar-icon {
  width: 60px;
  height: 60px;
  background: var(--beige-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.sidebar-card.highlight .sidebar-icon {
  background: rgba(255, 255, 255, 0.2);
}

.sidebar-icon i {
  font-size: 1.8rem;
  color: var(--accent-terracotta);
}

.sidebar-card.highlight .sidebar-icon i {
  color: var(--accent-turmeric);
}

.sidebar-card h4 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-green-dark);
}

.sidebar-card.highlight h4 {
  color: white;
}

.sidebar-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  color: var(--text-medium);
}

.sidebar-card.highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.sidebar-link:hover {
  color: var(--accent-terracotta);
  gap: 12px;
}

.sidebar-card.highlight .sidebar-link {
  color: var(--accent-turmeric);
}
/* Logo Styling */
.logo {
  display: flex;                 /* IMPORTANT */
  align-items: center;           /* Vertical alignment */
  gap: 12px;                     /* Space between logo & text */
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-green-dark);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span {
  color: var(--accent-terracotta);
  display: inline-block;
}
.logo a {
  display: flex;
  align-items: center;
  gap:12px;
  text-decoration: none;
}

.logo img {
  height: 50px;     /* Perfect navbar size */
  width: auto;
  display: block;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px; /* Reduced gap for better fit */
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap; /* Prevent wrapping */
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 14px; /* Slightly reduced padding */
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping */
  font-size: 0.95rem; /* Slightly smaller font */
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary-green);
  color: white;
}

.order-btn {
  background: var(--accent-terracotta) !important;
  color: white !important;
  padding: 9px 20px !important; /* Adjusted padding */
  border-radius: 50px !important;
}

.order-btn:hover {
  background: var(--accent-safflower) !important;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
  .nav-container {
    max-width: 100%;
    padding: 18px 2%;
  }
  
  .nav-links {
    gap: 6px;
  }
  
  .nav-links a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  
  .order-btn {
    padding: 8px 18px !important;
  }
}

@media (max-width: 1200px) {
  .logo {
    font-size: 1.3rem;
  }
  
  .nav-links {
    gap: 5px;
  }
  
  .nav-links a {
    padding: 7px 10px;
    font-size: 0.88rem;
  }
}

@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    gap: 10px;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .order-btn {
    padding: 12px 24px !important;
  }
}

@media (max-width: 640px) {
  .logo {
    font-size: 1.2rem;
  }
  
  .nav-container {
    padding: 15px 4%;
  }
}

/* Additional fix for very wide screens */
@media (min-width: 1600px) {
  .nav-container {
    padding: 20px 5%;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    padding: 8px 16px;
    font-size: 1rem;
  }
}
/* Hero Section */
.hero {
  background: var(--gradient-green);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, white 35px, white 37px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, white 35px, white 37px);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: var(--spacing-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
  font-size: 1.2rem;
  color: var(--accent-turmeric);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  color: white;
  margin-bottom: var(--spacing-sm);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero h2 {
  font-size: 2rem;
  color: var(--accent-turmeric);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.95);
}

.hero-price {
  background: white;
  color: var(--primary-green-dark);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  display: inline-block;
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-xl);
}

.price-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-medium);
  margin-bottom: 5px;
}

.price-amount {
  display: block;
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--accent-terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.price-note {
  display: block;
  font-size: 0.95rem;
  color: var(--text-medium);
}
.hero-price2 {
  background: white;
  color: var(--primary-green-dark);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  display: inline-block;
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-xl);
}

.price-label2 {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-medium);
  margin-bottom: 5px;
}

.price-amount2 {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--accent-terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.price-note2 {
  display: block;
  font-size: 0.95rem;
  color: var(--text-medium);
}
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-terracotta);
  color: white;
  box-shadow: 0 8px 20px rgba(200, 90, 62, 0.4);
}

.btn-primary:hover {
  background: var(--accent-safflower);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(200, 90, 62, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-green);
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 500;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--accent-turmeric);
}

/* Why Choose Section */
.why-choose {
  background: white;
  padding: var(--spacing-xl) 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: var(--spacing-lg);
}

.comparison-card {
  background: var(--beige-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  position: relative;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.comparison-card.our-way {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  border-color: var(--primary-green);
}

.comparison-card.regular-stores {
  background: linear-gradient(135deg, #fef3f0 0%, #fdf8f6 100%);
  border-color: var(--sand);
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: 2.5rem;
}

.our-way .card-icon {
  background: var(--primary-green);
  color: white;
}

.regular-stores .card-icon.cross {
  background: var(--accent-terracotta);
  color: white;
}

.comparison-card h3 {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-green-dark);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 12px 0;
  display: flex;
  align-items: start;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  margin-top: 4px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.our-way .feature-list i {
  color: var(--primary-green);
}

.feature-list.negative i {
  color: var(--accent-terracotta);
}

.feature-list strong {
  color: var(--primary-green-dark);
}

.trust-statement {
  background: var(--gradient-green);
  color: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  margin-top: var(--spacing-lg);
}

.trust-icon {
  font-size: 3rem;
  color: var(--accent-turmeric);
  margin-bottom: var(--spacing-md);
  opacity: 0.6;
}

.trust-statement p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: white;
  max-width: 900px;
  margin: 0 auto var(--spacing-md);
  font-style: italic;
}

.trust-signature {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-turmeric);
}

/* Membership Details */
.membership-details {
  background: var(--gradient-warm);
  padding: var(--spacing-xl) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-green);
}

.benefit-card.highlight {
  background: linear-gradient(135deg, #fff8f0 0%, #fffaf5 100%);
  border-left-color: var(--accent-terracotta);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.benefit-number {
  position: absolute;
  top: -20px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: var(--shadow-md);
}

.benefit-card.highlight .benefit-number {
  background: var(--accent-terracotta);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-green);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.benefit-card.highlight .benefit-icon {
  background: var(--accent-terracotta);
}

.benefit-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-green-dark);
}

.benefit-card p {
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.benefit-card strong {
  color: var(--primary-green-dark);
}

.benefit-extra {
  margin-top: var(--spacing-md);
}

.badge {
  display: inline-block;
  background: var(--primary-green);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-special {
  display: inline-block;
  background: var(--accent-terracotta);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.benefit-note {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-style: italic;
  margin-top: var(--spacing-sm);
}

/* How It Works */
.how-it-works {
  background: white;
  padding: var(--spacing-xl) 0;
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 120px;
  gap: 30px;
  align-items: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 100px;
  width: 3px;
  height: calc(100% + 50px);
  background: linear-gradient(to bottom, var(--primary-green), var(--accent-turmeric));
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.step-content {
  background: var(--beige-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--primary-green);
}

.step-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-green-dark);
}

.step-content p {
  margin-bottom: var(--spacing-md);
}

.step-features {
  list-style: none;
  display: grid;
  gap: 8px;
}

.step-features li {
  padding-left: 24px;
  position: relative;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.step-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
}

.step-image {
  width: 120px;
  height: 120px;
  background: var(--primary-green);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.subscription-clarity {
  margin-top: var(--spacing-xl);
}

.clarity-box {
  background: linear-gradient(135deg, #fff8f0 0%, #fffaf5 100%);
  border: 3px solid var(--accent-terracotta);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.clarity-box h4 {
  color: var(--accent-terracotta);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.clarity-item {
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clarity-item strong {
  color: var(--primary-green-dark);
  font-size: 1.05rem;
}

.clarity-item span {
  color: var(--text-medium);
}

/* Products Catalog */
.products-catalog {
  background: white;
  padding: var(--spacing-xl) 0;
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid var(--beige);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.category-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-terracotta);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.category-content {
  padding: var(--spacing-lg);
}

.category-content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--spacing-md);
  color: var(--primary-green-dark);
}

.category-content h3 i {
  color: var(--accent-terracotta);
}

.product-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: var(--spacing-md);
}

.product-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-medium);
  border-bottom: 1px solid var(--beige);
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list li::before {
  content: '🌾';
  position: absolute;
  left: 0;
}

.category-note {
  background: var(--beige-light);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-green);
  font-size: 0.9rem;
}

.category-note strong {
  color: var(--primary-green-dark);
}

.pricing-note {
  margin-top: var(--spacing-xl);
}

.note-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  border: 3px solid var(--primary-green);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  gap: 20px;
  align-items: start;
}

.note-box i {
  font-size: 2.5rem;
  color: var(--primary-green);
  flex-shrink: 0;
}

.note-box h4 {
  color: var(--primary-green-dark);
  margin-bottom: var(--spacing-sm);
}

.note-box p {
  line-height: 1.8;
}

.note-box strong {
  color: var(--primary-green-dark);
}

/* Packaging & Delivery */
.packaging-delivery {
  background: var(--gradient-warm);
  padding: var(--spacing-xl) 0;
}

.packaging-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.packaging-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.packaging-feature.reverse {
  direction: rtl;
}

.packaging-feature.reverse > * {
  direction: ltr;
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.feature-content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--spacing-md);
  color: var(--primary-green-dark);
  font-size: 1.8rem;
}

.feature-content h3 i {
  color: var(--accent-terracotta);
}

.feature-content p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.feature-content ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-content li {
  padding-left: 30px;
  position: relative;
  color: var(--text-medium);
}

.feature-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 900;
  font-size: 1.2rem;
}

.certification-strip {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-green-dark);
  font-weight: 600;
}

.cert-item i {
  font-size: 2rem;
  color: var(--accent-terracotta);
}

/* Testimonials */
.testimonials {
  background: white;
  padding: var(--spacing-xl) 0;
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-400px * 6 - 30px * 6));
  }
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 400px;
  background: var(--beige-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--primary-green);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: var(--spacing-md);
  color: var(--accent-turmeric);
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.reviewer {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.reviewer-info h4 {
  color: var(--primary-green-dark);
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.reviewer-info span {
  font-size: 0.85rem;
  color: var(--text-medium);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-green);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  text-align: center;
  background: var(--gradient-green);
  color: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--accent-turmeric);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.stat-stars {
  color: var(--accent-turmeric);
  font-size: 1.2rem;
}

/* FAQ Section */
.faq {
  background: var(--gradient-warm);
  padding: var(--spacing-xl) 0;
}

.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--spacing-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--beige-light);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-green);
  color: white;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: inherit;
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: var(--spacing-md);
  line-height: 1.8;
}

.faq-answer strong {
  color: var(--primary-green-dark);
}

/* Final CTA */
.final-cta {
  background: var(--gradient-green);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, white 35px, white 37px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, white 35px, white 37px);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 3rem;
  color: var(--accent-terracotta);
  animation: heartbeat 2s ease infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: var(--spacing-lg);
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-benefit i {
  color: var(--accent-turmeric);
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 50px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta-primary {
  background: var(--accent-terracotta);
  color: white;
  box-shadow: 0 10px 30px rgba(200, 90, 62, 0.5);
}

.btn-cta-primary:hover {
  background: var(--accent-safflower);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(200, 90, 62, 0.6);
}

.btn-cta-primary i {
  font-size: 2rem;
}

.btn-cta-primary span {
  font-size: 1.3rem;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: white;
  color: var(--primary-green);
}

.btn-cta-secondary i {
  font-size: 1.8rem;
}

.btn-cta-secondary span {
  font-size: 1.1rem;
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-lg);
}

.cta-message {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  backdrop-filter: blur(10px);
}

.message-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: white;
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.message-signature {
  text-align: center;
  color: var(--accent-turmeric);
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--primary-green-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-top {
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.footer-col h3,
.footer-col h4 {
  color: var(--accent-turmeric);
  margin-bottom: var(--spacing-md);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-terracotta);
  transform: translateY(-3px);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--accent-turmeric);
  padding-left: 5px;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  color: var(--accent-terracotta);
  width: 20px;
}

.footer-certifications {
  display: flex;
  gap: 15px;
  margin-top: var(--spacing-md);
}

.footer-certifications img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  color: rgba(255, 255, 255, 0.6);
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.footer-bottom p {
  margin-bottom: 8px;
  color: inherit;
}

.footer-bottom i {
  color: var(--accent-terracotta);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .packaging-feature {
    grid-template-columns: 1fr;
  }
  
  .packaging-feature.reverse {
    direction: ltr;
  }
}

@media (max-width: 968px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .hero h1 { font-size: 3rem; }
  .hero h2 { font-size: 1.5rem; }
  .price-amount { font-size: 2.5rem; }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .process-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-step::after {
    display: none;
  }
  
  .step-image {
    margin: 0 auto;
  }
  
  .product-categories {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --spacing-xl: 48px;
    --spacing-lg: 32px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 { font-size: 2.2rem; }
  .section-header h2 { font-size: 2rem; }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 20px;
  }
  
  .testimonial-card {
    min-width: 300px;
  }
  
  .final-cta h2 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
  }
}

