/* =============== GOOGLE FONTS =============== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =============== VARIABLES CSS =============== */
:root {
    --header-height: 4.5rem;

    /* Colors — Fresh Harvest Market Theme */
    --primary-color: #059669;
    --primary-color-alt: #065f46;
    --primary-color-light: #ecfdf5;
    
    /* Backwards compatibility */
    --first-color: var(--primary-color);
    --first-color-alt: var(--primary-color-alt);
    --first-color-light: var(--primary-color-light);
    
    --secondary-color: #f97316;
    --secondary-color-alt: #ea580c;
    
    --title-color: #022c22;
    --text-color: #374151;
    --text-color-light: #6b7280;
    --body-color: #fffef9;
    --container-color: #ffffff;
    --border-color: #d1fae5;

    /* Fonts & Typography */
    --body-font: 'Outfit', sans-serif;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;

    /* Font weight */
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /* Margins */
    --m-0-5: 0.5rem;
    --m-0-75: 0.75rem;
    --m-1: 1rem;
    --m-1-5: 1.5rem;
    --m-2: 2rem;
    --m-2-5: 2.5rem;
    --m-3: 3rem;

    /* Z-Index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    /* Shadows & Border Radius */
    --shadow: 0 8px 24px rgba(5,150,105,0.06);
    --shadow-hover: 0 12px 32px rgba(5,150,105,0.12);
    --radius-1: 0.5rem;
    --radius-2: 1rem;
    --radius-3: 1.5rem;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
    :root {
        --h1-font-size: 4rem;
        --h2-font-size: 2.5rem;
        --h3-font-size: 1.5rem;
        --normal-font-size: 1.125rem;
        --small-font-size: 1rem;
        --smaller-font-size: 0.875rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    transition: .3s;
}

h1, h2, h3, h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button, input {
    border: none;
    outline: none;
    font-family: var(--body-font);
}

button {
    cursor: pointer;
}

/* =============== REUSABLE CSS CLASSES =============== */
.container {
    max-width: 1200px;
    margin-left: var(--m-1-5);
    margin-right: var(--m-1-5);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding: 5rem 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: var(--m-3);
}

.section-title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--m-0-5);
}

.section-subtitle {
    color: var(--first-color);
    font-weight: var(--font-medium);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-2);
    font-weight: var(--font-semi-bold);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--first-color);
    color: #fff;
    box-shadow: 0 4px 16px hsla(var(--hue), 65%, 45%, 0.3);
}

.btn-primary:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px hsla(var(--hue), 65%, 45%, 0.4);
}

.btn-secondary {
    background-color: var(--first-color-light);
    color: var(--first-color);
}

.btn-secondary:hover {
    background-color: var(--first-color);
    color: #fff;
    transform: translateY(-3px);
}

/* =============== HEADER & NAV =============== */
.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    backdrop-filter: blur(10px);
    transition: 0.4s;
    border-bottom: 1px solid transparent;
}

.header.scroll-header {
    box-shadow: 0 2px 16px hsla(0, 0%, 0%, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    column-gap: 0.25rem;
    color: var(--title-color);
    font-weight: var(--font-bold);
    font-size: var(--h3-font-size);
}

.nav-logo i {
    color: var(--first-color);
    font-size: 1.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
    transition: 0.3s;
}

.cart-icon:hover {
    color: var(--first-color);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 0.65rem;
    font-weight: var(--font-bold);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle, .nav-close {
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

.sm-hide {
    display: none;
}

@media screen and (max-width: 967px) {
    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        background-color: #fff;
        width: 100%;
        padding: 4rem 0 3rem;
        box-shadow: 0 4px 16px hsla(0, 0%, 0%, 0.1);
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: var(--z-fixed);
        border-bottom-left-radius: 1.5rem;
        border-bottom-right-radius: 1.5rem;
    }
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
}

.nav-link {
    color: var(--title-color);
    font-weight: var(--font-medium);
    font-size: var(--h3-font-size);
    transition: 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--first-color);
}

.active-link {
    color: var(--first-color);
}

.active-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--first-color);
    bottom: -6px;
    left: 0;
    border-radius: 2px;
}

.nav-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.show-menu {
    top: 0;
}

/* =============== HOME =============== */
.home {
    padding-top: 8rem;
    overflow: hidden;
    position: relative;
}

.home-container {
    row-gap: 3rem;
    align-items: center;
}

.home-data {
    position: relative;
    z-index: 2;
}

.home-subtitle {
    display: inline-block;
    background-color: var(--first-color-light);
    color: var(--first-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--m-1-5);
    font-size: var(--small-font-size);
}

.home-title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--m-1-5);
    line-height: 1.1;
}

.home-title span {
    color: var(--first-color);
}

.home-description {
    margin-bottom: var(--m-2-5);
    max-width: 450px;
    font-size: var(--normal-font-size);
}

