﻿body.has-mobile-cta {
    padding-bottom: calc(var(--kc-mobile-cta-h) + env(safe-area-inset-bottom, 0px));
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    white-space: nowrap;
    clip-path: inset(50%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.snackPage {
    padding: 10px 15px 60px;
}

.bentoHero {
    margin: 10px 0 16px;
    overflow: hidden;
    background: #fbfaf8;
    border: 1px solid rgba(0,0,0,.04);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(16,24,40,.04);
}

.bentoHero__grid {
    display: grid;    
    align-items: start;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 22px;
}
.bentoHero__copy {
    padding-top: 8px;
}
.bentoHero__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.bentoHero__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

.bentoHero__kicker {
    margin: 0 0 6px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bentoHero__title {
    margin: 0 0 8px;
    color: rgba(122, 30, 30, .9);
    font-size: 34px;
    letter-spacing: -0.5px;
    line-height: 1.04;
}

.bentoHero__desc {
    margin: 0 0 12px;
    line-height: 1.55;
    color: #444;
    max-width: 52ch;
}

.bentoHero__note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.snackLayout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 16px;
    align-items: start;
}

.stepPill {
    border-radius: 999px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.02) inset;
    font-weight: 600;
    margin-top: 2px;
    width: 32px;
    height: 32px;    
    font-weight: 600;    
    border: 1.5px solid rgba(122,30,30,.35);
    color: rgba(122,30,30,.75);
}

.stepPill--muted {
    /*background: #111827;*/
    opacity: .75;
}

.card__sub {
    margin: 3px 0 0;
    font-size: 13px;
    color: var(--muted);
}


/* ---------- Card header (Apple-style, not stepper) ---------- */
.card__head {
    display: flex;
    align-items: flex-start;
    /*justify-content: space-between;*/
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

    .card__head .sectionIndex {
        font-size: 14px; /* was too small */
        font-weight: 700;
        letter-spacing: 1.6px;
        color: rgba(0,0,0,.30);
        min-width: 34px;
        line-height: 1; /* prevents extra vertical drift */
        padding-top: 3px; /* nudges to align with title cap height */
        flex: 0 0 auto;
        padding-right: 14px;
        border-right: 1px solid rgba(0,0,0,.08);
    }

    .card__head > div {
        min-width: 0; /* prevents long titles from pushing layout */
    }

    .card__head .sectionIndex {
        padding-top: 5px; /* was ~3px */
    }
/* Stronger typography hierarchy */
.card__title {
    margin: 0;
    font-weight: 650; /* slightly more premium than 600 */
    color: rgba(0,0,0,.88);
    font-size: 19px;
    letter-spacing: -0.2px;
    line-height: 1.15;
}

    /*adds small line under the title*/
    /*.card__title::after {
        content: "";
        display: block;
        width: 72px;
        height: 2px;
        margin-top: 10px;
        border-radius: 999px;
        background: #e5e7eb;
    }*/
.card__sub {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(0,0,0,.52);
}

/* Optional: if a header ever needs an action on the right (e.g. "Clear") */
.card__headAction {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card {
    /*border-radius: var(--kc-radius);
    background: #fff;*/
    overflow: hidden;
    margin-bottom: 16px;
    padding: 14px;
    border-radius:12px;
    /*border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 4px 14px rgba(0,0,0,.04);*/
}

    .card.has-error {
        border-color: rgba(204, 51, 51, 0.22);
        box-shadow: 0 0 0 2px rgba(204, 51, 51, 0.06), 0 8px 24px rgba(16,24,40,.06);
        animation: kc-error-pulse 1.2s ease-out 1;
    }

/* Subtle pulse (one-time, not looping) */
@keyframes kc-error-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 51, 51, 0.18), 0 8px 24px rgba(16,24,40,.06);
    }

    60% {
        box-shadow: 0 0 0 6px rgba(204, 51, 51, 0.08), 0 8px 24px rgba(16,24,40,.06);
    }

    100% {
        box-shadow: 0 0 0 2px rgba(204, 51, 51, 0.06), 0 8px 24px rgba(16,24,40,.06);
    }
}

.optionGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    border: 0;
    padding: 0;
    margin: 0;
}

.optionTile {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    cursor: pointer;
    transition: transform .12s ease, box-shadow .16s ease, border-color .16s ease, background-color .16s ease;
    box-shadow: 0 1px 2px rgba(16,24,40,.02);
}

    .optionTile:hover {
        transform: translateY(-1px);
        border-color: rgba(122, 30, 30, 0.14);
        box-shadow: 0 8px 22px rgba(16,24,40,.05);
    }

    .optionTile:has(input:checked) {        
        background: rgba(122,30,30,.03);
        border-color: rgba(122,30,30,.18);
    }

    .optionTile input {
        width: 18px;
        height: 18px;
        accent-color: #7A1E1E;
        transform: scale(0.95);
    }

.optionTile__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.optionTile__title {
    font-weight: 700;
    color: rgba(0,0,0,.88);
    font-size: 18px;
}

.optionTile__meta {
    font-size: 14px;
    color: rgba(0,0,0,.52);
    letter-spacing: -0.01em;
}

.boxGrid {
    display: grid;
    gap: 10px;
}

.numRow {
    display: grid;
    grid-template-columns: 1fr 126px;
    gap: 10px;
    align-items: center;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    background: rgba(255,255,255,0.72);
    padding: 12px 16px;
}

.numRow--total {
    background: rgba(17,24,39,.04);
    border: 1px solid rgba(17,24,39,.08);
}

.numRow__label {
    display: flex;
    gap: 6px;
    align-items: center;
    opacity: 0.7;
    font-weight: 500;
}

.numRow__ctrl {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.numRow input[type="number"] {
    width: 100%;
    height: 36px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    font-size: 16px;
}
.numRow__value {
    width: 100%;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-variant-numeric: tabular-nums;
    color: rgba(0,0,0,.8);
    opacity: 0.85;
    border: 1px solid rgba(17, 24, 39, 0.06);
    background: #f5f2ed;
    padding: 4px;
    background: rgba(17,24,39,.05);
    font-weight: 700;
    font-size: 16px;
}

.muted {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--muted);
}

.pickGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pickBlock {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 12px;
}

    .pickBlock legend {
        color: #fff;
        background: #b83280;
        border: 1px solid rgba(0,0,0,.15);
        padding: 4px 10px;
        border-radius: 10px;
        font-weight: 600;
    }

    .pickBlock label {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        padding: 6px 0;
        font-size: 13px;
        color: #111827;
    }

    .pickBlock input {
        margin-top: 2px;
    }

.snackSummary {
    background: var(--panel);
    border: 1px solid rgba(17, 24, 39, 0.06);
    padding: 14px;
    text-align: left;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,.07);
}

