
    /* ============================
       CSS CUSTOM PROPERTIES
    ============================ */
    :root {
      --black: #06351f;
      --off-black: #0b472b;
      --charcoal: #145a36;
      --mango: #1FAA59;
      --mango-dark: #0F7A3C;
      --mango-light: #A8E6B1;
      --red: #C0392B;
      --red-dark: #962d23;
      --green: #0E8F45;
      --green-light: #40C878;
      --cream: #F3FFF5;
      --off-white: #ECF8EF;
      --warm-white: #FBFFFC;
      --text-dark: #1A1A18;
      --text-mid: #4A4A44;
      --text-light: #8A8A82;
      --border: rgba(31, 170, 89, 0.18);
      --shadow-warm: 0 20px 60px rgba(31, 170, 89, 0.14);
      --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.4);
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 40px;
      --font-display: 'Fraunces', Georgia, serif;
      --font-body: 'DM Sans', sans-serif;
      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      --wa-green: #25D366;
    }

    /* ============================
       RESET & BASE
    ============================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      background: var(--warm-white);
      color: var(--text-dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: inherit; border: none; }
    ul { list-style: none; }
    section { position: relative; }

    /* ============================
       TYPOGRAPHY
    ============================ */
    .display-xl {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.02em;
    }
    .display-lg {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .display-md {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
    }
    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--mango);
    }
    .body-lg { font-size: 1.125rem; line-height: 1.7; color: var(--text-mid); }
    .body-md { font-size: 1rem; line-height: 1.65; color: var(--text-mid); }

    /* ============================
       UTILITY
    ============================ */
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-pad { padding: 100px 0; }
    .section-pad-lg { padding: 130px 0; }
    .text-center { text-align: center; }
    .text-mango { color: var(--mango); }
    .text-red { color: var(--red); }
    .text-green { color: var(--green); }
    .text-white { color: #fff; }
    .bg-dark { background: var(--off-black); }
    .bg-cream { background: var(--cream); }
    .bg-black { background: var(--black); }
    .gap-sm { gap: 12px; }
    .gap-md { gap: 24px; }
    .gap-lg { gap: 40px; }
    .flex { display: flex; }
    .flex-center { display: flex; align-items: center; justify-content: center; }
    .flex-between { display: flex; align-items: center; justify-content: space-between; }
    .grid { display: grid; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

    /* ============================
       SCROLL ANIMATIONS
    ============================ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ============================
       BUTTONS
    ============================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--mango);
      color: var(--black);
    }
    .btn-primary:hover {
      background: var(--mango-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(31,170,89,0.35);
    }
    .btn-wa {
      background: var(--wa-green);
      color: #fff;
    }
    .btn-wa:hover {
      background: #1ebc5a;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(37,211,102,0.35);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.4);
      color: #fff;
    }
    .btn-outline:hover {
      border-color: var(--mango);
      color: var(--mango);
      transform: translateY(-2px);
    }
    .btn-outline-dark {
      background: transparent;
      border: 2px solid var(--text-dark);
      color: var(--text-dark);
    }
    .btn-outline-dark:hover {
      border-color: var(--mango);
      color: var(--mango);
    }
    .btn-ghost {
      background: rgba(255,255,255,0.08);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,0.15);
      transform: translateY(-2px);
    }
    .btn-icon {
      width: 40px; height: 40px;
      padding: 0;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .btn-lg { padding: 18px 38px; font-size: 1rem; }
    .btn-sm { padding: 10px 20px; font-size: 0.85rem; }

    /* ============================
       FLOATING WHATSAPP
    ============================ */
    .floating-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 58px;
      height: 58px;
      background: var(--wa-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,0.45);
      z-index: 9999;
      transition: var(--transition);
      animation: floatPulse 2.5s ease-in-out infinite;
    }
    .floating-wa:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }
    .floating-wa svg { width: 28px; height: 28px; fill: #fff; }
    @keyframes floatPulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35); }
      50% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
    }

    /* ============================
       NAVBAR
    ============================ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0;
      transition: var(--transition);
    }
    .navbar.scrolled {
      background: rgba(8,8,6,0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(31,170,89,0.1);
      box-shadow: 0 4px 32px rgba(0,0,0,0.3);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo-img {
      /* ============================================================
         IMAGE PLACEHOLDER — REPLACE src BELOW
         File: images/logo-white.png (white version of your logo)
         Recommended size: 120×40px or similar
      ============================================================ */
      height: 44px;
      width: auto;
      object-fit: contain;
      filter: none;
    }
    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
    }
    .nav-logo-sub {
      font-size: 0.65rem;
      color: var(--mango);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      display: block;
      line-height: 1;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      padding: 8px 14px;
      border-radius: 100px;
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--mango); background: rgba(31,170,89,0.08); }
    .nav-cta { margin-left: 12px; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      cursor: pointer;
      background: none;
      border: none;
    }
    .hamburger span {
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: var(--transition);
      display: block;
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--black);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; display: flex; }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 700;
      color: rgba(255,255,255,0.85);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--mango); }
    .mobile-close {
      position: absolute;
      top: 24px; right: 24px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: #fff;
      width: 44px; height: 44px;
      border-radius: 50%;
      font-size: 1.4rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .mobile-close:hover { background: rgba(31,170,89,0.15); color: var(--mango); }

    /* ============================
       HERO SECTION
    ============================ */
    .hero {
      min-height: 100vh;
      background: var(--black);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-grain {
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      pointer-events: none;
    }
    .hero-gradient {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(31,170,89,0.08) 0%, transparent 60%),
                  radial-gradient(ellipse 60% 80% at 30% 30%, rgba(192,57,43,0.06) 0%, transparent 50%);
      pointer-events: none;
    }
    .hero-ring {
      position: absolute;
      right: -200px;
      top: 50%;
      transform: translateY(-50%);
      width: 700px;
      height: 700px;
      border: 1px solid rgba(31,170,89,0.06);
      border-radius: 50%;
    }
    .hero-ring-2 {
      position: absolute;
      right: -350px;
      top: 50%;
      transform: translateY(-50%);
      width: 1000px;
      height: 1000px;
      border: 1px solid rgba(31,170,89,0.04);
      border-radius: 50%;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 120px 24px 80px;
      width: 100%;
    }
    .hero-content {}
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(31,170,89,0.1);
      border: 1px solid rgba(31,170,89,0.25);
      border-radius: 100px;
      padding: 8px 16px;
      margin-bottom: 28px;
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      background: var(--mango);
      border-radius: 50%;
      animation: blink 1.5s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
    .hero-badge span { font-size: 0.78rem; font-weight: 600; color: var(--mango); letter-spacing: 0.08em; text-transform: uppercase; }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: #fff;
      margin-bottom: 24px;
    }
    .hero-title .accent { color: var(--mango); font-style: italic; }
    .hero-sub {
      font-size: 1.05rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.55);
      margin-bottom: 40px;
      max-width: 500px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
    .hero-trust {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
      font-weight: 500;
    }
    .trust-badge-icon {
      width: 22px; height: 22px;
      background: rgba(31,170,89,0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      flex-shrink: 0;
    }
    /* Hero Image */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-jar-wrap {
      position: relative;
      width: 100%;
      max-width: 460px;
    }
    .hero-glow {
      position: absolute;
      inset: -40px;
      background: radial-gradient(ellipse, rgba(31,170,89,0.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-jar-img {
      /* ============================================================
         IMAGE PLACEHOLDER — REPLACE src BELOW
         File: images/jar-hot.jpg (your mango atchar jar mockup)
         Recommended size: 500×600px or taller portrait ratio
      ============================================================ */
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      object-fit: contain;
      position: relative;
      z-index: 2;
      animation: jarFloat 4s ease-in-out infinite;
      filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
    }
    @keyframes jarFloat {
      0%,100%{ transform: translateY(0); }
      50%{ transform: translateY(-14px); }
    }
    .hero-tag {
      position: absolute;
      background: rgba(10,10,8,0.85);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(31,170,89,0.2);
      border-radius: 100px;
      padding: 10px 18px;
      font-size: 0.82rem;
      font-weight: 600;
      color: #fff;
      white-space: nowrap;
      z-index: 3;
    }
    .hero-tag-1 { top: 10%; left: -5%; animation: tagFloat1 3.5s ease-in-out infinite; }
    .hero-tag-2 { bottom: 20%; right: -8%; animation: tagFloat2 4s ease-in-out infinite 0.5s; }
    .hero-tag-3 { top: 40%; right: -10%; animation: tagFloat1 3.8s ease-in-out infinite 1s; }
    @keyframes tagFloat1 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-8px) rotate(1deg)} }
    @keyframes tagFloat2 { 0%,100%{transform:translateY(0) rotate(1deg)} 50%{transform:translateY(-6px) rotate(-1deg)} }
    .hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mango); display: inline-block; margin-right: 6px; }
    .hero-jar-placeholder {
      width: 100%;
      max-width: 400px;
      aspect-ratio: 3/4;
      background: linear-gradient(145deg, rgba(31,170,89,0.08) 0%, rgba(192,57,43,0.06) 100%);
      border: 2px dashed rgba(31,170,89,0.2);
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .hero-jar-placeholder .ph-icon { font-size: 3rem; }
    .hero-jar-placeholder .ph-text { color: rgba(255,255,255,0.3); font-size: 0.85rem; text-align: center; line-height: 1.5; }
    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.3);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      z-index: 3;
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(31,170,89,0.6), transparent);
      animation: scrollLine 1.5s ease-in-out infinite;
    }
    @keyframes scrollLine { 0%{opacity:1;transform:scaleY(1) translateY(0)} 100%{opacity:0;transform:scaleY(0.5) translateY(20px)} }

    /* ============================
       ABOUT SECTION
    ============================ */
    .about { background: var(--cream); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-img-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .about-img {
      /* ============================================================
         IMAGE PLACEHOLDER — REPLACE src BELOW
         File: images/label-garlic.jpg (label design with Garlic/Mild)
         Recommended size: 500×600px
      ============================================================ */
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: var(--radius-lg);
    }
    .about-img-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(145deg, var(--off-white), #ecdec8);
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 2px dashed rgba(31,170,89,0.3);
    }
    .about-img-placeholder .ph-icon { font-size: 2.5rem; }
    .about-img-placeholder .ph-text { color: var(--text-light); font-size: 0.82rem; text-align: center; }
    .about-float-card {
      position: absolute;
      bottom: -20px;
      right: -24px;
      background: var(--black);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      border: 1px solid rgba(31,170,89,0.15);
      box-shadow: var(--shadow-dark);
      max-width: 200px;
    }
    .about-float-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--mango);
      line-height: 1;
      margin-bottom: 4px;
    }
    .about-float-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; }
    .about-content {}
    .about-slogan {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-style: italic;
      color: var(--mango);
      margin: 16px 0 24px;
    }
    .mission-card {
      background: var(--off-black);
      border-radius: var(--radius-md);
      padding: 24px;
      margin-top: 32px;
      border-left: 3px solid var(--mango);
    }
    .mission-card p {
      color: rgba(255,255,255,0.75);
      font-size: 1rem;
      line-height: 1.7;
    }
    .mission-card strong { color: var(--mango); font-weight: 600; }
    .pairs-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }
    .pair-tag {
      background: rgba(31,170,89,0.08);
      border: 1px solid rgba(31,170,89,0.18);
      color: var(--mango-dark);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    /* ============================
       PRODUCTS SECTION
    ============================ */
    .products { background: var(--off-black); }
    .products-header { text-align: center; margin-bottom: 60px; }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .product-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-8px);
      border-color: rgba(31,170,89,0.25);
      box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(31,170,89,0.12);
    }
    .product-img-wrap {
      position: relative;
      aspect-ratio: 4/3;
      background: linear-gradient(145deg, rgba(31,170,89,0.07) 0%, rgba(192,57,43,0.07) 100%);
      overflow: hidden;
    }
    .product-img {
      /* ============================================================
         IMAGE PLACEHOLDER — REPLACE src BELOW
         Products 1-2: images/label-hot.jpg  (Hot variant label)
         Products 3-4: images/label-plain.jpg (Plain variant label)
         Products 5-6: images/label-mild.jpg  (Mild/Garlic label)
         Recommended size: 400×300px or similar 4:3 ratio
      ============================================================ */
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-card:hover .product-img { transform: scale(1.04); }
    .product-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .product-img-placeholder .ph-icon { font-size: 3rem; }
    .product-img-placeholder .ph-label { color: rgba(255,255,255,0.25); font-size: 0.78rem; letter-spacing: 0.05em; }
    .product-badges {
      position: absolute;
      top: 14px;
      left: 14px;
      display: flex;
      gap: 6px;
    }
    .badge {
      padding: 4px 10px;
      border-radius: 100px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .badge-vol { background: var(--black); color: var(--mango); }
    .badge-hot { background: var(--red); color: #fff; }
    .badge-mild { background: var(--green); color: #fff; }
    .badge-garlic { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
    .badge-plain { background: var(--charcoal); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.1); }
    .product-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .product-name {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.2;
    }
    .product-desc {
      font-size: 0.88rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.45);
      flex: 1;
      margin-bottom: 20px;
    }
    .product-footer {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .product-footer .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 12px 16px; }

    /* ============================
       WHY CHOOSE US
    ============================ */
    .why { background: var(--black); }
    .why-header { text-align: center; margin-bottom: 60px; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .why-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--mango), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .why-card:hover { border-color: rgba(31,170,89,0.15); transform: translateY(-4px); }
    .why-card:hover::before { transform: scaleX(1); }
    .why-icon {
      width: 54px; height: 54px;
      border-radius: var(--radius-md);
      background: rgba(31,170,89,0.1);
      border: 1px solid rgba(31,170,89,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
    }
    .why-title {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .why-desc { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.4); }

    /* ============================
       INGREDIENTS SECTION
    ============================ */
    .ingredients { background: var(--cream); }
    .ingredients-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .ingredients-content {}
    .ingredients-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0;
    }
    .ing-tag {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-dark);
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .ing-tag.garlic { border-color: rgba(31,170,89,0.4); background: rgba(31,170,89,0.06); color: var(--mango-dark); }
    .info-cards {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .info-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 24px;
      border: 1px solid rgba(0,0,0,0.06);
      box-shadow: 0 4px 16px rgba(0,0,0,0.04);
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .info-card-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .info-card-icon.storage { background: rgba(45,106,79,0.1); }
    .info-card-icon.allergen { background: rgba(192,57,43,0.1); }
    .info-card-icon.garlic { background: rgba(31,170,89,0.1); }
    .info-card-body {}
    .info-card-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; color: var(--text-dark); }
    .info-card-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

    /* ============================
       GALLERY SECTION
    ============================ */
    .gallery { background: var(--off-black); }
    .gallery-header { text-align: center; margin-bottom: 50px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
    }
    .gallery-item:first-child { grid-row: span 2; aspect-ratio: auto; }
    .gallery-img {
      /* ============================================================
         IMAGE PLACEHOLDERS — REPLACE src ATTRIBUTES BELOW
         gallery-1: images/jar-hot.jpg  (main product jar)
         gallery-2: images/logo.png     (brand logo)
         gallery-3: images/label-garlic.jpg
         gallery-4: images/label-mild.jpg
      ============================================================ */
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover .gallery-img { transform: scale(1.06); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
      display: flex;
      align-items: flex-end;
      padding: 16px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-caption {
      color: #fff;
      font-size: 0.82rem;
      font-weight: 600;
    }
    .gallery-placeholder {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255,255,255,0.03);
      border: 1px dashed rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
    }
    .gallery-placeholder .ph-icon { font-size: 2rem; opacity: 0.4; }
    .gallery-placeholder .ph-text { color: rgba(255,255,255,0.25); font-size: 0.75rem; text-align: center; }

    /* ============================
       CTA BANNER
    ============================ */
    .cta-banner {
      background: var(--black);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-banner-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(31,170,89,0.07) 0%, transparent 60%);
    }
    .cta-banner-accent {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--mango), transparent);
    }
    .cta-banner-inner {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .cta-banner-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 4rem);
      font-weight: 900;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.1;
      letter-spacing: -0.025em;
    }
    .cta-banner-title .accent { color: var(--mango); font-style: italic; }
    .cta-banner-sub {
      color: rgba(255,255,255,0.45);
      font-size: 1.05rem;
      margin-bottom: 40px;
    }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ============================
       CONTACT SECTION
    ============================ */
    .contact { background: var(--off-white); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
    }
    .contact-info {}
    .contact-info-card {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .contact-info-card:last-of-type { border-bottom: none; }
    .contact-icon {
      width: 46px; height: 46px;
      border-radius: 12px;
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-icon-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
    .contact-icon-label { font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dark); margin-bottom: 2px; }
    .contact-icon-val { color: var(--text-mid); }
    .contact-icon-val a { color: inherit; transition: color 0.2s; }
    .contact-icon-val a:hover { color: var(--mango-dark); }
    .quick-actions {
      display: flex;
      gap: 10px;
      margin-top: 28px;
    }
    .quick-btn {
      flex: 1;
      padding: 13px 0;
      border-radius: var(--radius-md);
      font-size: 0.82rem;
      font-weight: 700;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      transition: var(--transition);
      text-align: center;
      border: 2px solid transparent;
      text-decoration: none;
    }
    .quick-btn .q-icon { font-size: 1.3rem; }
    .quick-btn.wa { background: rgba(37,211,102,0.08); color: #1db954; border-color: rgba(37,211,102,0.2); }
    .quick-btn.wa:hover { background: var(--wa-green); color: #fff; border-color: var(--wa-green); }
    .quick-btn.call { background: rgba(31,170,89,0.08); color: var(--mango-dark); border-color: rgba(31,170,89,0.2); }
    .quick-btn.call:hover { background: var(--mango); color: var(--black); border-color: var(--mango); }
    .quick-btn.email { background: rgba(192,57,43,0.08); color: var(--red); border-color: rgba(192,57,43,0.2); }
    .quick-btn.email:hover { background: var(--red); color: #fff; border-color: var(--red); }

    /* Contact Form */
    .contact-form-wrap {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.05);
    }
    .form-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: var(--text-dark);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-dark);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid rgba(0,0,0,0.1);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--text-dark);
      background: var(--off-white);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      appearance: none;
    }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A44' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      cursor: pointer;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--mango);
      box-shadow: 0 0 0 3px rgba(31,170,89,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--black);
      color: #fff;
      border: none;
      border-radius: var(--radius-md);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      letter-spacing: 0.01em;
      margin-top: 8px;
    }
    .form-submit:hover { background: var(--mango-dark); color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
    .form-success {
      display: none;
      text-align: center;
      padding: 20px;
      background: rgba(45,106,79,0.08);
      border: 1px solid rgba(45,106,79,0.2);
      border-radius: var(--radius-md);
      color: var(--green);
      font-weight: 600;
      font-size: 0.95rem;
      margin-top: 16px;
    }

    /* ============================
       FOOTER
    ============================ */
    .footer {
      background: var(--black);
      padding: 70px 0 0;
      border-top: 1px solid rgba(31,170,89,0.08);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand {}
    .footer-logo-img {
      /* ============================================================
         IMAGE PLACEHOLDER — REPLACE src BELOW
         File: images/logo-white.png (white logo for dark background)
      ============================================================ */
      height: 48px;
      width: auto;
      object-fit: contain;
      filter: none;
      margin-bottom: 16px;
    }
    .footer-logo-text {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }
    .footer-slogan {
      font-size: 0.8rem;
      color: var(--mango);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-style: italic;
      margin-bottom: 20px;
    }
    .footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.35); max-width: 280px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 24px; }
    .social-btn {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.4);
      font-size: 1rem;
      transition: var(--transition);
      cursor: pointer;
    }
    .social-btn:hover { background: var(--mango); color: var(--black); border-color: var(--mango); }
    .footer-col-title {
      font-weight: 700;
      font-size: 0.88rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.6);
      margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
    .footer-links a:hover { color: var(--mango); }
    .footer-contact-item { font-size: 0.88rem; color: rgba(255,255,255,0.35); line-height: 1.65; margin-bottom: 10px; }
    .footer-contact-item a { color: inherit; transition: color 0.2s; }
    .footer-contact-item a:hover { color: var(--mango); }
    .footer-contact-label { color: rgba(255,255,255,0.6); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 2px; }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.2); }
    .footer-copy a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
    .footer-copy a:hover { color: var(--mango); }
    .footer-wa-quick {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37,211,102,0.1);
      border: 1px solid rgba(37,211,102,0.2);
      color: #25d366;
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      transition: var(--transition);
    }
    .footer-wa-quick:hover { background: var(--wa-green); color: #fff; border-color: var(--wa-green); }

    /* ============================
       DIVIDER
    ============================ */
    .section-divider {
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }
    .section-divider svg { display: block; width: 100%; }

    /* ============================
       RESPONSIVE
    ============================ */
    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item:first-child { grid-row: span 1; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-grid > :first-child { grid-column: span 2; }
    }

    @media (max-width: 768px) {
      .section-pad { padding: 70px 0; }
      .section-pad-lg { padding: 80px 0; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-inner {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        text-align: center;
      }
      .hero-visual { order: -1; }
      .hero-jar-placeholder { max-width: 280px; }
      .hero-sub { margin: 0 auto 32px; }
      .hero-actions { justify-content: center; }
      .hero-trust { justify-content: center; }
      .hero-tag { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-float-card { right: 16px; bottom: -10px; }
      .ingredients-grid { grid-template-columns: 1fr; gap: 32px; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .products-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-grid > :first-child { grid-column: span 1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .form-row { grid-template-columns: 1fr; }
      .contact-form-wrap { padding: 28px 20px; }
      .cta-actions { flex-direction: column; align-items: center; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 2.4rem; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { justify-content: center; }
      .gallery-grid { grid-template-columns: 1fr; }
    }
  

/* Green & white nature refinements */
.nav-logo-img, .footer-logo-img {
  background: #fff;
  border-radius: 14px;
  padding: 5px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero {
  background: linear-gradient(135deg, #06351f 0%, #0b472b 50%, #0f5f39 100%);
}
.products, .gallery, .footer, .why, .cta-banner {
  background: linear-gradient(180deg, #07361f 0%, #0b472b 100%);
}
.btn-primary, .form-submit:hover, .social-btn:hover {
  background: var(--mango);
  color: #fff;
}
.btn-outline:hover, .nav-links a:hover, .footer-links a:hover, .footer-contact-item a:hover {
  color: #A8E6B1;
}
.section-label, .hero-badge span, .footer-slogan, .text-mango {
  color: #0F7A3C;
}
.bg-dark .section-label, .products .section-label, .why .section-label, .gallery .section-label, .cta-banner .section-label, .footer-slogan {
  color: #A8E6B1;
}
.pair-tag, .ing-tag.garlic {
  color: #0F7A3C;
  border-color: rgba(31,170,89,0.25);
  background: rgba(31,170,89,0.08);
}

/* ============================================================
   PRODUCTION HERO COLOR UPDATE - GREEN / WHITE NATURE THEME
   Inspired by premium healthy-food landing pages.
   This override keeps the site mobile-first and makes the hero
   use a strong brand colour background instead of a plain/dark hero.
============================================================ */
:root {
  --hero-green-900: #07351f;
  --hero-green-800: #0b4d2b;
  --hero-green-700: #116735;
  --hero-green-600: #1b8f45;
  --leaf-green: #a8e6b1;
  --fresh-white: #ffffff;
  --mango-accent: #f7c948;
}

.navbar {
  background: rgba(7, 53, 31, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar.scrolled {
  background: rgba(5, 38, 21, 0.96);
  border-bottom-color: rgba(168,230,177,0.18);
}

.nav-links a:hover {
  color: var(--fresh-white);
  background: rgba(168,230,177,0.14);
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 46%, rgba(255,255,255,0.18) 0 12%, transparent 38%),
    radial-gradient(circle at 92% 12%, rgba(168,230,177,0.28) 0 3%, transparent 18%),
    radial-gradient(circle at 8% 82%, rgba(247,201,72,0.14) 0 4%, transparent 22%),
    linear-gradient(135deg, var(--hero-green-900) 0%, var(--hero-green-800) 46%, var(--hero-green-700) 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.25));
}

.hero::after {
  content: "🥭";
  position: absolute;
  right: 7%;
  top: 20%;
  z-index: 1;
  font-size: clamp(2.2rem, 5vw, 5rem);
  opacity: 0.14;
  transform: rotate(-18deg);
  filter: blur(0.2px);
  pointer-events: none;
}

.hero-grain {
  opacity: 0.065;
  z-index: 1;
}

.hero-gradient {
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 70% at 76% 55%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 38%, transparent 72%),
    radial-gradient(ellipse 45% 60% at 22% 42%, rgba(168,230,177,0.20) 0%, transparent 62%);
}

.hero-ring,
.hero-ring-2 {
  z-index: 1;
  border-color: rgba(255,255,255,0.10);
}

.hero-inner {
  z-index: 3;
  min-height: 100vh;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}

.hero-badge span {
  color: var(--fresh-white) !important;
}

.hero-badge-dot,
.hero-tag .dot {
  background: var(--mango-accent);
  box-shadow: 0 0 0 5px rgba(247,201,72,0.15);
}

.hero-title {
  color: var(--fresh-white);
  text-shadow: 0 16px 46px rgba(0,0,0,0.28);
}

.hero-title .accent {
  color: var(--mango-accent) !important;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
}

.trust-badge {
  color: rgba(255,255,255,0.86);
}

.trust-badge-icon {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-glow {
  background:
    radial-gradient(ellipse, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.14) 33%, transparent 70%);
}

.hero-jar-img {
  filter: drop-shadow(0 30px 56px rgba(0,0,0,0.34));
  transform-origin: center bottom;
}

.hero-tag {
  background: rgba(255,255,255,0.92);
  color: var(--hero-green-900);
  border: 1px solid rgba(255,255,255,0.70);
  box-shadow: 0 18px 46px rgba(0,0,0,0.16);
}

.btn-primary,
.btn-wa,
.form-submit {
  box-shadow: 0 14px 34px rgba(6, 95, 45, 0.20);
}

.btn-outline {
  border-color: rgba(255,255,255,0.56);
  color: var(--fresh-white);
  background: rgba(255,255,255,0.08);
}

.btn-outline:hover {
  border-color: var(--fresh-white);
  color: var(--hero-green-900) !important;
  background: var(--fresh-white);
}

.hero-scroll {
  color: rgba(255,255,255,0.68);
}

.scroll-line {
  background: linear-gradient(to bottom, rgba(255,255,255,0.85), transparent);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 50% 24%, rgba(255,255,255,0.22) 0 16%, transparent 46%),
      linear-gradient(160deg, #07351f 0%, #0d5f34 100%);
  }
  .hero-inner {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 72px;
  }
  .hero-jar-img {
    max-width: 310px;
  }
  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }
  .hero-sub {
    color: rgba(255,255,255,0.86);
  }
}