.home-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-images {
    position: relative;
    justify-self: center;
    z-index: 2;
}

.blob-img {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob 8s ease-in-out infinite;
    box-shadow: var(--shadow);
    max-width: 400px;
}

@keyframes blob {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.leaf-shape {
    position: absolute;
    background-color: var(--first-color);
    opacity: 0.05;
    border-radius: 0 50% 50% 50%;
    z-index: 1;
}

.leaf-1 {
    width: 300px;
    height: 300px;
    top: -5rem;
    right: -5rem;
    transform: rotate(45deg);
}

.leaf-2 {
    width: 150px;
    height: 150px;
    bottom: 5rem;
    left: -3rem;
    transform: rotate(-15deg);
}

/* =============== FEATURES =============== */
.features-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--container-color);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-3);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--first-color-light);
    z-index: -1;
    transition: height 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--first-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: 0.4s;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: #fff;
    transform: scale(1.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--first-color);
}

.feature-title {
    margin-bottom: var(--m-1);
}

/* =============== PRODUCTS =============== */
.products {
    background-color: #fff;
}

.products-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--body-color);
    border-radius: var(--radius-2);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: 0.3s;
    position: relative;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--first-color-light);
}

.product-img-wrapper {
    position: relative;
    margin-bottom: var(--m-1-5);
    border-radius: var(--radius-1);
    overflow: hidden;
    background-color: #fff;
    padding: 1rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    transition: 0.5s;
    max-height: 160px;
    object-fit: contain;
}

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

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--first-color);
    color: #fff;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-bold);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.product-tag.sale {
    background-color: var(--secondary-color);
}

.product-favorite {
    position: absolute;
    top: 10px;
    right: -40px;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-card:hover .product-favorite {
    right: 10px;
}

.product-favorite:hover {
    color: var(--secondary-color);
}

.product-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--m-0-5);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--m-1);
}

.current-price {
    font-size: var(--h3-font-size);
    font-weight: var(--font-bold);
    color: var(--first-color);
}

.old-price {
    font-size: var(--small-font-size);
    text-decoration: line-through;
    color: var(--text-color-light);
}

.btn-add-cart {
    width: 100%;
    padding: 0.75rem;
    background-color: #fff;
    color: var(--title-color);
    border: 1px solid var(--border-color);
}

.btn-add-cart:hover {
    background-color: var(--first-color);
    color: #fff;
    border-color: var(--first-color);
    transform: translateY(0);
}

/* =============== NEWSLETTER =============== */
.newsletter-container {
    background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
    border-radius: var(--radius-3);
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.newsletter-title {
    color: #fff;
    margin-bottom: var(--m-1);
}

.newsletter-description {
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--m-2);
    max-width: 500px;
    margin-inline: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-2);
    color: var(--text-color);
}

@media screen and (min-width: 576px) {
    .newsletter-form {
        flex-direction: row;
        background-color: #fff;
        padding: 0.5rem;
        border-radius: var(--radius-2);
    }
    
    .newsletter-input {
        padding: 0.5rem 1rem;
    }
    
    .newsletter-form .btn {
        padding: 0.75rem 2rem;
    }
}

/* =============== FOOTER =============== */
.footer {
    background-color: var(--title-color);
    color: #fff;
    padding-top: 5rem;
}

.footer-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    column-gap: 0.25rem;
    font-size: var(--h3-font-size);
    font-weight: var(--font-bold);
    margin-bottom: var(--m-1);
}

.footer-logo i {
    color: var(--first-color);
}

.footer-description {
    color: var(--text-color-light);
    margin-bottom: var(--m-1-5);
}