#orderSummary {
    position: sticky;
    top: 88px;
    align-self: start;
    z-index: 5;
    box-sizing: border-box;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.045);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(16,24,40,.04);
    padding: 22px 20px;
}

.summaryTop, .summaryBottom {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.summaryBottom {
    margin-top: 14px;
    margin-bottom: 0;
}
    .summaryBottom .btnPrimary {
        width: 100%;
        min-height: 48px;
        border-radius: 999px;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

        .summaryBottom .btnPrimary:hover {
            transform: translateY(-1px);
            opacity: .9;
        }
.btnPrimary {
    appearance: none;
    border: 0;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    border-radius: var(--btn-radius);
    height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    font-weight: var(--btn-font-weight);
    letter-spacing: .01em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease, filter .12s ease;
    text-decoration: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

    .btnPrimary:hover {
        transform: translateY(-1px);
        opacity: .9;
    }

    .btnPrimary:active {
        transform: scale(.98);
    }

    .btnPrimary:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px var(--btn-focus-ring);
    }

    .btnPrimary:disabled,
    .btnPrimary[aria-disabled="true"] {
        background: var(--btn-primary-disabled-bg);
        color: var(--btn-primary-disabled-fg);
        cursor: default;
        transform: none;
    }

.summaryTitle {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0,0,0,.72);
}

.summaryValidation {
    border: 1px solid #cc3333;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
}

.valIcon {
    width: 22px;
    text-align: center;
}

.summaryMenuTitle {
    color: rgba(0,0,0,.84);
    padding: 8px 2px 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
}

.summaryLines {
    width: 100%;
    table-layout: fixed;
    font-size: 13px;
}

.summaryTotals {
    width: 100%;
    table-layout: fixed;
    border-spacing: 0 12px;
    font-size: 14px;
    border-top: 1px solid rgba(0,0,0,.05);
    padding-top: 14px;
    margin-top: 14px;
    font-weight: 600;
}

.summaryTotalRow td {
    font-size: 18px;
    font-weight: 700;
    color: rgba(0,0,0,.92);
}

.orderSummaryTdOne {
    margin: 0;
    padding-bottom: 0;
    padding-top: 0;
}

.orderSummaryTdTwo {
    width: 22%;
    text-align: right;
}

.summarySurcharges {
    margin-top: 16px;
    padding: 12px 0 0;
    background: transparent;
    border: 0;
    border-top: 1px dashed rgba(0,0,0,.06);
    line-height: 1.55;
    font-size: 12px;
    color: rgba(0,0,0,.42);
}

.summarySurcharges__title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 8px;
    color: rgba(0,0,0,.62);
}

.summarySurcharges ul {
    margin: 0;
    padding-left: 16px;
}
.summarySurcharges li {
    margin-bottom: 8px;
}

.bentoHero__ctaRow {
    display: flex;
    flex-wrap: wrap;
    margin: 16px 0 8px;
    gap: 10px;
}

.btnGhost {
    appearance: none;
    border: 1px solid var(--btn-ghost-border);
    background: var(--btn-ghost-bg);
    color: var(--btn-ghost-fg);
    border-radius: var(--btn-radius);
    height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    font-weight: var(--btn-font-weight);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease, background-color .12s ease;
}

    .btnGhost:hover {
        background: rgba(0,0,0,.02);
        transform: translateY(-1px);
        opacity: .9;
    }

    .btnGhost:active {
        transform: scale(.98);
    }

    .btnGhost:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px var(--btn-focus-ring);
    }

.bentoHero__media {
    display: grid;
    gap: 10px;
}

.bentoHero__mainImg {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
    border: 0;
}

.bentoHero--bento .bentoHero__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

    .bentoHero--bento .bentoHero__thumbs img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 14px;
        border: 2px solid #fff;
        box-shadow: 0 8px 18px rgba(0,0,0,.08);
    }

.bentoHero__bullets {
    padding-left: 18px;
    color: #5b6470;
    margin: 8px 0 0;
}

    .bentoHero__bullets li {
        margin: 10px 0;
    }

.bentoHero--wizard .bentoHero__steps {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

    .bentoHero--wizard .bentoHero__steps li {
        display: flex;
        gap: 10px;
        align-items: center;
        color: #111827;
        font-weight: 700;
    }

    .bentoHero--wizard .bentoHero__steps span {
        width: 26px;
        height: 26px;
        border-radius: 999px;
        background: var(--maroon);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }
/* ---------- Side Orders (contemporary) ---------- */

.soPanel {
    border-radius: 16px;
    border: 0;
    background: rgba(0,0,0,.02);
    padding: 12px;
    transform-origin: top;
    animation: soOpen .16s ease;
}

    .soPanel[hidden] {
        display: none;
    }

@keyframes soOpen {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.soGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 720px) {
    .soGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.soMedia {
    float: left;
    position: relative;
    padding: 10px 0 10px 10px;
}

.soImg {
    width: 168px;
    height: 132px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    transition: transform .45s ease, filter .45s ease;
    position: relative;
    z-index: 1;
}

.soBody {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px 12px 14px;
    gap: 8px;
    line-height: 1.35;
}

.soName {
    font-size: 15px;
    line-height: 1.24;
    letter-spacing: -0.01em;
    font-weight: 620;
    color: rgba(17,24,39,.90);
}

.soMeta {
    
    font-weight: 400;
    
    letter-spacing: .1px;
    margin: 0;
    
    font-size: 12.5px;
    line-height: 1.35;
    color: rgba(17,24,39,.50);
}

.soStepper {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(17, 24, 39, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(0,0,0,0.03);
}

    .soStepper input[type="number"] {
        width: 36px;
        height: 34px;
        border-radius: 12px;
        text-align: center;
        font-weight: 600;
        border: 0;
        background: transparent;
        font-size: 16px;
        text-align: center;
    }

/* Standard Menu Container */
/*.menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(16px, 4vw, 32px);
}*/
.menu-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    box-sizing: border-box;
}

/* Allow hero to bleed */
.menu-hero {
    width: 100%;
}


.bentoPremiumPage .mutedInline {
    color: rgba(0,0,0,.55);
}

.bentoGrid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bentoCard__title {
    margin: 0;
    font-size: 16px;
    font-weight: 650;
    color: rgba(0,0,0,.88);
    letter-spacing: -0.1px;
}

.bentoCard__meta {
    margin: 3px 0 0;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0,0,0,.55);
}

/* Stepper cluster (one control) */
.bentoQty {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(17, 24, 39, 0.06);
    display: inline-flex;
    align-items: center;
    background: #f5f2ed;
    gap: 8px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(0,0,0,0.03);
    transition: background .18s ease, border-color .18s ease;
}

    .bentoQty input[type="number"] {
        width: 36px;
        height: 34px;
        border-radius: 12px;
        text-align: center;
        font-weight: 600;
        border: 0;
        background: transparent;
        font-size: 16px;
        text-align: center;
    }

        /* Optional: keep keyboard accessibility crisp */
        .bentoQty input[type="number"]:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px var(--btn-focus-ring);
            border-radius: 12px; /* ensure ring looks clean */
        }

