@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");
:root {
    --green: #2e7a32;
    --green-dark: #1b5e20;
    --blue: #1b5e20;
    --blue-dark: #0288d1;
    --bg: #ffffff;
    --fg: #1a2e1a;
    --muted: #718096;
    --border: #e2e8f0;
    --card: #ffffff;
    --accent: #f0fdf4;
    --radius: 0.75rem;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
body.mobile-nav-open {
    overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}
.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 1rem;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
}

/* Top bar */
.topbar {
    background: #2e7a32;
    color: #fff;
    font-size: 12px;
    padding: 10px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar a {
    color: #fff;
}
.topbar a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* height: 64px; */
}
.logo {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    background: linear-gradient(135deg, #24a480, #3fa9f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    /* padding: 8px 12px; */
    border-radius: 8px;
}
.logo span {
    color: var(--blue);
}
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
}
.nav-links a {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}
.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Buttons */
/* .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
} */
.btn-primary {
    background: var(--green);
    color: #fff;
}
.btn-primary:hover {
    background: var(--green-dark);
}
.btn-secondary {
    background: var(--blue);
    color: #fff;
}
.btn-secondary:hover {
    background: var(--blue-dark);
}
/* .btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--fg);
} */
/* .btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
} */
.btn-ghost {
    background: transparent;
    color: var(--green);
}
.btn-ghost:hover {
    background: var(--accent);
}
.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}
/* .btn-sm {
    padding: 6px 14px;
    font-size: 13px;
} */
.btn-white {
    background: #fff;
    color: var(--green);
}
.btn-white:hover {
    background: #f0f0f0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 20, 10, 0.8),
        rgba(10, 20, 10, 0.4),
        transparent
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(46, 125, 50, 0.3);
    color: #fff;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(46, 125, 50, 0.4);
    backdrop-filter: blur(4px);
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 span {
    color: var(--blue);
}
.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stats */
.stats {
    background: var(--green);
    padding: 48px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stats-grid .num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    font-family: "Poppins", sans-serif;
}
.stats-grid .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}
.stats-grid svg {
    margin: 0 auto 12px;
    color: var(--blue);
}

/* Section */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--accent);
}
.section-label {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-top: 8px;
}
.text-center {
    text-align: center;
}
.section-heading-lg {
    margin-bottom: 30px;
}
.section-subtitle {
    color: var(--muted);
    margin-top: 12px;
}
.section-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.section-head-note {
    color: var(--muted);
    margin-top: 8px;
}
.section-head-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Card grid */
.card-grid {
    display: grid;
    gap: 24px;
}
.card-grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.card-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.card-grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Product card */
.product-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    transition: all 0.3s;
}
.product-card:hover {
    box-shadow: 0 12px 40px -8px rgba(46, 125, 50, 0.2);
    transform: translateY(-4px);
}
.product-card .img-wrap {
    height: auto;
    overflow: hidden;
}
.product-card .img-wrap img {
    width: 100%;
    padding: 10px;
    /* height: 100%; */
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.5s;
}
/* .product-card:hover .img-wrap img {
    transform: scale(1.05);
} */
.product-card .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}
.product-card .card-body {
    padding: 20px;
}
.product-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.product-card .desc {
    font-size: 13px;
    color: var(--muted);
}
.product-card .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}
.product-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green);
    font-family: "Poppins", sans-serif;
}
.product-card .old-price {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 14px;
    margin-left: 8px;
}
.product-card-media {
    position: relative;
}
.product-meta-note {
    font-size: 12px;
    color: var(--blue);
    margin: 8px 0;
}

/* Why choose */
.whychoose-title {
    margin-bottom: 32px;
}
.reason-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.reason-icon {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    background: rgba(46, 125, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}
.reason-icon i {
    font-size: 18px;
    line-height: 1;
}
.reason-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}
.reason-item p {
    font-size: 16px;
    color: var(--muted);
}
.whychoose-visual {
    position: relative;
}
.whychoose-image {
    border-radius: 16px;
    width: 100%;
    height: auto;
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.2);
}
.whychoose-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--green);
    color: #fff;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.whychoose-badge-count {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
}
.whychoose-badge-text {
    font-size: 20px;
    opacity: 0.8;
}

