/* =========================================================
   DOSt EV — PREMIUM GLOBAL STYLES
   THE NEXT RIDE IS ELECTRIC
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

/* =========================================================
   ROOT
========================================================= */

:root {
    --green-1: #b7ff3c;
    --green-2: #63e62f;
    --green-3: #16c47f;
    --green-4: #08a66d;

    --gradient-green: linear-gradient(
        135deg,
        #c8ff45 0%,
        #55e334 42%,
        #12c982 100%
    );

    --gradient-soft: linear-gradient(
        135deg,
        rgba(200,255,69,.18),
        rgba(18,201,130,.10)
    );

    --white: #ffffff;
    --bg: #f7faf8;
    --bg-soft: #eef8f1;

    --text: #101817;
    --text-dark: #17201d;
    --text-muted: #66736d;

    --border: #e1ebe5;

    --shadow-sm: 0 8px 25px rgba(18, 55, 37, .07);
    --shadow-md: 0 15px 45px rgba(18, 55, 37, .10);
    --shadow-lg: 0 25px 70px rgba(18, 55, 37, .14);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1200px;

    --transition: .3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}


/* =========================================================
   SECTION SPACING
========================================================= */

section {
    position: relative;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 70px 0;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(99, 230, 47, .12);
    color: var(--green-4);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.section-heading h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;

    letter-spacing: -.045em;

    color: var(--text-dark);

    margin-bottom: 18px;
}

.section-heading p {
    max-width: 650px;
    margin: auto;

    color: var(--text-muted);
    font-size: 16px;
}


/* =========================================================
   HEADER / NAVBAR
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(225,235,229,.8);
}

.navbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 23px;
    font-weight: 800;

    color: var(--text-dark);

    white-space: nowrap;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--gradient-green);

    color: #0c1711;

    font-weight: 900;

    box-shadow:
        0 8px 22px rgba(99,230,47,.25);
}

.logo span {
    color: var(--green-4);
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;

    color: #45534d;

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--green-4);
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--gradient-green);

    transition: var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 16px;

    border-radius: 12px;

    background: #f0f8f3;
    color: var(--green-4);

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--green-4);
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: #fff;
    color: var(--text-dark);

    align-items: center;
    justify-content: center;

    font-size: 19px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;

    padding: 14px 20px 22px;

    background: rgba(255,255,255,.98);

    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;

    padding: 14px 0;

    border-bottom: 1px solid var(--border);

    color: var(--text-dark);

    font-weight: 600;
}

.mobile-menu a:last-child {
    border-bottom: 0;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 50px;

    padding: 0 22px;

    border: 0;
    border-radius: 14px;

    font-size: 14px;
    font-weight: 800;

    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-green);
    color: #0b1710;

    box-shadow:
        0 12px 28px rgba(99,230,47,.24);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(99,230,47,.32);
}

.btn-secondary {
    background: #fff;

    color: var(--text-dark);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--green-2);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;

    box-shadow:
        0 12px 28px rgba(37,211,102,.20);
}

.btn-whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-3px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(183,255,60,.25),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(18,201,130,.12),
            transparent 35%
        ),
        #f7fbf8;
}

.hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: -160px;

    border-radius: 50%;

    background: rgba(183,255,60,.16);

    filter: blur(5px);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 670px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border-radius: 999px;

    background: rgba(99,230,47,.12);

    color: var(--green-4);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .08em;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.hero h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 7vw, 86px);

    line-height: .98;

    letter-spacing: -.065em;

    color: var(--text-dark);

    margin-bottom: 25px;
}

.hero h1 span {
    background: var(--gradient-green);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero p {
    max-width: 590px;

    color: var(--text-muted);

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   SLOGAN
========================================================= */

.slogan {
    display: inline-block;

    font-family: "Manrope", sans-serif;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: var(--green-4);

    margin-top: 18px;
}

.slogan strong {
    color: var(--text-dark);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: absolute;

    right: 3%;
    top: 50%;

    transform: translateY(-50%);

    width: min(46vw, 620px);

    z-index: 1;
}

.hero-visual img {
    width: 100%;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 35px 45px rgba(20,50,35,.16));
}


/* =========================================================
   BRAND STRIP
========================================================= */

.brand-strip {
    padding: 24px 0;

    background: #fff;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brand-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    flex-wrap: wrap;
}

.brand-label {
    color: #8a9690;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .12em;
    text-transform: uppercase;
}

.brand-list {
    display: flex;
    align-items: center;
    gap: 38px;

    flex-wrap: wrap;
}

.brand-list span {
    color: #65716c;

    font-family: "Manrope", sans-serif;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: .04em;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    position: relative;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-7px);

    border-color: rgba(99,230,47,.45);

    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;

    min-height: 270px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(183,255,60,.18),
            transparent 55%
        ),
        #f5faf7;
}

