:root {
    --heading-font: "Quicksand",sans-serif;
    --heading-font-two: "Exo",sans-serif;
    --body-font: "Inter",sans-serif;
    --nav-dark: #20262d;
    --nav-blue: #748598;
    --green: #21a869;
    --green-dark: #0b7444;
    --green-soft: #e9fbf2;
    --orange: #ff8a00;
    --orange-dark: #e77900;
    --orange-soft: #fff2df;
    --yellow: #ffd900;
    --cream: #f5f6f3;
    --card: #ffffff;
    --ink: #121535;
    --muted: #667085;
    --line: #e4e8ee;
    --danger: #e24747;
    --shadow: 0 18px 50px rgba(18,21,53,.12);
    --shadow-soft: 0 10px 28px rgba(18,21,53,.08);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--ink);
    background: var(--cream)
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1180px;
    margin: auto;
    padding: 0 22px
}

.section {
    padding: 78px 0
}

.title {
    font-family: var(--heading-font);
    font-size: clamp(34px,4vw,52px);
    line-height: 1.03;
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -1.1px;
    text-align: center;
    color: var(--ink)
}

.subtitle {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 9px 14px;
    background: #fff;
    color: var(--green-dark);
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 6px 18px rgba(18,21,53,.08);
    letter-spacing: .3px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    padding: 14px 22px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(18,21,53,.12);
    transition: .22s ease;
    line-height: 1
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(18,21,53,.16)
    }

.btn-primary {
    background: var(--orange);
    color: #fff
}

    .btn-primary:hover {
        background: var(--orange-dark)
    }

.btn-green {
    background: var(--green);
    color: #fff
}

    .btn-green:hover {
        background: var(--green-dark)
    }

.btn-white {
    background: #fff;
    color: var(--green-dark)
}

header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--nav-dark);
    color: #fff;
    border-bottom: 4px solid var(--nav-blue);
    box-shadow: 0 8px 26px rgba(0,0,0,.18)
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.logo {
    font-family: Georgia,serif;
    font-weight: 900;
    font-size: 25px;
    color: #111;
    background: #fff;
    border: 2px solid #111;
    padding: 3px 9px;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(0,0,0,.14)
}

.navlinks {
    display: flex;
    gap: 24px;
    font-weight: 800;
    font-size: 14px;
    opacity: .94
}

    .navlinks a {
        position: relative;
        padding: 8px 0
    }

        .navlinks a:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            background: var(--orange);
            transform: scaleX(0);
            transition: .2s ease
        }

        .navlinks a:hover:after {
            transform: scaleX(1)
        }

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(105deg,#046b3c 0%,#0aa65e 46%,#ffe58a 100%);
    padding: 74px 0 48px;
    border-bottom: 8px solid #fff
}

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18px 18px,rgba(255,255,255,.22) 2px,transparent 3px);
        background-size: 24px 24px;
        opacity: .45
    }

    .hero:after {
        content: "";
        position: absolute;
        right: -180px;
        bottom: -300px;
        width: 680px;
        height: 680px;
        border-radius: 50%;
        background: rgba(255,255,255,.20)
    }

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 34px
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(42px,5.4vw,68px);
    line-height: .96;
    margin: 18px 0 16px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 4px 14px rgba(0,0,0,.18)
}

    .hero h1 strong {
        color: #101820;
        background: #fff;
        padding: 0 8px;
        border-radius: 8px;
        text-shadow: none;
        display: inline-block
    }

.hero p {
    font-size: 20px;
    line-height: 1.65;
    color: #effff6;
    max-width: 680px;
    font-weight: 800;
    margin: 0
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px
}

.price {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin: 24px 0 4px;
    font-weight: 900
}

    .price .old {
        text-decoration: line-through;
        opacity: .78;
        font-size: 28px;
        color: #f4fff8
    }

    .price .new {
        font-size: 70px;
        color: #fff;
        line-height: .85
    }

    .price .aed {
        font-size: 20px;
        color: #113b28;
        background: #fff;
        padding: 9px 11px;
        border-radius: 8px;
        box-shadow: 0 10px 22px rgba(0,0,0,.12)
    }

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 4px
}

    .hero-points span {
        background: #fff;
        color: #1f5137;
        border-radius: 8px;
        padding: 11px 15px;
        font-weight: 900;
        font-size: 14px;
        box-shadow: 0 8px 16px rgba(0,0,0,.10)
    }

