/* =========================================
   FRESHJAIPUR - PREMIUM GLOBAL CSS
========================================= */

:root {
    --primary: #198754;
    --primary-dark: #126b42;
    --primary-light: #eaf8f0;

    --dark: #17231d;
    --text: #52605a;
    --muted: #7d8983;

    --white: #ffffff;
    --bg: #f8fbf9;
    --border: #e7eee9;

    --shadow-sm: 0 8px 25px rgba(23, 35, 29, 0.06);
    --shadow-md: 0 18px 45px rgba(23, 35, 29, 0.10);
    --shadow-lg: 0 28px 70px rgba(23, 35, 29, 0.14);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1200px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(231, 238, 233, 0.8);

    transition: 0.3s ease;
}

.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    font-size: 21px;
    font-weight: 800;

    color: var(--dark);

    white-space: nowrap;
}

.logo-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--primary),
        #2ca66b
    );

    border-radius: 13px;

    box-shadow:
        0 8px 18px rgba(25, 135, 84, 0.22);
}

.logo-icon i {
    font-size: 18px;
}

.logo-text span {
    color: var(--primary);
}


/* =========================================
   NAV LINKS
========================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    position: relative;

    color: #52605a;

    font-size: 14px;
    font-weight: 500;

    padding: 28px 0;

    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 18px;

    width: 0;
    height: 2px;

    background: var(--primary);

    border-radius: 10px;

    transition: 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* =========================================
   NAV ACTIONS
========================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-btn,
.cart-btn,
.menu-btn {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f7f4;
    color: var(--dark);

    border-radius: 12px;

    transition: 0.25s ease;
}

.search-btn:hover,
.cart-btn:hover,
.menu-btn:hover {
    background: var(--primary-light);
    color: var(--primary);

    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;

    top: -5px;
    right: -5px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: white;

    font-size: 10px;
    font-weight: 700;

    border: 2px solid white;
    border-radius: 50%;
}

.menu-btn {
    display: none;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(25, 135, 84, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(25, 135, 84, 0.07),
            transparent 32%
        ),
        var(--bg);
}

.hero::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -180px;
    top: -160px;

    background: rgba(25, 135, 84, 0.05);

    border-radius: 50%;
}

.hero-container {
    min-height: 680px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 70px;

    padding: 70px 0;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    color: var(--primary);
    background: var(--primary-light);

    border: 1px solid rgba(25, 135, 84, 0.12);

    border-radius: 50px;

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 22px;
}

.hero-badge i {
    font-size: 12px;
}

.hero h1 {
    color: var(--dark);

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;

    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-content > p {
    max-width: 570px;

    color: var(--text);

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 32px;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;

    flex-wrap: wrap;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 23px;

    border-radius: 13px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;
}

.btn-primary {
    color: white;

    background: linear-gradient(
        135deg,
        var(--primary),
        #2ca66b
    );

    box-shadow:
        0 12px 25px rgba(25, 135, 84, 0.22);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 32px rgba(25, 135, 84, 0.28);
}

.btn-secondary {
    color: var(--dark);

    background: white;

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    color: var(--primary);

    border-color: rgba(25, 135, 84, 0.25);

    transform: translateY(-3px);
}


/* =========================================
   HERO TRUST
========================================= */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 35px;

    flex-wrap: wrap;
}

.hero-trust div {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #68746e;

    font-size: 12px;
    font-weight: 500;
}

.hero-trust i {
    color: var(--primary);
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-card {
    position: relative;

    width: min(100%, 490px);
    height: 490px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 40px;

    background:
        linear-gradient(
            145deg,
            #eefaf2,
            #ffffff
        );

    border: 1px solid rgba(25, 135, 84, 0.10);

    box-shadow: var(--shadow-lg);

    overflow: hidden;
}

.hero-image-card::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    background: rgba(25, 135, 84, 0.08);

    border-radius: 50%;
}


/* =========================================
   VEGETABLE CIRCLE
========================================= */

.vegetable-circle {
    position: relative;

    width: 300px;
    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.95),
            rgba(226, 246, 234, 0.7)
        );

    box-shadow:
        inset 0 0 40px rgba(25, 135, 84, 0.08),
        0 25px 60px rgba(25, 135, 84, 0.10);

    z-index: 2;
}