.product-image img {
    width: 100%;
    height: 220px;

    object-fit: contain;

    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.045);
}

.product-info {
    padding: 23px;
}

.product-brand {
    color: var(--green-4);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .1em;
    text-transform: uppercase;

    margin-bottom: 7px;
}

.product-name {
    font-family: "Manrope", sans-serif;

    color: var(--text-dark);

    font-size: 21px;
    font-weight: 800;

    margin-bottom: 8px;
}

.product-description {
    color: var(--text-muted);

    font-size: 13px;

    margin-bottom: 18px;
}

.product-meta {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 8px;

    margin-bottom: 20px;
}

.product-meta-item {
    padding: 10px;

    background: #f6faf8;

    border-radius: 10px;
}

.product-meta-item span {
    display: block;

    color: #89958f;

    font-size: 10px;
    font-weight: 600;

    margin-bottom: 2px;
}

.product-meta-item strong {
    display: block;

    color: var(--text-dark);

    font-size: 12px;
}

.product-price {
    font-family: "Manrope", sans-serif;

    color: var(--green-4);

    font-size: 22px;
    font-weight: 800;
}


/* =========================================================
   BADGES
========================================================= */

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 11px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;
}

.badge-available {
    background: rgba(22,196,127,.11);
    color: #0b9b67;
}

.badge-out {
    background: rgba(255,90,90,.10);
    color: #d64545;
}

.badge-featured {
    background: rgba(183,255,60,.22);
    color: #4d8600;
}


/* =========================================================
   FILTER BAR
========================================================= */

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 45px;
}

.filter-btn {
    padding: 11px 18px;

    border: 1px solid var(--border);

    border-radius: 999px;

    background: #fff;

    color: #66736d;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-green);

    border-color: transparent;

    color: #0b1710;

    box-shadow:
        0 8px 20px rgba(99,230,47,.18);
}


/* =========================================================
   FEATURES
========================================================= */

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.feature-card {
    padding: 30px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 16px;

    background: var(--gradient-soft);

    color: var(--green-4);

    font-size: 22px;
}

.feature-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 19px;

    margin-bottom: 9px;
}

.feature-card p {
    color: var(--text-muted);

    font-size: 14px;
}


/* =========================================================
   LIGHT GREEN CTA
========================================================= */

.cta-section {
    padding: 90px 0;
}

.cta-box {
    position: relative;

    overflow: hidden;

    padding: 65px;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(255,255,255,.45),
            transparent 28%
        ),
        var(--gradient-green);

    box-shadow:
        0 25px 60px rgba(61,180,76,.20);
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(255,255,255,.20);
}

.cta-box h2 {
    position: relative;

    max-width: 650px;

    font-family: "Manrope", sans-serif;

    color: #0b1710;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -.045em;

    margin-bottom: 16px;
}

.cta-box p {
    position: relative;

    max-width: 600px;

    color: rgba(11,23,16,.72);

    margin-bottom: 25px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;
}

.contact-card {
    padding: 35px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 24px;

    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-muted);

    font-size: 14px;

    margin-bottom: 25px;
}


/* =========================================================
   FORMS
========================================================= */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    color: var(--text-dark);

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 7px;
}

.form-control {
    width: 100%;

    min-height: 48px;

    padding: 12px 14px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #fff;

    color: var(--text-dark);

    outline: none;

    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--green-2);

    box-shadow:
        0 0 0 4px rgba(99,230,47,.11);
}

textarea.form-control {
    min-height: 130px;

    resize: vertical;
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    padding: 100px 0 80px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(183,255,60,.22),
            transparent 30%
        ),
        #f7fbf8;

    border-bottom: 1px solid var(--border);
}

.page-hero-content {
    max-width: 800px;

    margin: auto;

    text-align: center;
}

.page-hero h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.02;

    letter-spacing: -.05em;

    margin-bottom: 18px;
}

.page-hero p {
    max-width: 650px;

    margin: auto;

    color: var(--text-muted);

    font-size: 16px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    margin-top: 70px;

    background: #eff8f2;

    border-top: 1px solid var(--border);
}

.footer-main {
    padding: 70px 0 45px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 45px;
}

.footer-brand p {
    max-width: 340px;

    color: var(--text-muted);

    font-size: 14px;

    margin-top: 18px;
}

.footer-title {
    font-family: "Manrope", sans-serif;

    color: var(--text-dark);

    font-size: 14px;
    font-weight: 800;

    margin-bottom: 18px;
}

.footer-links {
    display: grid;

    gap: 11px;
}

.footer-links a {
    color: #68756f;

    font-size: 13px;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green-4);

    transform: translateX(3px);
}

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid var(--border);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #7c8983;

    font-size: 12px;
}


