:root {
    --food-bg: #090909;
    --food-panel: #141414;
    --food-panel-soft: #1b1b1b;
    --food-line: rgba(255, 255, 255, 0.1);
    --food-muted: #aaa7a3;
    --food-text: #fffdf9;
    --food-orange: var(--app-orange, #ff6b35);
    --food-orange-deep: #db4e1d;
    --food-green: #5ad19a;
    --food-radius: 22px;
    --food-bottom-nav-clearance: calc(88px + env(safe-area-inset-bottom, 0px));
}

body.food-order-page {
    background: var(--food-bg);
    overflow-x: clip;
}

.food-order-shell {
    min-height: 100vh;
    overflow-x: clip;
    color: var(--food-text);
    padding-bottom: 120px;
}

.food-order-shell button,
.food-order-shell input,
.food-order-shell textarea {
    font: inherit;
}

.food-hero {
    position: relative;
    isolation: isolate;
    min-height: 270px;
    display: flex;
    align-items: flex-end;
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 107, 53, 0.24), transparent 35%),
        linear-gradient(135deg, #23140f 0%, #111 52%, #080808 100%);
    border-bottom: 1px solid var(--food-line);
    overflow: hidden;
}

.food-hero.has-image {
    background-image: var(--food-hero-image);
    background-position: center;
    background-size: cover;
}

.food-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.6) 55%, rgba(7, 7, 7, 0.35)),
        linear-gradient(0deg, rgba(7, 7, 7, 0.96), transparent 72%);
}

.food-hero-content {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-top: 56px;
    padding-bottom: 42px;
}

