* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

button,
input {
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: min(1400px, calc(100% - 80px));
    margin: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    height: 46px;
    background: #258c0d;
    color: #fff;
    font-size: 14px;
}

.top-bar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-left,
.top-center,
.top-right {
    display: flex;
    align-items: center;
    gap: 9px;
}

.top-center {
    font-size: 14px;
}

.top-right {
    gap: 24px;
}

.top-right a {
    transition: .2s ease;
}

.top-right a:hover {
    color: #d9ffbf;
}

.truck-icon {
    font-size: 18px;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    height: 96px;
    border-bottom: 1px solid #e7e7e7;
    background: #fff;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 290px;
}

.brand img {
    width: 255px;
    height: auto;
}

.brand-fallback {
    display: none;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #5aaa27;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
}

.brand-text {
    font-size: 28px;
    font-weight: 700;
}

.brand-text span:first-child {
    color: #2d8e17;
}

.brand-text span:last-child {
    color: #f07817;
}


/* =========================================================
   SEARCH
========================================================= */

.search-box {
    flex: 1;
    max-width: 510px;
    height: 48px;

    border: 1px solid #d7d7d7;
    border-radius: 13px;

    display: flex;
    overflow: hidden;
    background: #fff;
}

.search-box input {
    border: none;
    outline: none;

    padding: 0 18px;

    flex: 1;

    font-size: 14px;
    color: #333;
}

.search-box input::placeholder {
    color: #999;
}

.search-box button {
    width: 55px;

    border: none;

    background: #5ba329;
    color: #fff;

    cursor: pointer;

    font-size: 21px;

    transition: .2s;
}

.search-box button:hover {
    background: #43891b;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 42px;
}

.header-action {
    text-align: center;
    cursor: pointer;
    min-width: 65px;
    position: relative;
}

.header-action .icon {
    display: block;
    font-size: 25px;
    margin-bottom: 5px;
}

.header-action span:last-child {
    font-size: 14px;
}

.cart-count {
    position: absolute;

    top: -8px;
    right: 5px;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: #f28a13;
    color: white;

    font-size: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
}


/* =========================================================
   NAVIGATION
========================================================= */

/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    height: 56px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #e4e4e4;
    background: #ffffff;
}

.navigation .container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 0;
}

.nav-list {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 68px;

    margin: 0;
    padding: 0;
}

.nav-list li {
    height: 100%;

    display: flex;
    align-items: center;
}

.nav-list a {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    padding: 0 2px;

    font-size: 15px;
    font-weight: 400;

    color: #222;

    white-space: nowrap;
}

.nav-list a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 3px;

    background: #4c9c22;

    transform: scaleX(0);

    transition: transform .2s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #3e901c;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    transform: scaleX(1);
}

/* =========================================================
   HERO
========================================================= */

/* =====================================================
   PREMIUM LEFT OFF-CANVAS MENU
===================================================== */

.navigation {
    position: fixed;
    top: 0;
    left: 0;

    width: 340px;
    max-width: 88vw;
    height: 100vh;

    background: #ffffff;

    z-index: 9999;

    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);

    box-shadow: 8px 0 35px rgba(0, 0, 0, 0.15);

    overflow-y: auto;
}


/* OPEN MENU */

.navigation.open {
    transform: translateX(0);
}


/* =====================================================
   OVERLAY
===================================================== */

.menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    backdrop-filter: blur(3px);
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   MENU HEADER
===================================================== */

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 24px 20px;

    background: linear-gradient(
        135deg,
        #14532d,
        #166534
    );

    color: #fff;
}


.menu-title {
    display: flex;
    align-items: center;
    gap: 13px;
}


.menu-title-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255,255,255,0.15);

    font-size: 20px;
}


.menu-title small {
    display: block;

    font-size: 10px;
    letter-spacing: 2px;

    opacity: 0.75;

    margin-bottom: 3px;
}


.menu-title strong {
    display: block;

    font-size: 18px;
    font-weight: 700;
}


/* CLOSE BUTTON */

.menu-close {
    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    color: #fff;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    transition: all 0.25s ease;
}

.menu-close:hover {
    background: rgba(255,255,255,0.22);
    transform: rotate(90deg);
}


/* =====================================================
   MENU LIST
===================================================== */

.navigation .nav-list {
    list-style: none;

    margin: 0;
    padding: 14px 12px;
}


.navigation .nav-list li {
    margin: 3px 0;
}


.navigation .nav-list li a {
    display: flex;
    align-items: center;

    width: 100%;

    min-height: 58px;

    padding: 0 14px;

    gap: 14px;

    color: #26332b;

    text-decoration: none;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* ICON */

.navigation .nav-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #f3f7f4;

    font-size: 18px;

    transition: all 0.25s ease;
}


/* ARROW */

.navigation .nav-arrow {
    margin-left: auto;

    font-size: 23px;

    color: #a4ada7;

    transition: transform 0.25s ease;
}


/* HOVER */

.navigation .nav-list li a:hover {
    background: #f1f8f3;

    color: #166534;

    transform: translateX(4px);
}


.navigation .nav-list li a:hover .nav-icon {
    background: #dcfce7;

    transform: scale(1.05);
}


.navigation .nav-list li a:hover .nav-arrow {
    color: #166534;

    transform: translateX(4px);
}


/* ACTIVE */

.navigation .nav-list li a.active {
    background: linear-gradient(
        135deg,
        #166534,
        #15803d
    );

    color: #fff;

    box-shadow:
        0 6px 18px rgba(22, 101, 52, 0.20);
}


.navigation .nav-list li a.active .nav-icon {
    background: rgba(255,255,255,0.16);
    color: #fff;
}


.navigation .nav-list li a.active .nav-arrow {
    color: rgba(255,255,255,0.8);
}


/* =====================================================
   MENU FOOTER
===================================================== */

.menu-footer {
    margin-top: auto;

    padding: 25px 22px 30px;

    text-align: center;

    color: #7a847d;
}


.menu-footer-line {
    width: 45px;
    height: 3px;

    margin: 0 auto 14px;

    border-radius: 10px;

    background: #22c55e;
}


.menu-footer p {
    margin: 0 0 5px;

    font-size: 12px;
    font-weight: 600;

    color: #536057;
}


.menu-footer small {
    font-size: 11px;

    color: #9aa39d;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .navigation {
        display: block;

        width: 320px;
        max-width: 88vw;
    }

}