/* Solutions tabs */
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.tab-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Poppins", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.tab-btn i {
    font-size: 14px;
    line-height: 1;
}
.tab-btn.active,
.tab-btn:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.solution-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.solution-copy {
    color: var(--muted);
    margin-bottom: 24px;
}
.solution-cta {
    margin-top: 24px;
}
.solution-image {
    border-radius: 16px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
}
.step-circle i{
    font-size: 20px;
}
.step-num {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-copy {
    font-size: 13px;
    color: var(--muted);
}

/* Testimonial */
.testimonial-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-box .stars {
    color: var(--blue);
    margin-bottom: 20px;
}
.testimonial-stars {
    font-size: 20px;
}
.testimonial-box blockquote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}
.testimonial-box .author {
    font-weight: 600;
}
.testimonial-box .location {
    font-size: 13px;
    color: var(--muted);
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.2s;
}
.testimonial-dots .dot.active {
    background: var(--green);
}

/* Blog card */
.blog-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    transition: all 0.3s;
}
.blog-card:hover {
    box-shadow: 0 12px 40px -8px rgba(46, 125, 50, 0.15);
}
.blog-card .img-wrap {
    /* height: 192px; */
    overflow: hidden;
}
.blog-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .img-wrap img {
    transform: scale(1.05);
}
.blog-card .card-body {
    padding: 20px;
}
.blog-card .date {
    font-size: 12px;
    color: var(--muted);
}
.blog-card h3 {
    font-size: 15px;
    margin: 8px 0;
}
.blog-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
}
.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--green), var(--blue-dark));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer,
.site-footer {
    background: #222a26;
    color: #fff;
    padding: 42px 0 0;
}
.footer-grid,
.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) minmax(140px, 0.7fr) minmax(
            180px,
            0.95fr
        ) minmax(220px, 0.95fr);
    gap: 28px;
    align-items: start;
}
.footer h4,
.site-footer h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}
.footer p,
.footer a,
.footer li,
.site-footer p,
.site-footer a,
.site-footer li,
.site-footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
}
.footer a:hover,
.site-footer a:hover {
    color: #fff;
}
.footer ul,
.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer li,
.site-footer__list li {
    margin-bottom: 7px;
}
.footer-bottom,
.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
    margin-top: 26px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}
.site-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.site-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
}
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.site-footer__bottom-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.site-footer__brand {
    max-width: 340px;
}
.site-footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}
.site-footer__logo img {
    width: 80px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.site-footer__logo span {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.site-footer__copy {
    line-height: 1.8;
}
.site-footer__contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.site-footer__contact-strip a {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
}
.site-footer__links-block,
.site-footer__category-block {
    padding-top: 4px;
}
.site-footer__contact-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__contact li {
    margin-bottom: 12px;
}
.site-footer__contact span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px;
}

.site-footer__grid > div {
    min-width: 0;
}

.site-footer__copy,
.site-footer__list li,
.site-footer__contact div,
.site-footer__bottom-links a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 28px 0 0;
    }

    .site-footer .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-footer__grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .site-footer__brand,
    .site-footer__links-block,
    .site-footer__category-block,
    .site-footer__contact-card,
    .site-footer__grid > div {
        width: 100%;
        max-width: 100%;
    }

    .site-footer__logo {
        margin-bottom: 8px;
    }

    .site-footer__logo img {
        width: 58px;
    }

    .site-footer h4 {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .site-footer__copy,
    .site-footer p,
    .site-footer a,
    .site-footer li {
        font-size: 12px;
        line-height: 1.65;
    }

    .site-footer__contact-strip {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .site-footer__contact-strip a {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 8px 10px;
    }

    .site-footer__social {
        gap: 8px;
    }

    .site-footer__social a {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .site-footer__contact-card {
        padding: 14px;
    }

    .site-footer__bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 8px;
        padding: 12px 0 16px;
        margin-top: 18px;
    }

    .site-footer__bottom-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 10px;
        width: 100%;
    }

    .site-footer__bottom-links a {
        font-size: 12px;
    }
}