.food-outlet-mark {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(145deg, var(--food-orange), var(--food-orange-deep));
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.food-outlet-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-eyebrow {
    margin: 0 0 7px;
    color: var(--food-orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.food-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 1;
}

.food-hero-lead {
    margin: 14px 0 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
}

.food-service-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.food-service-facts span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(10, 10, 10, 0.48);
    backdrop-filter: blur(10px);
    font-size: 0.82rem;
}

.food-service-facts .is-open { color: var(--food-green); }
.food-service-facts .is-preview { color: #ffd38c; }
.food-service-facts .is-closed { color: #ff8e84; }

.food-discovery {
    position: sticky;
    top: 0;
    z-index: 1010;
    padding: 13px 0 10px;
    background: rgba(9, 9, 9, 0.92);
    border-bottom: 1px solid var(--food-line);
    backdrop-filter: blur(18px);
}

.food-search-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.food-search {
    min-width: 0;
    flex: 1;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 15px;
    border: 1px solid var(--food-line);
    border-radius: 15px;
    color: var(--food-muted);
    background: var(--food-panel);
}

.food-search:focus-within {
    border-color: rgba(255, 107, 53, 0.75);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.food-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--food-text);
    background: transparent;
}

.food-search input::placeholder { color: #85817e; }

.food-search-clear,
.food-text-button {
    padding: 6px;
    border: 0;
    color: var(--food-muted);
    background: transparent;
}

.food-text-button {
    color: var(--food-orange);
    font-weight: 650;
}

.food-cart-shortcut {
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 0 17px;
    border: 1px solid var(--food-line);
    border-radius: 15px;
    color: var(--food-text);
    background: var(--food-panel);
}

.food-cart-shortcut strong {
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #111;
    background: var(--food-orange);
    font-size: 0.75rem;
}

.food-category-strip {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
}

.food-category-strip::-webkit-scrollbar { display: none; }

.food-category-chip {
    min-height: 38px;
    flex: 0 0 auto;
    padding: 8px 14px;
    border: 1px solid var(--food-line);
    border-radius: 999px;
    color: #d9d6d2;
    background: transparent;
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
}

.food-category-chip:hover,
.food-category-chip:focus-visible,
.food-category-chip.active {
    border-color: var(--food-orange);
    color: #17110f;
    background: var(--food-orange);
}

.food-menu-section { padding-top: 32px; }

.food-section-heading,
.food-cart-heading,
.food-checkout-section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.food-section-heading { margin-bottom: 18px; }

.food-section-heading h2,
.food-cart-heading h2,
.food-sheet-header h2 {
    margin: 0;
    color: var(--food-text);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 720;
    letter-spacing: -0.025em;
}

.food-result-count {
    margin: 0 0 2px;
    color: var(--food-muted);
    font-size: 0.86rem;
}

.food-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

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

.food-menu-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 174px;
    border: 1px solid var(--food-line);
    border-radius: var(--food-radius);
    background: var(--food-panel);
    overflow: hidden;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.food-menu-card:hover {
    border-color: rgba(255, 107, 53, 0.42);
    transform: translateY(-2px);
}

.food-menu-image-wrap {
    position: relative;
    min-height: 100%;
    background: #202020;
}

.food-menu-image-button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: zoom-in;
}

.food-menu-image-button:focus-visible {
    outline: 3px solid var(--food-orange);
    outline-offset: -3px;
}

.food-image-zoom {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #fff;
    background: rgba(10, 10, 10, 0.68);
    font-size: 0.72rem;
    backdrop-filter: blur(4px);
}

.food-menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-menu-placeholder {
    display: grid;
    place-items: center;
    color: #68635f;
    font-size: 1.8rem;
}

.food-image-modal { z-index: 1120; }

.food-image-modal .modal-dialog {
    width: min(920px, calc(100vw - 32px));
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

.food-image-modal .modal-content {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    color: var(--food-text);
    background: #111;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.food-image-stage {
    min-height: 320px;
    display: grid;
    place-items: center;
    background: #080808;
}

.food-image-stage img {
    display: block;
    max-width: 100%;
    max-height: min(72vh, 720px);
    object-fit: contain;
}

.food-image-close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    color: #fff;
    background: rgba(10, 10, 10, 0.78);
    font-size: 1rem;
}

.food-image-close:hover,
.food-image-close:focus-visible {
    color: #111;
    background: var(--food-orange);
}

.food-image-caption { padding: 16px 20px 20px; }
.food-image-caption .food-eyebrow { margin-bottom: 4px; }
.food-image-caption h2 { margin: 0; color: #fff; font-size: clamp(1.05rem, 2vw, 1.35rem); }

.food-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: #c62828;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.food-badge-sale {
    top: auto;
    bottom: 6px;
    background: var(--food-orange);
}

.food-menu-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    padding: 17px;
}

.food-menu-copy h3 {
    margin: 0 0 6px;
    color: var(--food-text);
    font-size: 1rem;
    font-weight: 690;
    line-height: 1.25;
}

.food-menu-copy p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--food-muted);
    font-size: 0.8rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.food-menu-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.food-price { min-width: 0; }

.food-price strong {
    display: block;
    color: var(--food-text);
    font-size: 0.93rem;
}

.food-price-usd {
    display: block;
    margin-top: 2px;
    color: var(--food-muted);
    font-size: 0.68rem;
    line-height: 1.25;
}

.food-price del {
    color: #827d79;
    font-size: 0.72rem;
}

.food-stepper {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 38px 30px 38px;
    align-items: center;
    min-height: 38px;
    border: 1px solid var(--food-line);
    border-radius: 13px;
    background: #0e0e0e;
    overflow: hidden;
}

.food-stepper button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--food-text);
    background: transparent;
}

.food-stepper button:last-child {
    color: #111;
    background: var(--food-orange);
}

.food-stepper button:disabled {
    color: #56514e;
    cursor: not-allowed;
}

.food-stepper output {
    color: var(--food-text);
    text-align: center;
    font-weight: 700;
}

.food-empty-results {
    padding: 70px 24px;
    border: 1px dashed var(--food-line);
    border-radius: var(--food-radius);
    color: var(--food-muted);
    text-align: center;
}

.food-empty-results i { margin-bottom: 15px; font-size: 2rem; }
.food-empty-results h3 { color: var(--food-text); }

