
/* ================= ENHANCED GLOBAL STYLES ================= */
:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --primary-extra-light: #e8f5e9;
    --accent-color: #ff6b6b;
    --text-dark: #2d3436;
    --text-medium: #636e72;
    --background-light: #f8fff9;
    --shadow-sm: 0 2px 12px rgba(46, 125, 50, 0.1);
    --shadow-md: 0 4px 20px rgba(46, 125, 50, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 400;
}

body {
    background-color: #fafafa;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

button {
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

h1, h2, h3, .logo, .section-title {
    font-weight: 700;
}

button, nav a, .cart-count {
    font-weight: 600;
}

img {
    aspect-ratio: attr(width) / attr(height);
    height: auto;
}

.hero-image img,
.product-image img,
.benefit-image img {
    content-visibility: auto;
}

.hero-image img {
    loading: eager;
    fetchpriority: high;
}

.product-image img,
.benefit-image img {
    loading: lazy;
    fetchpriority: low;
}

@media (max-width: 768px) {
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.2s !important;
    }
    
    .card, .product-card, .benefit-item {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    header, .hero, .products, .about {
        backdrop-filter: none !important;
    }
    
    .hero-image img {
        height: 300px !important;
    }
    
    .product-image {
        height: 180px !important;
    }
    
    .cta-button,
    .add-to-cart,
    .checkout-btn {
        background: #2e7d32 !important;
    }
    
    .cart-icon,
    .header-logo {
        background: #fff !important;
    }
}

.product-badge,
.product-rating,
.product-meta,
.about-highlight::before {
    display: none;
}

/* ================= HEADER ================= */
header {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-extra-light) 100%);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.header-logo {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-extra-light) 0%, #ffffff 100%);
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(76, 175, 80, 0.15);
    transition: var(--transition);
    padding: 2px;
}

.header-logo:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.logo {
    font-size: 1.5rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    margin-left: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    padding: 0.8rem 1.4rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-dark);
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-1px);
}

nav ul li a:active {
    transform: translateY(0);
}

.cart-icon-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 1rem;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.7rem;
    background: linear-gradient(135deg, var(--primary-extra-light) 0%, #ffffff 100%);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.cart-icon:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.2);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d32f2f 100%);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 8px rgba(211, 47, 47, 0.3);
    border: 2px solid #ffffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 3px 8px rgba(211, 47, 47, 0.3);
    }
    50% { 
        transform: scale(1.15); 
        box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    }
}









/* ================= ENHANCED HAMBURGER MENU ================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0.8rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.12) 0%, rgba(46, 125, 50, 0.08) 100%);
  border: 1.5px solid rgba(76, 175, 80, 0.25);
  border-radius: 12px;
  gap: 4px;
  z-index: 1001;
  order: 2;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 2px 12px rgba(46, 125, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hamburger::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hamburger:hover::before {
  left: 100%;
}

.hamburger:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.18) 0%, rgba(46, 125, 50, 0.12) 100%);
  border-color: rgba(76, 175, 80, 0.4);
  transform: scale(1.08) translateY(-1px);
  box-shadow: 
    0 6px 20px rgba(46, 125, 50, 0.15),
    0 2px 4px rgba(46, 125, 50, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hamburger:active {
  transform: scale(0.96) translateY(0);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  transform-origin: center;
}

.hamburger span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hamburger:hover span {
  background: var(--primary-dark);
  box-shadow: 0 0 2px rgba(76, 175, 80, 0.3);
}

.hamburger.active {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(46, 125, 50, 0.18) 100%);
  border-color: var(--primary-light);
  box-shadow: 
    0 4px 16px rgba(76, 175, 80, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--primary-light);
  width: 22px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px) scale(0.8);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--primary-light);
  width: 22px;
}

/* Micro-interaction for individual bars */
.hamburger:not(.active):hover span:nth-child(1) {
  transform: translateY(-1px);
}

.hamburger:not(.active):hover span:nth-child(3) {
  transform: translateY(1px);
}

/* Focus state for accessibility */
.hamburger:focus {
  outline: 2px solid rgba(76, 175, 80, 0.4);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hamburger {
    transition: all 0.2s ease;
  }
  
  .hamburger span {
    transition: all 0.2s ease;
  }
  
  .hamburger::before {
    display: none;
  }
}


