/* Floating buttons */
.float-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    font-size: 28px;
}
.float-wa:hover {
    transform: scale(1.1);
}
.float-call {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2e7a32;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    font-size: 24px;
}
.float-call:hover {
    transform: scale(1.1);
}

/* Get Quote sidebar */
.quote-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    background: var(--green);
    color: #fff;
    padding: 24px 12px;
    border-radius: 8px 0 0 8px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    writing-mode: vertical-lr;
    transform: translateY(-50%) rotate(180deg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: padding 0.2s;
}
.quote-tab:hover {
    padding: 24px 16px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.modal-overlay.show {
    display: flex;
}
.modal {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
}
.modal .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--muted);
}
.modal h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.modal .sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
}
.modal input,
.modal textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: "Inter", sans-serif;
    margin-bottom: 12px;
}
.modal textarea {
    resize: vertical;
}

/* Two col */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    /* align-items: center; */
}

/* Form */
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: "Inter", sans-serif;
}

/* Filter sidebar */
.filter-sidebar {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    background: var(--card);
}
.filter-sidebar h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 20px;
}
.filter-sidebar h3:first-child {
    margin-top: 0;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 8px;
}
.checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--green);
}

/* Page header */
.page-header {
    background: var(--accent);
    padding: 48px 0;
    text-align: center;
}
.page-header h1 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.page-header p {
    color: var(--muted);
    max-width: 640px;
    margin: 8px auto 0;
    font-size: 15px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}
.breadcrumb a {
    color: var(--muted);
}
.breadcrumb a:hover {
    color: var(--green);
}

/* Tabs simple */
.simple-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    gap: 0;
    margin-bottom: 24px;
}
.simple-tab {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    font-family: "Poppins", sans-serif;
}
.simple-tab.active {
    border-bottom-color: var(--green);
    color: var(--green);
}

/* Spec table */
.spec-table {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.spec-table .row {
    display: flex;
}
.spec-table .row:nth-child(even) {
    background: var(--accent);
}
.spec-table .row .key {
    width: 33%;
    padding: 12px;
    font-weight: 500;
    font-size: 14px;
    border-right: 1px solid var(--border);
}
.spec-table .row .val {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

/* Trust badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 20px;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
}
.trust-badge svg {
    color: var(--green);
    width: 16px;
    height: 16px;
}

/* Cart item */
.cart-item {
    display: flex;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 13px;
    margin: 10px 0;
    background: var(--card);
}
.cart-item img {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    object-fit: cover;
}
.cart-item .info {
    flex: 1;
}
.cart-item .name {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
.cart-item .cat {
    font-size: 13px;
    color: var(--muted);
}
.cart-item .price {
    font-weight: 700;
    color: var(--green);
    font-family: "Poppins", sans-serif;
    margin-top: 4px;
}
.qty-control {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}
.qty-control button {
    padding: 6px 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
.qty-control button:hover {
    background: var(--accent);
}
.qty-control span {
    padding: 6px 16px;
    font-weight: 500;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

/* Summary box */
.summary-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    background: var(--card);
}
.summary-box h2 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-top: 12px;
}
.summary-total .price {
    color: var(--green);
}

/* Contact info card */
.contact-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    align-items: flex-start;
}
.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}

/* FAQ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-q {
    padding: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.faq-q:hover {
    background: var(--accent);
}
.faq-a {
    padding: 0 16px 16px;
    font-size: 14px;
    color: var(--muted);
    display: none;
}
.faq-item.open .faq-a {
    display: block;
}

/* Account tabs */
.account-tabs {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}
.account-tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: var(--card);
    border-right: 1px solid var(--border);
    font-family: "Poppins", sans-serif;
}
.account-tab:last-child {
    border-right: none;
}
.account-tab.active {
    background: var(--green);
    color: #fff;
}

/* Feature list */
.feature-list {
    list-style: none;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}
.feature-list li::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
}
.dot-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.dot-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}

/* Radio */
.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    cursor: pointer;
}
.radio-option input {
    accent-color: var(--green);
}

