:root {
    /* Brand: Restorant Elita Hallall — leaf green #76c043, black text, white */
    --bg: #fafafa;
    --bg-elevated: #ffffff;
    --bg-soft: #f0f5ec;
    --text: #141414;
    --muted: #4a4a4a;
    --accent: #76c043;
    --accent-dark: #5a9434;
    --accent-light: #9ad66a;
    --gold: #5f7d4a;
    --radius: 12px;
    --shadow: 0 10px 36px rgba(20, 20, 20, 0.06);
    --shadow-lg: 0 20px 50px rgba(20, 20, 20, 0.1);
    --border: rgba(20, 20, 20, 0.1);
    /* Text fields — depth + focus */
    --field-radius: 14px;
    --field-bg: #ffffff;
    --field-bg-soft: #fafcf9;
    --field-border: rgba(27, 67, 50, 0.16);
    --field-border-hover: rgba(118, 192, 67, 0.42);
    --field-border-focus: var(--accent);
    --field-inner: inset 0 1px 3px rgba(20, 20, 20, 0.06);
    --field-glow: 0 0 0 4px rgba(118, 192, 67, 0.2);
    --field-glow-strong: 0 0 0 4px rgba(118, 192, 67, 0.28);
    --z-nav-backdrop: 100;
    --z-nav-sheet: 125;
    --z-header: 120;
    /* Above mobile nav when reparented to body (see body > #primary-nav) */
    --z-nav-backdrop-body: 5000;
    --z-nav-sheet-body: 5010;
    --z-cart-drawer: 5200;
    --ease-out-modern: cubic-bezier(0.22, 1, 0.36, 1);
    --touch-min: 2.5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Nunito", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(118, 192, 67, 0.2);
}

body.nav-drawer-open {
    overflow: hidden;
}

h1,
h2,
h3,
.hero-title,
.page-title,
.section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.wrap {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
}

.narrow {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: var(--bg-elevated);
    box-shadow: 0 2px 16px rgba(20, 20, 20, 0.06);
    padding-top: env(safe-area-inset-top, 0px);
}

/* Top strip — halal + tagline (premium bar) */
.header-strip {
    position: relative;
    color: #fff;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 24px rgba(6, 12, 9, 0.22);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, transparent 42%),
        linear-gradient(105deg, #0d1f16 0%, #1b4332 22%, #2d6a4f 50%, #1b4332 78%, #0d1f16 100%);
}

.header-strip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(157, 214, 106, 0.45) 35%,
        rgba(157, 214, 106, 0.45) 65%,
        transparent
    );
    pointer-events: none;
    opacity: 0.85;
}

.header-strip-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 0.85rem;
    padding: 0.38rem 0;
    min-height: 2.1rem;
}

.header-strip-badge {
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.62rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 4px 14px rgba(0, 0, 0, 0.15);
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 719px) {
    .header-strip {
        box-shadow: 0 3px 14px rgba(6, 12, 9, 0.16);
    }

    .header-strip-inner {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.45rem;
        padding: 0.38rem 0;
        min-height: 0;
    }

    .header-strip-badge {
        font-size: 0.58rem;
        letter-spacing: 0.11em;
        padding: 0.26rem 0.58rem;
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.15) inset,
            0 2px 8px rgba(0, 0, 0, 0.12);
    }

    .header-strip-right {
        flex-shrink: 0;
        justify-content: flex-end;
        width: auto;
        gap: 0.5rem;
    }

    .header-strip .social-link {
        width: 1.75rem;
        height: 1.75rem;
    }

    .header-strip .social-link svg {
        width: 15px;
        height: 15px;
    }
}

.header-strip-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.06);
    text-decoration: none;
}

.footer-social.social-links {
    margin-top: 0.75rem;
    gap: 0.65rem;
}

.footer-social .social-link {
    width: auto;
    height: auto;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Main bar: logo | centered nav | cart pill */
.header-main {
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
}

.header-main-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    padding: 0.45rem 0;
    min-height: 3.2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
    text-decoration: none;
    background: transparent;
}

.logo:hover {
    opacity: 0.92;
    text-decoration: none;
}