.footer-title {
    color: #fff;
    margin-bottom: var(--m-1-5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    row-gap: 0.75rem;
}

.footer-link {
    color: var(--text-color-light);
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--first-color);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-copy {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

/* =============== BREAKPOINTS =============== */
@media screen and (min-width: 968px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    
    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }
    
    .nav-toggle, .nav-close {
        display: none;
    }
    
    .sm-hide {
        display: inline-flex;
    }
    
    .nav-list {
        flex-direction: row;
        column-gap: 3rem;
    }
    
    .nav-link {
        font-size: var(--normal-font-size);
    }
    
    .home-container {
        grid-template-columns: 1fr 1fr;
        padding-top: 3rem;
    }
    
    .home-data {
        padding-right: 3rem;
    }
    
    .home-images {
        justify-self: flex-end;
    }
    
    .blob-img {
        max-width: 550px;
    }
    
    .section {
        padding: 7rem 0 2rem;
    }
}

/* =============== NEW HOMEPAGE STYLES =============== */
/* Topbar */
.topbar {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.5rem 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.tb-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.tb-item i {
    font-size: 1.1rem;
}

/* Header Adjustments */
.header {
    top: auto;
    position: sticky;
    border-bottom: 1px solid var(--border-color);
}
.nav-logo {
    gap: 0.5rem;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}
.logo-sub {
    font-size: 0.65rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-outline:hover {
    background: var(--primary-color-light);
}
.btn-outline-sm {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-1);
    font-size: var(--small-font-size);
    font-weight: 600;
    display: inline-flex;
    transition: 0.3s;
}
.btn-outline-sm:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #f8fcf9, #fff);
    overflow: hidden;
}
.hero-badge {
    display: inline-block;
    background: var(--primary-color-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--title-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title span {
    color: var(--primary-color);
}
.hero-description {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}
.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}
.trust-badge i {
    font-size: 1.2rem;
}
.hero-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.hero-main-img {
    width: 100%;
    border-radius: var(--radius-2);
}
.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #fff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    color: var(--primary-color);
    line-height: 1.2;
}
.floating-badge strong {
    font-size: 1.5rem;
    color: var(--title-color);
}
.floating-badge span {
    font-size: 0.65rem;
    color: var(--text-color);
}

/* Features Bar */
.features-bar {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-3);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}
.feat-card {
    flex: 1;
    min-width: 150px;
    text-align: center;
}
.feat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}
.feat-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--title-color);
}
.feat-card p {
    font-size: 0.75rem;
    color: var(--text-color);
}

/* Categories */
.cat-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.cat-header-row .section-title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}
.cat-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2);
    padding: 1rem;
    text-align: center;
    transition: 0.3s;
}
.cat-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.cat-img-wrap {
    width: 100%;
    height: 120px;
    border-radius: var(--radius-1);
    overflow: hidden;
    margin-bottom: 1rem;
}
.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cat-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.cat-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

/* Who We Serve */
.serve-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.serve-card {
    width: 140px;
    text-align: center;
}
.serve-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    object-fit: contain;
}
.serve-card h4 {
    font-size: 1rem;
    color: var(--title-color);
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.why-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--title-color);
}
.why-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}
.why-right {
    background: #f8fcf9;
    padding: 3rem;
    border-radius: var(--radius-3);
    position: relative;
}
.timeline {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--primary-color-light);
}
.tl-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}
.tl-item:last-child {
    margin-bottom: 0;
}
.tl-num {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
}
.tl-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--title-color);
    margin: 0;
}

/* Bottom Banner */
.bottom-banner {
    padding-bottom: 0;
}
.bb-inner {
    background: var(--primary-color-alt);
    border-radius: var(--radius-3);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: #fff;
}
.bb-left h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    max-width: 400px;
}
.bb-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-whatsapp {
    background: #25d366;
    color: #fff;
}
.btn-white {
    background: #fff;
    color: var(--primary-color-alt);
}
.btn-white:hover {
    background: #f1f1f1;
}
.bb-right {
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .topbar-inner { justify-content: center; }
    .hero-title { font-size: 2.5rem; }
    .why-grid { grid-template-columns: 1fr; }
    .bb-inner { flex-direction: column; text-align: center; }
}