.vegetable {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 75px;
    height: 75px;

    font-size: 47px;

    background: rgba(255, 255, 255, 0.85);

    border-radius: 22px;

    box-shadow:
        0 12px 30px rgba(23, 35, 29, 0.10);

    animation: floating 4s ease-in-out infinite;
}

.vegetable-tomato {
    top: 18px;
    left: 105px;
}

.vegetable-carrot {
    right: 17px;
    top: 105px;

    animation-delay: 0.7s;
}

.vegetable-corn {
    right: 105px;
    bottom: 18px;

    animation-delay: 1.2s;
}

.vegetable-broccoli {
    left: 17px;
    bottom: 105px;

    animation-delay: 1.8s;
}

.vegetable-leaf {
    left: 105px;
    top: 105px;

    font-size: 62px;

    background: transparent;

    box-shadow: none;

    animation-delay: 0.4s;
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* =========================================
   FLOATING BADGES
========================================= */

.floating-badge {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 13px 17px;

    color: var(--dark);

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(231, 238, 233, 0.9);

    border-radius: 14px;

    box-shadow: var(--shadow-md);

    font-size: 11px;
    font-weight: 600;

    backdrop-filter: blur(10px);
}

.floating-badge i {
    color: var(--primary);
}

.badge-one {
    top: 48px;
    left: 28px;
}

.badge-two {
    right: 25px;
    bottom: 45px;
}


/* =========================================
   PLACEHOLDER SECTION
========================================= */

.placeholder-section {
    padding: 100px 0;

    background: white;

    text-align: center;
}

.placeholder-section h2 {
    color: var(--dark);

    font-size: 34px;

    margin-bottom: 10px;
}

.placeholder-section p {
    color: var(--muted);

    font-size: 15px;
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 50px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        padding-bottom: 30px;
    }

    .hero-image-card {
        width: min(100%, 450px);
        height: 450px;
    }
}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 760px) {

    .nav-container {
        min-height: 68px;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .search-btn,
    .cart-btn,
    .menu-btn {
        width: 39px;
        height: 39px;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        min-height: auto;

        padding: 55px 0 70px;

        gap: 45px;
    }

    .hero h1 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-trust {
        gap: 14px;

        flex-direction: column;
    }

    .hero-image-card {
        width: 100%;
        height: 360px;

        border-radius: 28px;
    }

    .vegetable-circle {
        width: 230px;
        height: 230px;
    }

    .vegetable {
        width: 58px;
        height: 58px;

        font-size: 34px;

        border-radius: 17px;
    }

    .vegetable-tomato {
        top: 10px;
        left: 80px;
    }

    .vegetable-carrot {
        right: 10px;
        top: 80px;
    }

    .vegetable-corn {
        right: 80px;
        bottom: 10px;
    }

    .vegetable-broccoli {
        left: 10px;
        bottom: 80px;
    }

    .vegetable-leaf {
        left: 80px;
        top: 80px;

        font-size: 48px;
    }

    .badge-one {
        top: 25px;
        left: 15px;
    }

    .badge-two {
        right: 15px;
        bottom: 25px;
    }

    .floating-badge {
        padding: 10px 12px;

        font-size: 9px;
    }

    .placeholder-section {
        padding: 70px 0;
    }

    .placeholder-section h2 {
        font-size: 28px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .container {
        width: 90%;
    }

    .nav-actions {
        gap: 6px;
    }

    .search-btn {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-image-card {
        height: 320px;
    }

    .vegetable-circle {
        width: 210px;
        height: 210px;
    }
}


/* =========================================
   VEGETABLE CATEGORIES
========================================= */

.categories-section {
    padding: 95px 0;

    background: #ffffff;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 42px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-label i {
    font-size: 11px;
}

.section-heading h2 {
    color: var(--dark);

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.15;

    letter-spacing: -1px;

    font-weight: 800;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading > p {
    max-width: 360px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;

    text-align: right;
}


/* =========================================
   CATEGORIES GRID
========================================= */

.categories-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================
   CATEGORY CARD
========================================= */

.category-card {
    position: relative;

    min-height: 205px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 24px;

    overflow: hidden;

    background: #f8fbf9;

    border: 1px solid #e8efeb;

    border-radius: 22px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


/* Soft background circle */

.category-card::before {
    content: "";

    position: absolute;

    width: 125px;
    height: 125px;

    right: -45px;
    top: -45px;

    background: rgba(25, 135, 84, 0.06);

    border-radius: 50%;

    transition: 0.3s ease;
}


/* Hover */

.category-card:hover {

    transform: translateY(-7px);

    background: #ffffff;

    border-color:
        rgba(25, 135, 84, 0.18);

    box-shadow:
        0 20px 45px
        rgba(23, 35, 29, 0.10);

}

.category-card:hover::before {
    transform: scale(1.5);

    background:
        rgba(25, 135, 84, 0.08);
}


/* =========================================
   CATEGORY ICON
========================================= */

.category-icon {

    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 19px;

    font-size: 36px;

    box-shadow:
        0 10px 25px
        rgba(23, 35, 29, 0.07);

    transition:
        transform 0.3s ease;
}

.category-card:hover
.category-icon {

    transform:
        translateY(-4px)
        rotate(-3deg);
}


/* Different soft backgrounds */

.leafy-icon {
    background: #e7f7ed;
}

.root-icon {
    background: #fff5e7;
}

.daily-icon {
    background: #fff0ef;
}

.seasonal-icon {
    background: #eef7e8;
}

.exotic-icon {
    background: #e8f6f2;
}


/* =========================================
   CATEGORY INFO
========================================= */

.category-info {
    position: relative;
    z-index: 2;

    margin-top: 20px;
}

.category-info h3 {
    color: var(--dark);

    font-size: 15px;

    line-height: 1.3;

    font-weight: 700;

    margin-bottom: 5px;
}

.category-info p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================
   CATEGORY ARROW
========================================= */

.category-arrow {

    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: #ffffff;

    border: 1px solid #e8efeb;

    border-radius: 10px;

    font-size: 11px;

    transition: 0.3s ease;
}

.category-card:hover
.category-arrow {

    color: #ffffff;

    background: var(--primary);

    border-color: var(--primary);

    transform: translateX(3px);
}


/* =========================================
   CATEGORY RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .categories-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


@media (max-width: 700px) {

    .categories-section {
        padding: 70px 0;
    }

    .section-heading {

        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 30px;

    }

    .section-heading > p {

        text-align: left;

        max-width: 500px;

    }

    .categories-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;

    }

    .category-card {

        min-height: 190px;

        padding: 20px;

        border-radius: 18px;

    }

}


@media (max-width: 450px) {

    .categories-grid {

        grid-template-columns:
            1fr 1fr;

    }

    .category-card {

        min-height: 175px;

        padding: 17px;

    }

    .category-icon {

        width: 58px;
        height: 58px;

        font-size: 30px;

        border-radius: 16px;

    }

    .category-info {

        margin-top: 14px;

    }

    .category-info h3 {

        font-size: 13px;

    }

    .category-info p {

        font-size: 10px;

    }

    .category-arrow {

        width: 30px;
        height: 30px;

        right: 14px;
        bottom: 14px;

    }

}


/* =========================================
   FRESH VEGETABLES PRODUCTS
========================================= */

.products-section {
    padding: 100px 0;

    background: #f8fbf9;
}


/* =========================================
   PRODUCTS HEADING
========================================= */

.products-heading {
    align-items: flex-end;

    margin-bottom: 42px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 18px;

    color: var(--primary);

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 12px;

    font-size: 13px;
    font-weight: 600;

    box-shadow: var(--shadow-sm);

    transition: 0.25s ease;
}

.view-all-btn:hover {
    color: #ffffff;

    background: var(--primary);

    border-color: var(--primary);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(25, 135, 84, 0.18);
}


/* =========================================
   PRODUCT GRID
========================================= */

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================
   PRODUCT CARD
========================================= */

.product-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e6eee9;

    border-radius: 24px;

    box-shadow:
        0 8px 25px
        rgba(23, 35, 29, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(25, 135, 84, 0.16);

    box-shadow:
        0 22px 50px
        rgba(23, 35, 29, 0.11);
}


/* =========================================
   PRODUCT IMAGE AREA
========================================= */

.product-image-area {
    position: relative;

    height: 245px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #eef8f1 72%,
            #e6f4eb 100%
        );
}

.product-image-area::before {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background:
        rgba(25, 135, 84, 0.055);

    transition: 0.4s ease;
}

.product-card:hover
.product-image-area::before {
    transform: scale(1.18);
}


/* =========================================
   PRODUCT EMOJI
========================================= */

.product-emoji {
    position: relative;
    z-index: 2;

    width: 145px;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 82px;

    background:
        rgba(255, 255, 255, 0.86);

    border-radius: 50%;

    box-shadow:
        0 18px 40px
        rgba(23, 35, 29, 0.10);

    transition:
        transform 0.4s ease;
}

.product-card:hover
.product-emoji {
    transform:
        scale(1.07)
        translateY(-5px);
}


/* =========================================
   FRESH BADGE
========================================= */

.fresh-badge {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 5;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 10px;

    color: var(--primary);

    background:
        rgba(255, 255, 255, 0.92);

    border:
        1px solid
        rgba(25, 135, 84, 0.12);

    border-radius: 9px;

    font-size: 10px;
    font-weight: 700;

    box-shadow:
        0 7px 18px
        rgba(23, 35, 29, 0.06);

    backdrop-filter: blur(8px);
}

.fresh-badge i {
    font-size: 9px;
}


/* =========================================
   WISHLIST
========================================= */

.wishlist-btn {
    position: absolute;

    top: 16px;
    right: 16px;

    z-index: 5;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #65716b;

    background:
        rgba(255, 255, 255, 0.92);

    border:
        1px solid
        rgba(231, 238, 233, 0.9);

    border-radius: 10px;

    box-shadow:
        0 7px 18px
        rgba(23, 35, 29, 0.06);

    transition: 0.25s ease;
}

.wishlist-btn:hover {
    color: #e25555;

    transform: scale(1.08);
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.product-content {
    padding: 22px;
}

.product-category {
    color: var(--primary);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.6px;

    margin-bottom: 7px;
}

.product-content h3 {
    color: var(--dark);

    font-size: 18px;

    line-height: 1.3;

    font-weight: 700;

    margin-bottom: 7px;
}

.product-description {
    min-height: 42px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 18px;
}


/* =========================================
   PRODUCT BOTTOM
========================================= */

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 16px;

    border-top: 1px solid #edf2ef;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.product-price strong {
    color: var(--dark);

    font-size: 22px;

    font-weight: 800;
}

.product-price span {
    color: var(--muted);

    font-size: 11px;

    font-weight: 500;
}


/* =========================================
   ADD CART BUTTON
========================================= */

.add-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-width: 88px;
    height: 40px;

    padding: 0 14px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #2ca66b
        );

    border-radius: 11px;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 8px 18px
        rgba(25, 135, 84, 0.18);

    transition: 0.25s ease;
}

.add-cart-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(25, 135, 84, 0.25);
}

.add-cart-btn i {
    font-size: 10px;
}


/* =========================================
   PRODUCTS RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .products-section {
        padding: 75px 0;
    }

    .products-heading {
        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;

        gap: 14px;
    }

    .product-image-area {
        height: 190px;
    }

    .product-emoji {
        width: 110px;
        height: 110px;

        font-size: 62px;
    }

    .product-content {
        padding: 17px;
    }

    .product-content h3 {
        font-size: 15px;
    }

    .product-description {
        font-size: 10px;
    }

    .product-price strong {
        font-size: 18px;
    }

    .add-cart-btn {
        min-width: 72px;

        height: 36px;

        padding: 0 10px;

        font-size: 10px;
    }

}


@media (max-width: 430px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image-area {
        height: 230px;
    }

    .product-emoji {
        width: 135px;
        height: 135px;

        font-size: 76px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 17px;
    }

    .product-description {
        font-size: 11px;
    }

    .add-cart-btn {
        min-width: 90px;

        font-size: 11px;
    }

}


/* =========================================
   JAIPUR VEGETABLE RATES
========================================= */

.rates-section {
    padding: 100px 0;

    background: #ffffff;
}


/* =========================================
   RATES HEADER
========================================= */

.rates-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 35px;
}