.food-desktop-cart { position: sticky; top: 132px; }

.food-cart-card {
    padding: 22px;
    border: 1px solid var(--food-line);
    border-radius: var(--food-radius);
    background: var(--food-panel);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.25);
}

.food-cart-heading { align-items: center; margin-bottom: 18px; }

.food-cart-count-pill {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--food-muted);
    background: var(--food-panel-soft);
    font-size: 0.74rem;
}

.food-cart-items {
    display: grid;
    gap: 10px;
}

.food-cart-empty {
    padding: 34px 14px;
    color: var(--food-muted);
    text-align: center;
}

.food-cart-empty i { display: block; margin-bottom: 10px; font-size: 1.45rem; }

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

.food-cart-line:last-child { border-bottom: 0; }

.food-cart-line h3 {
    margin: 0 0 4px;
    color: var(--food-text);
    font-size: 0.9rem;
    font-weight: 650;
}

.food-cart-line p { margin: 0; color: var(--food-muted); font-size: 0.76rem; }

.food-cart-line-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.food-cart-line-actions strong { font-size: 0.84rem; }

.food-cart-total-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 17px 0;
    color: var(--food-text);
}

.food-cart-total-row strong { font-size: 1.05rem; }

.food-primary-button {
    min-height: 50px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 18px;
    border: 0;
    border-radius: 15px;
    color: #17100d;
    background: linear-gradient(135deg, var(--food-orange), #ff874e);
    box-shadow: 0 13px 28px rgba(255, 107, 53, 0.18);
    font-weight: 750;
}

.food-primary-button:hover,
.food-primary-button:focus-visible { color: #090909; filter: brightness(1.05); }

.food-primary-button:disabled {
    color: #77716d;
    background: #292725;
    box-shadow: none;
    cursor: not-allowed;
}

.food-secure-note {
    margin: 13px 0 0;
    color: var(--food-muted);
    font-size: 0.7rem;
    line-height: 1.45;
    text-align: center;
}

.food-minimum-note {
    margin-top: 13px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #ffd6c7;
    background: rgba(255, 107, 53, 0.1);
    font-size: 0.76rem;
}

.food-cart-policy {
    margin: 10px 0 0;
    color: var(--food-muted);
    font-size: 0.7rem;
    line-height: 1.4;
}

.food-mobile-cart-bar { display: none; }

.food-cart-sheet {
    --bs-offcanvas-height: min(82vh, 720px);
    z-index: 1090;
    border: 1px solid var(--food-line);
    border-radius: 26px 26px 0 0;
    color: var(--food-text);
    background: #101010;
}

.food-sheet-handle {
    width: 42px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 99px;
    background: #514d49;
}

.food-sheet-header { padding: 15px 18px 12px; }
.food-sheet-body { padding: 0 18px 20px; }

.food-sheet-footer {
    padding: 14px 18px calc(16px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--food-line);
    background: rgba(16, 16, 16, 0.98);
}

.food-checkout-modal { z-index: 1100; }

.food-checkout-modal .modal-content {
    border: 1px solid var(--food-line);
    border-radius: 24px;
    color: var(--food-text);
    background: #101010;
    overflow: hidden;
}

.food-checkout-modal form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    max-height: 100%;
}

.food-checkout-header {
    padding: 20px 22px 15px;
    border-bottom: 1px solid var(--food-line);
}

.food-checkout-header h2 { margin: 0; font-size: 1.45rem; font-weight: 720; }
.food-checkout-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 20px 22px 26px;
}

.food-checkout-section {
    margin-bottom: 16px;
    padding: 18px;
    border: 1px solid var(--food-line);
    border-radius: 18px;
    background: var(--food-panel);
}

.food-checkout-section:last-child { margin-bottom: 0; }

.food-checkout-section h3 {
    margin: 0 0 15px;
    color: var(--food-text);
    font-size: 1rem;
    font-weight: 690;
}

