/* 
 * Koynecha Food Products - Style Sheet
 * Author: Antigravity AI
 * Designed for Organic & Pure Premium Aesthetics
 */

@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Color System */
  --primary-green: #14532d;         /* Forest green - raw, natural */
  --primary-green-light: #166534;   /* Leafy green */
  --primary-green-dark: #0f3d21;    /* Deep forest shadow */
  --accent-gold: #c29a5b;           /* Premium gold - honey & grains */
  --accent-gold-light: #e0be83;     /* Light gold highlights */
  --accent-gold-dark: #8e6d37;      /* Burnished brass */
  --accent-orange: #d97706;         /* Honey orange */
  --accent-orange-light: #f59e0b;   /* Sunlit orange */
  
  --bg-cream: #faf7f2;              /* Soft organic cream */
  --bg-cream-dark: #f2e9dc;         /* Textured cream */
  --bg-white: #ffffff;
  
  --text-dark: #1c1917;             /* Dark charcoal */
  --text-medium: #44403c;           /* Warm gray */
  --text-light: #78716c;            /* Muted stone */
  --text-white: #ffffff;
  
  --success: #15803d;
  --danger: #b91c1c;

  /* Typography */
  --font-primary: 'Mukta', sans-serif;
  --font-secondary: 'Poppins', sans-serif;

  /* Layout & Spacing */
  --container-width: 1200px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  
  /* Animations */
  --shadow-sm: 0 2px 4px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 4px 12px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 12px 32px rgba(28, 25, 23, 0.12);
  --shadow-gold: 0 8px 20px rgba(194, 154, 91, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.25;
}

p {
  color: var(--text-medium);
  font-size: 1.1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--accent-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leaf-separator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.leaf-separator::before,
.leaf-separator::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

.leaf-separator svg {
  fill: var(--accent-gold);
  width: 20px;
  height: 20px;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--text-white);
}

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

.btn-secondary {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--primary-green);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--text-white);
}

.btn-gold:hover {
  background-color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--text-white);
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

/* Sticky Header and Navbar */
.header {
  height: var(--header-height);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-svg, .logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: var(--transition);
}

.header.scrolled .logo-svg,
.header.scrolled .logo-img {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary-green);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--accent-orange);
  font-weight: 600;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-item a {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 0;
  position: relative;
}

.nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--primary-green);
}

.nav-item:hover a::after,
.nav-item.active a::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-icon-wrapper {
  position: relative;
  cursor: pointer;
  background: var(--bg-cream);
  padding: 10px;
  border-radius: 50%;
  transition: var(--transition);
}

.cart-icon-wrapper:hover {
  background: var(--bg-cream-dark);
  transform: scale(1.05);
}

.cart-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: var(--primary-green);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent-orange);
  color: var(--text-white);
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 18px;
  text-align: center;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-green);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #14532d0f 0%, #faf7f2 100%), radial-gradient(circle at 10% 20%, #c29a5b14 0%, transparent 40%);
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--bg-cream), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--accent-gold-dark);
}

.hero-slogan {
  display: inline-block;
  background-color: var(--bg-cream-dark);
  color: var(--primary-green);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(194, 154, 91, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge-grid {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(194, 154, 91, 0.1);
}

.hero-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-green);
}

.hero-badge span {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 0.95rem;
}

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

.hero-circle-bg {
  position: absolute;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--primary-green-light) 100%);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(20px);
  z-index: 0;
}