.logo-img {
    width: 2.85rem;
    height: 2.85rem;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

@media (min-width: 480px) {
    .logo-img {
        width: 3.15rem;
        height: 3.15rem;
    }
}

@media (min-width: 900px) {
    .logo-img {
        width: 3.4rem;
        height: 3.4rem;
    }
}

.nav-main {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem clamp(0.4rem, 1.5vw, 0.85rem);
    order: 3;
    flex-basis: 100%;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.nav-main-home {
    flex-shrink: 0;
}

.nav-main-scroll {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(0.42rem, 1.4vw, 0.95rem);
    row-gap: 0.35rem;
}

.nav-main a {
    color: var(--text);
    font-weight: 700;
    font-size: clamp(0.7rem, 1.35vw, 0.82rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.nav-main-scroll a {
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-main a:hover {
    color: var(--accent);
    text-decoration: none;
}

.nav-main a.is-active {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 2px;
}

.header-trailing {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem 0.75rem;
    flex-shrink: 0;
    order: 2;
    margin-left: auto;
}

.header-account-nav {
    display: flex;
    align-items: center;
    gap: 0.4rem 0.65rem;
    font-size: 0.76rem;
    font-weight: 700;
}

.header-account-nav a {
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

.header-account-nav a:hover {
    color: var(--accent-dark, #4a8c28);
}

.header-account-logout {
    font-weight: 600;
    opacity: 0.85;
}

.header-cart-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.05rem;
    padding: 0.32rem 0.65rem;
    border-radius: 9px;
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.72rem;
    line-height: 1.2;
    flex-shrink: 0;
    margin-left: 0;
    box-shadow: 0 4px 14px rgba(118, 192, 67, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.header-cart-pill:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(118, 192, 67, 0.4);
}

.header-cart-sum {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    opacity: 0.95;
}

.header-cart-sum strong {
    font-weight: 800;
}

.header-cart-dot {
    margin: 0 0.15rem;
    opacity: 0.7;
}

.header-cart-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.92;
}

/* Hamburger — hidden on large screens */
.nav-mobile-toggle {
    display: none;
    grid-area: toggle;
    justify-self: center;
    align-items: center;
    justify-content: center;
    width: var(--touch-min);
    height: var(--touch-min);
    padding: 0;
    border: none;
    border-radius: 14px;
    background: rgba(118, 192, 67, 0.12);
    color: var(--text);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition:
        background 0.2s ease,
        transform 0.2s var(--ease-out-modern);
}

.nav-mobile-toggle:hover {
    background: rgba(118, 192, 67, 0.2);
}

.nav-mobile-toggle-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 1.35rem;
    pointer-events: none;
}

.nav-mobile-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition:
        transform 0.28s var(--ease-out-modern),
        opacity 0.2s ease;
}

.nav-mobile-toggle.is-open .nav-mobile-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.is-open .nav-mobile-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-mobile-toggle.is-open .nav-mobile-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.page-home .site-header:not(.is-past-hero) .nav-mobile-toggle {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.page-home .site-header:not(.is-past-hero) .nav-mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.nav-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: var(--z-nav-backdrop);
    background: rgba(8, 14, 11, 0.42);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.32s var(--ease-out-modern),
        visibility 0.32s linear;
}

.nav-mobile-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-cart-pill.is-pulse {
    animation: cartPillPulse 0.45s ease;
}

@keyframes cartPillPulse {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

@media (min-width: 720px) {
    .nav-main {
        order: 0;
        flex: 1 1 0;
        flex-basis: 0;
        min-width: 0;
    }

    .header-trailing {
        order: 0;
        margin-left: 0;
    }

    .logo {
        order: 0;
    }
}

@media (max-width: 719px) {
    .nav-mobile-toggle {
        display: inline-flex;
    }

    .header-main-inner {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        grid-template-areas: "logo . toggle cart";
        align-items: center;
        column-gap: 0.35rem;
        padding-left: max(0.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(0.25rem, env(safe-area-inset-right, 0px));
    }

    .logo {
        grid-area: logo;
        justify-self: start;
    }

    .header-trailing {
        grid-area: cart;
        justify-self: end;
        margin-left: 0;
        max-width: 100%;
    }

    .header-cart-pill {
        flex-shrink: 0;
        min-height: var(--touch-min);
        padding: 0.5rem 0.9rem;
        justify-content: center;
        border-radius: 14px;
    }

    .nav-main {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: var(--z-nav-sheet);
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        max-width: none;
        max-height: min(88dvh, 640px);
        margin: 0;
        padding: 0.35rem 0 0;
        padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
        border-radius: 22px 22px 0 0;
        background: linear-gradient(180deg, #ffffff 0%, #f5faf3 55%, #eef5ea 100%);
        box-shadow:
            0 -8px 40px rgba(15, 25, 18, 0.18),
            0 -1px 0 rgba(118, 192, 67, 0.2);
        transform: translate3d(0, 105%, 0);
        transition: transform 0.38s var(--ease-out-modern);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .nav-main.is-open {
        transform: translate3d(0, 0, 0);
    }

    /* Mobile sheet + backdrop moved under <body> so z-index is not capped by header context */
    body > #nav-mobile-backdrop {
        z-index: var(--z-nav-backdrop-body);
    }

    body > #primary-nav.nav-main {
        z-index: var(--z-nav-sheet-body);
    }

    .nav-main::before {
        content: "";
        display: block;
        width: 2.5rem;
        height: 4px;
        margin: 0.35rem auto 0.85rem;
        border-radius: 999px;
        background: rgba(20, 30, 22, 0.12);
        flex-shrink: 0;
    }

    .nav-main-home {
        margin: 0 1rem 0.35rem;
        padding: 0.85rem 1.1rem;
        border-radius: 14px;
        background: rgba(118, 192, 67, 0.12);
        font-size: 0.95rem;
        text-align: center;
        color: var(--text) !important;
        text-shadow: none !important;
    }

    .nav-main-scroll {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 0;
        padding: 0 0.65rem 0.5rem;
    }

    .nav-main-scroll a {
        padding: 0.9rem 1rem;
        border-radius: 12px;
        font-size: 0.95rem;
        letter-spacing: 0.03em;
        color: var(--text) !important;
        text-shadow: none !important;
        border-bottom: 1px solid rgba(20, 20, 20, 0.06);
    }

    .nav-main-scroll a:last-child {
        border-bottom: none;
    }

    .nav-main-scroll a:active {
        background: rgba(118, 192, 67, 0.14);
    }

    .page-home.home-on-hero #primary-nav .nav-main-home,
    .page-home.home-on-hero #primary-nav .nav-main-scroll a {
        color: var(--text) !important;
        text-shadow: none !important;
    }

    .page-home.home-on-hero #primary-nav .nav-main-home {
        background: rgba(118, 192, 67, 0.18);
    }

    .btn:not(.btn-text),
    .btn-hero {
        min-height: var(--touch-min);
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }
}

@media (max-width: 719px) and (prefers-reduced-motion: reduce) {
    .nav-main {
        transition: none;
    }

    .nav-mobile-backdrop {
        transition: none;
    }

    .nav-mobile-toggle-bar {
        transition: none;
    }
}

/* —— Home only: logo + menu live inside the hero slider —— */
.page-home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: transparent;
    box-shadow: none;
    transition: box-shadow 0.35s ease;
    isolation: isolate;
    backface-visibility: hidden;
}

.page-home .site-header.is-past-hero {
    box-shadow: 0 2px 18px rgba(20, 20, 20, 0.08);
}

.page-home .site-header .header-strip,
.page-home .site-header .header-main {
    transition: background 0.35s ease, border-color 0.35s ease;
}

.page-home .site-header:not(.is-past-hero) .header-strip {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: saturate(1.25) blur(14px);
    -webkit-backdrop-filter: saturate(1.25) blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .site-header.is-past-hero .header-strip {
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, transparent 42%),
        linear-gradient(105deg, #0d1f16 0%, #1b4332 22%, #2d6a4f 50%, #1b4332 78%, #0d1f16 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 6px 24px rgba(6, 12, 9, 0.12);
}

.page-home .site-header:not(.is-past-hero) .header-strip::after {
    opacity: 0.4;
}

.page-home .site-header .header-strip-inner {
    padding: 0.3rem 0;
    min-height: 1.85rem;
    gap: 0.35rem 0.65rem;
}

.page-home .site-header:not(.is-past-hero) .header-main {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.22) 100%);
    backdrop-filter: saturate(1.2) blur(14px);
    -webkit-backdrop-filter: saturate(1.2) blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .site-header.is-past-hero .header-main {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.page-home.home-on-hero #primary-nav a {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.page-home.home-on-hero #primary-nav a:hover {
    color: #d8f5b8;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.page-home.home-on-hero #primary-nav a.is-active {
    color: #e8ffc8;
    text-decoration-color: rgba(232, 255, 200, 0.85);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.page-home .site-header:not(.is-past-hero) .header-account-nav a {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.page-home .site-header:not(.is-past-hero) .header-account-nav a:hover {
    color: #d8f5b8;
}

.page-home .site-header.is-past-hero .header-account-nav a {
    color: var(--text);
    text-shadow: none;
}

.page-home .site-header.is-past-hero .header-account-nav a:hover {
    color: var(--accent-dark, #4a8c28);
}

.page-home.home-on-hero #primary-nav .nav-main-scroll {
    scrollbar-color: rgba(255, 255, 255, 0.42) transparent;
}

.page-home.home-on-hero #primary-nav .nav-main-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.38);
}

.page-home:not(.home-on-hero) #primary-nav a {
    color: var(--text);
    text-shadow: none;
}

.page-home:not(.home-on-hero) #primary-nav a:hover {
    color: var(--accent);
}

.page-home:not(.home-on-hero) #primary-nav a.is-active {
    color: var(--accent);
}

.page-home .site-header:not(.is-past-hero) .logo-img {
    width: 3.15rem;
    height: 3.15rem;
    filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.5));
    transition: width 0.3s ease, height 0.3s ease, filter 0.3s ease;
}

@media (min-width: 480px) {
    .page-home .site-header:not(.is-past-hero) .logo-img {
        width: 3.5rem;
        height: 3.5rem;
    }
}

@media (min-width: 900px) {
    .page-home .site-header:not(.is-past-hero) .logo-img {
        width: 3.75rem;
        height: 3.75rem;
    }
}