.food-checkout-section-title { align-items: center; }
.food-checkout-section-title h3 { margin-bottom: 0; }

.food-checkout-items { margin-top: 12px; }

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

.food-field {
    display: grid;
    gap: 7px;
    margin-bottom: 13px;
}

.food-field > span,
.food-choice-group legend {
    color: #d8d4d0;
    font-size: 0.78rem;
    font-weight: 650;
}

.food-field > span small { color: var(--food-muted); font-weight: 400; }

.food-field input,
.food-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid var(--food-line);
    border-radius: 13px;
    outline: 0;
    color: var(--food-text);
    background: #0c0c0c;
}

.food-field textarea { resize: vertical; }

.food-field input:focus,
.food-field textarea:focus {
    border-color: rgba(255, 107, 53, 0.72);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.food-checkout-form.was-validated :invalid,
#food-checkout-form.was-validated :invalid {
    border-color: #e2695f;
}

.food-location-button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    color: #ffc1aa;
    background: rgba(255, 107, 53, 0.08);
}

.food-location-result,
.food-checkout-alert {
    margin-bottom: 12px;
    padding: 11px 12px;
    border-radius: 12px;
    color: #c8f6df;
    background: rgba(90, 209, 154, 0.1);
    font-size: 0.78rem;
}

.food-checkout-alert {
    color: #ffd3cf;
    background: rgba(226, 105, 95, 0.12);
}

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

.food-choice-group legend { grid-column: 1 / -1; margin-bottom: 0; }

.food-choice-card { position: relative; cursor: pointer; }
.food-choice-card input { position: absolute; opacity: 0; pointer-events: none; }

.food-choice-card > span {
    min-height: 78px;
    display: grid;
    grid-template-columns: 22px 1fr;
    align-content: center;
    column-gap: 9px;
    padding: 12px;
    border: 1px solid var(--food-line);
    border-radius: 14px;
    color: var(--food-text);
    background: #0d0d0d;
}

.food-choice-card i { grid-row: 1 / 3; margin-top: 2px; color: var(--food-orange); }
.food-choice-card strong { font-size: 0.82rem; }
.food-choice-card small { color: var(--food-muted); font-size: 0.7rem; }

.food-choice-card input:checked + span {
    border-color: var(--food-orange);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.08);
}

.food-payment-preview {
    grid-column: 1 / -1;
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 211, 140, 0.28);
    border-radius: 14px;
    color: #ffe3b4;
    background: rgba(255, 211, 140, 0.07);
}

