:root {
    --ink: #203126;
    --muted: #66756b;
    --cream: #f7f2e8;
    --paper: #fffdf8;
    --green: #335c43;
    --green2: #21412d;
    --accent: #d77c4a;
    --line: #e8e0d2;
    --shadow: 0 18px 55px rgba(38,52,43,.09)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans',sans-serif;
    line-height: 1.55
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.topbar {
    background: var(--green2);
    color: #fff;
    text-align: center;
    padding: .5rem 1rem;
    font-size: .84rem
}

.site-header {
    height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 0 clamp(1rem,4vw,4.5rem);
    border-bottom: 1px solid var(--line);
    background: rgba(255,253,248,.94);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px)
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: white;
    font-family: 'Fraunces',serif;
    font-size: 1.45rem
}

.brand strong {
    display: block;
    letter-spacing: .14em
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: .72rem
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    font-size: .94rem
}

    .main-nav a:hover {
        color: var(--accent)
    }

.cart-link {
    display: flex;
    gap: .55rem;
    align-items: center;
    font-weight: 700
}

    .cart-link span {
        min-width: 27px;
        height: 27px;
        border-radius: 50%;
        background: var(--green);
        color: #fff;
        display: grid;
        place-items: center;
        font-size: .78rem
    }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 1.5rem
}

.section {
    width: min(1180px,calc(100% - 2rem));
    margin: 0 auto;
    padding: 5.5rem 0
}

.section-tight {
    padding-top: 1rem
}

.hero {
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 3rem;
    width: min(1280px,calc(100% - 2rem));
    margin: auto;
    padding: 4.5rem 0
}

.hero-copy {
    padding-left: clamp(0rem,4vw,3rem)
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 700;
    font-size: .77rem;
    color: var(--accent);
    margin-bottom: .75rem
}

.hero h1, .shop-head h1, .detail h1, .section-head h1, .section-head h2, .story h2 {
    font-family: 'Fraunces',serif;
    line-height: 1.02;
    margin: .2rem 0 1rem
}

.hero h1 {
    font-size: clamp(3.3rem,7vw,6.5rem);
    max-width: 760px
}

    .hero h1 em {
        color: var(--accent);
        font-style: normal
    }

.hero p {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 620px
}

.hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin: 2rem 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: .9rem 1.35rem;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    font: inherit
}

.btn-primary {
    background: var(--green);
    color: white
}

    .btn-primary:hover {
        background: var(--green2)
    }

.btn-ghost {
    border-color: var(--line);
    background: #fff
}

.full {
    width: 100%
}

.trust-row {
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: .9rem
}

.hero-art {
    height: 560px;
    position: relative;
    border-radius: 40px;
    background: linear-gradient(145deg,#e7d4b8,#f5ebda);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.juice-orb {
    position: absolute;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-family: 'Fraunces',serif;
    font-weight: 700;
    box-shadow: inset 0 -20px 40px rgba(0,0,0,.12)
}

.orb-a {
    width: 270px;
    height: 270px;
    left: 10%;
    top: 9%;
    background: #d9a341
}

.orb-b {
    width: 225px;
    height: 225px;
    right: 4%;
    top: 25%;
    background: #a73e48
}

.orb-c {
    width: 190px;
    height: 190px;
    left: 30%;
    bottom: 5%;
    background: #d47869
}

.hero-card {
    position: absolute;
    right: 7%;
    bottom: 7%;
    background: rgba(255,255,255,.92);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow)
}

    .hero-card strong, .hero-card small {
        display: block
    }

    .hero-card small {
        color: var(--muted)
    }

.section-head {
    margin-bottom: 2.2rem
}

    .section-head h2, .shop-head h1 {
        font-size: clamp(2.3rem,4vw,4rem)
    }

    .section-head p, .shop-head p {
        color: var(--muted)
    }

.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem
}

.text-link {
    font-weight: 700;
    color: var(--green)
}

.finder {
    background: var(--cream);
    width: 100%;
    padding-left: max(1rem,calc((100% - 1180px)/2));
    padding-right: max(1rem,calc((100% - 1180px)/2))
}

.finder-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem
}

.finder-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.35rem;
    transition: .2s
}

    .finder-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow)
    }

    .finder-card span {
        font-size: 2rem;
        display: block;
        margin-bottom: 1.6rem
    }

    .finder-card strong, .finder-card small {
        display: block
    }

    .finder-card strong {
        font-size: 1.08rem
    }

    .finder-card small {
        color: var(--muted);
        margin-top: .25rem
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.1rem
}