.hero-visual {
    position: relative;
    min-height: 460px
}

.floating-card {
    position: absolute;
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    width: 230px;
    animation: floaty 5.5s ease-in-out infinite
}

    .floating-card img {
        width: 100%;
        height: 130px;
        object-fit: cover;
        border-radius: 12px;
        background: #f1efe8
    }

    .floating-card b {
        display: block;
        margin-top: 12px;
        font-size: 18px;
        line-height: 1.15
    }

    .floating-card small {
        color: var(--muted);
        font-weight: 800
    }

    .floating-card.one {
        left: 0;
        top: 18px;
        transform: rotate(-5deg)
    }

    .floating-card.two {
        right: 12px;
        top: 72px;
        transform: rotate(5deg);
        animation-delay: .6s
    }

    .floating-card.three {
        left: 165px;
        bottom: 28px;
        width: 270px;
        animation-delay: 1.1s
    }

@keyframes floaty {
    0%,100% {
        translate: 0 0
    }

    50% {
        translate: 0 -12px
    }
}

.problem {
    background: var(--cream)
}

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    max-width: 920px;
    margin: 0 auto
}

.list-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line)
}

    .list-card h3 {
        margin: 0 0 18px;
        font-size: 24px;
        font-family: var(--heading-font);
        font-weight: 900
    }

    .list-card li {
        margin: 13px 0;
        color: var(--muted);
        font-weight: 800
    }

.bad h3 {
    color: var(--danger)
}

.good h3 {
    color: var(--green)
}

.how {
    background: #fff
}

.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    text-align: center
}

.step {
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: .22s ease
}

    .step:hover {
        transform: translateY(-5px)
    }

.icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    margin: 0 auto 16px;
    background: var(--orange-soft);
    display: grid;
    place-items: center;
    font-size: 32px;
    box-shadow: 0 10px 22px rgba(255,138,0,.12);
    border: 1px solid #ffe0b3
}

.step h3 {
    margin: 0 0 8px;
    font-size: 20px
}

.step p {
    margin: 0;
    color: var(--muted);
    font-weight: 800
}

.boxes {
    background: #f4f6f8
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 18px
}

.product {
    grid-column: span 2;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: .22s ease;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    align-items: stretch;
    min-height: 250px
}

    .product:nth-last-child(2) {
        grid-column: 2 / span 2
    }

    .product:nth-last-child(1) {
        grid-column: 4 / span 2
    }

    .product:hover, .product.is-active {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: rgba(33,168,105,.45)
    }

    .product:before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 6px;
        background: linear-gradient(90deg,var(--green),var(--orange))
    }

    .product img {
        width: 100%;
        height: 100%;
        min-height: 210px;
        object-fit: cover;
        border-radius: 16px;
        background: #eee
    }

    .product:hover img {
        transform: scale(1.03)
    }

    .product h3 {
        font-size: 24px;
        line-height: 1.08;
        margin: 4px 0 10px;
        font-family: var(--heading-font);
        font-weight: 900
    }

    .product p {
        color: var(--muted);
        font-weight: 800;
        line-height: 1.45;
        font-size: 15px;
        margin: 0 0 14px
    }

    .product .meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 18px;
        font-weight: 900;
        gap: 12px
    }

        .product .meta span {
            color: var(--orange);
            font-size: 26px;
            line-height: 1.02
        }

    .product .mini {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 10px
    }

        .product .mini i {
            font-style: normal;
            background: var(--green-soft);
            color: #138252;
            padding: 7px 10px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 900
        }

    .product .btn {
        padding: 13px 18px;
        font-size: 14px
    }

.product-content {
    display: flex;
    flex-direction: column
}

    .product-content .meta {
        margin-top: auto
    }

.inside {
    background: #fff
}

.preview-card {
    background: #f4f6f8;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 24px;
    max-width: 1020px;
    margin: auto;
    border: 1px solid var(--line)
}