@media (max-width: 480px) {
    .bentoCard__body {
        grid-template-columns: 1fr;
    }
}

.bentoCard__list {
    margin: 0;
    padding-left: 0;
    color: rgba(0,0,0,.82);
    list-style: none; /* remove default */
    margin: 2px 0 0;
    line-height: 1.42;
}

    .bentoCard__list li {
        position: relative;
        margin-bottom: 3px;
        padding-left: 12px;
    }

        /* Custom softer bullet */
        .bentoCard__list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 9px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(0,0,0,.18);
        }

@media (max-width: 1030px) {
    .snackLayout {
        grid-template-columns: 1fr;
    }

    #orderSummary {
        display: none;
    }

    #orderValidationMsgMobile {
        display: block;
    }

    #mobileBar {
        display: block;
    }

    .sticky {
        position: static;
    }
}

@media (max-width: 860px) {
    .bentoHero__grid {
        grid-template-columns: 1fr;
    }

    .optionGrid {
        grid-template-columns: 1fr;
    }

    .pickGrid {
        grid-template-columns: 1fr;
    }
}

/*BUFFET*/
/* Buffet page additions  complements /assets/css/menu.css */
/*:root{
  --kc-radius: 18px;
  --kc-radius-sm: 14px;
  --kc-border: rgba(0,0,0,.08);
  --kc-text: rgba(0,0,0,.90);
  --kc-muted: rgba(0,0,0,.62);
  --kc-soft: rgba(0,0,0,.035);
  --kc-soft-2: rgba(0,0,0,.06);
  --kc-shadow: 0 10px 30px rgba(0,0,0,.06);
  --kc-shadow-sm: 0 6px 18px rgba(0,0,0,.06);
  --kc-ring: 0 0 0 4px rgba(17, 90, 255, .14);*/ /* focus ring */
/*}*/

/* overall page rhythm */
.buffetPage {
    color: var(--kc-text);
}

.buffetPaxRow {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    padding: 12px 2px 6px;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(17,24,39,.05);
    border-radius: 10px;
    padding: 12px 16px;
}

.buffetPaxLabel {
    min-width: 52px;
    color: rgba(0,0,0,.55);
    font-weight: 600;
}

.buffetPaxMeta {
    color: rgba(0,0,0,.65);
    font-size: 14px;
}

/*.buffetQty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px;*/ /* ↓ from 6px */
/*border-radius: 999px;
    border: 1px solid rgba(0,0,0,.10);*/ /* slightly firmer */
/*background: rgba(0,0,0,.02);
}*/

/* number field: slightly smaller + calmer */
/*.buffetQty input[type="number"] {
        width: 52px;*/ /* ↓ from 60px */
/*height: 32px;*/ /* ↓ from 36px */
/*border: 0;
        background: transparent;
        border-radius: 12px;
        text-align: center;
        font-weight: 800;*/ /* makes “35” crisp even when smaller */
/*font-size: 15px;*/ /* add explicit size for consistency */
/*color: #111827;
    }*/

/* focus ring */
/*.buffetQty input[type="number"]:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px var(--btn-focus-ring);
        }*/

/* buffet: tighten pax control */
/*.buffetPage .buffetQty {
    padding: 5px;
}

    .buffetPage .buffetQty input {
        height: 34px;
        width: 54px;
        font-size: 15px;
    }

    .buffetPage .buffetQty .stepBtn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }*/
/* ---------- Step buttons (unified, premium) ---------- */
.stepBtn,
.stepBtn--sm {
    cursor: pointer;
    transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease, border-color .12s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2b2b;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    font-size: 18px;
    line-height: 1;
    background: transparent;
    border: none;
    font-weight: 400;
}

/*.stepBtn--sm {
    width: 34px;
    height: 34px;
}*/

/* Hover only on hover-capable devices */
@media (hover:hover) {
    .stepBtn:hover,
    .stepBtn--sm:hover {
        border-color: rgba(0,0,0,.14);
        box-shadow: 0 10px 22px rgba(0,0,0,.06);
        background: rgba(0,0,0,.04);
        transform: none;
    }
}

/* Active (press) */
.stepBtn:active,
.stepBtn--sm:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

/* Keyboard focus */
.stepBtn:focus-visible,
.stepBtn--sm:focus-visible {
    outline: none;
    box-shadow: 0 0 0 1px rgba(0,0,0,.22), 0 6px 14px rgba(0,0,0,.05);
}

.buffetGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.buffetCard {
    border-radius: 20px;    
    padding: 16px 16px 14px;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(17,24,39,.05);
    box-shadow: none;
}

    .buffetCard legend {
        font-size: 15px;
        font-weight: 600; 
        margin-bottom: 8px;
        color: rgba(0,0,0,.65);
        letter-spacing: .02em;
        text-transform: none;
    }

/* option rows = tiles */
.choiceRow {
    border: 1px solid transparent;
    background: linear-gradient(180deg, #fff, #fff);
    transition: background .15s ease, border-color .15s ease, transform .12s ease, box-shadow .15s ease;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
}

    .choiceRow:hover {
        background: rgba(17,24,39,.03);
        border-color: rgba(0,0,0,.06);
        box-shadow: none;
        transform: none;
    }

    /* modern checkbox styling */
    .choiceRow input {
        appearance: none;
        -webkit-appearance: none;
        background: #fff;
        margin-top: 1px;
        position: relative;
        border: 1.5px solid #cfc6bb;
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        border-radius: 7px;
    }

        .choiceRow input:checked {
            background: rgba(122, 30, 30, 0.06);
            border: 1px solid rgba(122, 30, 30, 0.28);
        }

            .choiceRow input:checked::after {
                content: "";
                position: absolute;
                inset: 4px;
                border-radius: 5px;
                background: linear-gradient( 180deg, rgba(122,30,30,0.9), rgba(122,30,30,0.7) );
            }

    /* selected row highlight (no JS required) */
    .choiceRow:has(input:checked) {
        background: rgba(122, 30, 30, 0.075);
        border-color: rgba(122, 30, 30, 0.14);
        box-shadow: 0 4px 12px rgba(122, 30, 30, 0.055);
        transform: translateY(-0.5px);
    }
        .choiceRow:has(input:checked) + .choiceRow:has(input:checked) {
            margin-top: 6px;
        }   

    .choiceRow:has(input:checked) span {
        color: rgba(0,0,0,.92);
        font-weight: 550;
    }

    /* accessibility focus ring */
    .choiceRow input:focus-visible {
        outline: none;
        box-shadow: var(--kc-ring);
        border-color: rgba(17, 90, 255, .5);
    }

.card + .card {
    margin-top: 16px;
}

.muted {
    color: var(--kc-muted);
}
/*.buffetPage{
  background: linear-gradient(180deg, rgba(0,0,0,.015), rgba(0,0,0,0) 260px);
}*/

.choiceText {
    display: flex;
    align-items: center;
    gap: 6px;
}

.choiceMeta {
    margin-top: 7px;
    color: rgba(0,0,0,.46);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

/*.choiceRow:has(input:checked) .choiceMeta {
    background: rgba(17, 90, 255, .12);
}*/

/* Step 2 + Step 3: 2-column layout */
#noticeMainCourse + .buffetCard,
#noticeAddOns + .buffetCard {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    align-items: start;
}

    /* Keep legend full width */
    #noticeMainCourse + .buffetCard legend,
    #noticeAddOns + .buffetCard legend {
        grid-column: 1 / -1;
        margin-bottom: 2px;
    }

    /* Reset spacing */
    #noticeMainCourse + .buffetCard .choiceRow,
    #noticeAddOns + .buffetCard .choiceRow {
        margin-top: 0;
    }