.product-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .2s
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow)
    }

.product-image {
    aspect-ratio: 1/1;
    background: #f5efe3;
    padding: 1.7rem;
    display: grid;
    place-items: center
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

.product-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: .7rem;
    color: var(--muted);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.product-card h3 {
    font-family: 'Fraunces',serif;
    font-size: 1.35rem;
    margin: .7rem 0 .45rem
}

.product-card p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0 0 1rem
}

.product-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: .8rem
}

    .product-bottom strong {
        display: block;
        font-size: 1.18rem
    }

    .product-bottom small {
        display: block;
        color: var(--muted);
        font-size: .72rem
    }

    .product-bottom del {
        display: block;
        color: var(--muted);
        font-size: .78rem
    }

.add-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--green);
    color: white;
    font-size: 1.5rem;
    cursor: pointer
}

    .add-btn:disabled {
        opacity: .35;
        cursor: not-allowed
    }

.stock {
    font-size: .8rem;
    font-weight: 700;
    margin: .2rem 0 .9rem
}

    .stock.in {
        color: #39704a
    }

    .stock.out {
        color: #a05252
    }

.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.story-visual {
    min-height: 480px;
    border-radius: 36px;
    background: radial-gradient(circle at 30% 30%,#f4d48e 0 13%,transparent 14%),radial-gradient(circle at 70% 70%,#a8444f 0 15%,transparent 16%),linear-gradient(135deg,#355f45,#20392a);
    position: relative
}

.story-badge {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    background: #fff;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: 'Fraunces',serif;
    font-size: 1.2rem;
    box-shadow: var(--shadow)
}

.story-copy p {
    color: var(--muted);
    font-size: 1.05rem
}

.story-points {
    display: grid;
    gap: .7rem;
    margin-top: 2rem
}

    .story-points span {
        padding: .85rem 0;
        border-bottom: 1px solid var(--line)
    }

    .story-points b {
        display: inline-block;
        width: 45px;
        color: var(--accent)
    }

.faq {
    max-width: 900px
}

    .faq details {
        border-top: 1px solid var(--line);
        padding: 1rem 0
    }

        .faq details:last-child {
            border-bottom: 1px solid var(--line)
        }

    .faq summary {
        cursor: pointer;
        font-weight: 700;
        font-size: 1.05rem
    }

    .faq p {
        color: var(--muted)
    }

.shop-head {
    padding-bottom: 2rem
}

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start
}

.filters {
    position: sticky;
    top: 110px;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.2rem;
    background: #fff
}

    .filters form, .filters label {
        display: grid;
        gap: .45rem
    }

    .filters form {
        gap: 1rem
    }

    .filters label {
        font-size: .82rem;
        font-weight: 700
    }

    .filters input, .filters select, .buy-box input {
        width: 100%;
        padding: .82rem .9rem;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        font: inherit;
        color: var(--ink)
    }

.reset-link {
    text-align: center;
    color: var(--muted);
    font-size: .83rem
}

.catalog-top {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: .87rem;
    margin-bottom: 1rem
}

.catalog .product-grid {
    grid-template-columns: repeat(3,1fr)
}

.empty-state {
    text-align: center;
    background: var(--cream);
    border-radius: 28px;
    padding: 4rem 1rem
}

.detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.detail-image {
    background: var(--cream);
    border-radius: 34px;
    padding: 4rem;
    position: sticky;
    top: 110px
}

.detail-copy {
    padding: 2rem 0
}

    .detail-copy h1 {
        font-size: clamp(2.8rem,5vw,5rem)
    }

.lead {
    font-size: 1.2rem;
    color: var(--muted)
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0
}

    .detail-tags span {
        background: var(--cream);
        border-radius: 999px;
        padding: .4rem .7rem;
        font-size: .8rem
    }

.detail-price {
    margin: 1.8rem 0
}

    .detail-price strong {
        display: block;
        font-size: 2rem
    }

    .detail-price del {
        color: var(--muted)
    }

    .detail-price small {
        color: var(--muted)
    }

.buy-box {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: .8rem;
    align-items: end;
    margin: 1.2rem 0
}

    .buy-box label {
        font-size: .8rem;
        font-weight: 700
    }

.detail-benefits {
    display: grid;
    gap: .45rem;
    color: var(--muted);
    font-size: .9rem
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--muted)
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start
}

.cart-items {
    display: grid;
    gap: .75rem
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: .8rem
}

    .cart-item img {
        width: 90px;
        height: 90px;
        object-fit: contain;
        background: var(--cream);
        border-radius: 14px;
        padding: .5rem
    }