.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 22px
}

    .tabs button {
        border: 1px solid #dce2e8;
        border-radius: 999px;
        padding: 10px 16px;
        font-weight: 900;
        background: #fff;
        color: var(--ink);
        cursor: pointer
    }

        .tabs button.active {
            background: var(--green);
            color: #fff;
            border-color: var(--green)
        }

.inside-layout {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 24px;
    align-items: start;
}

.items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.item {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-weight: 900;
    font-size: 15px;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: .2s ease;
    height: 185px;
    min-height: 185px;
    max-height: 185px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .item:hover,
    .item.active {
        border-color: var(--green);
        transform: translateY(-3px);
        box-shadow: 0 10px 22px rgba(18,21,53,.09);
    }

    .item img {
        width: 100%;
        height: 105px;
        min-height: 105px;
        max-height: 105px;
        object-fit: cover;
        border-radius: 8px;
        background: #f1efe8;
        margin-bottom: 10px;
    }

.item-detail {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(18,21,53,.06);
    min-height: 365px;
}

    .item-detail img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        border-radius: 12px;
        background: #f1efe8;
        margin-bottom: 18px;
    }

    .item-detail h3 {
        font-family: var(--heading-font);
        font-size: 32px;
        margin: 0 0 12px;
    }

    .item-detail p {
        color: var(--muted);
        font-weight: 800;
        line-height: 1.6;
        font-size: 18px;
    }

.detail-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

    .detail-badges span {
        background: var(--orange-soft);
        color: #9b4b00;
        border-radius: 999px;
        padding: 8px 11px;
        font-weight: 900;
        font-size: 13px;
    }
.testimonials {
    background: linear-gradient(180deg,#ffd900 0%,#ffe96a 100%);
    overflow: hidden
}

.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,.05)
}

.stars {
    color: #ff9f29;
    font-weight: 900;
    letter-spacing: 2px
}

.testimonial p {
    color: var(--muted);
    font-weight: 800;
    line-height: 1.6
}

.person {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900
}

.person b {
    display: block
}

.person small {
    color: var(--muted);
    font-weight: 800
}

.quality {
    background: #20262d;
    color: #fff;
    border-top: 6px solid var(--nav-blue);
    border-bottom: 6px solid var(--nav-blue)
}

    .quality .title, .quality .subtitle {
        color: #fff
    }

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center
}

.quality-list {
    display: grid;
    gap: 18px
}

.quality-row {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 14px;
    align-items: center
}

    .quality-row .icon {
        width: 58px;
        height: 58px;
        font-size: 25px;
        margin: 0;
        background: #2f3944;
        border-color: #435061;
        box-shadow: none
    }

    .quality-row p {
        margin: 4px 0 0;
        color: #cbd5df;
        font-weight: 800
    }

