:root {
    --ink: #17211a;
    --muted: #667067;
    --line: #dde6da;
    --paper: #fbfaf3;
    --soft: #eef5e9;
    --leaf: #2f7d4f;
    --leaf-dark: #1e5f3b;
    --tomato: #e65f3f;
    --gold: #f2b84b;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(23, 33, 26, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 64px);
    background: rgba(251, 250, 243, 0.88);
    border-bottom: 1px solid rgba(221, 230, 218, 0.75);
    backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.cart-button,
.hero-actions,
.hero-stats,
.filters,
.product-footer,
.cart-head,
.cart-summary div,
footer {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
    font-weight: 800;
    font-size: 1.12rem;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(47, 125, 79, 0.2);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
}

.nav-links {
    gap: clamp(14px, 3vw, 34px);
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.nav-links a:hover {
    color: var(--leaf-dark);
}

.cart-button {
    justify-content: center;
    gap: 8px;
    min-width: 76px;
    height: 42px;
    color: var(--white);
    background: var(--ink);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.cart-button span {
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: clamp(42px, 7vw, 90px) clamp(18px, 4vw, 64px) clamp(54px, 8vw, 96px);
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--tomato);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 840px;
    margin-bottom: 22px;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.hero-text {
    max-width: 650px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.7;
}

.hero-actions {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.primary-action,
.ghost-action,
.set-list button,
.cart-summary button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
}

.primary-action {
    gap: 8px;
    color: var(--white);
    background: var(--leaf);
    box-shadow: 0 16px 30px rgba(47, 125, 79, 0.22);
}

.ghost-action {
    color: var(--leaf-dark);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.65);
}

.hero-stats {
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stats span {
    padding: 12px 14px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.hero-stats strong {
    display: block;
    color: var(--ink);
    font-size: 1.1rem;
}

.hero-visual {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
}

.delivery-chip,
.fresh-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(23, 33, 26, 0.18);
    backdrop-filter: blur(14px);
}

.delivery-chip {
    top: 24px;
    left: 24px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
}

.delivery-chip i {
    color: var(--tomato);
}

.fresh-card {
    right: 24px;
    bottom: 24px;
    min-width: 210px;
    padding: 18px;
    border-radius: 18px;
}

.fresh-card span,
.fresh-card b {
    display: block;
}

.fresh-card span {
    margin: 6px 0 12px;
    color: var(--muted);
}

.fresh-card b {
    font-size: 1.35rem;
}

.section {
    padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 64px);
}

.strip {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(24px, 5vw, 64px);
    background: var(--soft);
}

.steps,
.product-grid,
.review-grid {
    display: grid;
    gap: 18px;
}

.steps {
    grid-template-columns: repeat(3, 1fr);
}

.steps article,
.review-grid article,
.set-list article {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.steps i {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    place-items: center;
    color: var(--white);
    background: var(--leaf);
    border-radius: 14px;
    font-size: 1.25rem;
}

.steps p,
.product-card p,
.set-copy p,
.set-list p,
.review-grid p {
    color: var(--muted);
    line-height: 1.65;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 32px;
}

.filters {
    gap: 8px;
    padding: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.filters button {
    min-height: 38px;
    padding: 0 15px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
}

.filters button.active {
    color: var(--white);
    background: var(--ink);
}

.product-grid {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(23, 33, 26, 0.12);
}

.product-card.is-hidden {
    display: none;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1.32;
    object-fit: cover;
    display: block;
}

.product-body {
    padding: 20px;
}

.tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 10px;
    color: var(--leaf-dark);
    background: var(--soft);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.product-footer {
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.product-footer strong {
    font-size: 1.25rem;
}

.product-footer button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--leaf);
    border: 0;
    border-radius: 14px;
    cursor: pointer;
}

.sets {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(24px, 5vw, 64px);
    background: var(--ink);
    color: var(--white);
}

.set-copy {
    align-self: center;
}

.set-copy p {
    max-width: 520px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.72);
}

.set-list {
    display: grid;
    gap: 14px;
}

.set-list article {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 18px;
    align-items: center;
    color: var(--ink);
}

.set-list span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--leaf-dark);
    background: var(--soft);
    border-radius: 14px;
    font-weight: 800;
}

.set-list p {
    margin-bottom: 0;
}

.set-list button {
    min-width: 118px;
    color: var(--white);
    background: var(--tomato);
    border: 0;
    cursor: pointer;
}

.reviews {
    background: var(--soft);
}

.reviews h2 {
    max-width: 760px;
    margin-bottom: 32px;
}

.review-grid {
    grid-template-columns: repeat(3, 1fr);
}

.stars {
    margin-bottom: 14px;
    color: var(--gold);
}

.cart-panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 40;
    display: flex;
    flex-direction: column;
    width: min(430px, 100%);
    padding: 22px;
    background: var(--white);
    box-shadow: -28px 0 70px rgba(23, 33, 26, 0.22);
    transform: translateX(105%);
    transition: transform 0.24s ease;
}

.cart-panel.is-open {
    transform: translateX(0);
}

.cart-head {
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.cart-head span {
    color: var(--tomato);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-head h2 {
    font-size: 2rem;
}

.cart-head button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    background: var(--soft);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow: auto;
    padding: 18px 0;
}

.empty-cart {
    color: var(--muted);
}

.cart-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.cart-line span {
    color: var(--muted);
    font-size: 0.92rem;
}

.cart-line button {
    color: var(--tomato);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 800;
}

.cart-summary {
    display: grid;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.cart-summary div {
    justify-content: space-between;
}

.cart-summary button {
    width: 100%;
    color: var(--white);
    background: var(--ink);
    border: 0;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 30;
    pointer-events: none;
    background: rgba(23, 33, 26, 0);
    transition: background 0.24s ease;
}

.overlay.is-open {
    pointer-events: auto;
    background: rgba(23, 33, 26, 0.45);
}

footer {
    justify-content: space-between;
    gap: 16px;
    padding: 28px clamp(18px, 4vw, 64px);
    color: var(--white);
    background: #101711;
}

footer span {
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero,
    .strip,
    .sets {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 440px;
    }

    .steps,
    .product-grid,
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .topbar {
        padding: 12px 14px;
    }

    .brand {
        font-size: 1rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .hero,
    .section {
        padding-left: 14px;
        padding-right: 14px;
    }

    h1 {
        font-size: 2.55rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 360px;
        border-radius: 20px;
    }

    .fresh-card {
        right: 14px;
        bottom: 14px;
        min-width: 175px;
    }

    .delivery-chip {
        left: 14px;
        top: 14px;
        max-width: calc(100% - 28px);
    }

    .steps,
    .product-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .filters {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        border-radius: 8px;
    }

    .filters button {
        flex: 0 0 auto;
    }

    .set-list article {
        grid-template-columns: 1fr;
    }

    .set-list button {
        width: 100%;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