.hero-img-card {
  z-index: 1;
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px dashed var(--accent-gold-light);
  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-img-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-img-card img {
  border-radius: var(--radius-md);
}

/* Feature Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background-color: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--accent-gold);
}

.pillar-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-green);
}

.pillar-icon-box svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.pillar-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Showcase Section */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(194, 154, 91, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-image-container {
  position: relative;
  background-color: var(--bg-cream);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-container svg.product-art {
  width: 70%;
  height: 70%;
  transition: var(--transition);
}

.product-card:hover .product-image-container svg.product-art {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary-green);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-benefits {
  list-style: none;
  margin-bottom: 20px;
}

.product-benefits li {
  font-size: 0.9rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.product-benefits li svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-orange);
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-pricing {
  display: flex;
  flex-direction: column;
}

.weight-selector {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  border: 1px solid var(--accent-gold);
  border-radius: 4px;
  padding: 2px 6px;
  background-color: var(--bg-cream);
  color: var(--primary-green);
  font-weight: 600;
  outline: none;
}

.product-price {
  font-family: var(--font-secondary);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.add-to-cart-btn {
  background-color: var(--primary-green);
  color: var(--text-white);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}

.add-to-cart-btn:hover {
  background-color: var(--primary-green-light);
}

.add-to-cart-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* About Intro Section (Koyna Valley) */
.about-intro {
  background-color: var(--bg-cream-dark);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-intro-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-intro-content p {
  margin-bottom: 20px;
  color: var(--text-medium);
}

.about-bullets {
  margin-bottom: 30px;
}

.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.about-bullet-icon {
  background-color: var(--primary-green);
  color: var(--text-white);
  padding: 8px;
  border-radius: 50%;
  display: flex;
}

.about-bullet-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.about-bullet-text h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.about-bullet-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.about-intro-img {
  position: relative;
}

.about-intro-img::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid var(--accent-gold);
  border-radius: var(--radius-md);
  z-index: 0;
}

.about-intro-img img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* Testimonials / Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(194, 154, 91, 0.1);
  position: relative;
  transition: var(--transition);
}

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

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  fill: var(--bg-cream-dark);
  z-index: 0;
}

.review-rating {
  margin-bottom: 16px;
  color: #fbbf24;
}

.review-rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-text {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--bg-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-green);
  border: 2px solid var(--accent-gold);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Call to Action (Home Page Footer Teaser) */
.cta-section {
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(194, 154, 91, 0.15) 0%, transparent 50%);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--text-white);
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Internal Banner (Other pages heading section) */
.internal-banner {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  padding: 60px 0;
  color: var(--text-white);
  text-align: center;
}

.internal-banner h1 {
  color: var(--text-white);
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--accent-gold-light);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs a:hover {
  color: var(--text-white);
}

.breadcrumbs span.separator {
  color: rgba(255, 255, 255, 0.4);
}

/* About Page Specific Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.about-feature-item {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-gold);
}

.about-feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.about-feature-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-top: 6px;
}

/* Products Page Specific Styles (Shopping Layout) */
.products-layout {
  display: grid;
  grid-template-columns: 3.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.products-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cart-drawer-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--accent-gold-light);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.cart-drawer-header {
  border-bottom: 2px solid var(--bg-cream-dark);
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer-title svg {
  width: 22px;
  height: 22px;
  fill: var(--primary-green);
}

.cart-items-list {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.cart-empty-message {
  text-align: center;
  padding: 40px 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-cream);
  font-size: 0.95rem;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-name {
  font-weight: 600;
  color: var(--primary-green);
}

.cart-item-weight {
  font-size: 0.8rem;
  color: var(--text-light);
}

.cart-item-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.qty-btn {
  background: var(--bg-cream);
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary-green);
}

.qty-btn:hover {
  background: var(--accent-gold-light);
}

.cart-item-qty {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-item-price {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--accent-orange);
  text-align: right;
}

.cart-total-section {
  border-top: 2px solid var(--bg-cream-dark);
  padding-top: 16px;
  margin-bottom: 24px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cart-total-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.3;
}

.checkout-btn {
  width: 100%;
}

/* Health Benefits Page Specific Styles */
.benefits-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-chip {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-cream-dark);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-medium);
}

.filter-chip:hover {
  border-color: var(--accent-gold);
  color: var(--primary-green);
}

.filter-chip.active {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--text-white);
}

.benefits-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.benefit-detail-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(194, 154, 91, 0.1);
  transition: var(--transition);
}