/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 769px) {

    .navigation {
        position: static;

        width: auto;
        height: auto;

        transform: none;

        box-shadow: none;

        overflow: visible;
    }

    .mobile-menu-header,
    .menu-footer,
    .menu-overlay {
        display: none;
    }

    .navigation .nav-list {
        display: flex;
    }

}

.hero {
    min-height: 495px;

    position: relative;

    overflow: hidden;

    background-image: url("../assets/images/hero-fruits.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}

.hero-inner {
    min-height: 495px;

    display: flex;

    align-items: center;
}

.hero-content {
    width: 50%;

    padding-left: 18px;

    z-index: 2;
}

.hero-title {
    font-size: clamp(48px, 5vw, 76px);

    line-height: .95;

    font-weight: 800;

    letter-spacing: -2px;

    color: #202126;

    margin-bottom: 22px;
}

.hero-title span {
    color: #329119;
}

.hero-description {
    font-size: 21px;

    line-height: 1.45;

    max-width: 580px;

    margin-bottom: 20px;

    color: #292929;
}

.hero-features {
    display: flex;

    align-items: center;

    gap: 35px;

    margin-bottom: 26px;
}

.hero-feature {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 14px;
}

.hero-feature-icon {
    color: #4b9b24;

    font-size: 23px;
}

.shop-btn {
    display: inline-flex;

    align-items: center;

    gap: 17px;

    border: none;

    background: #39971c;

    color: #fff;

    padding: 14px 25px;

    border-radius: 8px;

    font-size: 18px;

    font-weight: 700;

    cursor: pointer;

    transition: .25s;
}

.shop-btn:hover {
    background: #287b11;

    transform: translateY(-2px);
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits-wrapper {
    position: relative;

    margin-top: -1px;

    padding: 12px 0;

    background: #faf8f5;
}

.benefits {
    background: #fff;

    min-height: 88px;

    border-radius: 9px;

    box-shadow:
        0 3px 18px rgba(0, 0, 0, .04);

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.benefit {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 15px 30px;

    border-right: 1px solid #ddd;
}

.benefit:last-child {
    border-right: none;
}

.benefit-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    border: 2px solid #5ba42c;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #5ba42c;

    font-size: 23px;
}

.benefit-title {
    font-size: 15px;

    font-weight: 700;

    margin-bottom: 5px;
}

.benefit-text {
    font-size: 13px;

    color: #444;
}


/* =========================================================
   CATEGORY SECTION
========================================================= */

.category-section {
    padding: 31px 0 45px;

    background: #fff;
}

.section-title {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-bottom: 23px;

    font-size: 22px;

    font-weight: 800;
}

.section-title::before,
.section-title::after {
    content: "◆";

    color: #4e9a25;

    font-size: 12px;
}

.categories {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 18px;
}

.category-card {
    height: 120px;

    border: 1px solid #e8e8e8;

    border-radius: 13px;

    background: #fff;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, .04);

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 12px 14px 12px 18px;

    overflow: hidden;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.category-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 9px 24px rgba(0, 0, 0, .10);
}

.category-info {
    min-width: 105px;
}

.category-name {
    font-size: 14px;

    font-weight: 700;

    margin-bottom: 7px;
}

.category-subtitle {
    font-size: 11px;

    line-height: 1.35;

    color: #555;
}

.category-image {
    width: 105px;
    height: 95px;

    object-fit: contain;

    transition: .25s ease;
}

.category-card:hover .category-image {
    transform: scale(1.08);
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #3ba51c;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 30px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .22);

    z-index: 999;

    cursor: pointer;

    transition: .2s;
}

.whatsapp:hover {
    transform: scale(1.08);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid #ddd;

    background: #fff;

    border-radius: 7px;

    cursor: pointer;

    font-size: 22px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .container {
        width: min(
            1100px,
            calc(100% - 40px)
        );
    }

    .nav-list {
        gap: 28px;
    }

    .header-actions {
        gap: 20px;
    }

    .brand {
        min-width: 220px;
    }

    .brand img {
        width: 210px;
    }

    .categories {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .hero-content {
        width: 58%;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-description {
        font-size: 18px;
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {

    .container {
        width: calc(100% - 28px);
    }


    /* TOP BAR */

    .top-bar {
        height: auto;

        padding: 8px 0;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-left,
    .top-right {
        display: none;
    }

    .top-center {
        font-size: 12px;
    }


    /* HEADER */

    .main-header {
        height: auto;

        padding: 12px 0;
    }

    .header-inner {
        flex-wrap: wrap;

        gap: 12px;
    }

    .brand {
        min-width: auto;

        flex: 1;
    }

    .brand img {
        width: 180px;
    }

    .mobile-menu-btn {
        display: block;
    }


    /* SEARCH */

    .search-box {
        order: 3;

        width: 100%;

        max-width: none;
    }


    /* ACTIONS */

    .header-actions {
        gap: 10px;
    }

    .header-action {
        min-width: 45px;
    }

    .header-action span:last-child {
        font-size: 10px;
    }

    .header-action .icon {
        font-size: 21px;
    }


    /* NAVIGATION */

    .navigation {
        display: none;

        height: auto;
    }

    .navigation.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;

        gap: 0;
    }

    .nav-list a {
        width: 100%;

        height: 43px;

        justify-content: center;

        border-bottom: 1px solid #eee;
    }


    /* HERO */

    .hero {
        min-height: 570px;

        background-position: 64% center;
    }

    .hero-inner {
        min-height: 570px;

        align-items: flex-start;

        padding-top: 50px;
    }

    .hero-content {
        width: 100%;

        padding: 0 10px;
    }

    .hero-title {
        font-size: 45px;

        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 17px;

        max-width: 360px;
    }

    .hero-features {
        flex-wrap: wrap;

        gap: 12px 20px;
    }

    .hero-feature {
        font-size: 12px;
    }


    /* BENEFITS */

    .benefits {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .benefit {
        padding: 15px;

        border-bottom: 1px solid #ddd;
    }

    .benefit:nth-child(2) {
        border-right: none;
    }

    .benefit:nth-child(3),
    .benefit:nth-child(4) {
        border-bottom: none;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;

        min-width: 40px;

        font-size: 18px;
    }

    .benefit-title {
        font-size: 12px;
    }

    .benefit-text {
        font-size: 10px;
    }


    /* CATEGORY */

    .category-section {
        padding-top: 25px;
    }

    .categories {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }

    .category-card {
        height: 115px;

        padding-left: 11px;
    }

    .category-info {
        min-width: 75px;
    }

    .category-name {
        font-size: 12px;
    }

    .category-subtitle {
        font-size: 9px;
    }

    .category-image {
        width: 80px;
        height: 80px;
    }

    .section-title {
        font-size: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .header-actions {
        gap: 3px;
    }

    .header-action:nth-child(1) {
        display: none;
    }

    .brand img {
        width: 165px;
    }


    /* HERO */

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero {
        min-height: 520px;
    }

    .hero-inner {
        min-height: 520px;
    }


    /* BENEFITS */

    .benefits {
        grid-template-columns: 1fr;
    }

    .benefit {
        border-right: none !important;

        border-bottom: 1px solid #ddd !important;
    }

    .benefit:last-child {
        border-bottom: none !important;
    }


    /* CATEGORY */

    .categories {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 110px;
    }

    .category-image {
        width: 100px;
        height: 90px;
    }


    /* WHATSAPP */

    .whatsapp {
        width: 52px;
        height: 52px;

        right: 15px;
        bottom: 15px;
    }
}
/* =========================================================
   FRESH DEALS / PRODUCTS SECTION
========================================================= */

.products-section {
    width: 100%;

    padding: 65px 0 75px;

    background: #f5faef;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.products-section-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}


.section-tag {

    display: inline-block;

    margin-bottom: 7px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.2px;

    color: #f58220;
}


.products-section-title {

    margin: 0;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 800;

    color: #222;
}


.products-section-description {

    margin: 8px 0 0;

    font-size: 15px;

    color: #666;
}


/* =========================================================
   VIEW ALL
========================================================= */

.view-all-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 20px;

    border: 1px solid #3f941f;

    border-radius: 7px;

    background: #ffffff;

    color: #3f941f;

    font-size: 14px;

    font-weight: 700;

    transition: all .25s ease;
}


.view-all-btn:hover {

    background: #3f941f;

    color: #ffffff;

}


.view-all-btn span {

    font-size: 18px;

    line-height: 1;
}



/* =========================================================
   PRODUCT GRID
========================================================= */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}



/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {

    position: relative;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.product-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(48, 105, 28, .12);
}



/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image-box {

    position: relative;

    height: 245px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: #ffffff;

    overflow: hidden;
}


.product-image {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: transform .3s ease;
}


.product-card:hover .product-image {

    transform: scale(1.06);
}



/* =========================================================
   DISCOUNT BADGE
========================================================= */

.discount-badge {

    position: absolute;

    top: 14px;

    left: 14px;

    z-index: 2;

    min-width: 62px;

    padding: 7px 9px;

    text-align: center;

    border-radius: 5px;

    background: #3f941f;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    line-height: 1.15;

    box-shadow:
        0 3px 8px rgba(63, 148, 31, .2);
}


/* =========================================================
   WISHLIST
========================================================= */

.product-wishlist {

    position: absolute;

    top: 13px;

    right: 13px;

    z-index: 3;

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #e5e5e5;

    border-radius: 50%;

    background: #ffffff;

    color: #555;

    font-size: 21px;

    cursor: pointer;

    transition: all .2s ease;
}


.product-wishlist:hover {

    border-color: #f58220;

    color: #f58220;

}



/* =========================================================
   PRODUCT CONTENT
========================================================= */

.product-content {

    padding: 0 17px 17px;
}


.product-category {

    display: block;

    margin-bottom: 6px;

    font-size: 12px;

    color: #6b9d4e;

    font-weight: 600;
}


.product-name {

    margin: 0;

    min-height: 44px;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;

    color: #222;
}


.product-weight {

    margin: 8px 0 10px;

    font-size: 13px;

    color: #777;
}



/* =========================================================
   PRICE
========================================================= */

.product-price {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;
}


.old-price {

    font-size: 14px;

    color: #999;

    text-decoration: line-through;
}


.current-price {

    font-size: 18px;

    font-weight: 800;

    color: #3f941f;
}



/* =========================================================
   ADD TO CART
========================================================= */

.add-cart-btn {

    width: 100%;

    height: 42px;

    border: 0;

    border-radius: 7px;

    background: #f58220;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}


.add-cart-btn:hover {

    background: #3f941f;

    transform: translateY(-1px);
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .products-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

    }

}


@media (max-width: 800px) {

    .products-section {

        padding: 50px 0 60px;

    }


    .products-section-header {

        align-items: flex-start;

    }


    .products-section-title {

        font-size: 27px;

    }


    .products-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .product-image-box {

        height: 210px;

    }

}


@media (max-width: 550px) {

    .products-section-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }


    .products-grid {

        grid-template-columns: 1fr;

    }


    .product-image-box {

        height: 250px;

    }

}

/* =========================================
   WHY CHOOSE US SECTION
========================================= */

.why-choose-us {
    padding: 90px 20px;
    background: #f7fbf5;
    font-family: Arial, sans-serif;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */

.why-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.why-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #4caf50;
    margin-bottom: 12px;
}

.why-heading h2 {
    margin: 0 0 15px;
    font-size: 42px;
    line-height: 1.2;
    color: #183b1c;
    font-weight: 700;
}

.why-heading h2 span {
    color: #4caf50;
}

.why-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #687568;
}


/* =========================================
   BENEFITS GRID
========================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}


/* =========================================
   BENEFIT CARD
========================================= */

.why-card {
    background: #ffffff;
    padding: 32px 20px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid #e7eee4;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(48, 91, 45, 0.12);
    border-color: #cce4c8;
}


/* =========================================
   ICON
========================================= */

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef8ea;
    border-radius: 50%;

    font-size: 34px;

    transition: transform 0.3s ease,
                background 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    background: #e1f2dc;
}


/* =========================================
   CARD TEXT
========================================= */

.why-card h3 {
    margin: 0 0 12px;

    font-size: 18px;
    line-height: 1.4;

    color: #214b25;
    font-weight: 700;
}

.why-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.6;

    color: #718071;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-heading h2 {
        font-size: 36px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .why-choose-us {
        padding: 60px 15px;
    }

    .why-heading {
        margin-bottom: 40px;
    }

    .why-heading h2 {
        font-size: 30px;
    }

    .why-heading p {
        font-size: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-card {
        padding: 28px 22px;
    }

}

/* =========================================
   HOW IT WORKS
========================================= */

.how-it-works {
    width: 100%;
    padding: 90px 20px;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.how-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.how-heading {
    max-width: 720px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #55a83f;
}

.how-heading h2 {
    margin: 0 0 16px;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;

    color: #183d1d;
}

.how-heading h2 span {
    color: #55a83f;
}

.how-heading p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: #6d786d;
}


/* =========================================
   STEPS WRAPPER
========================================= */

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}


/* =========================================
   STEP ITEM
========================================= */

.step-item {
    width: 30%;
    min-height: 300px;

    padding: 35px 25px;

    text-align: center;

    background: #f8fcf6;

    border: 1px solid #e5eee1;
    border-radius: 20px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.step-item:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(45, 91, 39, 0.12);

    border-color: #c8dfc2;
}


/* =========================================
   ICON
========================================= */

.step-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f5e3;

    border-radius: 50%;

    font-size: 38px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.08);
    background: #dcefd6;
}

.step-icon span {
    display: block;
}


/* =========================================
   STEP NUMBER
========================================= */

.step-number {
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #55a83f;
}


/* =========================================
   STEP TITLE
========================================= */

.step-item h3 {
    margin: 0 0 12px;

    font-size: 20px;
    line-height: 1.4;

    color: #214a27;
}


/* =========================================
   STEP DESCRIPTION
========================================= */

.step-item p {
    max-width: 270px;

    margin: 0 auto;

    font-size: 14px;
    line-height: 1.7;

    color: #707b70;
}


/* =========================================
   CONNECTOR
========================================= */

.step-line {
    width: 8%;
    display: flex;

    align-items: center;
    justify-content: center;
}

.step-line span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #eaf5e6;

    color: #55a83f;

    font-size: 24px;
    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .how-it-works {
        padding: 70px 20px;
    }

    .how-heading h2 {
        font-size: 36px;
    }

    .steps-wrapper {
        gap: 15px;
    }

    .step-item {
        width: 31%;
        padding: 30px 18px;
    }

    .step-item h3 {
        font-size: 18px;
    }

    .step-line {
        width: 5%;
    }

    .step-line span {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .how-it-works {
        padding: 60px 15px;
    }

    .how-heading {
        margin-bottom: 40px;
    }

    .how-heading h2 {
        font-size: 30px;
    }

    .how-heading p {
        font-size: 15px;
    }

    .steps-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .step-item {
        width: 100%;
        min-height: auto;

        padding: 30px 22px;
    }

    .step-line {
        width: auto;
        height: 55px;
    }

    .step-line span {
        transform: rotate(90deg);
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 34px;
    }

    .step-item h3 {
        font-size: 19px;
    }

}

/* ==========================================
   CUSTOMER TESTIMONIALS
=========================================== */

.fruit-testimonials {
    position: relative;
    width: 100%;
    padding: 100px 20px;

    background: #f7fbf5;

    overflow: hidden;

    font-family: Arial, Helvetica, sans-serif;
}


.testimonial-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ==========================================
   BACKGROUND DECORATION
=========================================== */

.fruit-testimonials::before {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    top: 80px;

    background: #e9f5e4;

    border-radius: 50%;

    opacity: 0.7;
}


.fruit-testimonials::after {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    right: -140px;
    bottom: 50px;

    background: #edf8e9;

    border-radius: 50%;

    opacity: 0.8;
}


/* ==========================================
   HEADING
=========================================== */

.testimonial-heading {
    position: relative;
    z-index: 2;

    max-width: 700px;

    margin: 0 auto 70px;

    text-align: center;
}


.testimonial-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #55a83f;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}


.testimonial-heading h2 {
    margin: 0 0 18px;

    color: #183d1d;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}


.testimonial-heading h2 span {
    color: #55a83f;
}


.testimonial-heading p {
    margin: 0;

    color: #6d786d;

    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================
   MAIN TESTIMONIAL LAYOUT
=========================================== */

.testimonial-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1.35fr 1fr;

    align-items: center;

    gap: 25px;

    max-width: 1100px;

    margin: 0 auto;
}


/* ==========================================
   SIDE REVIEW CARDS
=========================================== */

.side-review {
    position: relative;

    min-height: 270px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e4eee0;

    border-radius: 24px;

    box-shadow: 0 10px 30px rgba(45, 91, 39, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.side-review:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(45, 91, 39, 0.12);
}


/* Different organic shapes */

.left-review {
    border-radius: 28px 28px 28px 8px;
}


.right-review {
    border-radius: 28px 28px 8px 28px;
}


/* ==========================================
   CUSTOMER INFORMATION
=========================================== */

.review-top {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}


.customer-avatar {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #e8f5e3;

    color: #3e8734;

    font-size: 17px;
    font-weight: 700;
}


.review-top h4 {
    margin: 0 0 4px;

    color: #214a27;

    font-size: 15px;
}


.review-top span {
    color: #8a9688;

    font-size: 12px;
}


/* ==========================================
   STARS
=========================================== */

.stars {
    margin-bottom: 14px;

    color: #f5b942;

    font-size: 15px;

    letter-spacing: 2px;
}


.side-review p {
    margin: 0;

    color: #687468;

    font-size: 14px;

    line-height: 1.7;
}


/* ==========================================
   FRUIT DECORATION
=========================================== */

.review-fruit {
    position: absolute;

    right: 20px;
    bottom: 15px;

    font-size: 30px;

    opacity: 0.75;
}


/* ==========================================
   FEATURED CENTER REVIEW
=========================================== */

.featured-review {
    position: relative;

    min-height: 390px;

    padding: 50px 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #ffffff;

    border: 2px solid #dcebd7;

    border-radius: 40px;

    box-shadow:
        0 20px 55px rgba(45, 91, 39, 0.13);

    overflow: hidden;
}


/* ==========================================
   GREEN GLOW
=========================================== */

.featured-review::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -130px;
    left: 50%;

    transform: translateX(-50%);

    background: #edf8e9;

    border-radius: 50%;
}


/* ==========================================
   QUOTE MARK
=========================================== */

.featured-quote {
    position: absolute;

    top: 20px;
    left: 35px;

    color: #dcefd7;

    font-family: Georgia, serif;

    font-size: 100px;

    line-height: 1;

    font-weight: bold;
}


/* ==========================================
   FEATURED CONTENT
=========================================== */

.featured-content {
    position: relative;

    z-index: 2;

    max-width: 430px;
}


.featured-stars {
    margin-bottom: 20px;

    font-size: 18px;
}


.featured-text {
    margin: 0 auto 28px;

    color: #3d4d3e;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;

    line-height: 1.8;
}


/* ==========================================
   FEATURED CUSTOMER
=========================================== */

.featured-customer {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;
}


.featured-avatar {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #55a83f;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}


.featured-customer h3 {
    margin: 0 0 4px;

    color: #214a27;

    font-size: 16px;
}


.featured-customer span {
    color: #819080;

    font-size: 12px;
}


/* ==========================================
   FRESHNESS BADGE
=========================================== */

.fresh-badge {
    position: absolute;

    right: 22px;
    top: 22px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 8px 13px;

    background: #eef8ea;

    border-radius: 50px;

    color: #4c963d;

    font-size: 11px;
    font-weight: 700;
}


.fresh-badge span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #55a83f;

    color: #ffffff;

    font-size: 11px;
}


/* ==========================================
   DECORATIVE FRUITS
=========================================== */

.fruit-decoration {
    position: absolute;

    z-index: 3;

    font-size: 28px;

    opacity: 0.8;
}


.fruit-one {
    left: 25px;
    bottom: 25px;

    transform: rotate(-15deg);
}


.fruit-two {
    right: 30px;
    bottom: 70px;

    font-size: 35px;

    transform: rotate(20deg);
}


/* ==========================================
   BOTTOM TRUST AREA
=========================================== */

.testimonial-bottom {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 45px;
}


.trust-item {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    background: #ffffff;

    border: 1px solid #e5eee1;

    border-radius: 50px;
}


.trust-item > span {
    font-size: 22px;
}


.trust-item strong {
    display: block;

    margin-bottom: 2px;

    color: #315d35;

    font-size: 13px;
}


.trust-item small {
    color: #899488;

    font-size: 10px;
}


/* ==========================================
   TABLET
=========================================== */

@media (max-width: 1000px) {

    .testimonial-layout {
        grid-template-columns: 1fr 1.2fr 1fr;

        gap: 15px;
    }


    .side-review {
        padding: 22px;

        min-height: 280px;
    }


    .featured-review {
        padding: 40px 30px;

        min-height: 370px;
    }


    .featured-text {
        font-size: 17px;
    }


    .testimonial-heading h2 {
        font-size: 36px;
    }
}


/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 750px) {

    .fruit-testimonials {
        padding: 70px 15px;
    }


    .testimonial-heading {
        margin-bottom: 45px;
    }


    .testimonial-heading h2 {
        font-size: 30px;
    }


    .testimonial-heading p {
        font-size: 15px;
    }


    .testimonial-layout {
        display: flex;

        flex-direction: column;

        gap: 20px;
    }


    .featured-review {
        order: 1;

        width: 100%;

        min-height: 370px;

        padding: 45px 25px;
    }


    .left-review {
        order: 2;
    }


    .right-review {
        order: 3;
    }


    .side-review {
        width: 100%;

        min-height: auto;

        padding: 25px;
    }


    .testimonial-bottom {
        flex-direction: column;

        align-items: stretch;

        gap: 10px;

        margin-top: 30px;
    }


    .trust-item {
        justify-content: center;

        border-radius: 15px;
    }


    .featured-text {
        font-size: 17px;

        line-height: 1.7;
    }


    .fresh-badge {
        top: 15px;
        right: 15px;
    }


    .featured-quote {
        left: 20px;
        top: 35px;

        font-size: 75px;
    }

}


/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 400px) {

    .testimonial-heading h2 {
        font-size: 27px;
    }


    .featured-review {
        min-height: 390px;

        padding: 45px 20px;
    }


    .featured-text {
        font-size: 16px;
    }


    .fruit-decoration {
        display: none;
    }

}

/* ==========================================
   FRUIT WEBSITE FOOTER
=========================================== */

.fruit-footer {
    position: relative;

    width: 100%;

    background: #173a1c;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    overflow: hidden;
}


/* ==========================================
   CTA SECTION
=========================================== */

.footer-cta {
    padding: 55px 20px;

    background: #f1f8ed;

    border-top: 1px solid #dcebd7;
    border-bottom: 1px solid #dcebd7;
}


.footer-cta-content {
    max-width: 1150px;

    margin: 0 auto;

    padding: 35px 45px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #ffffff;

    border: 1px solid #dfebda;

    border-radius: 25px;

    box-shadow: 0 12px 35px rgba(37, 77, 35, 0.08);
}


/* ==========================================
   CTA TEXT
=========================================== */

.footer-small-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #55a83f;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.footer-cta-text h2 {
    margin: 0 0 8px;

    color: #183d1d;

    font-size: 32px;

    line-height: 1.25;
}