.warehouse {
    border-radius: 18px;
    min-height: 360px;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1000&q=80') center/cover;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

    .warehouse:after {
        content: "souqzone.com\A Quality grocery boxes for UAE homes";
        white-space: pre;
        position: absolute;
        inset: auto 22px 22px 22px;
        background: rgba(0,0,0,.62);
        color: #fff;
        border-radius: 14px;
        padding: 18px;
        font-weight: 900;
        font-size: 22px;
        line-height: 1.35
    }

.benefits {
    background: #f4f6f8
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

.benefit {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line)
}

    .benefit b {
        font-size: 20px
    }

    .benefit p {
        color: var(--muted);
        font-weight: 800;
        line-height: 1.55
    }

.delivery {
    background: #fff;
    position: relative;
    overflow: hidden
}

.map {
    background: linear-gradient(105deg,#e7fff2,#fff2df);
    border-radius: 18px;
    padding: 46px;
    min-height: 380px;
    position: relative;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden
}

    .map:before {
        content: "";
        position: absolute;
        right: 24px;
        top: 22px;
        width: 50%;
        height: 88%;
        opacity: .20;
        background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 420'%3E%3Cpath d='M365 54c40 20 79 58 94 103 15 46 5 99-23 136-27 37-73 58-118 70-45 12-88 14-131 2-43-12-86-38-106-77-20-38-17-90 7-130 25-41 71-71 118-91 47-21 99-33 159-13z' fill='%2321a869'/%3E%3Cpath d='M274 102c47 5 94 31 115 70 21 40 15 93-11 128-25 34-69 50-111 53-42 2-83-9-111-36-28-28-44-72-34-111 10-40 47-74 83-91 22-11 45-16 69-13z' fill='%23ff8a00' opacity='.72'/%3E%3Ccircle cx='210' cy='205' r='14' fill='%23121535'/%3E%3Ccircle cx='315' cy='160' r='14' fill='%23121535'/%3E%3Ccircle cx='332' cy='282' r='14' fill='%23121535'/%3E%3C/svg%3E")
    }

.pin {
    position: absolute;
    background: var(--green);
    color: #fff;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 900;
    font-size: 13px;
    z-index: 1
}

.p1 {
    left: 10%;
    top: 36%
}

.p2 {
    left: 42%;
    top: 22%
}

.p3 {
    right: 16%;
    top: 35%
}

.p4 {
    left: 34%;
    bottom: 22%
}

.p5 {
    right: 28%;
    bottom: 18%;
    background: var(--orange)
}

.p6 {
    right: 10%;
    top: 54%;
    background: #20262d
}

.p7 {
    right: 36%;
    bottom: 10%;
    background: #20262d
}

.p8 {
    left: 55%;
    top: 62%;
    background: var(--orange)
}

.p9 {
    left: 20%;
    bottom: 13%;
    background: var(--green-dark)
}

.map h2 {
    text-align: left;
    max-width: 620px;
    margin: 0 0 15px;
    position: relative;
    z-index: 1
}

.map p {
    text-align: left;
    margin: 0 0 25px;
    max-width: 620px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.6;
    position: relative;
    z-index: 1
}

.map .btn {
    position: relative;
    z-index: 1
}

.states-list {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 680px;
    margin: 0 0 26px
}

    .states-list span {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 8px 12px;
        font-weight: 900;
        color: var(--green-dark);
        box-shadow: 0 8px 18px rgba(18,21,53,.06)
    }

.faq {
    background: #f4f6f8
}

.faq-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.faq-action {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 22px;
    font-weight: 900;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    color: var(--ink);
    transition: .2s ease
}

    .faq-action:hover {
        transform: translateY(-2px)
    }

    .faq-action.active {
        background: var(--green);
        color: #fff
    }

.accordion {
    max-width: 900px;
    margin: auto;
    display: grid;
    gap: 12px
}

.q {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(23,32,51,.05);
    border: 1px solid var(--line);
    overflow: hidden
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font: inherit;
    color: var(--ink)
}

    .faq-question span {
        font-size: 22px;
        line-height: 1;
        transition: .2s ease
    }

.q.open .faq-question span {
    transform: rotate(45deg);
    color: var(--green)
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.6
}

.q.open .faq-answer {
    display: block
}

.answer-box {
    margin: 30px auto 0;
    max-width: 900px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: var(--shadow-soft)
}

    .answer-box p {
        font-weight: 900;
        font-size: 20px;
        margin: 0
    }

.answer-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.cta {
    background: linear-gradient(105deg,#ffd900,#ffea62);
    padding: 50px 0;
    color: var(--ink);
    overflow: hidden
}

.cta-card {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 24px
}

.cta h2 {
    font-family: var(--heading-font);
    font-size: 48px;
    line-height: 1;
    margin: 0
}

    .cta h2 span {
        color: var(--green)
    }

.cta-visual {
    height: 240px;
    background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=900&q=80') center/cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: relative
}

    .cta-visual:after {
        content: "Starting AED 179";
        position: absolute;
        left: 20px;
        bottom: 20px;
        background: #fff;
        color: var(--orange);
        padding: 10px 14px;
        border-radius: 999px;
        font-weight: 900
    }

.footer {
    background: #1d1f25;
    color: #fff;
    padding: 34px 0;
    text-align: center;
    font-weight: 800;
    color: #bbb
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: reveal .7s ease forwards
}

.delay-1 {
    animation-delay: .1s
}

.delay-2 {
    animation-delay: .2s
}

.delay-3 {
    animation-delay: .3s
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:1050px) {
    .box-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .product, .product:nth-last-child(2), .product:nth-last-child(1) {
        grid-column: auto;
        grid-template-columns: 1fr
    }

        .product img {
            height: 170px;
            min-height: 170px
        }
}

@media(max-width:900px) {
    .hero-grid, .quality-grid, .compare, .cta-card, .inside-layout {
        grid-template-columns: 1fr
    }

    .hero-visual {
        min-height: 370px
    }

    .box-grid {
        grid-template-columns: 1fr 1fr
    }

    .steps, .benefit-grid, .testimonial-row {
        grid-template-columns: 1fr
    }

    .items {
        grid-template-columns: repeat(3,1fr)
    }

    .navlinks {
        display: none
    }

    .answer-box {
        display: block
    }

    .answer-buttons {
        margin-top: 16px
    }

    .floating-card.three {
        left: 70px
    }

    .floating-card.two {
        right: 0
    }

    .map:before {
        width: 85%;
        height: 65%;
        right: -80px;
        top: 80px
    }
}

@media(max-width:560px) {
    .section {
        padding: 56px 0
    }

    .box-grid {
        grid-template-columns: 1fr
    }

    .items {
        grid-template-columns: repeat(2,1fr)
    }

    .states-list {
        margin-bottom: 18px
    }

    .hero h1 {
        font-size: 40px
    }

    .price .new {
        font-size: 54px
    }

    .floating-card {
        width: 185px
    }

        .floating-card.three {
            width: 220px;
            left: 36px
        }

    .map {
        padding: 26px
    }

    .pin {
        position: static;
        display: inline-flex;
        margin: 6px
    }

    .hero {
        padding-top: 48px
    }

    .cta h2 {
        font-size: 36px
    }
}
:root {
    --heading-font: "Quicksand",sans-serif;
    --body-font: "Inter",sans-serif;
    --nav-dark: #20262d;
    --nav-blue: #748598;
    --green: #21a869;
    --green-dark: #0b7444;
    --green-soft: #e9fbf2;
    --orange: #ff8a00;
    --orange-dark: #e77900;
    --orange-soft: #fff2df;
    --yellow: #ffd900;
    --cream: #f5f6f3;
    --card: #ffffff;
    --ink: #121535;
    --muted: #667085;
    --line: #e4e8ee;
    --danger: #e24747;
    --shadow: 0 18px 50px rgba(18,21,53,.12);
    --shadow-soft: 0 10px 28px rgba(18,21,53,.08);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--ink);
    background: var(--cream)
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

button, input, select {
    font: inherit
}

.container {
    max-width: 1180px;
    margin: auto;
    padding: 0 22px
}

.section {
    padding: 76px 0
}

.title {
    font-family: var(--heading-font);
    font-size: clamp(34px,4vw,52px);
    line-height: 1.03;
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -1.1px;
    text-align: center;
    color: var(--ink)
}

.subtitle {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    padding: 14px 22px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(18,21,53,.12);
    transition: .22s ease;
    line-height: 1
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(18,21,53,.16)
    }

.btn-primary {
    background: var(--orange);
    color: #fff
}

    .btn-primary:hover {
        background: var(--orange-dark)
    }

.btn-green {
    background: var(--green);
    color: #fff
}

    .btn-green:hover {
        background: var(--green-dark)
    }

.btn-white {
    background: #fff;
    color: var(--green-dark)
}

.btn-dark {
    background: var(--nav-dark);
    color: #fff
}

header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--nav-dark);
    color: #fff;
    border-bottom: 4px solid var(--nav-blue);
    box-shadow: 0 8px 26px rgba(0,0,0,.18)
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.logo {
    font-family: Georgia,serif;
    font-weight: 900;
    font-size: 25px;
    color: #111;
    background: #fff;
    border: 2px solid #111;
    padding: 3px 9px;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(0,0,0,.14)
}

.navlinks {
    display: flex;
    gap: 24px;
    font-weight: 800;
    font-size: 14px;
    opacity: .94
}

    .navlinks a {
        position: relative;
        padding: 8px 0
    }

        .navlinks a:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            background: var(--orange);
            transform: scaleX(0);
            transition: .2s ease
        }

        .navlinks a:hover:after {
            transform: scaleX(1)
        }

.box-switch {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 76px;
    z-index: 25;
    box-shadow: 0 8px 24px rgba(18,21,53,.06)
}

.box-switch-row {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 14px 22px
}

.box-tab {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 11px 16px;
    font-weight: 900;
    color: var(--ink);
    cursor: pointer;
    transition: .2s ease
}

    .box-tab:hover {
        transform: translateY(-2px)
    }

    .box-tab.active {
        background: var(--green);
        border-color: var(--green);
        color: #fff;
        box-shadow: 0 12px 24px rgba(33,168,105,.18)
    }

.hero-detail {
    position: relative;
    overflow: hidden;
    background: linear-gradient(105deg,#046b3c 0%,#0aa65e 46%,#ffe58a 100%);
    padding: 58px 0 52px;
    color: #fff;
    border-bottom: 8px solid #fff
}

    .hero-detail:before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18px 18px,rgba(255,255,255,.22) 2px,transparent 3px);
        background-size: 24px 24px;
        opacity: .45
    }

    .hero-detail:after {
        content: "";
        position: absolute;
        right: -180px;
        bottom: -300px;
        width: 680px;
        height: 680px;
        border-radius: 50%;
        background: rgba(255,255,255,.20)
    }