/* Mobile fallback */
@media (max-width: 760px) {
    #noticeMainCourse + .buffetCard,
    #noticeAddOns + .buffetCard {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 980px) {
    .buffetGrid {
        grid-template-columns: 1fr;
    }

/*    body {
        padding-bottom: calc(var(--checkout-bar-h) + env(safe-area-inset-bottom, 0px));
    }*/
}

.choiceRow:hover {
    background: rgba(0,0,0,.03);
}

.choiceRow input {
    margin-top: 3px;
}

@media (max-width: 995px) {
    #orderSummary {
        display: none;
    }
}

.choiceTags {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .choiceTags .tagText {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 22px;
        padding: 0 8px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .2px;
        line-height: 1;
        border-radius: 999px;
        background: rgba(0,0,0,.045);
        border: 1px solid rgba(0,0,0,.08);
        color: rgba(0,0,0,.65);
    }

    .choiceTags .tagText--spicy {
        background: rgba(192,57,43,.08);
        border-color: rgba(192,57,43,.16);
    }

    .choiceTags .tagText--veg {
        background: rgba(46,139,87,.08);
        border-color: rgba(46,139,87,.16);
    }

    .choiceTags .tagText--fav {
        background: rgba(182,133,36,.08);
        border-color: rgba(182,133,36,.16);
    }

/*.inlineNotice {
    border: 1px solid #cc3333;
    background: #fff;
    color: #cc3333;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 14px;
    margin: 8px 0 10px;
}*/

.inlineNotice {
    margin: 8px 0 0 0;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
}

/*.inlineNotice--info {
    background: rgba(122,30,30,.04);
    border-left: 3px solid rgba(122,30,30,.35);
    color: rgba(17,24,39,.75);
}*/

.inlineNotice--error {
    background: transparent;
    border-left: 0;
    color: rgba(180, 40, 40, .85);
    padding: 4px 0;
    margin: 6px 0 10px 2px;
    font-size: 12px;
    font-weight: 600;
    opacity: .85;
}

.inlineNotice--success {
    background: transparent;
    border-left: 0;
    color: rgba(31,111,67,.9);
    padding: 4px 0;
    margin: 6px 0 10px 2px;
    font-size: 12px;
    font-weight: 600;
    opacity: .85;
}
.toggleValidation2.is-valid {
    color: rgba(31,111,67,.9);
}

.toggleValidation2.is-error {
    color: rgba(120,30,30,.85);
}
.choiceText {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

    .choiceText > span:first-child {
        flex: 1;
        min-width: 0;
    }

.choiceMeta {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px;
    color: rgba(0,0,0,.55);
}

.choiceMain {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.choiceBadges {
    display: flex;
    gap: 6px;
}

    .choiceBadges .badge {
        font-size: 11px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 999px;
        line-height: 1.2;
        white-space: nowrap;
    }

    /* Badge variants */
    .choiceBadges .badge--popular {
        background: rgba(255,165,0,.15);
        color: #b36b00;
    }

    .choiceBadges .badge--vegan {
        background: rgba(0,128,0,.12);
        color: #006400;
    }

    .choiceBadges .badge--new {
        background: rgba(0,0,0,.08);
        color: #333;
    }

    .choiceBadges .badge--spicy {
        background: rgba(204,51,51,.12);
        color: #c33;
    }

.categoryTitle {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
    color: rgba(0,0,0,.85);
}

.categoryRule {
    margin: 4px 0 10px;
    font-size: 12px;
    color: rgba(0,0,0,.55);
}

/* ===== Modern mobile sticky checkout bar ===== */

/*body.has-mobilebar {
    padding-bottom: calc(var(--kc-mobilebar-h) + env(safe-area-inset-bottom, 0px));
}*/

.mobileBar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.90);
    border-top: 1px solid rgba(0,0,0,.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    border: 1px solid rgba(0,0,0,.06);
}

.mobileBar__inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.mobileBar__meta {
    min-width: 0;
}

.mobileBar__kicker {
    letter-spacing: .01em;
    line-height: 1.2;
    color: rgba(15,23,42,.70); /* neutral guidance (not red error) */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    opacity: .75;
    font-size: 11.5px;
    margin-bottom: 4px;
}

.mobileBar__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.mobileBar__label {
    color: rgba(15,23,42,.55);
    font-weight: 700;
    font-size: 11px;
    opacity: .6;
}

.mobileBar__value {
    font-variant-numeric: tabular-nums;
    font-size: 15px;
    font-weight: 950;
    color: #111;
}

/* CTA: modern, thumb-friendly */
.mobileBar__btn {
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
    height: 44px;
    padding: 0 15px;
}
    .mobileBar__btn:active {
        transform: scale(0.97);
    }
    /* Disabled should look “inactive” but not dead */
    #checkOutMobile:disabled {
        opacity: 1 !important;
        background: transparent !important;
        border: 1px solid rgba(0,0,0,.12) !important;
        color: rgba(0,0,0,.45) !important;
        box-shadow: none !important;
    }

/* Enabled: keep your brand button, just a tiny polish */
#checkOutMobile:not(:disabled) {
    box-shadow: 0 4px 10px rgba(0,0,0,.12);
    background: #8b1e1e;
    color: #fff;
}

.mobileBar.is-ready .mobileBar__kicker {
    color: rgba(15,23,42,.70);
}

.mobileBar__arrow {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 720px) {
    .mobileBar {
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        border-radius: 20px;
        border: 1px solid rgba(0,0,0,.08);
        box-shadow: 0 18px 50px rgba(0,0,0,.18);
        transform: translateY(12px);
        opacity: 0;
        transition: transform .22s ease, opacity .22s ease;
        will-change: transform, opacity;        
    }
        /* When bar is shown (no [hidden]) */
        .mobileBar:not([hidden]) {
            transform: translateY(0);
            opacity: 1;
        }

    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .mobileBar {
            transition: none;
            transform: none;
            opacity: 1;
        }
    }
    /* footer spacing from bottom of page */
    /*:root {
        --kc-mobilebar-h: 96px;
    }*/
}