.page-home .site-header.is-past-hero .logo-img {
    filter: none;
    width: 2.85rem;
    height: 2.85rem;
}

@media (min-width: 480px) {
    .page-home .site-header.is-past-hero .logo-img {
        width: 3.15rem;
        height: 3.15rem;
    }
}

@media (min-width: 900px) {
    .page-home .site-header.is-past-hero .logo-img {
        width: 3.4rem;
        height: 3.4rem;
    }
}

/* Home + Kreu: avoid logo / header bar jump on phones when crossing hero */
@media (max-width: 719px) {
    .page-home .site-header .logo-img {
        width: 2.85rem !important;
        height: 2.85rem !important;
        filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45)) !important;
        transition: none !important;
    }
}

.page-home .site-header:not(.is-past-hero) .header-cart-pill {
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.22);
}

@media (prefers-reduced-motion: reduce) {
    .page-home .site-header,
    .page-home .site-header .header-strip,
    .page-home .site-header .header-main,
    .page-home .site-header:not(.is-past-hero) .logo-img {
        transition: none;
    }
}

.site-main {
    flex: 1;
    min-width: 0;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
}

/* Inner pages: comfortable top under tall header + logo */
.site-main > .section:first-child {
    padding-top: clamp(2.35rem, 5vw, 3.15rem);
}