.detail-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 36px;
    align-items: center
}

.gallery {
    background: #fff;
    border-radius: 26px;
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.7);
    position: relative
}

.gallery-badge {
    position: absolute;
    left: 28px;
    top: 28px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 10px 22px rgba(0,0,0,.15)
}

.main-img {
    height: 440px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #f1efe8;
    transition: .25s ease
}

.gallery:hover .main-img {
    transform: scale(1.015)
}

.thumbs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 12px
}

.thumb {
    border: 2px solid transparent;
    background: #f7f8fb;
    border-radius: 14px;
    padding: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: .2s ease
}

    .thumb.active, .thumb:hover {
        border-color: var(--green)
    }

    .thumb img {
        height: 82px;
        width: 100%;
        object-fit: cover;
        border-radius: 10px
    }

.hero-copy h1 {
    font-family: var(--heading-font);
    font-size: clamp(42px,5vw,68px);
    line-height: .96;
    margin: 16px 0 16px;
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 0 4px 14px rgba(0,0,0,.18)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 9px 14px;
    background: #fff;
    color: var(--green-dark);
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 6px 18px rgba(18,21,53,.08);
    letter-spacing: .3px
}

.hero-copy p {
    font-size: 20px;
    line-height: 1.65;
    color: #effff6;
    max-width: 680px;
    font-weight: 800;
    margin: 0
}