/* --- Premium Styles Extracted from index.php --- */

        /* ============================================================
           PREMIUM HOMEPAGE STYLES — Complete Overhaul
        ============================================================ */

        /* ---- Reset & Variables ---- */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            /* ── Fresh Harvest Market Palette ── */
            --green-900: #022c22;
            --green-800: #064e3b;
            --green-700: #065f46;
            --green-600: #059669;
            --green-500: #10b981;
            --green-400: #34d399;
            --green-300: #6ee7b7;
            --green-200: #a7f3d0;
            --green-100: #d1fae5;
            --green-50:  #ecfdf5;
            /* Saffron Orange Accent */
            --amber: #f97316;
            --amber-dark: #ea580c;
            --amber-light: #fff7ed;
            --amber-100: #ffedd5;
            /* Neutrals */
            --white: #ffffff;
            --body-bg: #fffef9;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            /* Typography */
            --font-body: 'Outfit', sans-serif;
            --font-display: 'DM Serif Display', serif;
            /* Shadows */
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
            --shadow-xl: 0 24px 60px rgba(0,0,0,0.14);
            --shadow-green: 0 8px 32px rgba(5,150,105,0.28);
            --shadow-orange: 0 8px 32px rgba(249,115,22,0.28);
            /* Radius */
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --radius-full: 999px;
            /* Motion */
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 0.2s ease;
            /* Aliases */
            --text-dark: var(--gray-900);
            --text-muted: var(--gray-600);
        }

        html { scroll-behavior: smooth; }
        body { font-family: var(--font-body); background: var(--white); color: var(--gray-700); line-height: 1.6; }
        h1, h2, h3, h4, h5 { color: var(--gray-900); font-weight: 700; line-height: 1.2; }
        a { text-decoration: none; color: inherit; }
        img { display: block; max-width: 100%; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

        /* ---- Scrollbar ---- */
        ::-webkit-scrollbar { width: 6px; height: 6px; background: transparent; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.2); border-radius: 4px; }

        /* ---- Top Banner ---- */
        .top-announcement {
            /* Deep teal-green — on-brand for fresh produce */
            background: linear-gradient(90deg, #022c22 0%, #065f46 50%, #022c22 100%);
            color: rgba(255,255,255,0.95);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            padding: 0.55rem 0;
        }
        .top-announcement .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .ta-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .ta-item i { color: var(--amber); font-size: 1rem; }
        .ta-divider { color: rgba(255,255,255,0.25); }

        /* ---- Header / Nav ---- */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--gray-200);
            transition: var(--transition);
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }
        .nav {
            display: flex;
            align-items: center;
            height: 70px;
            gap: 2rem;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }
        .nav-logo-icon {
            width: 38px;
            height: 38px;
            /* Sophisticated dark green */
            background: linear-gradient(135deg, var(--green-600), var(--green-800));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
            box-shadow: 0 4px 12px rgba(22,163,74,0.35);
        }
        .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
        .nav-logo-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--green-700);
            letter-spacing: -0.5px;
        }
        .nav-logo-sub {
            font-size: 0.65rem;
            color: var(--gray-400);
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex: 1;
            justify-content: center;
        }
        .nav-link {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--gray-700);
            padding: 0.5rem 0.9rem;
            border-radius: var(--radius-sm);
            transition: var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--green-600);
            background: var(--green-50);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--green-500);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }
        .nav-icon-btn {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--gray-700);
            transition: var(--transition-fast);
            position: relative;
        }
        .nav-icon-btn:hover {
            background: var(--green-50);
            color: var(--green-600);
        }
        .cart-count {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 17px;
            height: 17px;
            background: var(--amber);
            color: white;
            font-size: 0.6rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nav-cta {
            /* Sleek dark green with a subtle purple transition */
            background: linear-gradient(135deg, var(--green-600), var(--green-800));
            color: white;
            padding: 0.55rem 1.3rem;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            box-shadow: 0 4px 14px rgba(22,163,74,0.3);
            display: inline-flex;
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            /* Warm saffron orange on hover */
            background: linear-gradient(135deg, var(--amber), var(--amber-dark));
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
        }
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }
        .nav-hamburger span {
            width: 22px;
            height: 2px;
            background: var(--gray-700);
            border-radius: 2px;
            transition: var(--transition-fast);
        }

        /* ---- Buttons ---- */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            border: none;
            outline: none;
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--green-500), var(--green-700));
            color: white;
            padding: 0.85rem 2rem;
            border-radius: var(--radius-full);
            box-shadow: 0 6px 20px rgba(22,163,74,0.35);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(22,163,74,0.45);
        }
        .btn-primary:active { transform: translateY(-1px); }
        .btn-ghost {
            background: rgba(255,255,255,0.15);
            color: white;
            padding: 0.85rem 2rem;
            border-radius: var(--radius-full);
            border: 1.5px solid rgba(255,255,255,0.4);
            backdrop-filter: blur(4px);
        }
        .btn-ghost:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.7);
            transform: translateY(-2px);
        }
        .btn-outline-green {
            background: transparent;
            color: var(--green-600);
            padding: 0.75rem 1.75rem;
            border-radius: var(--radius-full);
            border: 2px solid var(--green-500);
        }
        .btn-outline-green:hover {
            background: var(--green-500);
            color: white;
            transform: translateY(-2px);
        }
        .btn-sm {
            padding: 0.6rem 1.25rem;
            font-size: 0.85rem;
        }
        .btn-whatsapp-prem {
            background: #25d366;
            color: white;
            padding: 0.85rem 2rem;
            border-radius: var(--radius-full);
            box-shadow: 0 6px 20px rgba(37,211,102,0.35);
        }
        .btn-whatsapp-prem:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(37,211,102,0.45);
        }
        .btn-white-outline {
            background: rgba(255,255,255,0.1);
            border: 1.5px solid rgba(255,255,255,0.5);
            color: white;
            padding: 0.85rem 2rem;
            border-radius: var(--radius-full);
            backdrop-filter: blur(4px);
        }
        .btn-white-outline:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        /* ---- Section Heading ---- */
        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--green-100);
            color: var(--green-700);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: var(--radius-full);
            margin-bottom: 1.25rem;
        }
        .section-eyebrow i { font-size: 1rem; }
        .section-title-lg {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1.15;
            letter-spacing: -1px;
        }
        .section-title-lg .accent { color: var(--green-600); }
        .section-subtitle {
            color: var(--gray-600);
            font-size: 1.05rem;
            font-weight: 400;
            max-width: 500px;
            line-height: 1.7;
        }

        /* ---- HERO SECTION ---- */
        .hero {
            min-height: 90vh;
            background: linear-gradient(135deg, #022c22 0%, #065f46 40%, #059669 70%, #10b981 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        /* Decorative blobs */
        .hero-blob-1 {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74,222,128,0.12) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-blob-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
            bottom: -50px;
            left: -50px;
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            padding: 6rem 0;
        }
        /* Left */
        .hero-badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            backdrop-filter: blur(8px);
            color: rgba(255,255,255,0.95);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.45rem 1.1rem;
            border-radius: var(--radius-full);
            margin-bottom: 1.5rem;
        }
        .hero-badge-pill .dot {
            width: 6px;
            height: 6px;
            background: var(--green-300);
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.7); }
        }
        .hero-headline {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }
        .hero-headline .hero-accent {
            color: var(--green-300);
            display: block;
        }
        .hero-desc {
            color: rgba(255,255,255,0.78);
            font-size: 1.05rem;
            line-height: 1.75;
            margin-bottom: 2.5rem;
            max-width: 460px;
        }
        .hero-cta-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }
        .hero-trust-row {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255,255,255,0.85);
            font-size: 0.88rem;
            font-weight: 500;
        }
        .hero-trust-item i {
            color: var(--green-300);
            font-size: 1.1rem;
        }
        /* Right — image stack */
        .hero-visuals {
            position: relative;
            height: 520px;
        }
        .hero-img-main {
            position: absolute;
            right: 0;
            top: 0;
            width: 420px;
            height: 420px;
            object-fit: cover;
            border-radius: 40% 60% 60% 40% / 50% 50% 60% 40%;
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
            animation: float 7s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-18px); }
        }
        .hero-glass-card {
            position: absolute;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: var(--radius-lg);
            padding: 1rem 1.25rem;
            color: white;
            font-size: 0.85rem;
        }
        .hero-card-1 {
            top: 30px;
            left: -30px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .hero-card-1 .card-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--green-400), var(--green-600));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .hero-card-1 .card-label { font-size: 0.7rem; opacity: 0.75; }
        .hero-card-1 .card-value { font-size: 1.1rem; font-weight: 700; }
        .hero-card-2 {
            bottom: 60px;
            left: -40px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .hero-card-2 .card-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--amber), #d97706);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .hero-badge-corner {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 110px;
            height: 110px;
            background: white;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            color: var(--green-700);
            animation: spin-slow 15s linear infinite;
        }
        .hero-badge-corner .big { font-size: 1.6rem; font-weight: 900; line-height: 1; }
        .hero-badge-corner .small { font-size: 0.6rem; font-weight: 600; letter-spacing: 1px; color: var(--gray-600); }
        .hero-badge-corner i { font-size: 1.5rem; margin-bottom: 0.15rem; }
        @keyframes spin-slow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ---- STATS STRIP ---- */
        .stats-strip {
            background: var(--white);
            padding: 2.5rem 0;
            border-bottom: 1px solid var(--gray-200);
        }
        .stats-strip .container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            text-align: center;
        }
        .stat-item { padding: 1rem; }
        .stat-value {
            font-size: 2.25rem;
            font-weight: 900;
            color: var(--amber);
            line-height: 1;
            margin-bottom: 0.4rem;
        }
        .stat-label {
            font-size: 0.88rem;
            color: var(--gray-600);
            font-weight: 500;
        }
        .stat-divider {
            border: none;
            border-left: 1px solid var(--gray-200);
            height: 60px;
            align-self: center;
        }

        /* ---- FEATURES BAR ---- */
        .features-strip {
            background: #fff;
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
            padding: 2.5rem 0;
        }
        .features-strip .container {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1px;
        }
        .fstrip-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.5rem 1rem;
            border-right: 1px solid var(--gray-200);
            transition: var(--transition-fast);
        }
        .fstrip-card:last-child { border-right: none; }
        .fstrip-card:hover { background: var(--gray-50); }
        .fstrip-icon {
            width: 52px;
            height: 52px;
            background: var(--green-100);
            border: 1px solid var(--green-200);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--green-600);
            margin-bottom: 0.9rem;
        }
        .fstrip-card h4 {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--gray-800);
            margin-bottom: 0.3rem;
        }
        .fstrip-card p {
            font-size: 0.72rem;
            color: var(--gray-500);
            line-height: 1.5;
        }

        /* ---- CATEGORIES ---- */
        .section { padding: 6rem 0; }
        .section-alt { background: var(--gray-50); }
        .categories-section { padding: 6rem 0; }
        .sec-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 3rem;
        }
        .cat-grid-prem {
            display: flex;
            overflow-x: auto;
            gap: 1.25rem;
            padding-bottom: 1.5rem;
            scroll-snap-type: x mandatory;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }
        .cat-grid-prem::-webkit-scrollbar {
            display: none; /* Ghost scrollbar for Chrome/Safari */
        }
        .cat-card-prem {
            flex: 0 0 160px;
            scroll-snap-align: start;
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            aspect-ratio: 3/4;
            cursor: pointer;
            group: true;
        }
        .cat-card-prem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .cat-card-prem:hover img { transform: scale(1.08); }
        .cat-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,61,26,0.92) 0%, rgba(10,61,26,0.3) 50%, transparent 100%);
            transition: var(--transition);
        }
        .cat-card-prem:hover .cat-overlay {
            background: linear-gradient(to top, rgba(10,61,26,0.96) 0%, rgba(10,61,26,0.5) 60%, rgba(10,61,26,0.1) 100%);
        }
        .cat-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.25rem 1rem;
            color: white;
        }
        .cat-card-content h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.4rem;
        }
        .cat-shop-link {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--green-300);
            opacity: 0;
            transform: translateY(8px);
            transition: var(--transition);
        }
        .cat-card-prem:hover .cat-shop-link {
            opacity: 1;
            transform: translateY(0);
        }

        /* ---- PRODUCTS ---- */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .prod-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            position: relative;
        }
        .prod-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--green-200, #bbf7d0);
        }
        .prod-img-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: var(--gray-50);
        }
        .prod-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
        }
        .prod-card:hover .prod-img-wrap img { transform: scale(1.06); }
        .prod-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--green-100);
            color: var(--green-700);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 0.25rem 0.65rem;
            border-radius: var(--radius-full);
        }
        .prod-offer-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #ef4444;
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.25rem 0.65rem;
            border-radius: var(--radius-full);
        }
        .out-of-stock-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(220, 38, 38, 0.9);
            color: white;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 0.25rem 0.65rem;
            border-radius: 6px;
            text-transform: uppercase;
            z-index: 2;
        }
        .prod-body { padding: 1.25rem; }
        .prod-name {
            font-size: 1rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }
        .prod-price-row {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .min-qty-price-label {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--green-700);
            background: var(--green-50, #f0fdf4);
            border: 1px solid var(--green-200, #bbf7d0);
            padding: 2px 7px;
            border-radius: 4px;
            margin-bottom: 0.35rem;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        .min-qty-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--green-700);
            background: var(--green-50, #f0fdf4);
            border: 1px solid var(--green-200, #bbf7d0);
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 0.5rem;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        .prod-price {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--green-600);
        }
        .prod-old-price {
            font-size: 0.85rem;
            text-decoration: line-through;
            color: var(--gray-400);
        }
        .prod-unit {
            font-size: 0.85rem;
            color: var(--gray-500);
            font-weight: 500;
        }
        .prod-add-btn {
            width: 100%;
            padding: 0.7rem;
            background: var(--green-50);
            color: var(--green-700);
            border: 1.5px solid var(--green-200, #bbf7d0);
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.88rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            transition: all 0.2s;
        }
        .prod-add-btn:hover {
            background: var(--green-600);
            color: white;
            border-color: var(--green-600);
        }
        .prod-out-stock-btn {
            width: 100%;
            padding: 0.7rem;
            background: #fff7ed;
            color: #ea580c;
            border: 1.5px solid #fed7aa;
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            text-decoration: none;
            transition: all 0.2s;
        }
        .prod-out-stock-btn:hover {
            background: #ea580c;
            color: white;
            border-color: #ea580c;
        }

        /* ---- WHO WE SERVE ---- */
        .serve-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
        }
        .serve-grid-prem {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .serve-card-prem {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 2rem 1rem;
            text-align: center;
            transition: var(--transition);
            cursor: default;
        }
        .serve-card-prem:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--green-400);
        }
        .serve-card-prem:hover .serve-icon-wrap {
            background: var(--green-600);
        }
        .serve-card-prem:hover .serve-icon-wrap img { filter: brightness(0) invert(1); }
        .serve-icon-wrap {
            width: 72px;
            height: 72px;
            background: var(--green-50);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: var(--transition);
        }
        .serve-icon-wrap img {
            width: 38px;
            height: 38px;
            object-fit: contain;
            transition: var(--transition);
        }
        .serve-card-prem h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--gray-900);
        }

        /* ---- WHY US + JOURNEY ---- */
        .why-section {
            padding: 7rem 0;
            background: white;
        }
        .why-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }
        .why-left-img-stack {
            position: relative;
            height: 500px;
        }
        .why-img-main {
            width: 380px;
            height: 460px;
            object-fit: cover;
            border-radius: 40px;
            box-shadow: var(--shadow-xl);
        }
        .why-img-badge {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: var(--green-600);
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            text-align: center;
        }
        .why-img-badge .big { font-size: 2rem; font-weight: 900; line-height: 1; }
        .why-img-badge .lbl { font-size: 0.75rem; opacity: 0.85; }
        .why-features-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0 2.5rem;
        }
        .why-feat-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            background: var(--gray-50);
            border-radius: var(--radius-md);
            border: 1px solid var(--gray-200);
            transition: var(--transition-fast);
        }
        .why-feat-item:hover {
            background: var(--green-50);
            border-color: var(--green-300);
        }
        .why-feat-icon {
            width: 40px;
            height: 40px;
            background: var(--green-100);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--green-600);
            flex-shrink: 0;
        }
        .why-feat-item span {
            font-weight: 600;
            color: var(--gray-800);
            font-size: 0.95rem;
        }

        /* Journey steps */
        .journey-section {
            padding: 7rem 0;
            background: var(--gray-50);
            position: relative;
            overflow: hidden;
        }
        .journey-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .journey-inner { position: relative; z-index: 1; }
        .journey-steps {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0;
            margin-top: 4rem;
            position: relative;
        }
        .journey-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: calc(100%/12);
            right: calc(100%/12);
            height: 2px;
            background: linear-gradient(90deg, var(--green-300), var(--green-500), var(--green-300));
        }
        .journey-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 0.75rem;
            position: relative;
        }
        .js-num {
            width: 80px;
            height: 80px;
            /* Emerald green — fresh and on-brand */
            background: var(--green-50);
            border: 2px solid var(--green-400);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--green-700);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }
        .js-step-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--green-300);
            margin: 0 auto 1rem;
        }
        .journey-step h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--gray-800);
            margin-bottom: 0.4rem;
        }
        .journey-step p {
            font-size: 0.75rem;
            color: var(--gray-500);
        }

        /* ---- BOTTOM CTA BANNER ---- */
        .cta-banner {
            padding: 6rem 0;
            background: linear-gradient(135deg, #022c22 0%, #065f46 60%, #059669 100%);
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 60%);
            top: -200px;
            right: -200px;
        }
        .cta-inner {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .cta-left h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            color: white;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        .cta-left p {
            color: rgba(255,255,255,0.72);
            font-size: 1.05rem;
            margin-bottom: 2.5rem;
        }
        .cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
        .cta-right { flex-shrink: 0; }
        .cta-img {
            width: 320px;
            border-radius: var(--radius-xl);
            box-shadow: 0 30px 70px rgba(0,0,0,0.4);
            transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
            transition: var(--transition);
        }
        .cta-img:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }

        /* ---- FOOTER ---- */
        .site-footer {
            background: #022c22;
            color: var(--gray-400);
        }
        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            padding: 5rem 0 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .footer-brand .brand-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 1.25rem;
        }
        .footer-brand .brand-logo .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--amber), var(--amber-dark));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: white;
        }
        .footer-brand .brand-logo span {
            font-size: 1.2rem;
            font-weight: 800;
            color: white;
        }
        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            max-width: 260px;
            margin-bottom: 1.5rem;
        }
        .footer-social {
            display: flex;
            gap: 0.6rem;
        }
        .social-btn {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--gray-400);
            transition: var(--transition-fast);
        }
        .social-btn:hover {
            background: var(--green-600);
            border-color: var(--green-600);
            color: white;
        }
        .footer-col h4 {
            color: white;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .footer-links-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-links-list a {
            font-size: 0.88rem;
            color: var(--gray-400);
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .footer-links-list a:hover { color: var(--green-300); }
        .footer-links-list a i { font-size: 0.7rem; color: var(--amber); }
        .footer-bottom-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            font-size: 0.83rem;
        }
        .footer-bottom-bar a { color: var(--green-400); }
        .footer-bottom-bar a:hover { text-decoration: underline; }

        /* Toast */
        #toast-container { position: fixed; top: 90px; right: 24px; z-index: 9999; }
        .toast {
            background: var(--gray-900);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transform: translateY(-20px);
            transition: 0.3s;
            font-family: var(--font-body);
            font-weight: 500;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }
        .toast.show { opacity: 1; transform: translateY(0); }
        .toast.success { background: var(--green-600); }

        /* Floating Cart */
        .floating-cart {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--amber), var(--amber-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: var(--shadow-orange);
            z-index: 1000;
            transition: var(--transition);
        }
        .floating-cart:hover {
            transform: translateY(-5px) scale(1.05);
            background: linear-gradient(135deg, var(--amber-dark), #9a3412);
            box-shadow: 0 15px 35px rgba(249, 115, 22, 0.55);
        }
        .floating-cart-count {
            position: absolute;
            top: -2px;
            right: -2px;
            background: var(--amber);
            color: white;
            font-size: 0.75rem;
            font-weight: 800;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            border: 2px solid white;
        }

        /* Floating Download App Button */
        .floating-download-app {
            position: fixed;
            bottom: 24px;
            left: 24px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #15803d, #166534);
            color: #ffffff !important;
            padding: 10px 18px 10px 12px;
            border-radius: 50px;
            text-decoration: none !important;
            font-family: var(--font-body, 'Outfit', sans-serif);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.2px;
            box-shadow: 0 8px 24px rgba(22, 101, 52, 0.4), 0 2px 6px rgba(0, 0, 0, 0.1);
            z-index: 999;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: floatAppPulse 3s infinite ease-in-out;
        }
        .floating-download-app:hover {
            transform: translateY(-4px) scale(1.04);
            background: linear-gradient(135deg, #16a34a, #15803d);
            box-shadow: 0 12px 30px rgba(22, 101, 52, 0.55), 0 4px 10px rgba(0, 0, 0, 0.15);
            color: #ffffff !important;
        }
        .floating-download-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
        }
        .floating-download-text {
            white-space: nowrap;
        }
        @keyframes floatAppPulse {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-4px); }
        }
        @media (max-width: 768px) {
            .floating-download-app {
                bottom: 20px;
                left: 16px;
                padding: 8px 14px 8px 10px;
                font-size: 0.82rem;
            }
            .floating-download-icon {
                font-size: 1.15rem;
                width: 24px;
                height: 24px;
            }
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .cat-grid-prem { grid-template-columns: repeat(3, 1fr); }
            .fstrip-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .features-strip .container { grid-template-columns: repeat(3, 1fr); }
            .journey-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
            .journey-steps::before { display: none; }
            .serve-grid-prem { grid-template-columns: repeat(3, 1fr); }
        }
        /* Desktop default overrides for mobile elements */
        .mobile-menu-header, .mobile-menu-footer { display: none; }
        
        @media (max-width: 900px) {
            .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
            .hero-visuals { display: none; }
            .hero { min-height: auto; }
            .hero-inner { padding: 5rem 0 4rem; }
            .why-inner { grid-template-columns: 1fr; gap: 3rem; }
            .why-left-img-stack { height: auto; }
            .why-img-main { width: 100%; height: 300px; border-radius: 24px; }
            .cta-inner { grid-template-columns: 1fr; }
            .cta-right { display: none; }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-main { grid-template-columns: 1fr 1fr; }
            .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
            .mobile-hide { display: none !important; }
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 300px;
                max-width: 80%;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 1.5rem;
                box-shadow: 2px 0 20px rgba(0,0,0,0.1);
                transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 2000;
                overflow-y: auto;
                gap: 0;
            }
            .nav-links.show-menu {
                left: 0;
            }
            .mobile-menu-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding-bottom: 1.5rem;
                margin-bottom: 1rem;
                border-bottom: 1px solid var(--border-color);
            }
            .mobile-menu-header .nav-logo { margin: 0; }
            .close-menu {
                font-size: 1.8rem;
                color: var(--title-color);
                cursor: pointer;
            }
            .nav-link {
                width: 100%;
                padding: 0.85rem 0;
                border-bottom: 1px solid var(--gray-100);
            }
            .mobile-menu-footer {
                margin-top: auto;
                padding-top: 2rem;
                display: flex;
                flex-direction: column;
                gap: 0.8rem;
                width: 100%;
            }
            .mobile-menu-footer a {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                color: var(--gray-600);
                font-size: 0.9rem;
            }
            .mobile-menu-footer i {
                color: var(--green-600);
                font-size: 1.2rem;
            }
            .nav-cta { display: inline-flex; }
            .nav-hamburger { display: flex; z-index: 1001; }
            .nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
            .nav-hamburger.active span:nth-child(2) { opacity: 0; }
            .nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        }
        @media (max-width: 600px) {
            .cat-grid-prem { grid-template-columns: repeat(2, 1fr); }
            .products-grid { grid-template-columns: 1fr; }
            .footer-main { grid-template-columns: 1fr; }
            .hero-headline { font-size: 2.2rem; }
            .hero-inner { padding: 3rem 0; }
            .section { padding: 4rem 0; }
            .stats-strip .container { grid-template-columns: 1fr 1fr; gap: 0; }
            .serve-grid-prem { grid-template-columns: repeat(2, 1fr); }
            .features-strip .container { grid-template-columns: repeat(2, 1fr); }
            .journey-steps { grid-template-columns: repeat(2, 1fr); }
            .top-announcement .container { justify-content: center; text-align: center; }
            .top-announcement .ta-divider { display: none; }
            .footer-bottom-bar { flex-direction: column; gap: 0.5rem; text-align: center; }
        }

        /* ---- Cart Page Mobile ---- */
        @media (max-width: 600px) {
            .cart-grid { grid-template-columns: 1fr !important; }
            .cart-table th:nth-child(4), .cart-table td:nth-child(4) { display: none; }
        }