.food-payment-preview > i { color: #ffd38c; }
.food-payment-preview span { display: grid; gap: 2px; }
.food-payment-preview strong { font-size: 0.82rem; }
.food-payment-preview small { color: var(--food-muted); font-size: 0.7rem; }

.food-price-summary { display: grid; gap: 9px; }
.food-price-summary > div { display: flex; justify-content: space-between; gap: 18px; color: var(--food-muted); }
.food-price-summary strong { color: var(--food-text); }
.food-price-summary .food-price-total { padding-top: 10px; border-top: 1px solid var(--food-line); color: var(--food-text); font-size: 1rem; }

.food-checkout-footer {
    display: grid;
    grid-template-columns: minmax(120px, auto) minmax(220px, 1fr);
    gap: 16px;
    padding: 15px 22px;
    border-top: 1px solid var(--food-line);
    background: rgba(16, 16, 16, 0.98);
}

.food-checkout-footer-total { display: grid; align-content: center; }
.food-checkout-footer-total span { color: var(--food-muted); font-size: 0.7rem; }
.food-checkout-footer-total strong { font-size: 1rem; }

@media (max-width: 1199.98px) {
    .food-menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
    .food-order-shell { padding-bottom: calc(var(--food-bottom-nav-clearance) + 96px); }
    .food-layout { grid-template-columns: 1fr; }
    .food-menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .food-mobile-cart-bar {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: var(--food-bottom-nav-clearance);
        z-index: 1040;
        min-height: 58px;
        display: grid;
        grid-template-columns: 34px 1fr auto 16px;
        align-items: center;
        gap: 10px;
        padding: 8px 14px 8px 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 18px;
        color: #17100d;
        background: linear-gradient(135deg, var(--food-orange), #ff874e);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
        text-align: left;
    }

    .food-mobile-cart-count {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 11px;
        color: #fff;
        background: rgba(0, 0, 0, 0.72);
        font-weight: 750;
    }

    .food-mobile-cart-label { font-weight: 750; }
    .food-mobile-cart-bar strong { font-size: 0.86rem; }
}

@media (max-width: 767.98px) {
    .food-hero { min-height: 238px; }
    .food-hero-content { align-items: flex-end; gap: 14px; padding: 45px 18px 27px; }
    .food-outlet-mark { width: 58px; height: 58px; flex-basis: 58px; border-radius: 18px; font-size: 21px; }
    .food-hero h1 { font-size: 2rem; line-height: 1.04; }
    .food-hero-lead { margin: 9px 0 13px; font-size: 0.88rem; }
    .food-service-facts { gap: 6px; }
    .food-service-facts span { min-height: 30px; padding: 5px 9px; font-size: 0.7rem; }

    .food-discovery { padding-top: 10px; }
    .food-discovery .container,
    .food-menu-section { padding-left: 14px; padding-right: 14px; }
    .food-search { min-height: 46px; }
    .food-category-strip { margin-left: -14px; margin-right: -14px; padding-left: 14px; padding-right: 14px; }
    .food-category-chip { min-height: 36px; padding: 7px 12px; font-size: 0.78rem; }
    .food-menu-section { padding-top: 24px; }
    .food-section-heading { margin-bottom: 14px; }
    .food-section-heading h2 { font-size: 1.28rem; }

    .food-menu-grid { grid-template-columns: 1fr; gap: 11px; }
    .food-menu-card { grid-template-columns: 112px minmax(0, 1fr); min-height: 138px; border-radius: 18px; }
    .food-menu-card:hover { transform: none; }
    .food-menu-card-body { gap: 9px; padding: 13px; }
    .food-menu-copy h3 { font-size: 0.94rem; }
    .food-menu-copy p { font-size: 0.74rem; }
    .food-menu-card-footer { align-items: center; }
    .food-stepper { grid-template-columns: 38px 28px 38px; }
    .food-stepper button { width: 38px; height: 40px; }

    .food-cart-sheet { --bs-offcanvas-height: 88vh; }
    .food-sheet-body { padding-bottom: 14px; }

    .food-checkout-modal .modal-content { height: 100%; border: 0; border-radius: 0; }
    .food-checkout-header { padding: calc(14px + env(safe-area-inset-top, 0px)) 16px 13px; }
    .food-checkout-body { padding: 15px 14px 22px; }
    .food-checkout-section { padding: 15px; border-radius: 16px; }
    .food-field-grid { grid-template-columns: 1fr; gap: 0; }
    .food-choice-group { grid-template-columns: 1fr; }
    .food-choice-card > span { min-height: 66px; }
    .food-checkout-footer {
        grid-template-columns: minmax(88px, auto) minmax(0, 1fr);
        gap: 12px;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    }
    .food-checkout-footer .food-primary-button { min-width: 0; }
}

@media (max-width: 420px) {
    .food-hero-content { align-items: flex-start; flex-direction: column; }
    .food-outlet-mark { width: 50px; height: 50px; flex-basis: 50px; }
    .food-service-facts span:nth-child(2) { display: none; }
    .food-menu-card { grid-template-columns: 104px minmax(0, 1fr); }
    .food-menu-card-body { padding: 12px; }
    .food-menu-copy p { -webkit-line-clamp: 2; }
    .food-price strong { font-size: 0.86rem; }
    .food-stepper { grid-template-columns: 34px 26px 34px; }
    .food-stepper button { width: 34px; }
}

@media (prefers-reduced-motion: reduce) {
    .food-menu-card { transition: none; }
}

.food-status-container {
    max-width: 980px;
    padding-top: 52px;
    padding-bottom: 40px;
}

.food-status-header { margin-bottom: 24px; }

.food-status-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
    color: var(--food-muted);
    text-decoration: none;
    font-size: 0.84rem;
}

.food-status-back:hover { color: var(--food-orange); }

.food-status-header h1 {
    margin: 0;
    color: var(--food-text);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 750;
    letter-spacing: -0.045em;
}

.food-status-reference { margin: 7px 0 0; color: var(--food-muted); font-family: monospace; }

.food-status-card {
    padding: 24px;
    border: 1px solid var(--food-line);
    border-radius: 26px;
    background: var(--food-panel);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.food-status-message {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(90, 209, 154, 0.1);
}

.food-status-message > i { color: var(--food-green); font-size: 1.35rem; }
.food-status-message div { display: grid; }
.food-status-message span { color: var(--food-muted); font-size: 0.78rem; }
.food-status-message.is-payment { background: rgba(255, 107, 53, 0.1); }
.food-status-message.is-payment > i { color: var(--food-orange); }
.food-status-message.is-cancelled { background: rgba(226, 105, 95, 0.12); }
.food-status-message.is-cancelled > i { color: #e2695f; }

.food-status-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.food-status-progress li {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 8px;
    color: #6f6b68;
    font-size: 0.72rem;
    text-align: center;
}

.food-status-progress li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 19px;
    left: calc(50% + 23px);
    right: calc(-50% + 23px);
    height: 2px;
    background: #32302e;
}

.food-status-progress li.is-complete:not(:last-child)::after { background: var(--food-orange); }

.food-status-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #77716d;
    background: #272523;
}

.food-status-progress .is-complete { color: #d8d4d0; }
.food-status-progress .is-complete .food-status-icon { color: #111; background: var(--food-orange); }
.food-status-progress .is-current .food-status-icon { box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.13); }

.food-payment-action { margin: 0 0 22px; text-decoration: none; }

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

.food-status-grid .food-checkout-section { margin-bottom: 0; }
.food-status-grid h2 { margin: 0 0 15px; font-size: 1rem; }

.food-status-item,
.food-status-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--food-line);
}