.footer-cta-text h2 span {
    color: #55a83f;
}


.footer-cta-text p {
    max-width: 600px;

    margin: 0;

    color: #6d786d;

    font-size: 14px;

    line-height: 1.6;
}


/* ==========================================
   SHOP BUTTON
=========================================== */

.footer-shop-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 23px;

    background: #55a83f;

    color: #ffffff;

    text-decoration: none;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.footer-shop-btn span {
    font-size: 20px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.footer-shop-btn:hover {
    background: #438b32;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(68, 139, 50, 0.25);
}


.footer-shop-btn:hover span {
    transform: translateX(5px);
}


/* ==========================================
   MAIN FOOTER
=========================================== */

.footer-main {
    padding: 70px 20px 55px;

    background: #173a1c;
}


.footer-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1.3fr;

    gap: 55px;
}


/* ==========================================
   BRAND
=========================================== */

.footer-brand {
    max-width: 320px;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: #ffffff;

    text-decoration: none;

    font-size: 23px;

    font-weight: 700;
}


.logo-fruit {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eaf6e5;

    border-radius: 50%;

    font-size: 22px;
}


.footer-brand > p {
    margin: 0;

    color: #c2d1c1;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================
   SOCIAL MEDIA
=========================================== */

.footer-social {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;
}


.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.footer-social a:hover {
    background: #55a83f;

    border-color: #55a83f;

    transform: translateY(-4px);
}


/* ==========================================
   FOOTER COLUMNS
=========================================== */

.footer-column h3 {
    position: relative;

    margin: 0 0 22px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    background: #55a83f;

    border-radius: 5px;
}


.footer-column ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-column ul li {
    margin-bottom: 12px;
}


.footer-column ul li a {
    color: #b9c9b8;

    text-decoration: none;

    font-size: 13px;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-column ul li a:hover {
    color: #8ed57d;

    padding-left: 5px;
}


/* ==========================================
   CONTACT
=========================================== */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;
}


.contact-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 9px;

    font-size: 16px;
}