@media (max-width: 380px) {
    /*:root {
        --kc-mobilebar-h: 88px;
    }*/

    .mobileBar__btn {
        padding: 0 14px;
    }
}
/* Mobile bar: never show on desktop */
@media (min-width: 1031px) {
    #orderValidationMsgMobile {
        display: none !important;
    }
}

/* =========================================================
   Side Orders -> Mini Buffet card-stack accordion styling
   (NO markup rename needed)
   ========================================================= */

.sideOrdersCard {
    overflow: hidden;
}

.soAccordions {
    display: grid;
    gap: 10px;
}
   
.soChevron {
    transform: rotate(45deg);
    transition: transform .18s ease;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(0,0,0,.38);
    border-bottom: 2px solid rgba(0,0,0,.38);
    margin-left: 10px;
    font-weight:600;
}

.soAccordion[aria-expanded="true"] .soChevron {
    transform: rotate(-135deg);
    background: rgba(0,0,0,.02);
    border-color: rgba(0,0,0,.12);
}

.sideOrdersCard .soAccordions {
    display: grid;
    gap: 0; /* keep header+panel as one visual card */
}

/* Accordion header becomes a card */
.sideOrdersCard .soAccordion {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    border: none;
    letter-spacing: -0.01em;
    position: relative;
    margin: 18px 0 0;
    color: rgba(17,24,39,.88);
    font-size: 15px;
    box-shadow: none;
    transition: background .15s ease, padding .15s ease;
    background: rgba(0,0,0,.04);
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 600;
}

@media (hover:hover) {
    .sideOrdersCard .soAccordion:hover {
        background: rgba(17,24,39,.02);
        border-radius: 0;
    }
}

.sideOrdersCard .soAccordion:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(155,28,28,.14), 0 10px 26px rgba(0,0,0,.06);
}

/* Open state: header attaches to panel */
.sideOrdersCard .soAccordion[aria-expanded="true"] {
    border-bottom: 0;
    transform: none;
    color: #000;
    box-shadow: none;
    background: rgba(122,30,30,.06);
}
.sideOrdersCard .soAccordion:not([aria-expanded="true"]) {
    opacity: 0.82;
}
/* Chevron: keep your existing element, just tighten it */
.sideOrdersCard .soAccordion .soChevron {
    margin-left: 10px;
    opacity: .85;
    border-right-color: rgba(17,24,39,.40);
    border-bottom-color: rgba(17,24,39,.40);
}

.sideOrdersCard .soAccordion[aria-expanded="true"] .soChevron {
    transform: rotate(-135deg);
    opacity: 1;
    border-right-color: rgba(17,24,39,.55);
    border-bottom-color: rgba(17,24,39,.55);
}

.sideOrdersCard .soPanel {
    border-top: 0;
    border-radius: 0 0 18px 18px;
    margin: 0;
    box-shadow: none;
    background: transparent;
    padding: 8px 0 0;
    margin-top: 8px;
}

    .sideOrdersCard .soPanel[hidden] {
        display: none;
    }

.sideOrdersCard .soAccordion[aria-expanded="true"] + .soPanel {
    margin-top: -2px;
}

.sideOrdersCard {
    overflow: visible;
}

    .sideOrdersCard .soItem {
        display: grid;
        grid-template-columns: 148px minmax(0,1fr);
        gap: 14px;
        align-items: center;
        border: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        border-bottom: none;
        position: relative;
        padding: 16px 0;
    }
        .sideOrdersCard .soItem::after {
            content: "";
            position: absolute;
            left: calc(148px + 14px); /* image width + gap */
            right: 0;
            bottom: 0;
            height: 1px;
            background: rgba(17,24,39,.035);
        }
.sideOrdersCard .soMedia {
    float: none !important;
    padding: 0 !important;
}

    .sideOrdersCard .soBody {
        min-width: 0;
        padding: 0;
        gap: 6px;
        justify-content: center;
    }
    .sideOrdersCard .soStepper {
        margin-top: 4px;
    }
/* keep image consistent */
    .sideOrdersCard .soImg {
        width: 148px;
        height: 108px;
        border-radius: 10px;
        border: 1px solid rgba(0,0,0,.05);
        box-shadow: none;
        opacity: 1;
        object-fit: cover;
    }


@media (max-width: 1240px) {
    .sideOrdersCard .soGrid {
        grid-template-columns: 1fr;
        gap: 10px 18px;
    }
}

@media (max-width: 1030px) {
    .sideOrdersCard .soGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .sideOrdersCard .soGrid {
        grid-template-columns: 1fr;
    }    
}

/* Remove native number input arrows (Chrome, Safari, Edge) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.bentoQty:focus-within,
.soStepper:focus-within {
    box-shadow: none;
    border: 1px solid rgba(0,0,0,.22);
}

.bentoQty input[type="number"],
.soStepper input[type="number"] {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    /*transform: translateY(0.5px);*/
}

.bentoCard {
    padding: 16px;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
    /*border: none;
    background: #fff;*/
    border-radius: 20px;
    /*box-shadow: 0 1px 3px rgba(16,24,40,.04), 0 8px 24px rgba(16,24,40,.06);*/
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(17,24,39,.05);
    box-shadow: none;
}

@media (hover:hover) {
    .bentoCard:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,.75);
        box-shadow: 0 6px 14px rgba(16,24,40,.045);
        border-color: rgba(17,24,39,.08);
    }
        .bentoCard:hover .bentoCard__img {
            transform: scale(1.03);
            filter: saturate(1.04);
        }
        .bentoCard:hover .bentoQty {
            border-color: rgba(122,30,30,.22);
            background: rgba(122,30,30,.04);
        }        
    .menuItemCard:hover .soStepper {
        border-color: rgba(122,30,30,.18);
        background: rgba(122,30,30,.035);
    }
    .menuItemCard:hover .itemRightName {
        color: rgba(17,24,39,.96);
    }
    .soItem:hover .soStepper {
        border-color: rgba(122,30,30,.18);
        background: rgba(122,30,30,.035);
    }
    .soItem:hover .soName {
        color: rgba(17,24,39,.96);
    }
}

.bentoCard__body--split {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.bentoCard__media {
    min-width: 0;
}

.bentoCard__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.bentoCard__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.bentoCard__headText {
    min-width: 0;
}

.bentoCard__title {
    margin: 0;
    color: rgba(0,0,0,.88);
    font-size: 17px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.bentoCard__meta {
    margin: 4px 0 0;
    letter-spacing: .1px;
    margin-top: 6px;
    font-weight: 500;
    color: rgba(17,24,39,.55);
    font-size: 12.5px;
}

.bentoCard__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,.05);
    transition: transform .45s ease, filter .45s ease;
}