.rates-title {
    max-width: 700px;
}

.rates-title h2 {
    color: var(--dark);

    font-size: clamp(32px, 4vw, 44px);

    line-height: 1.15;

    letter-spacing: -1.2px;

    font-weight: 800;

    margin-bottom: 14px;
}

.rates-title h2 span {
    color: var(--primary);
}

.rates-title > p {
    max-width: 620px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   LOCATION CARD
========================================= */

.rates-location {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 205px;

    padding: 14px 17px;

    background: #f6faf7;

    border: 1px solid #e5eee8;

    border-radius: 15px;
}

.location-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: var(--primary);

    border-radius: 12px;

    box-shadow:
        0 8px 18px
        rgba(25, 135, 84, 0.18);
}

.rates-location strong {
    display: block;

    color: var(--dark);

    font-size: 13px;
}

.rates-location span {
    display: block;

    color: var(--muted);

    font-size: 10px;

    margin-top: 2px;
}


/* =========================================
   RATE INFO BAR
========================================= */

.rate-info-bar {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-bottom: 22px;
}

.rate-info-item {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px 20px;

    background: #f7faf8;

    border: 1px solid #e6eee9;

    border-radius: 15px;
}

.rate-info-item > i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: #e9f7ef;

    border-radius: 10px;

    font-size: 13px;
}