@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-content {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
  }

  .logo-container {
    order: 1;
    flex: 1;
  }

  .hamburger {
    order: 2;
  }

  nav {
    order: 4;
  }

  .cart-icon-container {
    order: 3;
    margin-left: 0;
  }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fff9 100%);
    padding: 100px 0 30px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-left: 0;
  }

  nav::-webkit-scrollbar {
    width: 6px;
  }

  nav::-webkit-scrollbar-track {
    background: rgba(76, 175, 80, 0.05);
  }

  nav::-webkit-scrollbar-thumb {
    background: rgba(76, 175, 80, 0.3);
    border-radius: 3px;
  }

  nav.active {
    left: 0;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideIn {
    from {
      left: -100%;
      opacity: 0.8;
    }
    to {
      left: 0;
      opacity: 1;
    }
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    width: 100%;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInItem 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
  nav.active ul li:nth-child(2) { animation-delay: 0.15s; }
  nav.active ul li:nth-child(3) { animation-delay: 0.2s; }
  nav.active ul li:nth-child(4) { animation-delay: 0.25s; }
  nav.active ul li:nth-child(5) { animation-delay: 0.3s; }

  @keyframes slideInItem {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  nav ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1.05rem;
    color: var(--text-dark);
    background: transparent;
    border-radius: 0;
    border-left: 4px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-light);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav ul li a:hover::before {
    transform: scaleY(1);
  }

  nav ul li a:hover,
  nav ul li a:active {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.15) 0%, transparent 100%);
    color: var(--primary-dark);
    padding-left: 2.2rem;
  }

  nav::before {
    content: 'Menu';
    position: absolute;
    top: 30px;
    left: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
  }

  nav::after {
    content: 'Tap outside to close';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-medium);
    opacity: 0.6;
  }

  .logo {
    font-size: 1.3rem;
  }

  .header-logo {
    width: 38px;
    height: 38px;
  }

  .cart-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .cart-count {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  nav {
    width: 280px;
  }

  nav ul li a {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }

  .hamburger {
    padding: 0.5rem;
  }

  .hamburger span {
    width: 22px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .hamburger:hover {
    transform: none;
  }

  .hamburger:active {
    transform: scale(0.95);
  }
}

.hamburger:focus {
  outline: 3px solid rgba(76, 175, 80, 0.3);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hamburger,
  .hamburger span,
  nav,
  nav ul li,
  nav ul li a,
  .nav-overlay {
    transition: none !important;
    animation: none !important;
  }

  nav.active ul li {
    opacity: 1;
    transform: none;
  }
}























/* ================= HERO SECTION ================= */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232e7d32' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: #2d3436;
    margin-bottom: 2.1rem;
    line-height: 1.6;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 1rem 9.6rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.hero-image {
    flex: 1;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.3rem;
    }
    
    .hero-image img {
        height: 400px;
    }
}