/* Responsive */
@media (max-width: 1024px) {
    .two-col,
    .tab-content.active {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet & Small Desktop */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Header adjustments */
    .topbar {
        display: none;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block !important;
    }

    /* Hero section */
    .hero {
        min-height: 60vh;
        padding: 40px 0;
    }
    .hero-content {
        padding: 20px 0;
    }
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    .hero-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .hero-btns .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }

    /* Stats section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stats-grid > div {
        padding: 20px 16px;
    }
    .stats-grid .num {
        font-size: 24px;
    }
    .stats-grid .label {
        font-size: 13px;
    }

    /* Section spacing */
    .section {
        padding: 40px 0;
    }

    /* Product cards */
    .card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .product-card {
        border-radius: 12px;
    }
    /* .product-card .img-wrap {
        height: 160px;
    } */
    .card-body {
        padding: 12px;
    }
    .card-body h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    .card-body .desc {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .price-row {
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
    }
    .price-row .btn {
        width: 100%;
        padding: 8px 12px;
        font-size: 13px;
    }

    /* Two column layout */
    .two-col {
        grid-template-columns: 1fr;
    }
    .two-col img {
        border-radius: 12px;
    }

    /* Reason items */
    .reason-item {
        margin-bottom: 16px;
    }
    .reason-icon {
        font-size: 32px;
    }

    /* Tabs */
    .tabs {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
    }
    .tab-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    .tab-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tab-content img {
        height: 250px;
    }
    .tab-content h3 {
        font-size: 1.3rem;
    }
    .tab-content p {
        font-size: 13px;
    }

    /* Category section heading */
    [style*="margin-bottom:56px"] {
        margin-bottom: 32px !important;
    }

    /* Section title */
    .section-title {
        font-size: 1.5rem;
    }
    .section-label {
        font-size: 12px;
    }

    /* Buttons */
    .btn-lg {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Hero section */
    .hero {
        min-height: 55vh;
        padding: 30px 0;
    }
    .hero-content {
        padding: 16px 0;
    }
    .hero h1 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    .hero-btns .btn {
        width: 100%;
    }

    /* Stats section */
    .stats {
        padding: 25px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .stats-grid > div {
        padding: 12px 10px;
    }
    .stats-grid .num {
        font-size: 18px;
        font-weight: 700;
    }
    .stats-grid .label {
        font-size: 11px;
    }

    /* Category and Products Section */
    .section {
        padding: 25px 0;
    }

    /* Section heading */
    .text-center {
        margin-bottom: 20px !important;
    }

    .text-center .section-label {
        font-size: 11px;
        display: block;
        margin-bottom: 6px;
    }

    .text-center .section-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .text-center p {
        font-size: 12px;
        margin-top: 6px;
    }

    /* Category Section - Horizontal Scroll */
    .section:first-of-type .card-grid-4 {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 12px;
        padding: 0 0 8px 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .section:first-of-type .card-grid-4::-webkit-scrollbar {
        height: 4px;
    }

    .section:first-of-type .card-grid-4::-webkit-scrollbar-track {
        background: transparent;
    }

    .section:first-of-type .card-grid-4::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 2px;
    }

    .section:first-of-type .product-card {
        flex: 0 0 auto;
        width: 90px;
        min-width: 90px;
        border: none;
        background: transparent;
        border-radius: 50%;
        overflow: visible;
    }

    .section:first-of-type .product-card .img-wrap {
        height: 90px;
        width: 90px;
        border-radius: 50%;
        border: 2px solid var(--border);
        overflow: hidden;
        margin: 0 auto;
    }

    .section:first-of-type .product-card .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .section:first-of-type .product-card .card-body {
        padding: 8px 0;
        text-align: center;
    }

    .section:first-of-type .product-card h3 {
        font-size: 12px;
        margin-bottom: 0;
        line-height: 1.3;
        font-weight: 600;
        color: var(--fg);
    }

    .section:first-of-type .product-card .desc,
    .section:first-of-type .product-card .read-more,
    .section:first-of-type .product-card .price-row {
        display: none;
    }

    /* Other Product cards - Grid layout */
    .section:not(:first-of-type) .card-grid-4,
    .card-grid-3,
    .card-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: 10px;
        border: 1px solid var(--border);
    }

    /* .product-card .img-wrap {
        height: 120px;
    } */

    .product-card .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-card .badge {
        font-size: 9px;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }

    .product-card .card-body {
        padding: 8px;
    }

    .product-card h3 {
        font-size: 13px;
        margin-bottom: 3px;
        line-height: 1.3;
        font-weight: 600;
    }

    .product-card .desc {
        font-size: 10px;
        margin-bottom: 4px;
        line-height: 1.3;
        display: none;
    }

    .product-card .read-more {
        font-size: 10px;
        color: var(--green);
        font-weight: 500;
    }

    .product-card .price-row {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-top: 4px;
    }

    .product-card .price {
        font-size: 14px;
        font-weight: 700;
        color: var(--green);
    }

    .product-card .old-price {
        font-size: 10px;
        text-decoration: line-through;
        color: var(--muted);
    }

    .product-card .btn-sm {
        width: 100%;
        padding: 6px 8px;
        font-size: 11px;
    }

    /* Stats section */
    .stats {
        padding: 25px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .stats-grid > div {
        padding: 12px 10px;
    }
    .stats-grid .num {
        font-size: 18px;
        font-weight: 700;
    }
    .stats-grid .label {
        font-size: 11px;
    }

    /* Sections */
    .section {
        padding: 25px 0;
    }

    /* Two column layout */
    .two-col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .two-col img {
        border-radius: 10px;
        height: 220px;
        object-fit: cover;
    }

    /* Reason items */
    .reason-item {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
    }
    .reason-icon {
        font-size: 28px;
        min-width: 32px;
    }
    .reason-item h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .reason-item p {
        font-size: 12px;
        color: var(--muted);
    }

    /* Tabs */
    .tabs {
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 20px;
        justify-content: flex-start;
    }
    .tab-btn {
        font-size: 12px;
        padding: 7px 10px;
        white-space: nowrap;
    }
    .tab-btn.active {
        padding: 7px 10px;
    }
    .tab-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .tab-content > div {
        order: 2;
    }
    .tab-content img {
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        order: 1;
    }
    .tab-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    .tab-content p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .dot-list {
        font-size: 12px;
    }
    .dot-list li {
        margin-bottom: 6px;
    }

    /* Titles and labels */
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    .section-label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    /* Buttons */
    .btn-lg {
        padding: 10px 16px;
        font-size: 13px;
    }
    .btn-sm {
        padding: 7px 12px;
        font-size: 12px;
    }
    .btn {
        border-radius: 8px;
    }

    /* Footer */
    .footer-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .site-footer {
        padding-top: 38px;
    }
    .site-footer__brand {
        max-width: 100%;
    }
    .site-footer__logo img {
        width: 72px;
    }
    .site-footer__eyebrow {
        font-size: 11px;
        padding: 6px 10px;
        margin-bottom: 10px;
    }
    .site-footer__copy {
        font-size: 12px;
        line-height: 1.75;
    }
    .site-footer__contact-strip {
        gap: 8px;
        margin-top: 14px;
    }
    .site-footer__contact-strip a {
        width: 100%;
        justify-content: center;
        font-size: 12px;
        padding: 9px 12px;
    }
    .site-footer__social {
        margin-top: 14px;
    }
    .site-footer__social a {
        width: 38px;
        height: 38px;
    }
    .site-footer__contact-card {
        padding: 18px;
        border-radius: 18px;
    }
    .site-footer__list li {
        margin-bottom: 10px;
    }
    .site-footer__bottom {
        flex-direction: column;
        text-align: left;
        margin-top: 28px;
        gap: 10px;
    }
    .site-footer__bottom-links {
        gap: 10px 14px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .trust-badges {
        grid-template-columns: 1fr;
    }

    /* Mobile menu */
    .mobile-menu {
        padding: 12px;
    }
    .mobile-menu a {
        padding: 10px 0;
        font-size: 14px;
    }
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--fg);
}
.mobile-menu {
    display: none;
    padding: 16px;
    border-top: 1px solid var(--border);
}
.mobile-menu.show {
    display: block;
}
.mobile-menu a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}
.mobile-menu a:hover {
    color: var(--green);
}