.price-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin: 22px 0;
    font-weight: 900
}

.old-price {
    text-decoration: line-through;
    opacity: .78;
    font-size: 28px;
    color: #f4fff8
}

.price {
    font-size: 72px;
    color: #fff;
    line-height: .85
}

.price-note {
    font-size: 20px;
    color: #113b28;
    background: #fff;
    padding: 9px 11px;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(0,0,0,.12)
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 24px 0
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px
}

    .trust-row span {
        background: #fff;
        color: #1f5137;
        border-radius: 8px;
        padding: 10px 13px;
        font-weight: 900;
        font-size: 14px;
        box-shadow: 0 8px 16px rgba(0,0,0,.10)
    }

.quick-box {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    margin-top: 20px;
    max-width: 620px
}

    .quick-box h3 {
        font-family: var(--heading-font);
        font-size: 24px;
        margin: 0 0 12px
    }

.quick-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

    .quick-tags span {
        background: var(--green-soft);
        color: #138252;
        border-radius: 999px;
        padding: 8px 11px;
        font-weight: 900;
        font-size: 13px
    }

.value-strip {
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    padding: 22px 0
}

.value {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(18,21,53,.04)
}

.value-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--orange-soft);
    display: grid;
    place-items: center;
    font-size: 22px
}

.value b {
    display: block
}

.value small {
    color: var(--muted);
    font-weight: 700
}

.inside {
    background: #fff
}

.inside-wrap {
    background: #f4f6f8;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow)
}

.inside-layout {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 18px;
    align-items: stretch
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px
}

.item {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    font-weight: 900;
    font-size: 13px;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: .2s ease
}

    .item:hover, .item.active {
        border-color: var(--green);
        transform: translateY(-3px);
        box-shadow: 0 10px 22px rgba(18,21,53,.09)
    }

    .item img {
        width: 100%;
        height: 90px;
        object-fit: cover;
        border-radius: 8px;
        background: #f1efe8;
        margin-bottom: 8px
    }