.food-status-item div { display: grid; }
.food-status-item span { color: var(--food-muted); font-size: 0.74rem; }
.food-status-total { padding-top: 14px; border-bottom: 0; }

.food-status-details { display: grid; gap: 10px; margin: 0; }
.food-status-details div { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 12px; }
.food-status-details dt { color: var(--food-muted); font-size: 0.74rem; font-weight: 500; }
.food-status-details dd { margin: 0; color: var(--food-text); font-size: 0.82rem; overflow-wrap: anywhere; }

.food-status-notes { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--food-line); }
.food-status-notes p { margin: 4px 0 0; color: var(--food-muted); }

.food-status-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.food-status-actions a { text-decoration: none; }

.food-status-secondary {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--food-line);
    border-radius: 15px;
    color: var(--food-text);
}

@media (max-width: 767.98px) {
    .food-image-modal .modal-dialog {
        width: auto;
        margin: 12px;
    }

    .food-image-modal .modal-content { border-radius: 20px; }
    .food-image-stage { min-height: 260px; }
    .food-image-stage img { max-height: 68vh; }
    .food-image-caption { padding: 14px 16px 16px; }

    .food-status-container { padding: 28px 14px calc(var(--food-bottom-nav-clearance) + 40px); }
    .food-status-back { margin-bottom: 24px; }
    .food-status-card { padding: 15px; border-radius: 20px; }
    .food-status-grid { grid-template-columns: 1fr; }
    .food-status-progress li { font-size: 0.64rem; }
    .food-status-icon { width: 34px; height: 34px; }
    .food-status-progress li:not(:last-child)::after { top: 16px; left: calc(50% + 19px); right: calc(-50% + 19px); }
    .food-status-actions { grid-template-columns: 1fr; }
}