.bentoCard__list {
    padding-left: 0;
    list-style: none;
    margin-top: 4px;
    color: rgba(17,24,39,.68);
    line-height: 1.45;
}

    .bentoCard__list li {
        position: relative;
        margin: 0 0 4px;
        padding-left: 13px;
    }

        .bentoCard__list li:last-child {
            margin-bottom: 0;
        }

        .bentoCard__list li::before {
            content: "";
            position: absolute;
            left: 0;
            border-radius: 50%;
            width: 4px;
            height: 4px;
            top: 10px;
            background: rgba(122,30,30,.22);
        }

@media (max-width: 768px) {
    .bentoCard__body--split {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bentoCard__img {
        width: 100%;
        aspect-ratio: 16/9;
        max-height: 210px;
        object-fit: cover;
    }
   
}

@media (max-width: 560px) {
    .bentoCard {
        padding: 14px;
        border-radius: 16px;
    }

    .bentoCard__head {
        /*flex-direction: column;*/
        gap: 10px;
    }

    /*.bentoQty {
        align-self: flex-start;
        padding: 4px;
        gap: 4px;
    }

        .bentoQty .stepBtn {
            width: 32px;
            height: 32px;
        }

        .bentoQty input[type="number"] {
            width: 42px;
            height: 32px;
            font-size: 14px;
        }*/

    .bentoCard__title {
        font-size: 16px;
    }

    .bentoCard__meta {
        font-size: 12.5px;
    }
}
@media (max-width:360px) {

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

    .bentoQty {
        align-self: flex-start;
    }
}

/*Buffet of the month card select logic*/
.buffetCardGrid {
    display: grid;
    gap: 20px;
}

.buffetSelectCard {
    display: block;
    cursor: pointer;
}

.buffetSelectCard__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.buffetSelectCard__surface {
    position: relative;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
    border: 1px solid #e7ddd3;
    border-radius: 24px;
    background: #fff;
    /*box-shadow: 0 10px 30px rgba(28, 24, 20, 0.04);*/
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.buffetSelectCard:hover .buffetSelectCard__surface {
    transform: translateY(-2px);
    border-color: #d8c1a2;
    box-shadow: 0 6px 20px rgba(28, 24, 20, 0.08);
}

.buffetSelectCard__input:focus-visible + .buffetSelectCard__surface {
    outline: 3px solid rgba(139, 92, 42, 0.18);
    outline-offset: 3px;
}

.buffetSelectCard__input:checked + .buffetSelectCard__surface {
    border: 1.5px solid #7A1E1E;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(122,30,30,.08), 0 16px 40px rgba(16,24,40,.08);
}

.buffetSelectCard__media {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #f6f1ea;
    aspect-ratio: 4 / 3;
}

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

.buffetSelectCard__content {
    display: grid;
    align-content: start;
    min-width: 0;
    gap: 14px;
    padding: 4px 2px 2px;
}

.buffetSelectCard__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.buffetSelectCard__titleWrap {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.buffetSelectCard__title {
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 800;
    color: #241915;
}

.buffetSelectCard__meta {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    color: #75685d;
}

.buffetSelectCard__metaExtra {
    margin-top: 2px;
    font-size: 13px;
    color: #777;
}

.buffetSelectCard__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.buffetBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.buffetBadge--popular {
    color: #9a5b00;
    background: #fff1d8;
}

.buffetBadge--new {
    color: #8c2f39;
    background: #f9e3e7;
}

.buffetSelectCard__signals {
    font-size: 12.5px;
    line-height: 1.3;
    color: rgba(0,0,0,.55);
    margin-top: 6px;
    letter-spacing: -0.05px;
    opacity: .8;
}

.buffetBadge--selected {
    display: none;
    color: #fff;
    background: #6e1e2d;
}

.buffetSelectCard__input:checked + .buffetSelectCard__surface .buffetBadge--selected {
    display: inline-flex;
}

.buffetSelectCard__desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #5b5148;
}

.menuGroupTitle {
    grid-column: 1 / -1;
    margin-top: 8px;
    margin-bottom: 2px;
    padding-top: 6px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    font-weight: 600;
}

.buffetSelectCard__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 16px;
    padding-top: 4px;
}

.buffetSelectCard__item {
    position: relative;
    min-width: 0;
    padding-left: 16px;
    font-size: 0.98rem;
    line-height: 1.28;
    color: #3f352f;
}

    .buffetSelectCard__item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.7em;
        border-radius: 999px;
        transform: translateY(-50%);
        width: 3px;
        height: 3px;
        background: rgba(0,0,0,.18);
    }

.buffetSelectCard__footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
}

.buffetSelectCard__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid #dcc7a8;
    border-radius: 999px;
    background: #fff;
    color: #5f2430;
    font-size: 0.9rem;
    font-weight: 800;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.buffetSelectCard:hover .buffetSelectCard__cta {
    border-color: #c69b63;
}

.buffetSelectCard__ctaIcon {
    display: none;
    margin-right: 8px;
    font-weight: 700;
    color: #2f7a3f;
}

.buffetSelectCard__input:checked + .buffetSelectCard__surface .buffetSelectCard__cta {
    border: 1px solid #d9dfd2;
    background: #fff;
    color: #2f7a3f;
    box-shadow: 0 2px 8px rgba(47, 122, 63, 0.06);
}

.buffetSelectCard__input:checked + .buffetSelectCard__surface .buffetSelectCard__ctaIcon {
    display: inline;
}

.buffetSelectCard__input:checked + .buffetSelectCard__surface .buffetSelectCard__ctaText {
    font-size: 0;
}

    .buffetSelectCard__input:checked + .buffetSelectCard__surface .buffetSelectCard__ctaText::after {
        content: "Selected";
        font-size: 0.95rem;
    }