.cart-main strong, .cart-main small {
    display: block
}

.cart-main small {
    color: var(--muted)
}

.qty-form {
    display: flex;
    align-items: center;
    gap: .5rem
}

    .qty-form input {
        width: 65px;
        padding: .5rem;
        border: 1px solid var(--line);
        border-radius: 10px
    }

    .qty-form button, .remove-btn {
        border: 0;
        background: transparent;
        text-decoration: underline;
        color: var(--muted);
        cursor: pointer
    }

.summary-card {
    border-radius: 24px;
    background: var(--green2);
    color: #fff;
    padding: 1.4rem;
    position: sticky;
    top: 110px
}

    .summary-card h2 {
        font-family: 'Fraunces',serif
    }

    .summary-card > div {
        display: flex;
        justify-content: space-between;
        padding: .7rem 0
    }

.summary-total {
    border-top: 1px solid rgba(255,255,255,.2);
    margin-top: .5rem;
    font-size: 1.15rem
}

.summary-card .btn {
    background: #fff;
    color: var(--green2);
    margin-top: 1rem
}

.summary-note {
    font-size: .76rem;
    opacity: .65
}

.toast-message {
    position: fixed;
    right: 1rem;
    top: 105px;
    z-index: 100;
    background: var(--green2);
    color: #fff;
    padding: .9rem 1.1rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: .3s
}

    .toast-message.hide {
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none
    }

.footer {
    background: #1d2e22;
    color: white;
    padding: 3rem max(1rem,calc((100% - 1180px)/2));
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: start
}

    .footer p, .footer-note {
        color: #b9c5bc
    }

    .footer > div:nth-child(2) {
        display: grid;
        gap: .45rem
    }

    .footer code {
        color: #fff
    }

@media(max-width:980px) {
    .main-nav {
        display: none;
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: 94px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 1rem;
        box-shadow: var(--shadow);
        flex-direction: column
    }

        .main-nav.open {
            display: flex
        }

    .nav-toggle {
        display: block;
        justify-self: end
    }

    .site-header {
        grid-template-columns: 1fr auto auto
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .hero-art {
        height: 440px
    }

    .finder-grid, .product-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .catalog .product-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .story, .detail {
        grid-template-columns: 1fr
    }

    .detail-image {
        position: static
    }

    .shop-layout {
        grid-template-columns: 1fr
    }

    .filters {
        position: static
    }

    .cart-layout {
        grid-template-columns: 1fr
    }

    .summary-card {
        position: static
    }

    .footer {
        grid-template-columns: 1fr 1fr
    }

    .footer-note {
        grid-column: 1/-1
    }
}

@media(max-width:650px) {
    .topbar {
        font-size: .72rem
    }

    .site-header {
        height: 72px;
        padding: 0 1rem;
        gap: .7rem
    }

    .brand small {
        display: none
    }

    .brand-mark {
        width: 38px;
        height: 38px
    }

    .cart-link {
        font-size: 0
    }

        .cart-link span {
            font-size: .78rem
        }

    .hero {
        padding: 2.5rem 0
    }

    .hero-copy {
        padding: 0
    }

    .hero h1 {
        font-size: 3.2rem
    }

    .hero-art {
        height: 340px;
        border-radius: 26px
    }

    .orb-a {
        width: 180px;
        height: 180px
    }

    .orb-b {
        width: 150px;
        height: 150px
    }

    .orb-c {
        width: 125px;
        height: 125px
    }

    .section {
        padding: 3.5rem 0
    }

    .finder-grid, .product-grid, .catalog .product-grid {
        grid-template-columns: 1fr
    }

    .split {
        align-items: start;
        flex-direction: column
    }

    .story {
        gap: 1.5rem
    }

    .story-visual {
        min-height: 340px
    }

    .shop-head {
        padding-top: 3rem
    }

    .detail {
        gap: 1rem
    }

    .detail-image {
        padding: 2rem
    }

    .buy-box {
        grid-template-columns: 1fr
    }

    .cart-item {
        grid-template-columns: 72px 1fr auto
    }

        .cart-item img {
            width: 72px;
            height: 72px
        }

        .qty-form, .line-price, .cart-item > form:last-child {
            grid-column: 2/-1
        }

    .qty-form {
        justify-content: flex-start
    }

    .footer {
        grid-template-columns: 1fr
    }

    .footer-note {
        grid-column: auto
    }
}
