:root {
    --bg: #f7faf9;
    --surface: #ffffff;
    --ink: #0b1320;
    --muted: #5b6675;
    --brand: #0f766e; /* teal to match your logo */
    --brand-ink: #063f3a;
    --ring: rgba(15,118,110,.25);
    --radius: 18px;
    --shadow: 0 10px 30px rgba(2,8,20,.06), 0 2px 8px rgba(2,8,20,.04);
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: .9rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--brand);
    color: #fff
}

    .btn-primary:hover {
        filter: brightness(1.05)
    }

.btn-ghost {
    background: transparent;
    border-color: #e6ecea;
    color: var(--ink)
}

    .btn-ghost:hover {
        background: #eef4f3
    }

.small {
    font-size: .875rem
}

.muted {
    color: var(--muted)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.8);
    backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid #eef2f1;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: inherit;
    text-decoration: none
}

.brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #111;
    display: block;
    object-fit: cover
}

.brand-name {
    font-weight: 700
}

.main-nav a {
    color: var(--muted);
    text-decoration: none;
    margin: 0 .75rem
}

    .main-nav a:hover {
        color: var(--ink)
    }

.cart-button {
    position: relative;
    border: 1px solid #e7eeec;
    background: #fff;
    padding: .55rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    padding: .15rem .45rem;
    font-size: .75rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 64px 0 52px;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid #eef2f1
}

.hero-bg {
    position: absolute;
    inset: auto -20% -35% auto;
    height: 580px;
    width: 65%;
    background: radial-gradient(600px 600px at 90% 10%, rgba(13,171,144,0.25), transparent 60%), radial-gradient(420px 420px at 75% 35%, rgba(13,171,144,0.12), transparent 60%);
    filter: blur(1px);
    pointer-events: none;
}

.eyebrow {
    color: var(--muted);
    font-weight: 600
}

.hero-title {
    margin: 16px 0 8px;
    font-size: clamp(36px,5.5vw,64px);
    line-height: 1.1;
    letter-spacing: -.01em;
    font-weight: 800;
    color: #0f1d27;
}

    .hero-title span {
        color: var(--brand);
        opacity: .85
    }

.hero-sub {
    color: #55626f;
    max-width: 760px
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 18px
}

.phone {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600
}

/* Sections */
.menu-section {
    padding: 40px 0 26px
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 14px
}

    .section-head h2 {
        margin: 0;
        font-size: 28px;
        letter-spacing: -.01em
    }

    .section-head .meta {
        color: var(--muted);
        font-weight: 600
    }

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: 22px;
}

.card {
    grid-column: span 12;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #eef2f1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

@media(min-width:900px) {
    .card {
        grid-column: span 4
    }
}

.card .img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.price-badge {
    position: absolute;
    right: 14px;
    top: 14px;
    background: #fff;
    border: 1px solid #e6ecea;
    padding: .35rem .6rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

.card-body {
    padding: 16px
}

.card h3 {
    margin: 0 0 6px;
    font-size: 20px
}

.card p {
    margin: 0;
    color: var(--muted)
}

.card .actions {
    padding: 16px
}

    .card .actions .btn {
        width: 100%
    }

/* Footer */
.site-footer {
    padding: 26px 0;
    border-top: 1px solid #e9efed;
    background: #fff;
    margin-top: 24px
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 92vw;
    height: 100%;
    background: #fff;
    border-left: 1px solid #e6ecea;
    box-shadow: -10px 0 30px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    transition: right .25s ease;
    z-index: 60;
}

    .cart-drawer.open {
        right: 0
    }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eef2f1
}

.icon-btn {
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer
}

.cart-items {
    padding: 12px 14px;
    flex: 1;
    overflow: auto
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #f0f4f3
}

    .cart-item img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 10px
    }

    .cart-item .line {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 6px
    }

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #e6ecea;
    border-radius: 8px;
    background: #fff;
    cursor: pointer
}

.cart-summary {
    border-top: 1px solid #eef2f1;
    padding: 12px 16px
}

    .cart-summary .row {
        display: flex;
        justify-content: space-between;
        margin: 8px 0
    }

.checkout {
    padding: 14px 16px;
    border-top: 1px solid #eef2f1
}

    .checkout h4 {
        margin: 6px 0 10px
    }

    .checkout label {
        display: block;
        margin: 10px 0 6px;
        font-weight: 600;
        color: #2c3846
    }

    .checkout input, .checkout textarea {
        width: 100%;
        padding: .8rem;
        border-radius: 12px;
        border: 1px solid #e2e9e7;
        outline: none;
        transition: box-shadow .15s ease,border-color .15s ease;
        background: #fff;
    }

        .checkout input:focus, .checkout textarea:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 4px var(--ring)
        }

.checkout-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

/* Backdrop */
.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 50
}

    .backdrop.show {
        opacity: 1;
        pointer-events: auto
    }

/* Accessibility small tweaks */
a:focus, button:focus {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
    border-radius: 8px
}
/* ====== Layout utility ====== */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1rem;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 4.5rem;
    background: linear-gradient(180deg, #f7fcfa 0%, #ffffff 60%);
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0 6rem;
    }
}

/* soft radial glow on the right */
.hero-glow {
    position: absolute;
    right: -8%;
    top: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(209, 250, 229, 0.65), rgba(209, 250, 229, 0) 70%);
    filter: blur(12px);
    pointer-events: none;
}

/* logo watermark inside hero */
.hero-watermark {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 260px;
    object-fit: contain;
    opacity: 0.10; /* adjust lighter/darker */
    pointer-events: none;
    display: none; /* hidden on small screens */
}

@media (min-width: 768px) {
    .hero-watermark {
        display: block;
    }
}

/* tiny label */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #065f46;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

    .hero-badge img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

/* headline */
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a; /* slate-900 */
    letter-spacing: -0.02em;
    margin: 0.25rem 0;
}

    .hero-title span {
        color: #0f766e; /* teal/emerald accent */
    }

/* subhead */
.hero-sub {
    margin-top: 0.75rem;
    max-width: 50ch;
    color: #374151; /* neutral-700 */
    font-size: 1.05rem;
}

/* CTA row */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 0;
    padding: 0.85rem 1.35rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 180ms ease;
}

.btn-primary {
    background: #047857; /* emerald-700 */
    color: #fff;
    box-shadow: 0 10px 24px rgba(4, 120, 87, 0.25);
}

    .btn-primary:hover {
        background: #065f46; /* emerald-800 */
        transform: translateY(-1px);
    }

.hero-phone {
    color: #111827;
    font-weight: 600;
}