.contact-item strong {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-size: 12px;
}


.contact-item p {
    margin: 0;

    color: #b9c9b8;

    font-size: 13px;

    line-height: 1.6;
}


.contact-item a {
    color: #b9c9b8;

    text-decoration: none;

    font-size: 13px;

    transition: color 0.3s ease;
}


.contact-item a:hover {
    color: #8ed57d;
}


/* ==========================================
   BOTTOM FOOTER
=========================================== */

.footer-bottom {
    background: #102d15;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 18px 20px;
}


.footer-bottom-container {
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.footer-bottom p {
    margin: 0;

    color: #91a591;

    font-size: 11px;
}


.footer-legal {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-legal a {
    color: #91a591;

    text-decoration: none;

    font-size: 11px;

    transition: color 0.3s ease;
}


.footer-legal a:hover {
    color: #8ed57d;
}


.footer-legal span {
    color: #4d654e;

    font-size: 10px;
}


.footer-credit span {
    color: #8ed57d;

    font-size: 14px;
}


/* ==========================================
   TABLET
=========================================== */

@media (max-width: 950px) {

    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 40px;
    }

    .footer-contact {
        grid-column: span 3;
    }

}


/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 700px) {

    .footer-cta {
        padding: 40px 15px;
    }


    .footer-cta-content {
        padding: 30px 25px;

        flex-direction: column;

        align-items: flex-start;

        border-radius: 20px;
    }


    .footer-cta-text h2 {
        font-size: 27px;
    }


    .footer-shop-btn {
        width: 100%;

        justify-content: center;
    }


    .footer-main {
        padding: 55px 20px 40px;
    }


    .footer-container {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }


    .footer-brand {
        grid-column: span 2;

        max-width: 100%;
    }


    .footer-contact {
        grid-column: span 2;
    }


    .footer-bottom-container {
        flex-direction: column;

        text-align: center;

        gap: 12px;
    }

}