@media (max-width: 968px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image img {
        height: 350px;
        border-radius: 16px;
    }
    
    .cta-button {
        padding: 1.1rem 3rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content {
        gap: 2.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-image img {
        height: 300px;
        border-radius: 14px;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .hero-image img {
        height: 250px;
        border-radius: 12px;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .hero-image img {
        height: 220px;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .hero-image img {
        height: 200px;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-text,
    .hero-image,
    .cta-button,
    .hero-image img {
        animation: none;
        transition: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
}

/* ================= MICROGREENS SECTION ================= */
.microgreens-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 50%, #c8e6c9 100%);
  position: relative;
  overflow: hidden;
}

.microgreens-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1b5e20, #f8f2e8);
  z-index: 1;
}

.microgreens-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1b5e20;
  position: relative;
  display: inline-block;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2e7d32;
  border-radius: 2px;
}

.intro-text {
  font-size: 1.2rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin-top: 25px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  transform: translateY(0) scale(1);
  display: flex;
  flex-direction: column;
  height: fit-content;
  min-height: auto;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.problem-card .card-icon {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
}

.solution-card .card-icon {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

.why-us-card .card-icon {
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #2d2d2d;
  font-weight: 600;
  line-height: 1.3;
  flex-shrink: 0;
}

.card p {
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5a5a5a;
}

.card ul {
  margin: 5px 0 10px 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.card ul li {
  margin: 6px 0;
  padding-left: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #5a5a5a;
  display: flex;
  align-items: flex-start;
}

.card ul li i {
  margin-right: 8px;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.benefits li {
  font-weight: 500;
  color: #2e7d32;
}

.solution-card .benefits li {
  margin: 16px 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
  min-height: auto !important;
}

.solution-card .benefits {
  margin: -5px 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

.highlight-box {
  background: rgba(244, 67, 54, 0.05);
  border-left: 4px solid #f44336;
  padding: 10px 12px;
  border-radius: 0 6px 6px 0;
  margin: 10px 0 5px 0;
  flex-shrink: 0;
}

.highlight-box p {
  margin: 0;
  font-weight: 500;
  color: #c62828;
  font-size: 0.9rem;
  line-height: 1.4;
}

.impact-box {
  background: rgba(33, 150, 243, 0.05);
  border-left: 4px solid #2196f3;
  padding: 10px 12px;
  border-radius: 0 6px 6px 0;
  margin: 10px 0 5px 0;
  flex-shrink: 0;
}

.impact-box p {
  margin: 0;
  font-weight: 500;
  color: #1565c0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cta-box {
  background: rgba(255, 152, 0, 0.05);
  border-left: 4px solid #ff9800;
  padding: 10px 12px;
  border-radius: 0 6px 6px 0;
  margin: 10px 0 5px 0;
  font-style: italic;
  flex-shrink: 0;
}

.cta-box p {
  margin: 0;
  color: #ef6c00;
  font-size: 0.9rem;
  line-height: 1.4;
}

.final-line {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1b5e20;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #c8e6c9;
  flex-shrink: 0;
}

.final-line p {
  margin: 0;
  line-height: 1.4;
}

.card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .microgreens-section {
    padding: 50px 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    padding: 20px;
  }
  
  .card h3 {
    font-size: 1.2rem;
  }
  
  .card ul li {
    margin: 5px 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.7rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .card {
    padding: 18px;
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .card ul {
    margin: 3px 0 8px 0;
  }
}



/* ================= PRODUCTS SECTION ================= */
.products {
    padding: 5rem 0;
    background: linear-gradient(rgba(248, 255, 249, 0.95), rgba(241, 255, 232, 0.95)), 
                url('https://plus.unsplash.com/premium_photo-1661636028796-2e32726689b0?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') 
                center/cover no-repeat fixed;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232e7d32' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #2d3436;
    line-height: 1.6;
    font-weight: 400;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(46, 125, 50, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}

.product-info h3 {
    margin: 0;
    color: #1b5e20;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-description {
    color: #2d3436;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.product-price {
    font-weight: 700;
    color: #2e7d32;
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price::before {
    content: '₹';
    font-size: 1.2rem;
}











.add-to-cart {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 1rem 2rem;
    width: 100%;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.add-to-cart:hover::before {
    left: 100%;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.add-to-cart:active {
    transform: translateY(0);
}

.add-to-cart:disabled {
    background-color: #2e7d32;
    cursor: default;
    transform: none;
}

.add-to-cart.added {
    animation: addedAnimation 0.6s ease;
}

@keyframes addedAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .products {
        padding: 4rem 0;
        background-attachment: scroll;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        max-width: 500px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.8rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .add-to-cart {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .products {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto 0;
        gap: 1.5rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-image {
        height: 180px;
    }
    
    .add-to-cart {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-card,
    .product-image img,
    .add-to-cart {
        transition: none;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .add-to-cart:hover {
        transform: none;
    }
}

/* ================= ABOUT SECTION ================= */
.about {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232e7d32' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.about-text {
    text-align: center;
    margin-bottom: 4rem;
}

.about-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2d3436;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #2e7d32;
    margin: 2rem auto;
    position: relative;
    max-width: 800px;
    text-align: center;
}

.about-highlight p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #1b5e20;
    margin: 0;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.2);
}

.benefit:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #2e7d32;
    transition: all 0.3s ease;
}

.benefit:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
}

.benefit h3 {
    font-size: 1.5rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.benefit p {
    font-size: 1rem;
    color: #2d3436;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 968px) {
    .about-text p {
        text-align: center;
    }
    
    .about-highlight {
        text-align: center;
    }
    
    .about-highlight p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-text p {
        text-align: center;
        padding: 0 1rem;
    }
    
    .about-highlight {
        text-align: center;
        margin: 1.5rem auto;
    }
    
    .about-highlight p {
        text-align: center;
    }
    
    .benefit {
        text-align: center;
    }
    
    .benefit h3 {
        text-align: center;
    }
    
    .benefit p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-text p {
        text-align: center;
    }
    
    .about-highlight {
        text-align: center;
    }
    
    .about-highlight p {
        text-align: center;
    }
}

/* ================= HEALTH BENEFITS SECTION ================= */
.health-benefits {
    padding: 6rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), 
                url('https://images.unsplash.com/photo-1653654630422-c9dd3a2ca659?q=80&w=1334&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') 
                center/cover fixed;
    position: relative;
    overflow: hidden;
}

.health-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232e7d32' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.health-benefits .section-title {
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

.health-benefits .section-subtitle {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    color: #2d3436;
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
}

.benefits-slider {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 70px;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    padding-bottom: 56px;
    touch-action: pan-y;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: max-content;
    gap: 25px;
    padding: 10px;
}

.benefit-item {
    width: 420px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.benefit-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.2);
}

.benefit-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-item:hover .benefit-image img {
    transform: scale(1.08);
}

.benefit-content {
    padding: 2rem;
}

.benefit-content h3 {
    font-size: 1.6rem;
    color: #1b5e20;
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 2rem;
    color: #2d3436;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.benefit-list li:hover {
    background: rgba(232, 245, 233, 0.3);
    transform: translateX(5px);
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.nav-btn {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.nav-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 12px;
}

.next-btn {
    right: 12px;
}

.slider-track,
.benefit-item,
.benefit-content {
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 1200px) {
    .benefits-slider {
        padding: 0 60px;
        max-width: 1100px;
    }
    
    .benefit-item {
        width: 460px;
    }
    
    .benefit-image {
        height: 220px;
    }
}

@media (max-width: 968px) {
    .health-benefits {
        padding: 5rem 0;
        background-attachment: scroll;
    }
    
    .benefits-slider {
        padding: 0 50px;
        max-width: 900px;
    }
    
    .benefit-item {
        width: 400px;
    }
    
    .benefit-content {
        padding: 1.8rem;
    }
    
    .benefit-content h3 {
        font-size: 1.4rem;
    }
    
    .benefit-list li {
        font-size: 0.95rem;
        padding: 0.7rem 0;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .health-benefits {
        padding: 4rem 0;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .benefits-slider {
        padding: 0 40px;
    }
    
    .benefit-item {
        width: 320px;
    }
    
    .benefit-image {
        height: 200px;
    }
    
    .benefit-content {
        padding: 1.5rem;
    }
    
    .benefit-content h3 {
        font-size: 1.3rem;
    }
    
    .benefit-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 1.8rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .health-benefits {
        padding: 3rem 0;
    }
    
    .benefits-slider {
        padding: 0 35px;
    }
    
    .benefit-item {
        width: 280px;
    }
    
    .benefit-image {
        height: 180px;
    }
    
    .benefit-content {
        padding: 1.2rem;
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-list li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .prev-btn {
        left: 8px;
    }
    
    .next-btn {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .benefits-slider {
        padding: 0 30px;
    }
    
    .benefit-item {
        width: 260px;
    }
    
    .benefit-image {
        height: 160px;
    }
    
    .benefit-content h3 {
        font-size: 1.1rem;
    }
    
    .benefit-list li {
        font-size: 0.8rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .benefit-item:hover {
        transform: none;
    }
    
    .benefit-list li:hover {
        transform: none;
        background: rgba(232, 245, 233, 0.3);
    }
    
    .nav-btn:hover {
        transform: translateY(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .slider-track,
    .benefit-item,
    .benefit-image img,
    .benefit-list li,
    .nav-btn {
        transition: none;
    }
    
    .benefit-item:hover {
        transform: none;
    }
    
    .benefit-list li:hover {
        transform: none;
    }
    
    .nav-btn:hover {
        transform: translateY(-50%);
    }
}


/* ================= FAQ SECTION - CONTINUED ================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE HEADER FIXES ================= */
@media (max-width: 968px) {
    .header-content {
        gap: 1.5rem;
        padding: 0.9rem 0;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    nav ul li a {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .header-logo {
        width: 42px;
        height: 42px;
    }
    
    .cart-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 0.8rem;
    }
    
    .header-content {
        gap: 0.8rem;
        padding: 0.7rem 0;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .header-logo {
        width: 36px;
        height: 36px;
    }
    
    nav ul {
        gap: 0.4rem;
    }
    
    nav ul li a {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .cart-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-left: 0.3rem;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 1rem;
    }
    
    .header-logo {
        width: 32px;
        height: 32px;
    }
    
    nav ul li a {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .cart-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    nav ul li a:hover {
        background: transparent;
        transform: none;
    }
    
    nav ul li a:active {
        background: rgba(76, 175, 80, 0.1);
    }
    
    .cart-icon:hover {
        background: linear-gradient(135deg, var(--primary-extra-light) 0%, #ffffff 100%);
        color: inherit;
        transform: none;
    }
    
    .cart-icon:active {
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
        color: white;
    }
}

/* ================= HIGH-DENSITY SCREENS ================= */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ================= SECTION TITLE FIXES ================= */
.section-title {
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

/* ================= SLIDER OPTIMIZATIONS ================= */
.slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

.slider-track {
  display: flex;
  gap: 25px;
  width: max-content;
  padding: 10px;
}

.health-benefits .section-title {
  margin-bottom: 1.7rem;
}

.health-benefits .section-subtitle {
  margin-top: 0;
}

@media (max-width: 576px) {
  .health-benefits .section-title {
    margin-bottom: 1rem;
  }
}

.slider-container {
  padding-right: 50px;
  padding-left: 50px;
}

.next-btn {
  right: 18px;
}

@media (max-width: 576px) {
  .prev-btn {
    left: 5px;
  }
  .next-btn {
    right: 15px;
  }
}

/* ================= MICROGREENS BACKGROUND FIX ================= */
.microgreens-section {
  background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 50%, #c8e6c9 100%) !important;
  position: relative;
}

.microgreens-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234caf50' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 0;
}

.microgreens-section .container {
  position: relative;
  z-index: 1;
}

/* ================= ADDITIONAL UTILITY CLASSES ================= */
.text-center {
  text-align: center !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.w-100 {
  width: 100% !important;
}

/* ================= PRINT STYLES ================= */
@media print {
  header,
  footer,
  .cart-icon,
  .hamburger,
  .nav-overlay,
  .add-to-cart,
  .checkout-btn,
  .place-order-btn,
  .cancel-btn {
    display: none !important;
  }
  
  body {
    background: white !important;
  }
  
  .cart-page,
  .payment-page {
    display: block !important;
  }
}

/* ================= FOCUS VISIBLE (ACCESSIBILITY) ================= */
*:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

button:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
}

/* ================= SMOOTH SCROLLING ================= */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ================= SELECTION STYLING ================= */
::selection {
  background-color: var(--primary-light);
  color: white;
}

::-moz-selection {
  background-color: var(--primary-light);
  color: white;
}

/* ================= LOADING STATES ================= */
.loading {
  opacity: 0.6;
  pointer-events: none;
  cursor: wait;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid rgba(76, 175, 80, 0.2);
  border-top-color: var(--primary-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ================= ERROR STATES ================= */
.error-state {
  background: rgba(244, 67, 54, 0.1);
  border: 2px solid #f44336;
  padding: 1rem;
  border-radius: 8px;
  color: #c62828;
  margin: 1rem 0;
}

.success-state {
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid #4caf50;
  padding: 1rem;
  border-radius: 8px;
  color: #2e7d32;
  margin: 1rem 0;
}

/* ================= SKELETON LOADING ================= */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ================= TOOLTIP ================= */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: 0.5rem 1rem;
  background: var(--text-dark);
  color: white;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* ================= BADGE ================= */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 12px;
}

.badge-success {
  background: var(--primary-light);
  color: white;
}

.badge-warning {
  background: #ff9800;
  color: white;
}

.badge-danger {
  background: var(--accent-color);
  color: white;
}

/* ================= ALERT ================= */
.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid;
}

.alert-info {
  background: rgba(33, 150, 243, 0.1);
  border-color: #2196f3;
  color: #1565c0;
}

.alert-success {
  background: rgba(76, 175, 80, 0.1);
  border-color: #4caf50;
  color: #2e7d32;
}

.alert-warning {
  background: rgba(255, 152, 0, 0.1);
  border-color: #ff9800;
  color: #ef6c00;
}

.alert-danger {
  background: rgba(244, 67, 54, 0.1);
  border-color: #f44336;
  color: #c62828;
}

/* ================= MODAL (IF NEEDED) ================= */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

/* ================= UTILITY ANIMATIONS ================= */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.animate-slide-up { animation: slideInUp 0.6s ease both; }
.animate-slide-down { animation: slideInDown 0.6s ease both; }
.animate-slide-left { animation: slideInLeft 0.6s ease both; }
.animate-slide-right { animation: slideInRight 0.6s ease both; }
.animate-zoom-in { animation: zoomIn 0.4s ease both; }
.animate-shake { animation: shake 0.5s ease both; }

/* ================= END OF CSS ================= */











/* ================= FOOTER ================= */
footer {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #a5d6a7;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4caf50;
}

.footer-section p, 
.footer-section a {
    color: #e8f5e9;
    margin-bottom: 0.8rem;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4caf50;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #c8e6c9;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ================= CART PAGE ================= */
.cart-page {
    padding: 3rem 0;
    display: none;
    min-height: 60vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.cart-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cart-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cart-header h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cart-items {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.empty-cart-message {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    padding: 3rem;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.cart-item:hover {
    background: rgba(76, 175, 80, 0.03);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-details {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.item-info h4 {
    font-size: 1.1rem;
    color: #2e7d32;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.item-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(76, 175, 80, 0.1);
    padding: 0.5rem;
    border-radius: 25px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: #2e7d32;
}

.quantity-btn:hover {
    background: #4caf50;
    color: white;
}

.quantity {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    color: #f44336;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 500;
}

.remove-item:hover {
    background: rgba(244, 67, 54, 0.1);
}

.cart-summary {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.summary-header {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-item span:first-child {
    color: #555;
    font-weight: 500;
}

.summary-item span:last-child {
    color: #2e7d32;
    font-weight: 600;
}

.total {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2e7d32;
    border-top: 2px solid rgba(76, 175, 80, 0.2);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.checkout-btn {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 1.2rem 2rem;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 2rem;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .item-details {
        justify-content: center;
    }
    
    .item-actions {
        justify-content: center;
        flex-direction: column;
    }
}

/* ================= PAYMENT PAGE ================= */
.payment-page {
    padding: 3rem 0;
    display: none;
    min-height: 70vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.payment-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.payment-header h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    font-weight: 700;
}

.order-summary {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.order-summary h3 {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 0.5rem;
}

.delivery-form {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.delivery-form h3 {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2e7d32;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: #4caf50;
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.payment-options {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.payment-options h3 {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 0.5rem;
}

.payment-option {
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 1rem;
    background: #fafafa;
}

.payment-option:hover {
    border-color: #4caf50;
    transform: translateY(-2px);
}

.payment-option.selected {
    border-color: #4caf50;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}

.payment-option h4 {
    font-size: 1.1rem;
    color: #2e7d32;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.payment-option p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.place-order-btn {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 1.3rem 2rem;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 2rem;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.cancel-btn {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    padding: 1rem 2rem;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.3);
}

.cancel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.4);
}

/* ================= FAQ SECTION ================= */
.faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
}

.faq .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.1);
    margin-bottom: 1.2rem;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1b5e20;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2e7d32;
}

.faq-answer {
    display: none;
    padding: 0 1.8rem 1.6rem;
    color: #2d3436;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #1b5e20;
}

@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.4rem;
    }
}





















/* ================= CRITICAL FIX FOR HAMBURGER MENU ================= */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

header {
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
  box-shadow: 0 2px 12px rgba(46, 125, 50, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0.8rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.12) 0%, rgba(46, 125, 50, 0.08) 100%);
  border: 1.5px solid rgba(76, 175, 80, 0.25);
  border-radius: 12px;
  gap: 4px;
  z-index: 1001;
  order: 2;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 12px rgba(46, 125, 50, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.2px;
  background: #1b5e20;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  transform-origin: center;
}

.hamburger.active {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(46, 125, 50, 0.18) 100%);
  border-color: #4caf50;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #4caf50;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px) scale(0.8);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #4caf50;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-content {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
  }

  .logo-container {
    order: 1;
    flex: 1;
  }

  .hamburger {
    order: 2;
  }

  .cart-icon-container {
    order: 3;
    margin-left: 0;
  }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fff9 100%);
    padding: 100px 0 30px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    margin-left: 0;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  /* FIX: Remove the opacity animation that's hiding links */
  nav ul li {
    width: 100%;
    opacity: 1 !important; /* ALWAYS VISIBLE */
    transform: translateX(0) !important; /* NO TRANSFORM */
    animation: none !important; /* NO ANIMATIONS */
  }

  nav ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.05rem;
    color: #2d3436;
    background: transparent;
    border-radius: 0;
    border-left: 4px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #4caf50;
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav ul li a:hover::before {
    transform: scaleY(1);
  }

  nav ul li a:hover,
  nav ul li a:active {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.15) 0%, transparent 100%);
    color: #1b5e20;
    padding-left: 2.2rem;
  }

  nav::before {
    content: 'Menu';
    position: absolute;
    top: 30px;
    left: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b5e20;
    letter-spacing: -0.5px;
  }

  nav::after {
    content: 'Tap outside to close';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.85rem;
    color: #636e72;
    opacity: 0.6;
  }

  .logo {
    font-size: 1.3rem;
  }

  .header-logo {
    width: 38px;
    height: 38px;
  }

  .cart-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .cart-count {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  /* Dropdown menu for mobile */
  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: static !important;
    display: none;
    box-shadow: none;
    background: rgba(76, 175, 80, 0.05);
    padding-left: 1rem;
    width: 100%;
  }

  .dropdown.active .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu li {
    width: 100%;
  }

  .dropdown-menu a {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  nav {
    width: 280px;
  }

  nav ul li a {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }
}

/* ================= REMOVE DUPLICATE AND CONFLICTING STYLES ================= */
/* Remove all duplicate hamburger menu styles below this point */

/* ================= CRITICAL FIX FOR NAV LINKS VISIBILITY ================= */
@media (max-width: 768px) {
  nav ul li {
    width: 100%;
    opacity: 1 !important;
    transform: translateX(0) !important;
    animation: none !important;
  }
  
  /* Remove any animation delays */
  nav.active ul li:nth-child(1),
  nav.active ul li:nth-child(2),
  nav.active ul li:nth-child(3),
  nav.active ul li:nth-child(4),
  nav.active ul li:nth-child(5) {
    animation: none !important;
    animation-delay: 0s !important;
  }

  /* Remove conflicting nav ul styles */
  nav ul {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    background: transparent !important;
    display: flex !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  nav ul.active {
    display: flex !important;
  }
}

/* ================= ACCESSIBILITY ================= */
@media (prefers-reduced-motion: reduce) {
  .hamburger,
  .hamburger span,
  nav,
  nav ul li,
  nav ul li a,
  .nav-overlay {
    transition: none !important;
    animation: none !important;
  }

  nav.active ul li {
    opacity: 1;
    transform: none;
  }
}

.hamburger:focus {
  outline: 3px solid rgba(76, 175, 80, 0.3);
  outline-offset: 2px;
}


@media (max-width: 768px) {
    nav ul li {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    nav ul li a {
        padding: 0.5rem 1rem !important;
        margin: 0 !important;
    }
}

.dropdown-menu a {
    padding: 0.4rem 1.2rem !important; /* ← REDUCED SPACING */
    font-size: 0.95rem !important;
}

