    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #FFFFFF;
      font-family: 'Inter', sans-serif;
      color: #2E241F;
      line-height: 1.45;
      scroll-behavior: smooth;
      font-size: 14px;
    }

    /* Base container with dynamic padding */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%; /* Flexible padding for desktop */
    }

    /* refined variables */
    :root {
      --green-fresh: #3B6E47;
      --gold-soft: #C28A3E;
      --warm-brown: #7C5E3C;
      --red-warm: #D45A2B;
      --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 12px 24px -8px rgba(0, 0, 0, 0.05);
      --shadow-top: 0 -4px 15px rgba(0, 0, 0, 0.05);
    }

    /* --- Header / Logo --- */
    header {
      position: sticky;
      top: 0;
      background: #FFFFFF;
      z-index: 999;
      box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      gap: 12px;
    }

    .logo {
      order: 1; /* Desktop: Logo Left */
    }

    .logo img {
      height: 45px;
      width: auto;
      display: block;
    }

    /* Desktop Navigation */
    .desktop-menu {
      order: 2; /* Desktop: Menu Center/Right */
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .desktop-menu a {
      text-decoration: none;
      color: #5C4B38;
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .desktop-menu a:hover, .desktop-menu a.active {
      color: var(--green-fresh);
    }

    .trust-badge {
      order: 3; /* Desktop: Badge Right */
      background: #F5F2EB;
      padding: 8px 16px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #2E241F;
    }

    .trust-badge i {
      color: var(--green-fresh);
      margin-right: 6px;
    }

    /* Mobile Header Elements (Hidden on Desktop) */
    .mobile-menu-btn {
      display: none;
      font-size: 1.5rem;
      color: #2E241F;
      cursor: pointer;
    }

    /* Mobile Bottom Navigation (Hidden on Desktop) */
    .mobile-bottom-nav {
      display: none;
    }

    /* --- Hero Section --- */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      margin: 50px 0 60px;
    }

    .hero-content {
      flex: 1.2;
    }

    .hero-badge {
      background: #E9E0D4;
      display: inline-block;
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #6A4C2A;
      margin-bottom: 16px;
    }

    .hero-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
      color: #2E241F;
    }

    .hero-highlight {
      color: var(--gold-soft);
      border-bottom: 2px solid rgba(194, 138, 62, 0.25);
    }

    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.5;
      color: #5A4A3A;
      margin-bottom: 24px;
      max-width: 95%;
    }

    .farm-tag {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .farm-tag span {
      font-weight: 500;
      background: #fff;
      padding: 6px 14px;
      border-radius: 40px;
      font-size: 0.8rem;
      box-shadow: var(--shadow-sm);
      border: 0.5px solid #e9e2d8;
    }

    .farm-tag i {
      color: var(--green-fresh);
      margin-right: 5px;
    }
    
    .cert-tags {
      margin-top: 20px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #f0f7f1;
      padding: 8px 16px;
      border-radius: 8px;
      border: 1px solid #cde4d2;
      font-weight: 700;
      color: var(--green-fresh);
      font-size: 0.85rem;
    }

    .cert-tags i {
      color: var(--gold-soft);
    }

    .hero-image {
      flex: 0.9;
      display: flex;
      justify-content: center;
    }
    
    .hero-image img {
      max-width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: var(--shadow-md);
    }

    /* --- User Benefits Section --- */
    .benefits {
      margin: 60px 0 50px;
    }

    .section-title {
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #2E241F;
    }

    .section-title span {
      color: var(--gold-soft);
    }

    .benefits-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
    }

    .benefit-card {
      background: white;
      flex: 1;
      min-width: 200px;
      padding: 28px 20px;
      border-radius: 28px;
      text-align: center;
      transition: all 0.2s;
      box-shadow: var(--shadow-sm);
      border: 1px solid #F0E6DB;
    }

    .benefit-card i {
      font-size: 2.2rem;
      color: var(--gold-soft);
      margin-bottom: 16px;
    }

    .benefit-card h4 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .benefit-card p {
      color: #6B5A4A;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    /* --- Product Listing --- */
    .products {
      margin: 60px 0 60px;
      background: #FEFAF2;
      padding: 60px 0;
      border-radius: 40px;
    }

    .product-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
    }

    .product-card {
      background: white;
      border-radius: 32px;
      width: 100%;
      max-width: 360px;
      padding: 30px 20px;
      transition: all 0.25s;
      box-shadow: var(--shadow-sm);
      border: 1px solid #F0E1D0;
      position: relative;
      text-align: center;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 28px -10px rgba(0, 0, 0, 0.08);
      border-color: rgba(194, 138, 62, 0.4);
    }

    .discount-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #D97A2B;
      color: white;
      font-weight: 800;
      padding: 6px 14px;
      border-radius: 60px;
      font-size: 0.75rem;
    }

    .product-image {
      width: 100%;
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    
    .product-image img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

    .product-title {
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 5px;
    }

    .product-weight {
      font-weight: 600;
      color: #8B6946;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
      font-size: 0.95rem;
    }

    .product-desc {
      font-size: 0.9rem;
      color: #5E4B38;
      margin: 15px 0;
      line-height: 1.4;
    }

    .price-wrapper {
      background: #F9F1E8;
      border-radius: 40px;
      padding: 12px 15px;
      margin: 20px 0;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .original-price {
      text-decoration: line-through;
      color: #A6845C;
      font-weight: 500;
      font-size: 1.05rem;
    }

    .sale-price {
      font-size: 2.2rem;
      font-weight: 800;
      color: #2E241F;
      letter-spacing: -0.5px;
    }

    .sale-price small {
      font-size: 1rem;
      font-weight: 600;
    }

    /* Non-clickable button styling */
    .btn-buy {
      background: #d4c5b6;
      border: none;
      width: 100%;
      padding: 15px 0;
      font-size: 1.05rem;
      font-weight: 700;
      border-radius: 50px;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
      cursor: default;
    }
    
    .btn-buy i { font-size: 1.1rem; }

    /* --- Individual Detail Sections --- */
    .detail-section {
      display: flex;
      align-items: center;
      gap: 40px;
      margin: 70px 0;
      padding: 40px;
      background: #FFFFFF;
      border-radius: 32px;
      box-shadow: var(--shadow-sm);
      border: 1px solid #F5EAE0;
      position: relative; /* For background image */
      overflow: hidden;
    }
    
    /* Specific styling for Quality Promise background image */
    .quality-promise-section {
        background-image: url('img/qualitypromise.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    /* Add a semi-transparent overlay to ensure text remains readable over the background image */
    .quality-promise-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.9); /* 90% white overlay */
        z-index: 1;
    }
    
    .detail-section:nth-of-type(even):not(.quality-promise-section) {
      flex-direction: row-reverse;
      background: #FAFCF9;
    }

    .detail-icon-box {
      flex: 0.3;
      text-align: center;
      z-index: 2; /* Keep above overlay */
    }
    
    .detail-icon-box i {
      font-size: 4rem;
      color: var(--gold-soft);
      background: #FFF9F2;
      width: 130px;
      height: 130px;
      line-height: 130px;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .detail-content {
      flex: 0.7;
      z-index: 2; /* Keep above overlay */
    }

    .detail-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--green-fresh);
      margin-bottom: 15px;
    }

    .detail-content p {
      color: #4E3E2E;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 1.05rem;
    }
    
    .detail-content ul {
      list-style: none;
      padding-left: 0;
    }
    
    .detail-content ul li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      color: #5C4B38;
      font-size: 1rem;
    }
    
    .detail-content ul li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 3px;
      color: var(--green-fresh);
      font-size: 0.9rem;
    }

    /* --- Certification Logos (Pre-Footer) --- */
    .certifications {
        text-align: center;
        padding: 30px 0;
        margin-top: 20px;
        border-top: 1px solid #f0f0f0;
    }
    
    .certifications h4 {
        color: var(--green-fresh);
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .cert-logos {
        display: flex;
        justify-content: center;
        gap: 30px;
        align-items: center;
    }
    
    .cert-logos img {
        height: 50px;
        width: auto;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .cert-logos img:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* --- Footer --- */
    footer {
      border-top: 1px solid #EADBCB;
      padding: 40px 0 30px;
      text-align: center;
      color: #7C644C;
      font-size: 0.9rem;
      background: #FAFAFA;
    }

    /* =========================================
       MOBILE RESPONSIVENESS & BOTTOM NAV
       ========================================= */
    @media (max-width: 820px) {
      .hero-content h2 { font-size: 2.2rem; }
      .section-title { font-size: 2rem; }
      .detail-section { flex-direction: column; text-align: center; gap: 24px; padding: 30px 20px;}
      .detail-section:nth-of-type(even) { flex-direction: column; }
      .detail-content ul li { text-align: left; }
    }

    @media (max-width: 768px) {
      /* Re-adjust container padding for mobile spacing */
      .container { padding: 0 5%; }
        
      /* Mobile Header Layout: Hamburger Left, Logo Right */
      .navbar {
        justify-content: space-between;
      }
      
      .desktop-menu, .trust-badge {
        display: none; /* Hide desktop nav and badge on mobile */
      }
      
      .mobile-menu-btn {
        display: block;
        order: 2; /* Hamburger on Left */
      }
      
      .logo {
        order: 1; /* Logo on Right */
      }

      /* Hero Layout: Text Above Image */
      .hero {
        flex-direction: column; 
        text-align: center;
        margin: 20px 0 40px; /* Reduced top margin on mobile */
        gap: 24px;
      }

      .hero-content h2 {
        font-size: 1.8rem;
      }
      
      .hero-desc {
        font-size: 0.95rem;
        margin: 0 auto 20px;
      }

      .farm-tag {
        justify-content: center;
      }

      .products {
        padding: 40px 5%; /* Flexible padding for mobile */
        border-radius: 24px;
        margin: 40px 5%; /* Gap on left/right */
      }

      /* Mobile Bottom Navigation */
      body {
        padding-bottom: 70px; /* Space for fixed bottom nav */
      }

      .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #FFFFFF;
        box-shadow: var(--shadow-top);
        justify-content: space-around;
        padding: 12px 0 10px;
        z-index: 1000;
      }

      .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #A68A6C;
        font-size: 0.7rem;
        font-weight: 600;
        gap: 6px;
        transition: color 0.2s;
      }

      .nav-item.active {
        color: var(--green-fresh);
      }

      .nav-item i {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 480px) {
      .product-card { padding: 24px 16px; }
      .product-image { height: 180px; }
      .sale-price { font-size: 1.8rem; }
      .cert-logos img { height: 40px; }
    }