.page-menu .site-main > .section:first-child {
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

/* Home hero slider (Tirona-style promos) */
.hero-slider {
    position: relative;
    min-height: min(78vh, 640px);
    overflow: hidden;
    background: #1a1a1a;
}

.hero-slides {
    position: relative;
    min-height: inherit;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: none;
    transition: none;
    pointer-events: none;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3.5rem 0 4.5rem;
}

.hero-slider-ui {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-dots {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-slider-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.hero-slider-dot.is-active {
    background: var(--accent);
    border-color: rgba(255, 255, 255, 0.95);
    transform: scale(1.15);
}

.hero-slider .btn:hover {
    transform: none;
}

.hero-slider .btn-hero:hover {
    background: var(--accent);
    color: #fff;
}

.hero-slider .hero-slider-dot:not(.is-active):hover {
    background: transparent;
    transform: none;
}

.hero-slider .hero-slider-dot.is-active:hover {
    background: var(--accent);
    transform: scale(1.15);
}

@media (max-width: 600px) {
    .hero-slider {
        min-height: 70vh;
    }

    .hero-slider-ui {
        bottom: 0.85rem;
    }

    .hero-slide-inner {
        padding: 2.75rem 0 4rem;
    }
}

/* Home: full-viewport slider under fixed header, readable promo type */
.page-home .hero-slider {
    min-height: 100vh;
    min-height: 100dvh;
}

.page-home .hero-slides {
    min-height: inherit;
}

.page-home .hero-slide-overlay {
    background: linear-gradient(
        165deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 35%,
        rgba(0, 0, 0, 0.42) 65%,
        rgba(0, 0, 0, 0.58) 100%
    );
}

.page-home .hero-slide-inner {
    padding-top: max(7.25rem, 15vh);
    padding-bottom: 5.25rem;
}

@media (max-width: 600px) {
    .page-home .hero-slide-inner {
        padding-top: max(6.5rem, 13vh);
        padding-bottom: 4.25rem;
    }
}

.page-home .hero-kicker {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.page-home .hero-title {
    color: #fff;
    text-shadow:
        0 2px 28px rgba(0, 0, 0, 0.5),
        0 1px 4px rgba(0, 0, 0, 0.65);
}

.page-home .hero-sub {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.page-home .hero-slide-inner .btn-hero {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.page-home .site-main > .section {
    scroll-margin-top: 5.5rem;
}

.hero-kicker {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin: 0 0 1rem;
    color: var(--text);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8),
        0 2px 24px rgba(255, 255, 255, 0.75);
}

.animate-rise {
    animation: rise 0.9s ease-out both;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-sub {
    max-width: 36rem;
    margin: 0 auto 1.75rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-hero {
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
    box-shadow: 0 8px 28px rgba(118, 192, 67, 0.35);
}

.btn-hero:hover {
    background: var(--accent-dark);
    color: #fff;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.btn-outline {
    background: var(--bg-elevated);
    color: var(--text);
    border-color: var(--border);
    box-shadow: 0 1px 2px rgba(20, 20, 20, 0.04);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-sm {
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* Sections */
.section {
    padding: 3.5rem 0;
}

@media (max-width: 719px) {
    .section {
        padding: clamp(2rem, 7vw, 2.85rem) 0;
    }

    .section-title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
    }

    .page-title {
        font-size: clamp(1.65rem, 7vw, 2.1rem);
    }
}

.section-alt {
    background: var(--bg-soft);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0 0 1.5rem;
}

.section-head {
    margin: 0 auto 2.25rem;
    max-width: 42rem;
    text-align: center;
}

.section-head .section-title {
    margin-bottom: 0.5rem;
}

.section-lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55;
}

.split {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .split {
        grid-template-columns: 1fr 1fr;
    }
}

/* Category grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.cat-card img,
.cat-card-ph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card-ph {
    background: linear-gradient(135deg, #e2eadc, #cfd9c5);
}

.cat-card-title {
    position: relative;
    z-index: 1;
    padding: 1rem;
    background: linear-gradient(to top, rgba(20, 30, 15, 0.88), transparent);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Home: full-viewport strips + horizontal sliders (desktop) */
.section-packages {
    padding-bottom: 0.5rem;
    overflow-x: clip;
}

.packages-fullbleed,
.product-strip-fullbleed {
    box-sizing: border-box;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
}

.product-strip-fullbleed {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.section-head--strip {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 720px) {
    .section-packages > .wrap .section-head {
        max-width: min(56rem, 100%);
        margin-bottom: 2.5rem;
    }

    .section-packages > .wrap .section-head--strip {
        margin-top: 3rem;
    }
}

.packages-slider-wrap {
    position: relative;
    display: block;
}

.packages-nav {
    display: none;
}

.packages-slider {
    width: 100%;
    min-width: 0;
    overflow: visible;
}

.packages-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.35rem;
    padding: 0.35rem 0 1.5rem;
}

.package-card {
    flex: 1 1 min(280px, 100%);
    max-width: min(520px, 100%);
    scroll-snap-align: unset;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(20, 20, 20, 0.1);
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: none;
    box-shadow: 0 16px 48px rgba(20, 20, 20, 0.1);
    text-decoration: none;
}

.package-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--bg-soft);
}

.package-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-card-ph {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(118, 192, 67, 0.2), transparent 55%),
        linear-gradient(145deg, #dfe8d6, #c5d4b8);
}

.package-card-body {
    padding: 1.25rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.package-card-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.package-card-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.45;
}

@media (min-width: 720px) {
    .packages-slider-wrap {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 0.65rem;
    }

    .packages-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        flex-shrink: 0;
        width: 2.85rem;
        height: min(100%, 5.5rem);
        min-height: 4.5rem;
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: var(--bg-elevated);
        box-shadow: var(--shadow);
        color: var(--text);
        font-size: 1.65rem;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
        transition:
            background 0.2s ease,
            color 0.2s ease,
            box-shadow 0.2s ease,
            transform 0.15s ease;
    }

    .packages-nav:hover {
        background: var(--bg-elevated);
        color: var(--text);
        border-color: var(--border);
        box-shadow: var(--shadow);
    }

    .packages-nav:active {
        transform: scale(0.96);
    }

    .packages-slider {
        flex: 1;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: max(0.5rem, env(safe-area-inset-left, 0px));
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .packages-slider::-webkit-scrollbar {
        display: none;
    }

    .packages-track {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 1.25rem;
        width: max-content;
        max-width: none;
        padding: 0.5rem 0.35rem 1.75rem;
        box-sizing: border-box;
    }

    .packages-track .package-card {
        flex: 0 0 auto;
        width: clamp(300px, 38vw, 480px);
        max-width: none;
        min-width: 0;
        scroll-snap-align: start;
    }
}

@media (min-width: 1100px) {
    .packages-track .package-card {
        width: clamp(340px, 32vw, 520px);
    }
}

/* Home: bestseller strip — same full-bleed + slider pattern */
.product-strip-slider-wrap {
    display: block;
}

.product-strip-nav {
    display: none;
}

.product-strip-slider {
    width: 100%;
    min-width: 0;
    overflow: visible;
}

.product-strip-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    padding: 0.25rem 0 1rem;
}

.product-strip-card {
    flex: 1 1 160px;
    max-width: min(200px, 100%);
    min-width: 0;
    scroll-snap-align: unset;
    display: flex;
    flex-direction: column;
    background: var(--bg-elevated);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(20, 20, 20, 0.07);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-strip-card:hover {
    transform: none;
    box-shadow: 0 8px 28px rgba(20, 20, 20, 0.07);
}

@media (min-width: 720px) {
    .product-strip-slider-wrap {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 0.65rem;
    }

    .product-strip-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        flex-shrink: 0;
        width: 2.85rem;
        height: min(100%, 5.5rem);
        min-height: 4.5rem;
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: var(--bg-elevated);
        box-shadow: var(--shadow);
        color: var(--text);
        font-size: 1.65rem;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
        transition:
            background 0.2s ease,
            color 0.2s ease,
            box-shadow 0.2s ease,
            transform 0.15s ease;
    }

    .product-strip-nav:hover {
        background: var(--bg-elevated);
        color: var(--text);
        border-color: var(--border);
        box-shadow: var(--shadow);
    }

    .product-strip-nav:active {
        transform: scale(0.96);
    }

    .product-strip-slider {
        flex: 1;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: max(0.5rem, env(safe-area-inset-left, 0px));
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .product-strip-slider::-webkit-scrollbar {
        display: none;
    }

    .product-strip-track {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 1.1rem;
        width: max-content;
        max-width: none;
        padding: 0.35rem 0.35rem 1.35rem;
        box-sizing: border-box;
    }

    .product-strip-track .product-strip-card {
        flex: 0 0 auto;
        width: clamp(168px, 16vw, 220px);
        max-width: none;
        min-width: 0;
        scroll-snap-align: start;
    }
}

@media (min-width: 1100px) {
    .product-strip-track .product-strip-card {
        width: clamp(180px, 14vw, 230px);
    }
}

.product-strip-media {
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--bg-soft);
    overflow: hidden;
}

.product-strip-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-strip-media:hover {
    text-decoration: none;
}

.product-strip-ph {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(118, 192, 67, 0.16), transparent 60%),
        linear-gradient(145deg, #eef4e8, #dfe8d6);
}

.product-strip-body {
    padding: 0.65rem 0.75rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.product-strip-cat {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
    font-weight: 700;
}

.product-strip-name {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    font-family: "Nunito", system-ui, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-strip-name a {
    color: var(--text);
    text-decoration: none;
}

.product-strip-name a:hover {
    color: var(--text);
    text-decoration: none;
}

.product-strip-card .btn:hover {
    transform: none;
}

.product-strip-price {
    margin: 0.15rem 0 0;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent);
}

.product-strip-form {
    margin-top: auto;
    padding-top: 0.5rem;
}

.btn-strip {
    width: 100%;
    justify-content: center;
    padding: 0.4rem 0.5rem;
    font-size: 0.78rem;
}

/* Location */
.section-location {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-soft) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.location-grid {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr 1.15fr;
        gap: 2.5rem;
    }
}

.location-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.location-text {
    color: var(--muted);
    margin: 0 0 1.25rem;
    line-height: 1.65;
    max-width: 36rem;
}

.location-address {
    font-style: normal;
    margin: 0 0 1.25rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.location-hours {
    margin: 0 0 1rem;
    line-height: 1.55;
}

.location-contact {
    margin: 0 0 1.5rem;
}

.location-contact a {
    color: var(--accent);
    font-weight: 600;
}

.location-maps-btn {
    margin-top: 0.25rem;
}

.location-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-height: 280px;
    background: var(--bg-soft);
}

.location-map-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

@media (min-width: 900px) {
    .location-map-frame {
        min-height: 420px;
    }
}

.section-about-delivery {
    padding-top: 3rem;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-elevated);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--bg-soft);
}

.product-ph {
    background:
        radial-gradient(circle at 30% 30%, rgba(118, 192, 67, 0.14), transparent 60%),
        linear-gradient(145deg, #eef4e8, #dfe8d6);
}

.product-body {
    padding: 1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.product-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
}

.product-name {
    font-size: 1.15rem;
    margin: 0;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    flex: 1;
}

.product-price {
    font-weight: 700;
    color: var(--accent);
    margin: 0.25rem 0 0;
}

.inline-form {
    margin-top: 0.5rem;
}

/* Menu — Tirona-style layout (brand green) */
.menu-page--tirona {
    padding-top: 0;
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
    background: #f3f3f3;
}

.menu-tirona-shell {
    display: grid;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: clamp(0.75rem, 2vw, 1.25rem) clamp(0.5rem, 2vw, 1rem);
    grid-template-columns: minmax(188px, 242px) minmax(0, 1fr) minmax(220px, 292px);
    gap: 0 1rem;
    align-items: stretch;
}

.menu-tirona-cats {
    display: flex;
    flex-direction: column;
    min-height: min(78vh, 720px);
    max-height: calc(100vh - 5.5rem);
    position: sticky;
    top: clamp(4.75rem, 10vh, 6.25rem);
    align-self: start;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow: 6px 0 28px rgba(20, 20, 20, 0.14);
    border-radius: 2px;
    overflow: hidden;
}

.menu-tirona-cats-inner {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.menu-tirona-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.menu-tirona-cat-list::-webkit-scrollbar {
    width: 6px;
}

.menu-tirona-cat-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.menu-tirona-cat-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.menu-tirona-cat-item:last-child {
    border-bottom: none;
}

.menu-tirona-cat-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.75rem 0.65rem 0.55rem;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.3;
    transition: background 0.15s ease, color 0.15s ease;
}

.menu-tirona-cat-link:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #fff;
    text-decoration: none;
}

.menu-tirona-cat-link.is-active {
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
}

.menu-tirona-cat-arrow {
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.28rem 0 0.28rem 0.4rem;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.menu-tirona-cat-text {
    flex: 1;
    min-width: 0;
}

.menu-tirona-main {
    min-width: 0;
    background: #fff;
    padding: clamp(1rem, 2.5vw, 1.75rem) clamp(1rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2.25rem);
    box-shadow: 0 8px 32px rgba(20, 20, 20, 0.06);
    border-radius: 2px;
}

.menu-tirona-head {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
    position: relative;
}

.menu-tirona-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: min(8rem, 40%);
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0.85;
}

/* Category pills — tablet/mobile only (replaces green sidebar) */
.menu-tirona-pills {
    display: none;
}

.menu-tirona-pills-track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.5rem;
    align-items: center;
}

.menu-tirona-pills-item {
    margin: 0;
}

.menu-tirona-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: var(--text);
    background: var(--bg-soft);
    border: 1px solid rgba(20, 20, 20, 0.1);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.menu-tirona-pill:hover {
    border-color: rgba(118, 192, 67, 0.45);
    color: var(--accent-dark);
    text-decoration: none;
    background: #fff;
    box-shadow: 0 2px 12px rgba(118, 192, 67, 0.12);
}

.menu-tirona-pill.is-active {
    background: #fff;
    color: var(--accent-dark);
    border-color: var(--accent);
    box-shadow:
        0 0 0 1px rgba(118, 192, 67, 0.25),
        0 4px 16px rgba(118, 192, 67, 0.15);
}

.menu-tirona-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.55rem, 3.5vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 0.35rem;
    color: var(--text);
    line-height: 1.15;
}

