:root {
    --bg: #050505;
    --border: rgba(255, 255, 255, .10);
    --text: rgba(245, 237, 226, .92);
    --muted: rgba(245, 237, 226, .70);
    --cream: #F2E6D9;

    --cafe: #6B4630;
    --shadow: 0 25px 80px rgba(0, 0, 0, .55);

    --radius-xl: 26px;
    --radius-card: 24px;
    --radius-pill: 999px;

    --serif: "Playfair Display", Georgia, serif;
    --sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;

    --pad: 20px;
    /* requested margin */
    --gap: 18px;
}

/* base */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--sans);
    background:
        radial-gradient(1100px 700px at 18% 15%, rgba(122, 81, 55, .18), transparent 60%),
        radial-gradient(900px 600px at 70% 30%, rgba(242, 230, 217, .05), transparent 55%),
        linear-gradient(180deg, #050505 0%, #070605 55%, #050505 100%);
    color: var(--text);
    overflow: hidden;
    /* desktop fixed viewport like video */
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden;
}

/* frame = full height with padding 20px */
.pageFrame {
    width: 100vw;
    height: 100vh;
    padding: var(--pad);
    position: relative;
}

/* ===== Top bar (cream pill) ===== */
.topbar {
    position: absolute;
    top: 5%;
    left: 2%;
    z-index: 30;
    display: flex;
    justify-content: left;
    pointer-events: none;
    width: fit-content;
}

.topbar .pill {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(242, 230, 217, .92);
    color: var(--cafe2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .45);
    border: 1px solid rgba(0, 0, 0, .10);
}

.brand {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
    min-width: 150px;
}

.brand .burger {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .45);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.brand .burger span {
    width: 18px;
    height: 1.5px;
    background: #291a12;
    display: block;
    position: relative;
}

.brand .burger span:before,
.brand .burger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #291a12;
}

.brand .burger span:before {
    top: -6px;
}

.brand .burger span:after {
    top: 6px;
}

.brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand .logo img {
    width: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .12));
}

.brand .logo strong {
    font-family: var(--serif);
    letter-spacing: .08em;
    font-weight: 700;
    font-size: 14px;
}

/* right actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions a {
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    font-weight: 600;
    letter-spacing: .02em;
    font-size: 12px;
    text-transform: uppercase;
    color: #6B4630;
    background: rgba(255, 255, 255, .35);
    transition: transform .15s ease, background .15s ease;
}

.nav-actions a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .55);
}

.nav-actions a.primary {
    background: #996740;
    border-color: rgba(0, 0, 0, .10);
    color: var(--cream);
}

.nav-actions a.primary:hover {
    background: #996740;
}

@media (max-width: 720px) {
    .nav-actions a {
        display: none;
    }

    .nav-actions a.primary {
        display: inline-flex;
        color: var(--cream);
    }

    .brand .logo img {
        width: 80px;
    }

}

/* categories */
.categories {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 5px;
}

.categories p {
    align-items: center;
}

.categories p a {
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    font-weight: 600;
    letter-spacing: .02em;
    font-size: 12px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .12);
    transition: transform .15s ease, background .15s ease;
}

.categories p a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .55);
}

.categories p a.primary {
    background: #996740;
    border-color: rgba(0, 0, 0, .10);
    color: var(--cream);
}

.categories p a.primary:hover {
    background: #996740;
}


/* MAIN layout */
.layout {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: stretch;
}

/* cards */
.leftCard,
.rightCard {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 0;
    /* important for internal scroll */
    position: relative;
}

/* LEFT image */
.leftCard {
    background: rgba(0, 0, 0, .30);
}

.leftMedia {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    filter: saturate(105%) contrast(105%);
}

.leftShade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .20) 48%, rgba(0, 0, 0, .55) 100%),
        radial-gradient(900px 500px at 25% 70%, rgba(122, 81, 55, .22), transparent 60%);
}

.leftTitle {
    position: absolute;
    left: 26px;
    bottom: 18px;
}

.menuWord {
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 84px);
    line-height: .9;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: rgba(245, 237, 226, .85);
    text-shadow: 0 20px 60px rgba(0, 0, 0, .55);
}

/* Item name for Hot or Cold drinks*/
.item .name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.name img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* RIGHT panel */
.rightCard {
    background: rgba(0, 0, 0, .35);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Scroll area (desktop internal scroll like video) */
.rightInner {
    flex: 1;
    overflow: auto;
    padding: 18px 18px 0 18px;
}

/* scrollbars subtle */
.rightInner::-webkit-scrollbar {
    width: 10px;
}

.rightInner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 999px;
}

.rightInner::-webkit-scrollbar-thumb {
    background: rgba(242, 230, 217, .12);
    border-radius: 999px;
}

.rightInner::-webkit-scrollbar-thumb:hover {
    background: rgba(242, 230, 217, .18);
}

.intro {
    padding: 6px 2px 10px;
}

.introSmall {
    margin: 0;
    font-size: 12px;
    color: rgba(245, 237, 226, .55);
    line-height: 1.5;
}

/* Content */
.menuContent {
    padding: 10px 2px 0;
}

/* Category heading centered like video */
.cat {
    margin: 18px 0 8px;
    text-align: center;
}

