     /* ═══════════════════════════════════
           NAVBAR — exact home page styles
        ═══════════════════════════════════ */
        .navbar {
            padding: 0;
            transition: background 0.45s ease, box-shadow 0.45s ease;
            background: #ffffff;
            box-shadow: 0 2px 16px rgba(18,56,34,0.08);
            z-index: 1050;
        }
        .navbar.scrolled {
            background: #ffffff !important;
            box-shadow: 0 4px 20px rgba(18,56,34,0.10);
        }
        .navbar-inner {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 20px 28px;
            height: 100px;
            gap: 0;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
            margin-right: 32px;
        }
        .brand-logo-img {
            height: 70px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease, filter 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
        }
        .brand-logo-img:hover { transform: scale(1.05); }
 
        /* Fallback text logo if image not found */
        .brand-text-fallback {
            display: flex; flex-direction: column;
        }
        .brand-name-text {
            font-family: 'Playfair Display', serif;
            font-size: 20px; font-weight: 800;
            color: var(--green-deep); line-height: 1.1;
        }
        .navbar.scrolled .brand-name-text { color: var(--green-deep); }
        .brand-sub-text {
            font-size: 10px; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: var(--amber);
        }
 
        /* Nav links center */
        .navbar-links-wrap { flex: 1; display: flex; justify-content: center; }
        .navbar-links {
            display: flex; align-items: center;
            list-style: none; margin: 0; padding: 0;
            gap: 2px;
        }/* ── Normal nav link — green color ── */
.navbar-links .nav-link {
    font-size: 14px; font-weight: 600;
    color: var(--green-deep) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    position: relative;
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
}

/* ── Underline via ::before ── */
.navbar-links .nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}

/* ── Hover — green background, green text ── */
.navbar-links .nav-link:hover {
    color: var(--green-deep) !important;
    background: var(--green-pale);
}
.navbar-links .nav-link:hover::before {
    width: 55%;
}

/* ── ACTIVE — amber color + underline ── */
.navbar-links .nav-link.active {
    color: var(--amber) !important;
    font-weight: 700;
    background: rgba(255, 143, 0, 0.06);
}
.navbar-links .nav-link.active::before {
    width: 55%;
}