.menu-tirona-lead {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 36rem;
}

.menu-tirona-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-tirona-row {
    display: grid;
    grid-template-columns: clamp(88px, 22vw, 132px) minmax(0, 1fr);
    gap: 1rem 1.15rem;
    align-items: center;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(20, 20, 20, 0.07);
}

.menu-tirona-row:last-child {
    border-bottom: none;
}

.menu-tirona-row-media {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(20, 20, 20, 0.08);
}

.menu-tirona-row-img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--bg-soft);
}

.menu-tirona-row-img--ph {
    min-height: 88px;
    background:
        radial-gradient(circle at 35% 35%, rgba(118, 192, 67, 0.2), transparent 55%),
        linear-gradient(145deg, #e8eee3, #d4dec8);
}

.menu-tirona-row-cat {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(74, 74, 74, 0.75);
    margin-bottom: 0.2rem;
}

.menu-page--one-section .menu-tirona-row-cat {
    display: none;
}

.menu-tirona-row-name {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--text);
}

.menu-tirona-row-desc {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--muted);
}

.menu-tirona-row-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
}

.menu-tirona-row-price {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--accent);
}

.menu-tirona-add-form {
    margin: 0;
}

.menu-tirona-add {
    appearance: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    border: none;
    padding: 0.55rem 1.85rem 0.55rem 0.95rem;
    line-height: 1.2;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    transition: filter 0.2s ease, transform 0.15s ease;
}

.menu-tirona-add:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.menu-tirona-cart-aside {
    position: sticky;
    top: clamp(4.75rem, 10vh, 6.25rem);
    align-self: start;
    min-width: 0;
}

.menu-tirona-cart-panel {
    background: #e8e8e8;
    border: 1px solid rgba(20, 20, 20, 0.1);
    box-shadow: 0 10px 36px rgba(20, 20, 20, 0.1);
    border-radius: 2px;
    overflow: visible;
    position: relative;
    padding-top: 0.65rem;
}

.menu-tirona-cart-tab {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 3.25rem;
    height: 1.6rem;
    background: var(--accent);
    border-radius: 3.25rem 3.25rem 0 0;
    box-shadow: 0 -2px 10px rgba(20, 20, 20, 0.08);
}

.menu-tirona-cart-header {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 0.65rem 0.75rem 0.75rem;
    margin: 0 0 0.15rem;
}

.menu-tirona-cart-header-text {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-tirona-cart-body {
    padding: 0.65rem 0.85rem 0.85rem;
    min-height: 5rem;
    max-height: min(42vh, 320px);
    overflow-y: auto;
    background: #e8e8e8;
}

.menu-tirona-cart-empty {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}

.menu-tirona-cart-lines {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.menu-tirona-cart-line {
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
    font-size: 0.78rem;
}

.menu-tirona-cart-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-tirona-cart-line-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.menu-tirona-cart-line-info {
    min-width: 0;
}

.menu-tirona-cart-line-name {
    display: block;
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
}

.menu-tirona-cart-line-unit {
    display: block;
    font-size: 0.68rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 0.15rem;
}

.menu-tirona-cart-line-sum {
    flex-shrink: 0;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--text);
}

.menu-tirona-cart-line-ctrl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.menu-tirona-qty-ctrl {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(20, 20, 20, 0.15);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.menu-tirona-qty-btn {
    width: 1.85rem;
    height: 1.85rem;
    padding: 0;
    border: none;
    background: #f0f0f0;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease;
}

.menu-tirona-qty-btn:hover {
    background: #e0e0e0;
}

.menu-tirona-qty-val {
    min-width: 1.75rem;
    text-align: center;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-size: 0.8rem;
}

.menu-tirona-cart-rm {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    font-family: inherit;
}

.menu-tirona-cart-rm:hover {
    color: var(--accent);
}

.menu-tirona-cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.75rem 0.85rem;
    background: #dcdcdc;
    border-top: 1px solid rgba(20, 20, 20, 0.1);
    font-size: 0.85rem;
}

.menu-tirona-cart-total-label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.72rem;
}

.menu-tirona-cart-total-value {
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
}

.menu-tirona-cart-checkout {
    display: block;
    margin: 0;
    padding: 0.65rem 0.85rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--accent);
    color: #fff;
    transition: filter 0.15s ease;
}

.menu-tirona-cart-checkout:hover {
    filter: brightness(1.08);
    color: #fff;
    text-decoration: none;
}

.menu-tirona-cart-checkout.is-disabled {
    pointer-events: none;
    opacity: 0.45;
    filter: none;
    cursor: not-allowed;
}

@media (max-width: 1039px) {
    .menu-tirona-shell {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.75rem 1rem 2rem;
    }

    /* Hide green category column; use neutral pills inside .menu-tirona-main */
    .menu-tirona-cats {
        display: none !important;
    }

    .menu-tirona-pills {
        display: block;
        margin: 0 0 1.35rem;
    }

    .menu-tirona-main {
        border-radius: 14px;
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.9) inset,
            0 12px 40px rgba(20, 20, 20, 0.08);
    }

    .menu-tirona-cart-aside {
        position: relative;
        top: auto;
    }

    .menu-tirona-cart-body {
        max-height: 220px;
    }
}

@media (max-width: 719px) {
    .menu-tirona-pills {
        display: none !important;
    }
}