.item-detail {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(18,21,53,.06)
}

    .item-detail img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 14px
    }

    .item-detail h3 {
        font-family: var(--heading-font);
        font-size: 28px;
        margin: 0 0 8px
    }

    .item-detail p {
        color: var(--muted);
        font-weight: 700;
        line-height: 1.6
    }

.detail-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

    .detail-badges span {
        background: var(--orange-soft);
        color: #9b4b00;
        border-radius: 999px;
        padding: 7px 10px;
        font-weight: 900;
        font-size: 12px
    }

.qty {
    margin-top: 14px;
    padding: 12px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 900;
    border-radius: 12px
}

.comparison {
    background: #f4f6f8
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 980px;
    margin: auto
}

.compare-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow-soft)
}

    .compare-card h3 {
        font-family: var(--heading-font);
        font-size: 28px;
        margin: 0 0 16px
    }

    .compare-card li {
        margin: 14px 0;
        color: var(--muted);
        font-weight: 800
    }

.bad h3 {
    color: var(--danger)
}

.good h3 {
    color: var(--green)
}

.perfect {
    background: #fff
}

.perfect-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 14px
}

.perfect-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: .2s ease
}

    .perfect-card:hover {
        transform: translateY(-4px)
    }

.perfect-icon {
    font-size: 34px;
    margin-bottom: 10px
}

.perfect-card b {
    display: block;
    font-size: 17px
}

.perfect-card p {
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.45
}