@media (max-width: 980px) {
    .buffetSelectCard__surface {
        grid-template-columns: 1fr;
    }

    .buffetSelectCard__media {
        max-width: 420px;
    }

    .buffetSelectCard__list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 820px) {
    .menu-container {
        padding: 16px;
    }

    .sideOrdersCard .soItem {
            grid-template-columns: 140px minmax(0, 1fr);
            gap: 12px;
            align-items: center;
            padding: 12px 0;
    }
        .sideOrdersCard .soItem + .soItem {
            margin-top: 10px;
        }
    .sideOrdersCard .soImg {
        width: 140px;
        height: 96px;
        border-radius: 10px;
    }
    .sideOrdersCard .soBody {
        gap: 5px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .sideOrdersCard .soName {
        font-size: 15px;
        line-height: 1.25;
        letter-spacing: -0.1px;
    }

    .sideOrdersCard .soMeta {
        font-size: 12.5px;
    }
    .soStepper {
        gap: 6px;
        padding: 2px;
        margin-top: 4px;
    }

        .soStepper input[type="number"] {
            width: 32px;
            height: 32px;
            font-size: 15px;
        }

    .stepBtn--sm {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }
    .sideOrdersCard .soItem::after {
        left: calc(140px + 12px);
        display: none;
    }
}
@media (max-width: 640px) {
    .buffetSelectCard__surface {
        gap: 16px;
        padding: 14px;
        border-radius: 20px;
    }

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

    .buffetSelectCard__badges {
        justify-content: flex-start;
    }

    .buffetSelectCard__title {
        font-size: 1.35rem;
    }

    .buffetSelectCard__meta,
    .buffetSelectCard__desc,
    .buffetSelectCard__item {
        font-size: 0.96rem;
    }

    .buffetSelectCard__cta {
        width: 100%;
    }
}
/*Buffet of the month card select logic*/

@media (hover:hover) {
    .sideOrdersCard .soItem {
        transition: background .18s ease, transform .18s ease;
    }

        .sideOrdersCard .soItem:hover {
            background: transparent;
            transform: none;
        }

            .sideOrdersCard .soItem:hover .soImg {
                transform: scale(1.02);
                filter: saturate(1.04);
            }
}

.menuTierNav {
    padding: 32px 0 12px;
}

.menuTierNav__row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

/* Card */
.tierCard {
    flex: 0 0 132px;
    min-width: 110px;
    min-height: 72px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(17,24,39,.08);
    transition: all 0.2s ease;
    text-align: center;
    opacity: 1;
    background: #fff;
}
    .tierCard.is-active {        
        background: #ece7df;
    }
        .tierCard.is-active .tierCard__name {
            font-weight: 700;
            color: #1c1814;
        }
    .tierCard:hover {
        border-color: rgba(17,24,39,.14);
        background: rgba(17,24,39,.02);
    }
.tierCard__price {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #b08968;
    margin-bottom: 2px;
    display: block;
    font-size: 11px;
    margin-bottom: 4px;
}

.tierCard__name {
    font-size: 13.5px;
    font-weight: 600;
    color: #1c1814;
    display: block;
    line-height: 1.2;
    white-space: normal;
}

.menuTierNav__label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8b8175;
}

/* Webkit (Chrome, Edge, Safari) */
.menuTierNav__row::-webkit-scrollbar {
    height: 6px;
}

.menuTierNav__row::-webkit-scrollbar-track {
    background: transparent;
}

.menuTierNav__row::-webkit-scrollbar-thumb {
    background: rgba(28, 24, 20, 0.18);
    border-radius: 999px;
}

    .menuTierNav__row::-webkit-scrollbar-thumb:hover {
        background: rgba(28, 24, 20, 0.3);
    }

/* Firefox */
.menuTierNav__row {
    scrollbar-width: thin;
    scrollbar-color: rgba(28,24,20,0.2) transparent;
}

    /* Webkit (Chrome, Edge, Safari) */
    .menuTierNav__row::-webkit-scrollbar {
        height: 6px;
    }

    .menuTierNav__row::-webkit-scrollbar-track {
        background: transparent;
    }

    .menuTierNav__row::-webkit-scrollbar-thumb {
        background: rgba(28, 24, 20, 0.18);
        border-radius: 999px;
    }

        .menuTierNav__row::-webkit-scrollbar-thumb:hover {
            background: rgba(28, 24, 20, 0.3);
        }

/* Firefox */
.menuTierNav__row {
    scrollbar-width: thin;
    scrollbar-color: rgba(28,24,20,0.2) transparent;
}

@media (max-width: 640px) {
    .tierCard {
        flex: 0 0 110px;
    }
    .menuTierNav__row::-webkit-scrollbar {
        display: none;
    }
}

/*****************************************************************/

.legendMenuItems {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 0;
}

.legendMenuItems__name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(0,0,0,.65);
    letter-spacing: .02em;
}

.legendMenuItems__count {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0,0,0,.48);
    white-space: nowrap;
}

.buffetCard.is-complete .legendMenuItems__count {
    color: #1f6f43;
}

.buffetCard.is-incomplete .legendMenuItems__count {
    color: rgba(0,0,0,.48);
}