@media (max-width: 520px) {
    .menu-tirona-row {
        grid-template-columns: 72px 1fr;
        gap: 0.75rem;
    }

    .menu-tirona-row-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .menu-tirona-add:hover {
        transform: none;
    }
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.menu-tab {
    font-family: inherit;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-tab:hover,
.menu-tab.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.menu-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-item.is-filtered-out {
    display: none;
}

.menu-grid {
    align-items: start;
}

.page-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 1rem;
}

/* Cart & checkout */
.cart-lines {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

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

.cart-line-remove {
    margin: 0;
    justify-self: end;
}

.cart-line-remove-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-dark);
    padding: 0.25rem 0;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.cart-line-remove-btn:hover {
    color: var(--accent);
}

@media (max-width: 600px) {
    .cart-line {
        grid-template-columns: 1fr;
    }

    .cart-line-remove {
        justify-self: start;
    }
}

.cart-line input[type="number"] {
    width: 4.25rem;
    padding: 0.5rem 0.4rem;
    border-radius: 12px;
    border: 1.5px solid var(--field-border);
    background: var(--field-bg);
    background-image: linear-gradient(180deg, #ffffff 0%, var(--field-bg-soft) 100%);
    color: var(--text);
    font-family: inherit;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-align: center;
    box-shadow: var(--field-inner);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.cart-line input[type="number"]:hover:not(:focus) {
    border-color: var(--field-border-hover);
}

.cart-line input[type="number"]:focus {
    outline: none;
    border-color: var(--field-border-focus);
    box-shadow: var(--field-inner), var(--field-glow);
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.card-dark {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow);
}

.order-summary .summary-total {
    font-size: 1.2rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.checkout-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
    }
}

.checkout-layout {
    max-width: 36rem;
    margin-inline: auto;
}

.checkout-form-single {
    margin-top: 0;
    padding: 0;
    overflow: hidden;
}

.checkout-form-single.card-dark {
    padding: 0;
}

.checkout-order-compact {
    padding: 1.25rem 1.35rem 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(20, 20, 20, 0.02);
}

.checkout-order-compact-title {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.checkout-order-compact-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.checkout-order-compact-table th,
.checkout-order-compact-table td {
    padding: 0.4rem 0.35rem 0.4rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.checkout-order-compact-table thead th {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    font-weight: 700;
    border-bottom-width: 2px;
}

.checkout-order-compact-table tbody tr:last-child td {
    border-bottom: none;
}

.checkout-order-compact-num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.checkout-order-compact-summary {
    margin-top: 1rem;
    padding-top: 0.25rem;
}

.checkout-order-compact-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.checkout-order-compact-row--muted {
    font-size: 0.8rem;
    color: var(--muted);
}

.checkout-order-compact-row--total {
    margin-top: 0.5rem;
    padding-top: 0.65rem;
    border-top: 2px solid rgba(118, 192, 67, 0.35);
    font-weight: 800;
    font-size: 1rem;
}

.checkout-order-compact-row--total strong {
    font-size: 1.1rem;
    color: var(--accent-dark);
}

.checkout-order-compact-note {
    margin: 0.5rem 0 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--muted);
}

.checkout-order-compact-max {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: right;
}

.checkout-order-compact-max strong {
    font-variant-numeric: tabular-nums;
}

.checkout-form-fields {
    padding: 1.25rem 1.35rem 1.35rem;
}

.checkout-form-fields-title {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 800;
}

.client-field-hint {
    display: block;
    font-weight: 500;
    font-size: 0.72rem;
    color: var(--muted);
    margin: 0 0 0.35rem;
}

.checkout-form label,
.checkout-form input,
.checkout-form textarea {
    display: block;
    width: 100%;
}

.checkout-form label {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.checkout-form input:not([type="hidden"]):not([type="submit"]):not([type="button"]),
.checkout-form textarea {
    margin-top: 0.4rem;
    padding: 0.875rem 1.05rem;
    min-height: 3rem;
    border-radius: var(--field-radius);
    border: 1.5px solid var(--field-border);
    background: var(--field-bg-soft);
    background-image: linear-gradient(180deg, #ffffff 0%, var(--field-bg-soft) 100%);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.45;
    box-shadow: var(--field-inner);
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}

.checkout-form textarea {
    min-height: 5.25rem;
    resize: vertical;
}

.checkout-form input:not([type="hidden"]):not([type="submit"]):not([type="button"]):hover:not(:focus):not(:disabled),
.checkout-form textarea:hover:not(:focus):not(:disabled) {
    border-color: var(--field-border-hover);
}

.checkout-form input:not([type="hidden"]):not([type="submit"]):not([type="button"]):focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--field-border-focus);
    background: var(--field-bg);
    background-image: none;
    box-shadow: var(--field-inner), var(--field-glow);
}

.checkout-form input:not([type="hidden"]):not([type="submit"]):not([type="button"])::placeholder,
.checkout-form textarea::placeholder {
    color: rgba(74, 74, 74, 0.5);
}

.checkout-form input:not([type="hidden"]):not([type="submit"]):not([type="button"]):focus-visible,
.checkout-form textarea:focus-visible {
    box-shadow: var(--field-inner), var(--field-glow-strong);
}

/* Checkout — invoice-style summary */
.checkout-invoice {
    position: relative;
    background: var(--bg-elevated);
    border-radius: 18px;
    border: 1px solid rgba(20, 20, 20, 0.1);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 48px rgba(20, 20, 20, 0.08);
    overflow: hidden;
    align-self: start;
}

.checkout-invoice-accent {
    height: 5px;
    background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 45%, var(--accent-light) 100%);
}

.checkout-invoice-head {
    display: flex;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1.35rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.checkout-invoice-logo {
    width: 4.25rem;
    height: 4.25rem;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(20, 20, 20, 0.12));
}

.checkout-invoice-brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.checkout-invoice-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
}

.checkout-invoice-tagline {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.checkout-invoice-address {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--muted);
    margin-top: 0.25rem;
}

.checkout-invoice-ribbon {
    text-align: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, rgba(118, 192, 67, 0.12) 0%, rgba(118, 192, 67, 0.22) 50%, rgba(118, 192, 67, 0.12) 100%);
    border-bottom: 1px solid rgba(118, 192, 67, 0.25);
}