.reviews {
    background: linear-gradient(180deg,#ffd900 0%,#ffe96a 100%)
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.review {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,.05)
}

.stars {
    color: #ff9f29;
    font-weight: 900;
    letter-spacing: 2px
}

.review p {
    color: var(--muted);
    font-weight: 800;
    line-height: 1.6
}

.person {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900
}

.person b {
    display: block
}

.person small {
    color: var(--muted);
    font-weight: 800
}

.delivery {
    background: #fff
}

.map {
    background: linear-gradient(105deg,#e7fff2,#fff2df);
    border-radius: 18px;
    padding: 46px;
    min-height: 380px;
    position: relative;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden
}

    .map:before {
        content: "";
        position: absolute;
        right: 24px;
        top: 22px;
        width: 50%;
        height: 88%;
        opacity: .20;
        background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 420'%3E%3Cpath d='M365 54c40 20 79 58 94 103 15 46 5 99-23 136-27 37-73 58-118 70-45 12-88 14-131 2-43-12-86-38-106-77-20-38-17-90 7-130 25-41 71-71 118-91 47-21 99-33 159-13z' fill='%2321a869'/%3E%3Cpath d='M274 102c47 5 94 31 115 70 21 40 15 93-11 128-25 34-69 50-111 53-42 2-83-9-111-36-28-28-44-72-34-111 10-40 47-74 83-91 22-11 45-16 69-13z' fill='%23ff8a00' opacity='.72'/%3E%3Ccircle cx='210' cy='205' r='14' fill='%23121535'/%3E%3Ccircle cx='315' cy='160' r='14' fill='%23121535'/%3E%3Ccircle cx='332' cy='282' r='14' fill='%23121535'/%3E%3C/svg%3E")
    }

.pin {
    position: absolute;
    background: var(--green);
    color: #fff;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 900;
    font-size: 13px;
    z-index: 1
}

.p1 {
    left: 10%;
    top: 36%
}

.p2 {
    left: 42%;
    top: 22%
}

.p3 {
    right: 16%;
    top: 35%
}

.p4 {
    left: 34%;
    bottom: 22%
}

.p5 {
    right: 28%;
    bottom: 18%;
    background: var(--orange)
}

.p6 {
    right: 10%;
    top: 54%;
    background: #20262d
}

.p7 {
    right: 36%;
    bottom: 10%;
    background: #20262d
}

.p8 {
    left: 55%;
    top: 62%;
    background: var(--orange)
}

.p9 {
    left: 20%;
    bottom: 13%;
    background: var(--green-dark)
}

.map h2 {
    text-align: left;
    max-width: 620px;
    margin: 0 0 15px;
    position: relative;
    z-index: 1
}

.map p {
    text-align: left;
    margin: 0 0 25px;
    max-width: 620px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.6;
    position: relative;
    z-index: 1
}

.states-list {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 680px;
    margin: 0 0 26px
}

    .states-list span {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 8px 12px;
        font-weight: 900;
        color: var(--green-dark);
        box-shadow: 0 8px 18px rgba(18,21,53,.06)
    }

.reorder {
    background: #20262d;
    color: #fff;
    border-top: 6px solid var(--nav-blue);
    border-bottom: 6px solid var(--nav-blue)
}

    .reorder .title, .reorder .subtitle {
        color: #fff
    }

.reorder-card {
    background: #2b323b;
    border: 1px solid #3e4855;
    border-radius: 22px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: var(--shadow)
}

.reorder-list {
    display: grid;
    gap: 14px
}

    .reorder-list div {
        display: flex;
        gap: 12px;
        align-items: center;
        font-weight: 800;
        color: #dce5ef
    }

    .reorder-list span {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(255,255,255,.08);
        display: grid;
        place-items: center;
        color: #fff
    }

.faq {
    background: #f4f6f8
}

.faq-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.faq-action {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 22px;
    font-weight: 900;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    color: var(--ink);
    transition: .2s ease
}

    .faq-action.active {
        background: var(--green);
        color: #fff
    }

.accordion {
    max-width: 900px;
    margin: auto;
    display: grid;
    gap: 12px
}

.q {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(23,32,51,.05);
    border: 1px solid var(--line);
    overflow: hidden
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font: inherit;
    color: var(--ink)
}

    .faq-question span {
        font-size: 22px;
        line-height: 1;
        transition: .2s ease
    }

.q.open .faq-question span {
    transform: rotate(45deg);
    color: var(--green)
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.6
}

.q.open .faq-answer {
    display: block
}

.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(18,21,53,.12);
    z-index: 40;
    display: none
}

.sticky-inner {
    max-width: 1180px;
    margin: auto;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.sticky-price {
    font-weight: 900;
    color: var(--ink)
}

    .sticky-price span {
        display: block;
        color: var(--orange);
        font-size: 24px
    }

.footer {
    background: #1d1f25;
    color: #bbb;
    padding: 34px 0 90px;
    text-align: center;
    font-weight: 800
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: reveal .7s ease forwards
}

.delay-1 {
    animation-delay: .1s
}

.delay-2 {
    animation-delay: .2s
}

.delay-3 {
    animation-delay: .3s
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:980px) {
    .detail-grid, .inside-layout, .compare-grid, .reorder-card {
        grid-template-columns: 1fr
    }

    .value-grid, .perfect-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .review-grid {
        grid-template-columns: 1fr
    }

    .main-img {
        height: 340px
    }

    .navlinks {
        display: none
    }

    .sticky-cta {
        display: block
    }

    .box-switch {
        top: 76px
    }
}

@media(max-width:620px) {
    .section {
        padding: 56px 0
    }

    .item-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .value-grid, .perfect-grid {
        grid-template-columns: 1fr
    }

    .hero-detail {
        padding-top: 42px
    }

    .price {
        font-size: 54px
    }

    .thumbs {
        grid-template-columns: repeat(4,1fr)
    }

    .map {
        padding: 26px
    }

    .pin {
        position: static;
        display: inline-flex;
        margin: 6px
    }

    .map:before {
        width: 85%;
        height: 65%;
        right: -80px;
        top: 80px
    }

    .hero-actions, .sticky-inner {
        align-items: stretch
    }

    .sticky-inner {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

        .sticky-inner .btn {
            padding: 13px 10px
        }

    .footer {
        padding-bottom: 110px
    }

    .box-switch {
        position: static
    }

    .box-switch-row {
        justify-content: flex-start;
        overflow: auto;
        flex-wrap: nowrap
    }

    .box-tab {
        white-space: nowrap
    }
}


@media(max-width:900px) {
    .inside-layout {
        grid-template-columns: 1fr;
    }

    .items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .items {
        grid-template-columns: 1fr;
    }

    .item {
        height: 170px;
        min-height: 170px;
        max-height: 170px;
    }

        .item img {
            height: 95px;
            min-height: 95px;
            max-height: 95px;
        }
}