.benefit-detail-card:nth-child(even) {
  grid-template-columns: 1.1fr 0.9fr;
}

.benefit-detail-card:nth-child(even) .benefit-visual-side {
  order: 2;
}

.benefit-visual-side {
  background-color: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 280px;
}

.benefit-visual-side svg {
  width: 80%;
  height: 80%;
}

.benefit-info-side h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.benefit-info-side h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-gold);
}

.benefit-badge {
  display: inline-block;
  background-color: var(--bg-cream-dark);
  color: var(--primary-green);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.benefit-bullets-list {
  list-style: none;
  margin: 20px 0 30px;
}

.benefit-bullets-list li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-bullets-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-orange);
  margin-top: 4px;
  flex-shrink: 0;
}

.recipe-box {
  background-color: var(--bg-cream);
  border-left: 4px solid var(--primary-green);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.recipe-box h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recipe-box h4 svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-green);
}

.recipe-box p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* Contact Page Specific Styles */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  border: 1px solid rgba(194, 154, 91, 0.1);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-card-details h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.contact-card-details p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 6px;
}

.contact-card-details .contact-link {
  font-weight: 600;
  color: var(--accent-orange);
}

.contact-card-details .contact-link:hover {
  color: var(--primary-green);
}

.contact-form-container {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(194, 154, 91, 0.15);
}

.contact-form-container h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-container p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-green);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  border: 2px solid var(--bg-cream-dark);
  background-color: var(--bg-cream);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-white);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--bg-cream-dark);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(194, 154, 91, 0.1);
  transition: var(--transition);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green);
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: var(--transition);
}

.faq-item.active .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content-inner {
  padding: 0 24px 20px;
  border-top: 1px solid var(--bg-cream);
}

.faq-content p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-top: 16px;
}

/* Footer Section */
.footer {
  background-color: var(--primary-green-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px;
  border-top: 6px solid var(--accent-gold);
}

.footer h3, .footer h4 {
  color: var(--text-white);
}

.footer h4 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-logo svg {
  width: 50px;
  height: 50px;
}

.footer-brand-logo .logo-title {
  color: var(--text-white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  background-color: rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent-gold);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a::before {
  content: "›";
  font-size: 1.2rem;
  color: var(--accent-gold);
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--text-white);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-text p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.credits {
  color: rgba(255, 255, 255, 0.5);
}

.credits a {
  color: var(--accent-gold-light);
}

.credits a:hover {
  color: var(--text-white);
}

/* Floating WhatsApp Action Button */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--text-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-floating:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-floating svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-btns, .hero-badge-grid {
    justify-content: center;
  }
  
  .hero-img-card {
    max-width: 380px;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-layout {
    grid-template-columns: 1fr;
  }
  
  .products-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cart-drawer-card {
    position: static;
    margin-top: 40px;
  }
  
  .benefit-detail-card, 
  .benefit-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .benefit-detail-card:nth-child(even) .benefit-visual-side {
    order: 0;
  }
  
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation Toggler */
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-item a {
    font-size: 1.25rem;
    display: block;
  }
  
  /* Hamburger State Animations */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .about-intro-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-intro-img {
    order: -1;
  }
  
  .about-stats {
    justify-content: space-around;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-grid, .products-list-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-badge-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .hero-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-floating {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-floating svg {
    width: 26px;
    height: 26px;
  }
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: var(--bg-cream-dark);
  padding: 4px;
  border-radius: 20px;
  border: 1px solid rgba(194, 154, 91, 0.4);
}

.lang-btn {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 15px;
  color: var(--text-medium);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
}

.lang-btn.active {
  background-color: var(--primary-green);
  color: var(--text-white);
}

.lang-btn:hover:not(.active) {
  color: var(--primary-green);
  background-color: rgba(194, 154, 91, 0.2);
}

/* Cart Toast styles */
.cart-toast {
  box-shadow: var(--shadow-lg) !important;
}

@media (max-width: 768px) {
  .lang-switcher {
    margin-right: 8px;
  }
}