.checkout-invoice-ribbon-text {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.checkout-invoice-body {
    padding: 0 0 0.25rem;
}

.checkout-invoice-table-wrap {
    margin: 0;
    overflow-x: visible;
}

.checkout-invoice-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.checkout-invoice-table thead th {
    text-align: left;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.75rem 1rem 0.5rem;
    border-bottom: 2px solid rgba(20, 20, 20, 0.12);
    background: rgba(255, 255, 255, 0.6);
}

.checkout-invoice-table tbody td {
    padding: 0.65rem 1rem;
    vertical-align: top;
    border-bottom: 1px solid rgba(20, 20, 20, 0.06);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.checkout-invoice-table tbody td:first-child {
    word-break: break-word;
}

.checkout-invoice-table tbody tr:last-child td {
    border-bottom: none;
}

.checkout-invoice-item {
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.checkout-invoice-num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    color: var(--muted);
}

.checkout-invoice-strong {
    font-weight: 800;
    color: var(--text);
}

.checkout-invoice-summary {
    padding: 1rem 1.25rem 1.15rem;
    background: linear-gradient(180deg, rgba(240, 245, 236, 0.5) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.checkout-invoice-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.88rem;
    padding: 0.35rem 0;
}

.checkout-invoice-row--muted {
    font-size: 0.8rem;
    color: var(--muted);
}

.checkout-invoice-row--grand {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 2px solid rgba(118, 192, 67, 0.35);
    font-size: 1rem;
    font-weight: 800;
}

.checkout-invoice-row--grand strong {
    font-size: 1.2rem;
    font-variant-numeric: tabular-nums;
    color: var(--accent-dark);
}

.checkout-invoice-note {
    margin: 0.65rem 0 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--muted);
}

.checkout-invoice-max-hint {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: right;
}

.checkout-invoice-max-hint strong {
    font-variant-numeric: tabular-nums;
    color: var(--text);
}

.checkout-invoice-foot {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.85rem 1.25rem 1.1rem;
    border-top: 1px solid rgba(20, 20, 20, 0.08);
    background: rgba(20, 20, 20, 0.03);
}

.checkout-invoice-foot-line {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
}

@media (max-width: 599px) {
    .checkout-invoice-head {
        flex-wrap: wrap;
    }

    .checkout-invoice-table thead th,
    .checkout-invoice-table tbody td {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Checkout: account vs guest step */
.checkout-account-step {
    padding-top: 0.5rem;
}

.checkout-account-wrap {
    max-width: 52rem;
    margin-inline: auto;
}

.checkout-account-intro {
    margin: 0 0 1.75rem;
    max-width: 40rem;
    line-height: 1.55;
}

.checkout-account-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .checkout-account-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.checkout-account-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1.5rem 1.35rem;
    border-radius: var(--radius-lg, 14px);
    border: 1px solid rgba(20, 20, 20, 0.12);
    background: var(--card-bg, #fff);
    box-shadow: 0 4px 24px rgba(20, 20, 20, 0.06);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.checkout-account-card:hover {
    border-color: rgba(118, 192, 67, 0.45);
    box-shadow: 0 8px 28px rgba(118, 192, 67, 0.12);
}

.checkout-account-card-icon {
    font-size: 1.25rem;
    opacity: 0.55;
    line-height: 1;
}

.checkout-account-card-title {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.checkout-account-card-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.45;
    flex: 1;
}

.checkout-account-card-btn {
    margin-top: 0.25rem;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.checkout-profile-readonly {
    margin: 0 0 1.25rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(20, 20, 20, 0.04);
    border: 1px solid var(--border);
}

.checkout-profile-readonly > div {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 0.35rem 0.75rem;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.checkout-profile-readonly > div:last-child {
    margin-bottom: 0;
}

.checkout-profile-readonly dt {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.checkout-profile-readonly dd {
    margin: 0;
    font-weight: 600;
}

.checkout-account-register-hint {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
}

.checkout-account-register-hint a {
    font-weight: 600;
    color: var(--accent-dark, #4a8c28);
}

.checkout-thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
    justify-content: center;
}

.my-orders-head {
    margin-bottom: 1.5rem;
}

.my-orders-head .page-title {
    margin-bottom: 0.35rem;
}

.my-orders-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.client-orders-empty {
    padding: 1.5rem 1.25rem;
    text-align: center;
    color: var(--muted);
}

.client-orders-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.client-order-card {
    padding: 1.1rem 1.2rem;
}

.client-order-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.client-order-id {
    font-weight: 800;
    font-size: 1.05rem;
}

.client-order-meta {
    font-size: 0.82rem;
    margin: 0 0 0.5rem;
}

.client-order-total {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
}

.order-status-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: rgba(20, 20, 20, 0.08);
}

.order-status-badge--pending {
    background: rgba(200, 150, 50, 0.2);
}

.order-status-badge--delivered {
    background: rgba(118, 192, 67, 0.25);
}

.order-status-badge--cancelled {
    background: rgba(180, 60, 60, 0.18);
}

.back-link-wrap {
    margin: 0 0 0.75rem;
}

.back-link-wrap a {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-dark, #4a8c28);
    text-decoration: none;
}

.back-link-wrap a:hover {
    text-decoration: underline;
}

.h3-like {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 800;
}

.client-order-detail-block {
    margin-bottom: 1.25rem;
    padding: 1.15rem 1.2rem;
}

.client-order-items-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.client-order-items-table th,
.client-order-items-table td {
    padding: 0.4rem 0.35rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.client-order-items-table th.num,
.client-order-items-table td.num {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.client-order-totals .row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.client-order-totals .row--grand {
    margin-top: 0.5rem;
    padding-top: 0.65rem;
    border-top: 2px solid rgba(118, 192, 67, 0.35);
    font-weight: 800;
    font-size: 1rem;
}

.client-order-dl {
    margin: 0;
}

.client-order-dl > div {
    display: grid;
    grid-template-columns: 6.5rem 1fr;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.client-order-dl dt {
    margin: 0;
    font-weight: 700;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.client-order-dl dd {
    margin: 0;
}

.checkout-details-head {
    margin-bottom: 1rem;
}

.checkout-details-head .page-title {
    margin-bottom: 0.35rem;
}

.checkout-client-bar {
    margin: 0;
    font-size: 0.9rem;
}

.checkout-client-bar a {
    font-weight: 600;
    color: var(--accent-dark, #4a8c28);
}

/* Client login / register */
.page-client-auth .client-auth-section {
    padding-top: 0.75rem;
}

@media (max-width: 719px) {
    .page-client-auth .client-auth-section {
        padding-top: 0.35rem;
        padding-bottom: 1.5rem;
    }

    .page-client-auth .client-auth-form {
        margin-inline: 0;
    }
}

.client-auth-lead {
    margin: 0 0 1.25rem;
    max-width: 28rem;
}

.client-auth-form {
    padding: 1.5rem 1.4rem 1.55rem;
    max-width: 28rem;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(27, 67, 50, 0.1);
    background: linear-gradient(165deg, #ffffff 0%, var(--bg-soft) 52%, #ffffff 100%);
    box-shadow:
        var(--shadow),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.client-auth-form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    color: var(--text);
}

.client-auth-form label:last-of-type {
    margin-bottom: 0.35rem;
}

.client-auth-form input[type="text"],
.client-auth-form input[type="tel"],
.client-auth-form input[type="email"],
.client-auth-form input[type="password"],
.client-auth-form textarea {
    display: block;
    width: 100%;
    margin-top: 0.45rem;
    padding: 0.9rem 1.1rem;
    min-height: 3.05rem;
    border-radius: var(--field-radius);
    border: 1.5px solid var(--field-border);
    background: var(--field-bg);
    background-image: linear-gradient(180deg, #ffffff 0%, var(--field-bg-soft) 100%);
    color: var(--text);
    font-family: inherit;
    font-size: 1.02rem;
    line-height: 1.45;
    box-shadow: var(--field-inner);
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.18s ease,
        background-color 0.22s ease;
}

.client-auth-form textarea {
    min-height: 6.5rem;
    resize: vertical;
}

.client-auth-form input[type="text"]:hover:not(:focus):not(:disabled),
.client-auth-form input[type="tel"]:hover:not(:focus):not(:disabled),
.client-auth-form input[type="email"]:hover:not(:focus):not(:disabled),
.client-auth-form input[type="password"]:hover:not(:focus):not(:disabled),
.client-auth-form textarea:hover:not(:focus):not(:disabled) {
    border-color: var(--field-border-hover);
}

.client-auth-form input[type="text"]:focus,
.client-auth-form input[type="tel"]:focus,
.client-auth-form input[type="email"]:focus,
.client-auth-form input[type="password"]:focus,
.client-auth-form textarea:focus {
    outline: none;
    border-color: var(--field-border-focus);
    background: #fff;
    background-image: none;
    box-shadow: var(--field-inner), var(--field-glow-strong);
    transform: translateY(-1px);
}

.client-auth-form input::placeholder,
.client-auth-form textarea::placeholder {
    color: rgba(74, 74, 74, 0.48);
}

.client-auth-form input:-webkit-autofill,
.client-auth-form input:-webkit-autofill:hover,
.client-auth-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text);
    box-shadow: 0 0 0 1000px #f3faf0 inset;
    transition: background-color 9999s ease-out;
}

.client-auth-form input[type="text"]:focus-visible,
.client-auth-form input[type="tel"]:focus-visible,
.client-auth-form input[type="email"]:focus-visible,
.client-auth-form input[type="password"]:focus-visible,
.client-auth-form textarea:focus-visible {
    box-shadow: var(--field-inner), var(--field-glow-strong);
}

.client-auth-form .btn {
    margin-top: 1.15rem;
}

.client-auth-form input::selection,
.client-auth-form textarea::selection {
    background: rgba(118, 192, 67, 0.3);
}

.checkout-form input::selection,
.checkout-form textarea::selection {
    background: rgba(118, 192, 67, 0.28);
}

@media (prefers-reduced-motion: reduce) {
    .client-auth-form input[type="text"]:focus,
    .client-auth-form input[type="tel"]:focus,
    .client-auth-form input[type="email"]:focus,
    .client-auth-form input[type="password"]:focus,
    .client-auth-form textarea:focus {
        transform: none;
    }
}

.client-auth-alt {
    margin: 1.25rem 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.client-auth-alt a {
    font-weight: 600;
    color: var(--accent-dark, #4a8c28);
}

.mini-lines {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.mini-lines li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

.small {
    font-size: 0.85rem;
}

.success-big {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.alert-error {
    background: #fdecea;
    border: 1px solid #e8a598;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #8b2e1f;
}

.alert-success {
    background: rgba(118, 192, 67, 0.12);
    border: 1px solid rgba(118, 192, 67, 0.45);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--accent-dark, #3d7a22);
}

.client-auth-otp-actions {
    margin-top: 1rem;
    max-width: 28rem;
}

.client-auth-inline-form {
    margin: 0 0 0.75rem;
}

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

/* Footer */
.site-footer {
    margin-top: 0;
}

.site-footer-modern {
    border-top: none;
    padding: 0;
    background: transparent;
}

.footer-top {
    background: linear-gradient(165deg, #1b4332 0%, #0f2920 55%, #0a1f17 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 3rem 0 2.75rem;
}

.footer-top-inner {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .footer-top-inner {
        grid-template-columns: 1.35fr 0.85fr 1fr 1.15fr;
        align-items: start;
    }
}

.footer-brand-block .footer-logo {
    display: inline-block;
    line-height: 0;
    margin-bottom: 1rem;
}

.footer-brand-block .footer-logo:hover {
    opacity: 0.92;
    text-decoration: none;
}

.footer-brand-block .footer-logo-img {
    width: 5.5rem;
    height: 5.5rem;
    display: block;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

.footer-tagline {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    max-width: 22rem;
}

.footer-heading {
    margin: 0 0 1.1rem;
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-light);
    text-decoration: none;
}

.footer-text {
    margin: 0 0 0.65rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.footer-text a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.footer-text a:hover {
    color: var(--accent-light);
    text-decoration: none;
}

.footer-top .muted {
    color: rgba(255, 255, 255, 0.55) !important;
}

.footer-social-icons {
    display: flex;
    gap: 0.65rem;
    margin-top: 1rem;
}

.footer-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background 0.2s ease, transform 0.15s ease;
}

.footer-icon-link:hover {
    background: rgba(118, 192, 67, 0.35);
    transform: translateY(-2px);
    color: #fff;
}

.footer-bottom {
    background: #071510;
    padding: 1.15rem 0;
    padding-bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
}

.footer-bottom-inner {
    text-align: center;
}

.footer-copy {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.38);
}

/* Legacy footer helpers (other pages if reused) */
.footer-logo {
    display: inline-block;
    line-height: 0;
}

.footer-logo-img {
    max-width: 100%;
    display: block;
    object-fit: contain;
}

/* Live cart panel — fixed right, no full-page overlay or blur */
.cart-drawer {
    --cart-drawer-top: 5.85rem;
    position: fixed;
    top: var(--cart-drawer-top);
    right: 0;
    bottom: 0;
    z-index: var(--z-cart-drawer);
    width: min(400px, 100vw);
    max-width: 100%;
    transform: translateX(104%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    padding: 0 0 max(0.75rem, env(safe-area-inset-bottom)) 0;
    box-sizing: border-box;
}

.cart-drawer.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.cart-drawer-inner {
    height: 100%;
    max-height: calc(100dvh - var(--cart-drawer-top) - env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, #ffffff 0%, #f4f8f0 100%);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 14px 0 0 14px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

@media (max-width: 480px) {
    .cart-drawer {
        --cart-drawer-top: 6.15rem;
        width: 100%;
        padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    }

    .cart-drawer-inner {
        max-height: calc(100dvh - var(--cart-drawer-top) - env(safe-area-inset-bottom, 0px));
        border-radius: 14px 14px 0 0;
        border: 1px solid var(--border);
        border-bottom: none;
    }

    .cart-drawer-close {
        min-height: var(--touch-min);
        padding: 0.45rem 1rem;
    }

    .cart-drawer-qty-ctrl button {
        width: var(--touch-min);
        height: var(--touch-min);
        border-radius: 12px;
        font-size: 1.25rem;
    }
}

.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.cart-drawer-title {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    margin: 0;
}

.cart-drawer-close {
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text);
    cursor: pointer;
}

.cart-drawer-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 1.25rem 1rem;
    -webkit-overflow-scrolling: touch;
}

.cart-drawer-empty {
    text-align: center;
    padding: 2rem 0.5rem;
    margin: 0;
    font-size: 0.95rem;
}

.cart-drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.cart-drawer-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem 0.75rem;
    align-items: start;
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    animation: cartLineIn 0.35s ease both;
}

@keyframes cartLineIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-drawer-line-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 0.2rem;
}

.cart-drawer-line-meta {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.cart-drawer-line-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
    text-align: right;
}

.cart-drawer-qty {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.cart-drawer-qty-ctrl {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.cart-drawer-qty-ctrl button {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.cart-drawer-qty-ctrl button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cart-drawer-qty-ctrl span {
    min-width: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.cart-drawer-remove {
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    background: none;
    color: var(--muted);
    cursor: pointer;
    padding: 0.25rem 0;
}

.cart-drawer-remove:hover {
    color: var(--accent);
}

.cart-drawer-foot {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.65);
}

.cart-drawer-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
    font-size: 1rem;
}

.cart-drawer-summary strong {
    font-size: 1.15rem;
    color: var(--accent);
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-text {
    display: block;
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.5rem;
    border: none;
    background: none;
    color: var(--muted);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-text:hover {
    color: var(--text);
}

.cart-drawer-checkout.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.nav-cart .cart-badge.is-pulse {
    animation: badgePulse 0.55s ease;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