@media (max-width: 640px) {
    .legendMenuItems {
        flex-wrap: wrap;
        gap: 4px 12px;
    }

    .legendMenuItems__count {
        font-size: 11.5px;
    }
}
.choiceRow.is-disabled {
    pointer-events: none;
}
    .choiceRow.is-disabled input {
        pointer-events: none;
        background: rgba(0,0,0,.015);
        border-color: rgba(0,0,0,.12);
    }
    .choiceRow.is-disabled:hover {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .choiceRow.is-disabled span {
        color: rgba(0,0,0,.45);
    }

    .choiceRow.is-disabled .choiceTitle {
        color: rgba(0,0,0,.38);
        font-weight: 500;
    }

    .choiceRow.is-disabled .choiceDesc {
        color: rgba(0,0,0,.32);
        opacity: 1;
    }

.buffetCard.is-complete .legendMenuItems__count::after {
    content: " • max selected";
    font-weight: 500;
    opacity: .6;
}

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

html,
body {
    margin: 0;
    max-width: 100%;
}*/

.snackLayout,
.snackLayout > div,
.card,
.bentoCard,
.bentoCard__body,
.bentoCard__content,
.bentoCard__head,
.bentoCard__headText,
.menuTierNav {
    min-width: 0;
}

@media (max-width: 760px) {
    .soGrid {
        grid-template-columns: 1fr;
    }
}
/******************************************/

/* === Buffet item text layout (FIXED) === */

.choiceRow {
    align-items: flex-start;
    padding: 8px 10px;
    -webkit-tap-highlight-color: transparent;
}

    .choiceRow + .choiceRow {
        margin-top: 2px;
    }

    .choiceRow input {
        margin-top: 2px;
    }

.choiceText {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 0;
}

.choiceTitle {
    font-size: 14.8px;
    font-weight: 550;
    color: rgba(0,0,0,.88);
    line-height: 1.22;
    letter-spacing: -0.1px;
}

.choiceDesc {
    font-size: 11.8px;
    line-height: 1.32;
    color: rgba(0,0,0,.58);
    max-width: 40ch;
    opacity: .75;
}

    .choiceDesc .signal {
        opacity: .85;
        white-space: nowrap;
    }

.choiceRow:has(input:checked) .choiceTitle {
    font-weight: 550;
}

.choiceRow:has(input:checked) .choiceDesc {
    color: rgba(0,0,0,.6);
    opacity: 1;
}

@media (hover: hover) {
    .choiceRow:hover .choiceTitle {
        color: #000;
    }

    .choiceRow:hover .choiceDesc {
        color: rgba(0,0,0,.68);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .choiceTitle {
        font-size: 14.5px;
    }

    .choiceDesc {
        font-size: 12px;
    }
}

/* =========================================================
   HERO — Apple-style v2
   ========================================================= */

.bentoHero--apple {
    margin: 10px 0 20px;
    overflow: hidden;
    /*background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,250,248,.98));
    border: 1px solid rgba(17, 24, 39, 0.045);
    border-radius: 24px;
    box-shadow: 0 1px 2px rgba(16,24,40,.03), 0 12px 34px rgba(16,24,40,.05);*/
    background: transparent;
    border: none;
    box-shadow: none;
}

    .bentoHero--apple .bentoHero__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        align-items: stretch;
        min-height: 0;
    }

    .bentoHero--apple .bentoHero__media {
        position: relative;
        align-self: stretch;
        overflow: hidden;
        background: #f4efe9;
        min-height: 100%;
    }

    .bentoHero--apple .bentoHero__mainImg {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        aspect-ratio: auto;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: scale(1.015);
        transition: transform .5s ease; 
    }

    .bentoHero--apple .bentoHero__copy {
        display: flex;
        flex-direction: column;
        min-width: 0;
        justify-content: flex-start;
        padding: 24px 36px 22px 32px;
    }

.bentoHero__eyebrow {    
    text-transform: uppercase;
    margin: 0 0 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .18em;
    color: rgba(0,0,0,.42);
}

.bentoHero--apple .bentoHero__title {
    margin: 0 0 10px;
    font-size: clamp(28px, 2.6vw, 36px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 750;
    color: rgba(122, 30, 30, 0.88);
}

.bentoHero__lead {
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    max-width: 36ch;
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(17,24,39,.76);
}

.bentoHero__priceRow {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    margin: 0 0 16px;
}

.bentoHero__priceBlock {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.bentoHero__price {
    color: rgba(17,24,39,.94);
    font-size: 30px;
    font-weight: 650;
    letter-spacing: -0.045em;
}

.bentoHero__priceUnit {
    letter-spacing: -0.02em;
    opacity: .6;
    font-size: 13px;
    font-weight: 650;
    color: rgba(17,24,39,.50);
}

.bentoHero__priceMeta {
    flex-basis: 100%; /* forces next line */
    margin: 2px 0 0;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(17,24,39,.42);
    opacity: 1;
}

.bentoHero__points {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 5px;
    max-width: 44ch;
}
    .bentoHero__points::after {
        content: "";
        display: block;
        width: 72px;
        height: 1px;
        margin-top: 14px;
        background: rgba(0,0,0,.08);
    }
    .bentoHero__points li {
        position: relative;
        margin: 0;
        padding-left: 16px;
        font-size: 13.5px;
        line-height: 1.38;
        color: rgba(17,24,39,.68);
    }

        .bentoHero__points li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .68em;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(122,30,30,.28);
        }

.bentoHero--apple .bentoHero__ctaRow {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    gap: 10px;
}

.bentoHero__primaryCta,
.bentoHero__secondaryCta {    
    border-radius: 999px;    
    min-height: 42px;
    padding-left: 17px;
    padding-right: 17px;
    font-size: 14.5px;
}

.bentoHero__primaryCta {
    box-shadow: none;
}

.bentoHero__secondaryCta {
    background: rgba(255,255,255,.66);
    border-color: rgba(17,24,39,.10);
}

@media (hover: hover) {
    .bentoHero--apple:hover .bentoHero__mainImg {
        transform: scale(1.015);
    }
}

@media (max-width: 980px) {
    .bentoHero--apple .bentoHero__copy {
        padding: 22px 22px 20px;
    }
}
@media (max-width: 860px) {
    .bentoHero--apple .bentoHero__grid {
        grid-template-columns: 1fr;
    }

    .bentoHero--apple .bentoHero__copy {
        padding: 22px 20px;
    }

    .bentoHero__lead,
    .bentoHero__points {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .bentoHero--apple {
        border-radius: 20px;
    }

    .bentoHero__eyebrow {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .bentoHero--apple .bentoHero__title {
        font-size: 29px;
    }

    .bentoHero__lead {
        margin-bottom: 16px;
        font-size: 15.5px;
        line-height: 1.5;
        max-width: none;
    }

    .bentoHero__price {
        font-size: 28px;
    }

    .bentoHero__priceUnit {
        font-size: 15px;
    }

    .bentoHero__priceMeta {
        font-size: 12px;
    }
    .bentoHero__points {
        margin-bottom: 8px;
    }

        .bentoHero__points::after {
            margin-top: 10px;
        }

    .bentoHero__points li {
        font-size: 14px;
    }
    .bentoHero--apple {
        margin-bottom: 12px;
    }

    .bentoHero--apple .bentoHero__ctaRow {
        gap: 10px;
        margin-top: 18px;
    }

    .bentoHero__primaryCta,
    .bentoHero__secondaryCta {
        width: 100%;
    }
}

/*DATE AND TIME*/
.menuAvailability {
    margin: 0 0 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 6px 18px rgba(0,0,0,0.035);
    position: relative;
}
    .menuAvailability.is-complete {
        background: rgba(255,255,255,.72);
        border-color: rgba(31,111,67,.10);
    }
    .menuAvailability.is-complete::after {
        content: "✓ Date & time selected";
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 12px;
        font-weight: 600;
        color: rgba(31,111,67,.9);
    }
.menuAvailability__eyebrow {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(0,0,0,.42);
}

.menuAvailability__title {
    margin: 0;
    font-size: 19px;
    letter-spacing: -.02em;
    color: #1B1B1B;
}

.menuAvailability__sub,
.menuAvailability__note {
    margin: 5px 0 0;
    font-size: 13px;
    color: rgba(0,0,0,0.6);
}

.menuAvailability__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

@media (max-width: 640px) {
    .menuAvailability__grid {
        grid-template-columns: 1fr;
    }
}

.menuAvailability .field--schedule {
    position: relative;
    min-height: 58px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 1px 0 rgba(255,255,255,0.75) inset;
    overflow: visible;
    background: #fff;
}

.menuAvailability .label {
    position: absolute;
    top: 8px;
    left: 14px;
    z-index: 2;
    font-weight: 600;
    color: rgba(17, 24, 39, 0.55);
    pointer-events: none;
    font-size: 11px;
    letter-spacing: .02em;
}

.menuAvailability .input {
    width: 100%;
    padding: 26px 52px 10px 14px;
    border: 0;
    outline: none;
    appearance: none;
    background: transparent;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
}

.menuAvailability .datewrap,
.menuAvailability .timewrap {
    position: relative;
    display: flex;
    align-items: center;
}

.menuAvailability .iconbtn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: rgba(17,24,39,.72);
    cursor: pointer;
}

.menuAvailability .input--hidden-date {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 640px) {
    .menuAvailability.is-complete::after {
        position: static;
        display: block;
        margin: 8px 0 0;
    }
}