.cat h2 {
    margin: 0;
    font-family: var(--serif);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 500;
    font-size: 16px;
    color: rgba(245, 237, 226, .78);
}

.catRule {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, .06);
    margin: 14px 0 0;
}

/* Items list */
.items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0 6px;
}

.item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
}

.item .name {
    font-size: 12.5px;
    letter-spacing: .02em;
    color: rgba(245, 237, 226, .86);
}

.item .price {
    font-size: 12.5px;
    color: rgba(245, 237, 226, .86);
    opacity: .9;
}

.item .desc {
    grid-column: 1 / -1;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.45;
    color: rgba(245, 237, 226, .52);
}

/* Two-column section (EXTRAS style) */
.itemsGrid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 14px 0 6px;
}

.itemsGrid2 .items {
    padding: 0;
}

/* bottom mini bar inside right panel */
.rightFooter {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(0, 0, 0, .22);
}

.miniLinks {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(245, 237, 226, .55);
    font-size: 11px;
}

.miniLinks a {
    color: rgba(245, 237, 226, .60);
}

.miniLinks a:hover {
    color: rgba(245, 237, 226, .88);
}

.miniLinks span {
    opacity: .35;
}

/* Bebidas pill (bottom right like video) */
.miniCta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 9px 9px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

.miniCta span {
    font-family: var(--serif);
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 11px;
    color: rgba(245, 237, 226, .88);
}

.miniCta i {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(245, 237, 226, .18);
    background: rgba(0, 0, 0, .20);
    color: rgba(245, 237, 226, .88);
    font-style: normal;
}

/* spacer so last content doesn't hide behind footer */
.spacer {
    height: 24px;
}

/* ===== Responsive: mobile stacks + page scroll ===== */
@media (max-width: 980px) {
    body {
        overflow: auto;
    }

    /* mobile scroll page */
    .pageFrame {
        height: auto;
        min-height: 100vh;
    }

    .layout {
        height: auto;
        grid-template-columns: 1fr;
    }

    .leftCard {
        height: 46vh;
        /* like video */
        min-height: 340px;
    }

    .rightCard {
        min-height: 54vh;
    }

    .rightInner {
        overflow: visible;
        /* no inner scroll on mobile */
        padding-bottom: 12px;
    }
}

/* ===== Slightly tighter when viewport height is short ===== */
@media (max-height: 780px) {
    .items {
        gap: 14px;
    }

    .item .name,
    .item .price {
        font-size: 14px;
    }

    .item .desc {
        font-size: 10.5px;
    }

    .layout {
        gap: 14px;
    }
}

/* =========================================================
   OVERLAY MENU (full height, like your screenshot)
   ========================================================= */
.overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    /* ✅ full height */
    background: rgba(0, 0, 0, .58);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: 80;
}

.overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* panel */
.menuSheet {
    position: absolute;
    inset: 20px;
    /* margin like screenshot */
    height: calc(100vh - 40px);
    border-radius: var(--radius-xl);
    background: var(--cafe);
    border: 1px solid rgba(0, 0, 0, .22);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .60);
    display: grid;
    place-items: center;
    overflow: hidden;

    /* animate */
    transform: scale(.985) translateY(10px);
    opacity: 0;
    transition: transform .22s ease, opacity .22s ease;
}

.overlay.open .menuSheet {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* mobile inset slightly smaller (matches your screenshot spacing) */
@media (max-width: 520px) {
    .menuSheet {
        inset: 16px;
        height: calc(100vh - 32px);
    }

    .topbar {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* top-left close */
.menuClose {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .25);
    background: rgba(0, 0, 0, .18);
    color: rgba(242, 230, 217, .92);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 18px;
}

/* center list */
.menuLinks {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--menu-gap);
    text-align: center;
    padding: 24px;
}

.menuLinks a {
    font-family: var(--serif);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 40px;
    /* ✅ smaller */
    color: rgba(242, 230, 217, .92);
    line-height: 1.02;
    transition: opacity .12s ease, transform .12s ease;
    opacity: .95;
    margin-bottom: 20px;
}

.menuLinks a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* active link underline */
.menuLinks a[aria-current="page"] {
    text-decoration: underline;
    text-underline-offset: 12px;
    opacity: 1;
}

/* ornaments (small diamonds + lines) */
.menuDecor {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 22px;
    opacity: .55;
    z-index: 1;
    pointer-events: none;
}

.menuDecor.top {
    top: 105px;
}

.menuDecor.bottom {
    bottom: 105px;
}

@media (max-width: 520px) {
    .menuDecor.top {
        top: 92px;
    }

    .menuDecor.bottom {
        bottom: 92px;
    }
}

/* line segments */
.menuDecor {
    background:
        linear-gradient(90deg,
            transparent 0 22px,
            rgba(18, 12, 9, .40) 22px 24px,
            transparent 24px 116px,
            rgba(18, 12, 9, .40) 116px 118px,
            transparent 118px);
}

/* diamonds */
.menuDecor::before,
.menuDecor::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(18, 12, 9, .55);
    transform: translateY(-50%) rotate(45deg);
}

.menuDecor::before {
    left: 16px;
}

.menuDecor::after {
    right: 16px;
}

/* Optional subtle vignette inside menu */
.menuSheet::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 550px at 50% 45%, rgba(0, 0, 0, .14), transparent 60%);
    pointer-events: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}