/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 420px) {

    .footer-container {
        grid-template-columns: 1fr;
    }


    .footer-brand,
    .footer-contact {
        grid-column: span 1;
    }


    .footer-cta-text h2 {
        font-size: 25px;
    }


    .footer-legal {
        flex-wrap: wrap;

        justify-content: center;
    }

}
/* =========================
   VIEW ALL PRODUCTS
========================= */

.products-view-all {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 28px;

    background: #123b2a;
    color: #ffffff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;

    border-radius: 6px;

    transition: all 0.3s ease;
}

.view-all-btn span {
    font-size: 20px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: #1d6044;
    color: #ffffff;
}

.view-all-btn:hover span {
    transform: translateX(5px);
}
/* =====================================================
   CONTACT US - FRESH FRUIT WEBSITE
===================================================== */

.fruit-contact-section {
    position: relative;
    padding: 100px 20px;
    background: #f7faf7;
    overflow: hidden;
}


/* Decorative background circle */

.fruit-contact-section::before {
    content: "";
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background: rgba(53, 116, 75, 0.06);

    top: -180px;
    left: -150px;
}


.fruit-contact-section::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(255, 213, 74, 0.08);

    bottom: -150px;
    right: -100px;
}


/* MAIN CONTAINER */

.fruit-contact-container {
    position: relative;
    z-index: 2;

    width: 92%;
    max-width: 1200px;

    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.fruit-contact-info {
    padding: 20px 0;
}


.contact-small-title {
    display: inline-block;

    color: #35764b;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.fruit-contact-info h2 {
    margin: 0;

    max-width: 500px;

    color: #173d2b;

    font-size: 46px;
    line-height: 1.15;

    font-weight: 800;
}


.fruit-contact-info h2 span {
    color: #35764b;
}


.contact-description {
    max-width: 520px;

    margin: 22px 0 35px;

    color: #68736d;

    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-detail-list {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


.contact-detail {
    display: flex;

    align-items: center;

    gap: 16px;
}


.contact-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #e8f2eb;

    color: #35764b;

    font-size: 20px;
}


.contact-detail span {
    display: block;

    color: #7b847f;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 3px;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.contact-detail strong {
    display: block;

    color: #253d31;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.5;
}


/* =====================================================
   SOCIAL
===================================================== */

.contact-social {
    margin-top: 38px;

    display: flex;

    align-items: center;

    gap: 18px;
}


.contact-social > span {
    color: #68736d;

    font-size: 14px;

    font-weight: 700;
}


.social-icons {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}


.social-icons a {
    padding: 7px 13px;

    border: 1px solid #dce7df;

    border-radius: 20px;

    color: #35764b;

    background: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.social-icons a:hover {
    background: #35764b;

    color: #ffffff;

    border-color: #35764b;
}


/* =====================================================
   FORM BOX
===================================================== */

.fruit-contact-form-box {
    position: relative;

    background: #ffffff;

    padding: 42px;

    border-radius: 22px;

    box-shadow:
        0 20px 60px rgba(24, 61, 43, 0.10);

    border: 1px solid #edf2ee;
}


/* Small top accent */

.fruit-contact-form-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 40px;
    right: 40px;

    height: 4px;

    border-radius: 0 0 10px 10px;

    background: #35764b;
}


/* FORM HEADING */

.contact-form-heading {
    margin-bottom: 28px;
}


.contact-form-heading span {
    color: #35764b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.contact-form-heading h3 {
    margin: 7px 0 7px;

    color: #173d2b;

    font-size: 28px;

    font-weight: 800;
}


.contact-form-heading p {
    margin: 0;

    color: #7b847f;

    font-size: 14px;

    line-height: 1.6;
}


/* =====================================================
   FORM ROW
===================================================== */

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.contact-field {
    margin-bottom: 19px;
}


.contact-field label {
    display: block;

    margin-bottom: 8px;

    color: #30483b;

    font-size: 13px;

    font-weight: 700;
}


.contact-field label sup {
    color: #d94c3d;

    font-size: 12px;
}


/* INPUTS */

.contact-field input,
.contact-field select,
.contact-field textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 13px 14px;

    border: 1px solid #dfe7e1;

    border-radius: 9px;

    background: #fbfdfb;

    color: #263d31;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition: all 0.25s ease;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a2aaa5;
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {

    border-color: #35764b;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(53, 118, 75, 0.08);
}


.contact-field textarea {
    resize: vertical;

    min-height: 125px;
}


/* =====================================================
   CHECKBOX
===================================================== */

.contact-checkbox {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin: 3px 0 22px;
}


.contact-checkbox input {

    width: 16px;
    height: 16px;

    margin-top: 2px;

    accent-color: #35764b;
}


.contact-checkbox label {

    color: #727b76;

    font-size: 12px;

    line-height: 1.5;

    cursor: pointer;
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.contact-submit-btn {

    width: 100%;

    border: none;

    padding: 15px 20px;

    border-radius: 9px;

    background: #173d2b;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.5px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    transition: all 0.3s ease;
}


.contact-submit-btn span {

    font-size: 20px;

    line-height: 0;

    transition: transform 0.3s ease;
}


.contact-submit-btn:hover {

    background: #35764b;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(53, 118, 75, 0.20);
}


.contact-submit-btn:hover span {
    transform: translateX(5px);
}


.contact-form-note {

    text-align: center;

    margin: 13px 0 0;

    color: #929a95;

    font-size: 11px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .fruit-contact-container {

        grid-template-columns: 1fr;

        gap: 45px;

        max-width: 700px;
    }


    .fruit-contact-info h2 {

        font-size: 38px;
    }

}


@media (max-width: 600px) {

    .fruit-contact-section {

        padding: 70px 15px;
    }


    .fruit-contact-container {

        width: 95%;
    }


    .fruit-contact-form-box {

        padding: 30px 22px;

        border-radius: 17px;
    }


    .fruit-contact-form-box::before {

        left: 25px;
        right: 25px;
    }


    .fruit-contact-info h2 {

        font-size: 32px;
    }


    .contact-form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-social {

        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

}

/* =====================================================
   ABOUT PAGE
===================================================== */

.about-page {
    overflow: hidden;
    background: #ffffff;
}

.about-section-container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}


/* =====================================================
   HERO
===================================================== */

.about-hero {
    padding: 90px 20px;
    background: #f5f9f5;
}

.about-hero-container {
    width: 92%;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    gap: 70px;
    align-items: center;
}

.about-label,
.about-section-label {
    color: #35764b;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.about-hero-content h1 {
    margin: 16px 0;

    color: #173d2b;

    font-size: 55px;
    line-height: 1.1;

    font-weight: 800;
}

.about-hero-content h1 span {
    color: #35764b;
}

.about-hero-content > p {
    max-width: 560px;

    color: #68736d;

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 30px;
}


/* HERO BUTTONS */

.about-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-primary-btn,
.about-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 23px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.about-primary-btn {
    background: #173d2b;
    color: #ffffff;
}

.about-primary-btn:hover {
    background: #35764b;
    color: #ffffff;
}

.about-primary-btn span {
    font-size: 18px;
}

.about-secondary-btn {
    border: 1px solid #35764b;
    color: #35764b;
    background: #ffffff;
}

.about-secondary-btn:hover {
    background: #35764b;
    color: #ffffff;
}


/* HERO IMAGE */

.about-hero-visual {
    position: relative;

    display: flex;
    justify-content: center;
}

.about-image-circle {
    width: 390px;
    height: 390px;

    border-radius: 50%;

    overflow: hidden;

    background: #e5f0e8;

    border: 12px solid #ffffff;

    box-shadow:
        0 20px 50px rgba(23, 61, 43, 0.12);
}

.about-image-circle img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-floating-card {
    position: absolute;

    bottom: 20px;
    left: 5px;

    background: #ffffff;

    padding: 16px 22px;

    border-radius: 12px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.10);
}

.about-floating-card strong {
    display: block;

    color: #35764b;

    font-size: 24px;
    font-weight: 800;
}

.about-floating-card span {
    color: #6d7771;

    font-size: 11px;
    font-weight: 600;
}


/* =====================================================
   STORY
===================================================== */

.about-story-section {
    padding: 100px 20px;
}

.about-story-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;

    height: 460px;

    object-fit: cover;

    border-radius: 18px;
}

.story-experience {
    position: absolute;

    right: -20px;
    bottom: 25px;

    padding: 18px 24px;

    background: #173d2b;

    border-radius: 10px;

    color: #ffffff;
}

.story-experience strong {
    display: block;

    color: #ffd54a;

    font-size: 22px;
}

.story-experience span {
    font-size: 12px;
}

.about-story-content h2,
.about-why-content h2,
.about-centered-heading h2 {
    margin: 13px 0 20px;

    color: #173d2b;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 800;
}

.about-story-content h2 span,
.about-why-content h2 span,
.about-centered-heading h2 span {
    color: #35764b;
}

.about-story-content > p {
    color: #68736d;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 15px;
}


/* STORY HIGHLIGHTS */

.story-highlights {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 25px;
}

.story-highlights div {
    color: #30483b;

    font-size: 13px;

    font-weight: 700;
}

.story-highlights span {
    color: #35764b;

    margin-right: 7px;
}


/* =====================================================
   WHAT WE DO
===================================================== */

.what-we-do-section {
    padding: 100px 20px;

    background: #f7faf7;
}

.about-centered-heading {
    text-align: center;

    max-width: 650px;

    margin: 0 auto 50px;
}

.about-centered-heading p {
    color: #718078;

    font-size: 15px;

    line-height: 1.7;
}

.about-service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.about-service-card {
    position: relative;

    background: #ffffff;

    padding: 30px 25px;

    border-radius: 14px;

    border: 1px solid #e8eee9;

    transition: 0.3s ease;
}

.about-service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(23, 61, 43, 0.08);
}