/* ── Scrolled state — keep same logic ── */
.navbar.scrolled .navbar-links .nav-link {
    color: var(--green-deep) !important;
}
.navbar.scrolled .navbar-links .nav-link:hover {
    background: var(--green-pale);
    color: var(--green-deep) !important;
}
.navbar.scrolled .navbar-links .nav-link.active {
    color: var(--amber) !important;
} 
 
        /* Dropdown */
        .navbar-links .dropdown-menu {
            border: none; border-radius: 14px;
            box-shadow: 0 20px 50px rgba(10,31,18,0.18);
            padding: 8px; min-width: 210px; margin-top: 6px;
            background: #fff;
            animation: dropIn 0.22s ease forwards;
        }
        @keyframes dropIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
        .navbar-links .dropdown-item {
            border-radius: 9px; font-size: 13.5px; font-weight: 600;
            color: var(--green-deep); padding: 10px 14px;
            display: flex; align-items: center; gap: 10px;
            transition: background 0.2s, transform 0.2s;
        }
        .navbar-links .dropdown-item:hover { background: var(--green-pale); transform: translateX(4px); }
        .navbar-links .dropdown-toggle::after {
            content: ""; display: inline-block; vertical-align: middle;
            margin-left: 6px; border-top: 4px solid currentColor;
            border-right: 4px solid transparent; border-left: 4px solid transparent;
            border-bottom: 0; position: static; transform: none;
            background: transparent; width: auto; height: auto;
        }
 
        /* CTA button */
        .btn-nav-cta {
            background: linear-gradient(135deg, var(--amber), #e68000);
            color: #fff !important; border: none; border-radius: 50px;
            padding: 10px 22px; font-size: 13px; font-weight: 700;
            letter-spacing: 0.5px; text-transform: uppercase;
            text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
            box-shadow: 0 6px 18px rgba(255,143,0,0.35);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            white-space: nowrap; flex-shrink: 0;
        }
        .btn-nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(255,143,0,0.45);
            color: #fff !important;
        }
 
        /* Right actions */
        .navbar-actions {
            display: flex; align-items: center; gap: 4px;
            flex-shrink: 0; margin-left: 20px;
        }
        .nav-icon-btn {
            width: 40px; height: 40px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--green-deep); font-size: 17px;
            text-decoration: none;
            transition: background 0.25s, color 0.25s, transform 0.25s;
            position: relative; flex-shrink: 0;
        }
        .nav-icon-btn:hover {
            background: var(--green-pale); color: var(--green-deep); transform: translateY(-2px);
        }
        .navbar.scrolled .nav-icon-btn { color: var(--green-deep); }
        .navbar.scrolled .nav-icon-btn:hover { background: var(--green-pale); color: var(--green-deep); }
 
        /* Phone pill */
        .nav-phone-pill {
            display: flex; align-items: center; gap: 8px;
            padding: 7px 14px 7px 8px; border-radius: 50px;
            background: var(--green-pale);
            color: var(--green-deep); font-size: 13px; font-weight: 600;
            text-decoration: none;
            transition: background 0.25s, color 0.25s;
            flex-shrink: 0; white-space: nowrap;
        }
        .nav-phone-pill i { font-size: 15px; }
        .nav-phone-pill:hover { background: #d0ebd8; color: var(--green-deep); }
        .navbar.scrolled .nav-phone-pill { background: var(--green-pale); color: var(--green-deep); }
        .navbar.scrolled .nav-phone-pill:hover { background: #d0ebd8; color: var(--green-deep); }
 
        /* Cart badge */
        .cart-badge {
            position: absolute; top: 2px; right: 2px;
            min-width: 17px; height: 17px;
            background: #e53935; color: #fff; border-radius: 50px;
            font-size: 9px; font-weight: 800;
            display: flex; align-items: center; justify-content: center;
            padding: 0 3px; line-height: 1; border: 2px solid transparent;
        }
 /* ── LOGIN MODAL ── */
.login-modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.5); z-index: 99999;
    align-items: center; justify-content: center;
}
.login-modal-overlay.open { display: flex; }
.login-modal {
    background: white; border-radius: 14px;
    width: 400px; max-width: 95vw;
    padding: 32px 28px; position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.login-modal-close {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; font-size: 20px;
    color: #aaa; cursor: pointer;
}
.login-modal-close:hover { color: #333; }
.login-modal h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; color: var(--gray-dark); }
.login-modal p.sub { font-size: 13px; color: #888; margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group label {
    font-size: 12px; font-weight: 600; color: #555;
    display: block; margin-bottom: 5px;
    text-transform: uppercase; letter-spacing: 0.4px;
}
.form-group input {
    width: 100%; padding: 10px 14px; border: 1px solid #ddd;
    border-radius: 6px; font-size: 14px; outline: none;
    transition: border 0.2s; font-family: 'DM Sans', sans-serif;
}
.form-group input:focus { border-color: var(--green-mid); }
.btn-submit-login {
    width: 100%; background: var(--green-deep); color: white;
    border: none; padding: 12px; border-radius: 6px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: 0.2s; margin-top: 4px;
    font-family: 'DM Sans', sans-serif;
}
.btn-submit-login:hover { background: var(--green-mid); }
.divider {
    text-align: center; color: #bbb; font-size: 12px;
    margin: 14px 0; position: relative;
}
.divider::before, .divider::after {
    content: ''; position: absolute; top: 50%;
    width: 42%; height: 1px; background: #eee;
}
.divider::before { left: 0; }
.divider::after  { right: 0; }
.btn-google-login {
    width: 100%; background: white; color: #333;
    border: 1px solid #ddd; padding: 11px; border-radius: 6px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: 0.2s; display: flex; align-items: center;
    justify-content: center; gap: 10px;
    font-family: 'DM Sans', sans-serif;
}
.btn-google-login:hover { background: #f5f5f5; }
.google-icon { width: 18px; height: 18px; }
.auth-toggle { text-align: center; font-size: 13px; margin-top: 16px; color: #666; }
.auth-toggle a { color: var(--green-deep); font-weight: 600; cursor: pointer; text-decoration: none; }
.auth-toggle a:hover { color: var(--amber); }
.auth-error {
    background: #ffebee; color: #c62828; font-size: 13px;
    padding: 9px 12px; border-radius: 5px; margin-bottom: 12px;
    display: none; border-left: 3px solid #e53935;
}
.auth-success {
    background: #e8f5e9; color: #2e7d32; font-size: 13px;
    padding: 9px 12px; border-radius: 5px; margin-bottom: 12px;
    display: none; border-left: 3px solid #388e3c;
}
    
         
        /* Mobile collapse */
        @media (max-width: 991px) {
            .navbar-links-wrap { display: none !important; }
            .navbar-actions { display: none !important; }
            .mobile-collapse {
                display: block;
                background: rgba(10,31,18,0.98);
                backdrop-filter: blur(20px);
                border-top: 1px solid rgba(255,255,255,0.06);
                padding: 16px 20px 24px;
            }
            .navbar.scrolled .mobile-collapse { background: rgba(253,250,246,0.98); }
            .mobile-nav-link {
                display: flex; align-items: center; gap: 10px;
                color: rgba(255,255,255,0.88); font-size: 15px; font-weight: 600;
                padding: 13px 16px; border-radius: 12px;
                text-decoration: none; transition: background 0.2s, color 0.2s;
            }
            .mobile-nav-link:hover, .mobile-nav-link.active {
                background: rgba(255,255,255,0.08); color: #fff;
            }
            .navbar.scrolled .mobile-nav-link { color: var(--green-deep); }
            .navbar.scrolled .mobile-nav-link:hover { background: var(--green-pale); }
            .mobile-submenu { padding-left: 16px; margin: 4px 0 8px; }
            .mobile-submenu a {
                display: flex; align-items: center; gap: 10px;
                color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 600;
                padding: 10px 16px; border-radius: 10px;
                text-decoration: none; transition: background 0.2s, color 0.2s;
            }
            .mobile-submenu a:hover { background: rgba(255,255,255,0.08); color: #fff; }
            .navbar.scrolled .mobile-submenu a { color: var(--gray-mid); }
            .mobile-action-row {
                display: flex; align-items: center; justify-content: space-between;
                gap: 12px; margin-top: 16px; padding-top: 16px;
                border-top: 1px solid rgba(255,255,255,0.08);
            }
            .navbar.scrolled .mobile-action-row { border-top-color: rgba(0,0,0,0.07); }
            .mobile-cta {
                flex: 1;
                background: linear-gradient(135deg, var(--amber), #e68000);
                color: #fff !important; border-radius: 50px; padding: 12px 20px;
                font-size: 14px; font-weight: 700; text-align: center;
                text-decoration: none; display: flex; align-items: center;
                justify-content: center; gap: 8px;
                box-shadow: 0 6px 18px rgba(255,143,0,0.3); transition: transform 0.2s;
            }
            .mobile-cta:hover { transform: scale(1.02); }
            .mobile-icon-group { display: flex; align-items: center; gap: 4px; }
            .mobile-icon-btn {
                width: 42px; height: 42px; border-radius: 50%;
                background: rgba(255,255,255,0.08);
                display: flex; align-items: center; justify-content: center;
                color: rgba(255,255,255,0.85); font-size: 18px;
                text-decoration: none; position: relative; transition: background 0.2s;
            }
            .mobile-icon-btn:hover { background: rgba(255,255,255,0.15); }
            .navbar.scrolled .mobile-icon-btn { background: var(--green-pale); color: var(--green-deep); }
            .mobile-badge {
                position: absolute; top: 2px; right: 2px;
                width: 16px; height: 16px; background: #e53935; color: #fff;
                border-radius: 50%; font-size: 9px; font-weight: 800;
                display: flex; align-items: center; justify-content: center;
            }
            .mobile-spices-toggle {
                width: 100%; display: flex; align-items: center; gap: 10px;
                justify-content: space-between;
                color: rgba(255,255,255,0.88); font-size: 15px; font-weight: 600;
                padding: 13px 16px; border-radius: 12px;
                background: none; border: none; cursor: pointer; transition: background 0.2s;
            }
            .mobile-spices-toggle:hover { background: rgba(255,255,255,0.08); }
            .navbar.scrolled .mobile-spices-toggle { color: var(--green-deep); }
            .navbar.scrolled .mobile-spices-toggle:hover { background: var(--green-pale); }
            .toggle-chevron { transition: transform 0.3s ease; font-size: 13px; opacity: 0.7; }
            .mobile-spices-toggle[aria-expanded="true"] .toggle-chevron { transform: rotate(180deg); }
        }
        @media (min-width: 1200px) {
            .nav-phone-text { display: inline !important; }
        }
        @media (min-width: 992px) and (max-width: 1199px) {
            .navbar-links { gap: 0; }
            .navbar-links .nav-link { padding: 8px 10px !important; font-size: 13px; }
            .btn-nav-cta { padding: 9px 16px; font-size: 12px; }
            .nav-phone-text { display: none !important; }
        }
        @media (max-width: 575px) {
            .brand-logo-img { height: 50px; }
            .navbar-inner { padding: 0 14px; height: 62px; }
        }

             /* ===== FOOTER ===== */
.footer { 
  background: var(--green-darkest); 
  color: white; 
  padding: 60px 0 30px; 
  margin-top: 0; 
  position: relative; 
  z-index: 1; 
}

.footer::before { 
  content: ''; 
  position: absolute; 
  top: 0; left: 0; right: 0; height: 2px; 
  background: linear-gradient(90deg, transparent, var(--amber), transparent); 
}

.footer-logo {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.08); 
  margin-top: 30px; 
  padding-top: 20px; 
  text-align: center; 
  color: rgba(255,255,255,0.4); 
  font-size: 13px; 
}.footer-title { font-size: 14px; font-weight: 700; color: var(--amber); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 3px; }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 14px; }
        .footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; transition: 0.3s; display: inline-flex; align-items: center; gap: 8px; }
        .footer-links a:hover { color: var(--amber); transform: translateX(6px); }