/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 999;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;
    color: #fff;

    font-size: 26px;

    box-shadow:
        0 15px 35px rgba(37,211,102,.30);

    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 20px 45px rgba(37,211,102,.38);
}


/* =========================================================
   LOADING
========================================================= */

.loading-state {
    padding: 70px 20px;

    text-align: center;

    color: var(--text-muted);
}

.loading-spinner {
    width: 40px;
    height: 40px;

    margin: 0 auto 15px;

    border: 4px solid #dce9e1;
    border-top-color: var(--green-3);

    border-radius: 50%;

    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   EMPTY STATE
========================================================= */

.empty-state {
    padding: 70px 20px;

    text-align: center;

    background: #fff;

    border: 1px dashed var(--border);

    border-radius: var(--radius-lg);
}

.empty-state h3 {
    font-family: "Manrope", sans-serif;

    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 20px;
    }

    .nav-phone {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero-visual {
        right: -5%;
        width: 48vw;
    }

    .products-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .footer-main {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(100% - 30px, var(--container));
    }

    .section {
        padding: 70px 0;
    }

    .section-sm {
        padding: 55px 0;
    }


    /* NAV */

    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navbar {
        min-height: 72px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding: 80px 0 55px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 66px);
    }

    .hero p {
        font-size: 15px;
    }

    .hero-visual {
        position: relative;

        top: auto;
        right: auto;

        transform: none;

        width: 100%;

        margin-top: 40px;
    }

    .hero-visual img {
        max-width: 520px;

        margin: auto;
    }


    /* BRANDS */

    .brand-strip-inner {
        justify-content: center;

        text-align: center;
    }

    .brand-list {
        justify-content: center;

        gap: 20px;
    }


    /* PRODUCTS */

    .products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 15px;
    }

    .product-image {
        min-height: 210px;

        padding: 15px;
    }

    .product-image img {
        height: 170px;
    }

    .product-info {
        padding: 17px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-price {
        font-size: 19px;
    }


    /* FEATURES */

    .features-grid {
        grid-template-columns: 1fr;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .cta-box {
        padding: 40px 28px;

        border-radius: 25px;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }


    /* PAGE HERO */

    .page-hero {
        padding: 75px 0 60px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .container {
        width: min(100% - 24px, var(--container));
    }

    .section {
        padding: 58px 0;
    }

    .hero {
        padding-top: 65px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        min-height: 260px;
    }

    .product-image img {
        height: 220px;
    }

    .filter-bar {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 5px;
    }

    .filter-btn {
        flex: 0 0 auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;

        right: 16px;
        bottom: 16px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 3px solid rgba(99,230,47,.35);
    outline-offset: 3px;
}


/* =========================================================
   UTILITY
========================================================= */

.text-center {
    text-align: center;
}

.text-green {
    color: var(--green-4);
}

.gradient-text {
    background: var(--gradient-green);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.bg-light {
    background: #f7fbf8;
}

.bg-white {
    background: #fff;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* =========================================================
   PRODUCT CARD — ADD TO CART FIX
========================================================= */

.product-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 9px !important;
    margin-top: 18px !important;
}

.product-btn {
    min-height: 46px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;

    padding: 0 12px !important;

    border-radius: 11px !important;

    font-size: 12px !important;
    font-weight: 800 !important;

    text-align: center;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* VIEW DETAILS */

.details-btn {
    color: #0b9f68 !important;
    background: #effff7 !important;

    border: 1px solid rgba(22, 199, 132, 0.22) !important;
}

.details-btn:hover {
    background: #ddffed !important;
    transform: translateY(-2px);
}


/* ADD TO CART */

.product-btn.add-to-cart {
    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #19d98a 0%,
            #11b875 50%,
            #079e68 100%
        ) !important;

    border: none !important;

    box-shadow:
        0 8px 20px rgba(22, 199, 132, 0.20) !important;
}

.product-btn.add-to-cart:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(22, 199, 132, 0.30) !important;
}

.product-btn.add-to-cart:active {
    transform: scale(0.97);
}


/* ADDED STATE */

.product-btn.add-to-cart.added {
    background:
        linear-gradient(
            135deg,
            #0ca968,
            #087e50
        ) !important;
}


/* WHATSAPP */

.product-btn.whatsapp-btn {
    grid-column: 1 / -1;

    color: #0b9f68 !important;

    background: #ffffff !important;

    border: 1px solid rgba(22, 199, 132, 0.25) !important;
}

.product-btn.whatsapp-btn:hover {
    background: #effff7 !important;
    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 650px) {

    .product-actions {
        grid-template-columns: 1fr !important;
    }

    .product-btn.whatsapp-btn {
        grid-column: auto;
    }

}