.service-number {
    position: absolute;

    top: 18px;
    right: 20px;

    color: #dce9df;

    font-size: 12px;

    font-weight: 800;
}

.service-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf6ef;

    border-radius: 12px;

    font-size: 22px;

    margin-bottom: 22px;
}

.about-service-card h3 {
    margin-bottom: 10px;

    color: #254535;

    font-size: 18px;

    font-weight: 800;
}

.about-service-card p {
    margin: 0;

    color: #758078;

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.about-why-section {
    padding: 100px 20px;
}

.about-why-grid {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 80px;

    align-items: center;
}

.about-why-content > p {
    color: #6e7972;

    font-size: 15px;

    line-height: 1.8;

    max-width: 600px;
}

.why-list {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 22px;
}

.why-item {
    display: flex;

    gap: 17px;

    align-items: flex-start;
}

.why-item > span {
    color: #35764b;

    font-size: 12px;

    font-weight: 800;

    padding-top: 3px;
}

.why-item h3 {
    margin: 0 0 5px;

    color: #294536;

    font-size: 15px;

    font-weight: 800;
}

.why-item p {
    margin: 0;

    color: #7b847e;

    font-size: 13px;

    line-height: 1.6;
}


/* WHY VISUAL */

.about-why-visual {
    min-height: 400px;

    position: relative;

    background: #edf5ee;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.why-big-text {
    position: absolute;

    font-size: 90px;

    font-weight: 900;

    color: rgba(53,118,75,0.07);

    transform: rotate(-90deg);

    white-space: nowrap;
}

.why-fruit-card {
    position: relative;

    z-index: 2;

    width: 230px;

    padding: 30px;

    background: #173d2b;

    color: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 20px 45px rgba(23,61,43,0.18);
}

.why-fruit-card span {
    color: #ffd54a;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.why-fruit-card strong {
    display: block;

    margin: 15px 0;

    font-size: 27px;

    line-height: 1.2;
}

.why-fruit-card p {
    color: #d4e1d9;

    font-size: 12px;

    line-height: 1.7;

    margin: 0;
}


/* =====================================================
   PROCESS
===================================================== */

.about-process-section {
    padding: 100px 20px;

    background: #f7faf7;
}

.process-grid {
    display: flex;

    align-items: center;

    justify-content: center;
}

.process-item {
    max-width: 210px;

    text-align: center;
}

.process-number {
    width: 50px;
    height: 50px;

    margin: auto auto 17px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #173d2b;

    color: #ffd54a;

    font-size: 12px;

    font-weight: 800;
}

.process-item h3 {
    color: #294536;

    font-size: 16px;

    margin-bottom: 8px;
}

.process-item p {
    color: #7a847e;

    font-size: 12px;

    line-height: 1.7;
}

.process-line {
    width: 60px;

    height: 1px;

    background: #cbdacf;

    margin: 0 10px;
}


/* =====================================================
   MISSION / VISION
===================================================== */

.mission-vision-section {
    padding: 100px 20px;
}

.mission-vision-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.mission-card,
.vision-card {
    padding: 45px;

    border-radius: 18px;
}

.mission-card {
    background: #173d2b;

    color: #ffffff;
}

.vision-card {
    background: #f0f6f1;

    color: #173d2b;
}

.mv-label {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.mission-card .mv-label {
    color: #ffd54a;
}

.vision-card .mv-label {
    color: #35764b;
}

.mission-card h2,
.vision-card h2 {
    margin: 18px 0;

    font-size: 31px;

    line-height: 1.2;
}

.mission-card h2 span,
.vision-card h2 span {
    color: #35764b;
}

.mission-card h2 span {
    color: #ffd54a;
}

.mission-card p,
.vision-card p {
    font-size: 14px;

    line-height: 1.8;

    margin: 0;
}

.mission-card p {
    color: #d4e1d9;
}

.vision-card p {
    color: #6d7871;
}


/* =====================================================
   STATS
===================================================== */

.about-stats-section {
    padding: 60px 20px;

    background: #173d2b;
}

.about-stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.about-stat {
    text-align: center;

    padding: 15px;
}

.about-stat strong {
    display: block;

    color: #ffd54a;

    font-size: 34px;

    font-weight: 800;
}

.about-stat span {
    color: #d5e1da;

    font-size: 12px;

    font-weight: 600;
}


/* =====================================================
   CTA
===================================================== */

.about-cta-section {
    padding: 80px 20px;

    background: #f5f9f5;
}

.about-cta-container {
    width: 92%;
    max-width: 1100px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}

.about-cta-container > div:first-child > span {
    color: #35764b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.about-cta-container h2 {
    margin: 10px 0;

    color: #173d2b;

    font-size: 36px;

    font-weight: 800;
}

.about-cta-container h2 strong {
    color: #35764b;
}

.about-cta-container p {
    color: #727d76;

    font-size: 14px;

    margin: 0;
}

.about-cta-buttons {
    display: flex;

    gap: 10px;

    flex-shrink: 0;
}

.cta-shop-btn,
.cta-contact-btn {
    padding: 13px 22px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: 0.3s ease;
}

.cta-shop-btn {
    background: #173d2b;

    color: #ffffff;
}

.cta-shop-btn:hover {
    background: #35764b;

    color: #ffffff;
}

.cta-contact-btn {
    border: 1px solid #35764b;

    color: #35764b;

    background: #ffffff;
}

.cta-contact-btn:hover {
    background: #35764b;

    color: #ffffff;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .about-hero-container,
    .about-story-grid,
    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content {
        text-align: center;
    }

    .about-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-buttons {
        justify-content: center;
    }

    .about-hero-visual {
        margin-top: 20px;
    }

    .about-service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-story-image {
        max-width: 650px;
        margin: auto;
    }

    .about-why-visual {
        max-width: 600px;
        margin: auto;
        width: 100%;
    }

}


@media (max-width: 750px) {

    .about-hero {
        padding: 65px 15px;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-image-circle {
        width: 300px;
        height: 300px;
    }

    .about-story-section,
    .what-we-do-section,
    .about-why-section,
    .about-process-section,
    .mission-vision-section {
        padding: 70px 15px;
    }

    .about-story-content h2,
    .about-why-content h2,
    .about-centered-heading h2 {
        font-size: 32px;
    }

    .process-grid {
        flex-direction: column;
        gap: 20px;
    }

    .process-line {
        width: 1px;
        height: 30px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-cta-container {
        flex-direction: column;
        text-align: center;
    }

}


@media (max-width: 500px) {

    .about-hero-content h1 {
        font-size: 35px;
    }

    .about-service-grid {
        grid-template-columns: 1fr;
    }

    .story-highlights {
        grid-template-columns: 1fr;
    }

    .about-image-circle {
        width: 250px;
        height: 250px;
    }

    .about-floating-card {
        left: 0;
        bottom: 5px;
    }

    .about-story-image img {
        height: 350px;
    }

    .mission-card,
    .vision-card {
        padding: 30px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stat strong {
        font-size: 27px;
    }

    .about-cta-container h2 {
        font-size: 30px;
    }

    .about-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-shop-btn,
    .cta-contact-btn {
        justify-content: center;
    }

}