.rate-info-item span {
    display: block;

    color: var(--muted);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .5px;

    font-weight: 600;
}

.rate-info-item strong {
    display: block;

    color: var(--dark);

    font-size: 12px;

    margin-top: 2px;
}


/* =========================================
   RATES CARD
========================================= */

.rates-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e4ece7;

    border-radius: 24px;

    box-shadow:
        0 15px 45px
        rgba(23, 35, 29, 0.07);
}

.rates-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 27px;

    border-bottom: 1px solid #edf2ef;
}

.rates-card-top h3 {
    color: var(--dark);

    font-size: 18px;

    font-weight: 700;
}

.rates-card-top p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 3px;
}

.rates-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 11px;

    color: var(--primary);

    background: #eaf8f0;

    border-radius: 9px;

    font-size: 10px;

    font-weight: 700;
}

.rates-status i {
    font-size: 6px;
}


/* =========================================
   TABLE
========================================= */

.rates-table-wrapper {
    width: 100%;

    overflow-x: auto;
}

.rates-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 700px;
}

.rates-table th {
    padding: 15px 25px;

    color: #78847e;

    background: #fafcfb;

    font-size: 10px;

    text-align: left;

    text-transform: uppercase;

    letter-spacing: .5px;

    font-weight: 700;
}

.rates-table td {
    padding: 17px 25px;

    color: var(--text);

    border-top: 1px solid #edf2ef;

    font-size: 12px;

    font-weight: 500;
}

.rates-table tbody tr {
    transition: .2s ease;
}

.rates-table tbody tr:hover {
    background: #f8fbf9;
}

.rates-table td:nth-child(2) {
    color: var(--dark);

    font-size: 14px;

    font-weight: 800;
}

.table-vegetable {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-right: 9px;

    background: #f0f7f2;

    border-radius: 9px;

    font-size: 19px;

    vertical-align: middle;
}

.stable-price {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #6d7973;

    font-size: 10px;
}

.stable-price i {
    color: #9ba59f;

    font-size: 8px;
}


/* =========================================
   RATE NOTE
========================================= */

.rates-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 17px 25px;

    background: #f8fbf9;

    border-top: 1px solid #edf2ef;
}

.rates-note > i {
    color: var(--primary);

    font-size: 12px;

    margin-top: 4px;
}

.rates-note p {
    color: var(--muted);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================
   RATES CTA
========================================= */

.rates-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 28px;

    padding: 25px 28px;

    background:
        linear-gradient(
            135deg,
            #eef9f2,
            #f8fcf9
        );

    border: 1px solid #e0eee5;

    border-radius: 20px;
}

.rates-cta h3 {
    color: var(--dark);

    font-size: 20px;

    margin-top: 4px;
}


/* =========================================
   SEO CONTENT
========================================= */

.seo-content-section {
    padding: 100px 0;

    background: #f8fbf9;
}

.seo-content-container {
    max-width: 900px;
}

.seo-content {
    padding: 48px;

    background: #ffffff;

    border: 1px solid #e5eee8;

    border-radius: 25px;

    box-shadow:
        0 12px 40px
        rgba(23, 35, 29, 0.055);
}

.seo-content h2 {
    color: var(--dark);

    font-size: 34px;

    line-height: 1.2;

    letter-spacing: -.8px;

    margin-bottom: 25px;
}

.seo-content h3 {
    color: var(--dark);

    font-size: 21px;

    line-height: 1.4;

    margin-top: 38px;

    margin-bottom: 13px;
}

.seo-content p {
    color: #5c6962;

    font-size: 14px;

    line-height: 1.95;

    margin-bottom: 18px;
}

.seo-content a {
    color: var(--primary);

    font-weight: 600;

    border-bottom: 1px dashed rgba(25, 135, 84, .45);

    transition: .2s ease;
}

.seo-content a:hover {
    color: var(--primary-dark);

    border-bottom-style: solid;
}


/* =========================================
   RATES RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .rates-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .rates-location {
        width: 100%;
    }

    .rate-info-bar {
        grid-template-columns: 1fr;
    }

    .rates-cta {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .rates-section,
    .seo-content-section {
        padding: 70px 0;
    }

    .rates-card-top {
        padding: 20px;
    }

    .rates-note {
        padding: 15px 20px;
    }

    .seo-content {
        padding: 27px 20px;

        border-radius: 19px;
    }

    .seo-content h2 {
        font-size: 28px;
    }

    .seo-content h3 {
        font-size: 19px;
    }

    .seo-content p {
        font-size: 13px;

        line-height: 1.85;
    }

}


/* =========================================
   WHY CHOOSE US
========================================= */

.why-section {
    padding: 100px 0;
    background: #ffffff;
}

.center-heading {
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.center-heading > p {
    text-align: center;
    max-width: 600px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    padding: 30px 24px;
    background: #f8fbf9;
    border: 1px solid #e5eee8;
    border-radius: 22px;
    transition: .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(23,35,29,.08);
    border-color: rgba(25,135,84,.16);
}

.why-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #e8f7ee;
    border-radius: 15px;
    margin-bottom: 20px;
}

.why-card h3 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================
   HOW IT WORKS
========================================= */

.how-section {
    padding: 100px 0;
    background: #f8fbf9;
}

.steps-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.step-card {
    text-align: center;
    padding: 25px 15px;
}

.step-number {
    color: rgba(25,135,84,.25);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--primary);
    background: #ffffff;
    border: 1px solid #e1ebe5;
    border-radius: 20px;
    font-size: 22px;
    box-shadow: 0 12px 30px rgba(23,35,29,.06);
}

.step-card h3 {
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 7px;
}

.step-card p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.step-line {
    width: 45px;
    height: 1px;
    background: #d9e8df;
}


/* =========================================
   DELIVERY
========================================= */

.delivery-section {
    padding: 90px 0;
    background: #ffffff;
}

.delivery-box {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 60px;
    padding: 55px;
    background: linear-gradient(135deg,#eaf8f0,#f8fcf9);
    border: 1px solid #dfeee5;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.delivery-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -130px;
    top: -130px;
    background: rgba(25,135,84,.06);
    border-radius: 50%;
}

.delivery-content {
    position: relative;
    z-index: 2;
}

.delivery-content h2 {
    color: var(--dark);
    font-size: clamp(30px,4vw,43px);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.delivery-content h2 span {
    color: var(--primary);
}

.delivery-content p {
    max-width: 570px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.areas-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.areas-grid span {
    padding: 14px 16px;
    color: var(--dark);
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(225,237,229,.9);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}


/* =========================================
   GUIDES
========================================= */

.guides-section {
    padding: 100px 0;
    background: #f8fbf9;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.guide-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5eee8;
    border-radius: 23px;
    box-shadow: 0 8px 25px rgba(23,35,29,.04);
    transition: .3s ease;
}

.guide-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 45px rgba(23,35,29,.09);
}

.guide-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 75px;
    background: linear-gradient(135deg,#edf9f1,#e2f3e8);
}

.guide-green {
    background: linear-gradient(135deg,#edf8e9,#e1f1dc);
}

.guide-orange {
    background: linear-gradient(135deg,#fff5e8,#ffeedb);
}

.guide-content {
    padding: 24px;
}

.guide-content > span {
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.guide-content h3 {
    color: var(--dark);
    font-size: 17px;
    line-height: 1.45;
    margin: 8px 0;
}

.guide-content p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.guide-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}


/* =========================================
   FAQ
========================================= */

.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 850px;
    margin: 45px auto 0;
}

.faq-item {
    border-bottom: 1px solid #e5eee8;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 5px;
    color: var(--dark);
    background: transparent;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: .3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 35px 20px 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 75px 0 25px;
    background: #14221b;
    color: #ffffff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3,1fr);
    gap: 55px;
    padding-bottom: 55px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
}

.footer-logo > span:last-child > span {
    color: #42b878;
}

.footer-brand > p {
    max-width: 330px;
    color: #a8b5ae;
    font-size: 12px;
    line-height: 1.8;
    margin: 20px 0;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b9c5bf;
    font-size: 11px;
}

.footer-location i {
    color: #42b878;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 7px;
}

.footer-column a {
    color: #9eaaa4;
    font-size: 11px;
    transition: .2s ease;
}

.footer-column a:hover {
    color: #42b878;
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
    color: #87958e;
    font-size: 10px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b5c1ba;
    background: rgba(255,255,255,.06);
    border-radius: 10px;
    transition: .25s ease;
}

.footer-social a:hover {
    color: #ffffff;
    background: var(--primary);
    transform: translateY(-2px);
}


/* =========================================
   FINAL RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .steps-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

    .step-line {
        display: none;
    }

    .delivery-box {
        grid-template-columns: 1fr;
    }

    .guides-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


@media (max-width: 650px) {

    .why-section,
    .how-section,
    .guides-section,
    .faq-section {
        padding: 70px 0;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .why-card {
        padding: 22px 17px;
    }

    .steps-wrapper {
        grid-template-columns: 1fr;
    }

    .delivery-box {
        padding: 32px 22px;
        border-radius: 22px;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding-top: 55px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 430px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}


/* =========================================
   PREMIUM FOOTER
========================================= */

.premium-footer {

    position: relative;

    padding: 75px 0 25px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(43, 166, 107, 0.12),
            transparent 30%
        ),
        #122019;

    overflow: hidden;
}


/* Decorative background */

.premium-footer::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    bottom: -250px;

    background:
        rgba(43, 166, 107, 0.06);

    border-radius: 50%;
}

.premium-footer::after {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -150px;
    top: 100px;

    background:
        rgba(255,255,255,0.025);

    border-radius: 50%;
}


/* =========================================
   FOOTER MAIN
========================================= */

.premium-footer-main {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1fr;

    gap: 55px;

    padding-bottom: 55px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.premium-footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: #ffffff;

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -.5px;
}

.premium-footer-logo > span:last-child > span {

    color: #42b878;
}


.footer-logo-icon {

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #20a864,
            #168951
        );

    border-radius: 13px;

    box-shadow:
        0 10px 25px
        rgba(25,135,84,.25);
}


.footer-brand-text {

    max-width: 340px;

    margin-top: 20px;

    color: #9eaca5;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================
   FOOTER TRUST
========================================= */

.footer-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 20px;
}

.footer-trust span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 10px;

    color: #aebbb4;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 9px;

    font-size: 9px;

    font-weight: 600;
}

.footer-trust i {

    color: #42b878;

    font-size: 9px;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.premium-footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.premium-footer-column h3 {

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 8px;
}

.premium-footer-column a {

    width: fit-content;

    color: #95a39b;

    font-size: 11px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.premium-footer-column a:hover {

    color: #42b878;

    transform:
        translateX(4px);
}


/* =========================================
   FOOTER CTA
========================================= */

.footer-cta {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding: 20px 22px;

    background:
        linear-gradient(
            135deg,
            rgba(43,166,107,.15),
            rgba(255,255,255,.035)
        );

    border:
        1px solid
        rgba(71,185,126,.18);

    border-radius: 18px;

    margin-bottom: 28px;
}

.footer-cta-content {

    display: flex;

    align-items: center;

    gap: 14px;
}

.footer-cta-icon {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #42b878;

    background:
        rgba(43,166,107,.12);

    border-radius: 12px;
}

.footer-cta-content span {

    display: block;

    color: #42b878;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .8px;
}

.footer-cta-content h3 {

    margin-top: 3px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;
}


/* =========================================
   SHOP BUTTON
========================================= */

.footer-shop-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 11px 16px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #20a864,
            #168951
        );

    border-radius: 10px;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 10px 22px
        rgba(25,135,84,.18);

    transition: .25s ease;
}

.footer-shop-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 28px
        rgba(25,135,84,.28);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.premium-footer-bottom {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 20px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255,255,255,.07);
}

.premium-footer-bottom > p {

    color: #77867e;

    font-size: 9px;
}

.footer-bottom-center {

    display: flex;

    align-items: center;

    gap: 5px;

    color: #718078;

    font-size: 9px;
}

.footer-bottom-center i {

    color: #42b878;

    font-size: 8px;
}


/* =========================================
   SOCIAL
========================================= */

.premium-social {

    display: flex;

    justify-content: flex-end;

    gap: 7px;
}

.premium-social a {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #9aa79f;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid
        rgba(255,255,255,.06);

    border-radius: 9px;

    font-size: 11px;

    transition: .25s ease;
}

.premium-social a:hover {

    color: #ffffff;

    background:
        #20a864;

    border-color:
        #20a864;

    transform:
        translateY(-3px);
}


/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .premium-footer-main {

        grid-template-columns:
            1.5fr 1fr 1fr;

        gap: 40px;
    }

    .footer-brand-block {

        grid-column: 1 / -1;
    }

}


@media (max-width: 650px) {

    .premium-footer {

        padding: 60px 0 22px;
    }

    .premium-footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 35px 25px;

        padding-bottom: 40px;
    }

    .footer-brand-block {

        grid-column: 1 / -1;
    }

    .footer-cta {

        align-items: flex-start;

        flex-direction: column;

        padding: 18px;
    }

    .footer-shop-btn {

        width: 100%;
    }

    .premium-footer-bottom {

        grid-template-columns: 1fr;

        justify-items: start;

        gap: 15px;
    }

    .premium-social {

        justify-content: flex-start;
    }

}


@media (max-width: 430px) {

    .premium-footer-main {

        grid-template-columns: 1fr;
    }

    .footer-brand-block {

        grid-column: auto;
    }

}


/* =========================================
   PRODUCT SLIDER
========================================= */

.products-slider-wrapper {
    position: relative;

    display: flex;
    align-items: center;

    gap: 14px;
}


/* Slider Window */

.products-slider {
    width: 100%;

    overflow: hidden;
}


/* Track */

.products-track {
    display: flex;

    gap: 22px;

    transition:
        transform 0.45s ease;
}


/* Each card */

.products-track .product-card {
    flex: 0 0 calc(
        (100% - 44px) / 3
    );

    min-width: 0;
}


/* =========================================
   SLIDER BUTTONS
========================================= */

.product-slider-btn {

    flex: 0 0 auto;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--dark);

    background: #ffffff;

    border: 1px solid #e2ebe5;

    border-radius: 13px;

    box-shadow:
        0 10px 25px
        rgba(23, 35, 29, 0.08);

    transition: 0.25s ease;

    z-index: 5;
}

.product-slider-btn:hover {

    color: #ffffff;

    background: var(--primary);

    border-color: var(--primary);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(25, 135, 84, 0.20);
}

.product-slider-btn:disabled {

    opacity: 0.45;

    cursor: default;

    transform: none;

    box-shadow: none;
}


/* =========================================
   SLIDER DOTS
========================================= */

.slider-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    margin-top: 25px;
}

.slider-dot {

    width: 7px;
    height: 7px;

    padding: 0;

    background: #d5e3da;

    border-radius: 50%;

    transition: 0.25s ease;
}

.slider-dot.active {

    width: 22px;

    border-radius: 20px;

    background: var(--primary);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .products-track .product-card {

        flex: 0 0 calc(
            (100% - 22px) / 2
        );

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .products-slider-wrapper {

        gap: 8px;
    }

    .products-track {

        gap: 14px;
    }

    .products-track .product-card {

        flex: 0 0 100%;
    }

    .product-slider-btn {

        width: 36px;
        height: 36px;

        border-radius: 10px;

        font-size: 11px;
    }

}


/* =========================================
   FLOATING CONTACT BUTTONS
========================================= */

.floating-contact {

    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 2000;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.floating-contact-btn {

    min-width: 115px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    color: #ffffff;

    border-radius: 13px;

    font-size: 11px;

    font-weight: 700;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.floating-contact-btn:hover {

    color: #ffffff;

    transform:
        translateY(-3px)
        scale(1.02);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.22);
}


.floating-contact-btn i {

    font-size: 17px;
}


/* WhatsApp */

.whatsapp-btn {

    background: #20a864;
}


/* Call */

.call-btn {

    background: #17231d;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .floating-contact {

        right: 14px;
        bottom: 14px;

        gap: 8px;
    }

    .floating-contact-btn {

        width: 45px;
        min-width: 45px;

        height: 45px;

        border-radius: 50%;
    }

    .floating-contact-btn span {

        display: none;
    }

    .floating-contact-btn i {

        font-size: 17px;
    }

}