@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

.deliruta-brand-mark {
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff, #f1ece2);
    border: 1px solid rgba(137, 96, 12, 0.14);
    box-shadow: 0 10px 24px rgba(53, 34, 0, 0.12);
    color: #6b4cf6;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: 1;
    font-family: "Segoe UI", Arial, sans-serif;
}

.geo-map-card {
    display: grid;
    gap: .75rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(216, 178, 59, 0.18);
}

.geo-map-card--empty {
    color: var(--dr-muted);
}

.geo-map-card__head {
    display: grid;
    gap: .2rem;
}

.geo-map-card__head strong {
    font-size: 1rem;
    color: var(--dr-text);
}

.geo-map-card__head span {
    color: var(--dr-muted);
    font-size: .92rem;
}

.geo-map-card__frame-wrap {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(216, 178, 59, 0.16);
    background: #f3efe8;
}

.geo-map-card__frame {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

.geo-map-card__interactive {
    width: 100%;
    height: 260px;
    min-height: 260px;
}

.geo-map-card__interactive .leaflet-control-attribution {
    font-size: .68rem;
}

.route-map-card__frame {
    height: 300px;
}

.route-map-card__legend {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1.2rem;
    padding-top: .8rem;
    color: var(--dr-muted);
    font-size: .85rem;
}

.route-map-card__legend span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.route-map-card__marker {
    width: 1.35rem;
    height: 1.35rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: .68rem;
    font-style: normal;
    font-weight: 800;
}

.route-map-card__marker--origin {
    background: #d7ae22;
}

.route-map-card__marker--destination {
    background: #171210;
}

.deliruta-route-marker {
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
}

.deliruta-route-marker span {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 0;
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .24);
    transform: rotate(-45deg);
}

.deliruta-route-marker span::first-letter {
    transform: rotate(45deg);
}

.deliruta-route-marker--origin span {
    background: #d7ae22;
}

.deliruta-route-marker--destination span {
    background: #171210;
}

.deliruta-map-marker {
    background: transparent;
    border: 0;
}

.deliruta-map-marker__pin {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    position: relative;
    border-radius: 50% 50% 50% 0;
    background: #d8b23b;
    border: 3px solid #fff;
    box-shadow: 0 8px 22px rgba(40, 30, 12, .28);
    transform: rotate(-45deg);
}

.deliruta-map-marker__pin::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 16px;
    height: 10px;
    border-radius: 999px;
    background: rgba(40, 30, 12, .18);
    filter: blur(1px);
    transform: rotate(45deg);
}

.deliruta-map-marker__pin span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 2px rgba(120, 90, 16, .25);
}

.geo-map-card__hint {
    color: var(--dr-muted);
    font-size: .86rem;
}

.geo-map-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .85rem;
    color: var(--dr-muted);
}

.geo-map-card__footer a {
    color: #8d6a10;
    font-weight: 700;
    text-decoration: none;
}

.customer-signup__location-actions {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-wrap: wrap;
}

.customer-signup__location-status {
    color: #2c7c4d;
    font-weight: 700;
}

.customer-signup__location-error {
    color: #b54437;
    display: block;
    margin-top: .45rem;
}

.customer-checkout__new-address {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(216, 178, 59, 0.18);
}

.customer-checkout__address-form {
    display: grid;
    gap: .85rem;
}

.customer-checkout__address-form label {
    display: grid;
    gap: .35rem;
    color: var(--dr-muted);
    font-weight: 700;
}

.customer-checkout__new-address-actions {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    flex-wrap: wrap;
}

:root {
    --dr-bg: #f5f3ef;
    --dr-surface: #ffffff;
    --dr-surface-soft: #f0efeb;
    --dr-text: #1f1a14;
    --dr-muted: #766b5c;
    --dr-gold: #d8b23b;
    --dr-gold-deep: #c8a01e;
    --dr-line: #e6dfd3;
    --dr-shadow: 0 24px 60px rgba(76, 58, 28, 0.08);
}

html, body {
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at top, rgba(216, 178, 59, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(73, 59, 31, 0.08), transparent 26%),
        var(--dr-bg);
    color: var(--dr-text);
}

a, .btn-link {
    color: #8d6a10;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(216, 178, 59, .35);
}

.app-shell {
    min-height: calc(100vh - 58px);
}

.app-shell-auth {
    min-height: 100vh;
}

h1:focus {
    outline: none;
}

.validation-message {
    color: #b32121;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "Ocurrio un error.";
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.hero {
    min-height: 520px;
    background:
        linear-gradient(90deg, rgba(10, 31, 20, .88), rgba(10, 31, 20, .58)),
        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}

.home-screen {
    min-height: calc(100vh - 58px);
    background:
        linear-gradient(180deg, rgba(9, 24, 18, 0.12), rgba(245, 243, 239, 0.96) 46%, rgba(245, 243, 239, 1) 100%),
        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1800&q=80") center top / cover fixed;
}

.home-screen__band {
    position: relative;
    z-index: 1;
}

.home-screen .metric,
.home-screen__info {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--dr-shadow);
}

.home-screen__info {
    height: 100%;
    padding: 1.35rem 1.4rem;
    border-radius: 16px;
}

/* Orden colaborativa */
.collaborative-order {
    min-height: 100vh;
    background: #fbf8f1;
    color: #181510;
    padding: 28px 22px 80px;
}

.collaborative-order__shell {
    width: min(1480px, 100%);
    margin: 0 auto;
}

.collaborative-order__loading,
.collaborative-order__state,
.collaborative-order__join-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.collaborative-order__state h1,
.collaborative-order__join-card h1,
.collaborative-order__heading h1 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
}

.collaborative-order__join-card {
    width: min(620px, 100%);
    min-height: 0;
    margin: 9vh auto;
    padding: 44px;
    border: 1px solid #ead8aa;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(83, 61, 9, .1);
}

.collaborative-order__join-card p { color: #6d665c; font-size: 1.05rem; }
.collaborative-order__eyebrow { color: #a66f00; font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.collaborative-order__join-field { width: 100%; text-align: left; font-weight: 700; }
.collaborative-order__join-field span { display: block; margin-bottom: 8px; }
.collaborative-order__join-field input {
    width: 100%; padding: 15px 17px; border: 1px solid #dbcda9; border-radius: 14px;
    background: #fffdf8; color: #181510; font: inherit; box-sizing: border-box;
}

.collaborative-order__primary,
.collaborative-order__checkout {
    border: 0; border-radius: 14px; background: #dda916; color: #17130a;
    padding: 15px 22px; font: inherit; font-weight: 800; text-decoration: none; cursor: pointer;
}
.collaborative-order__primary:disabled,
.collaborative-order__checkout:disabled { opacity: .5; cursor: not-allowed; }

.collaborative-order__topbar,
.collaborative-order__heading {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.collaborative-order__topbar { padding: 4px 0 38px; }
.collaborative-order__topbar a { color: inherit; text-decoration: none; font-weight: 700; }
.collaborative-order__status { padding: 10px 16px; border: 1px solid #d9ccb0; border-radius: 999px; background: #fff; }
.collaborative-order__status.is-open { color: #07825c; }
.collaborative-order__status.is-locked { color: #916607; }
.collaborative-order__heading { padding-bottom: 30px; border-bottom: 1px solid #e8dcc2; }
.collaborative-order__heading p { margin: 10px 0 0; color: #71695f; font-size: 1.12rem; }

.collaborative-order__avatars { display: flex; align-items: center; padding: 12px 16px; border: 1px solid #e4d6b8; border-radius: 16px; background: #fff; }
.collaborative-order__avatars span { width: 38px; height: 38px; display: grid; place-items: center; margin-left: -7px; border: 2px solid #fff; border-radius: 50%; background: #7851e8; color: #fff; font-weight: 800; }
.collaborative-order__avatars span:first-child { margin-left: 0; background: #d9a313; }
.collaborative-order__avatars span:nth-child(2) { background: #2767dc; }
.collaborative-order__avatars strong { margin-left: 12px; white-space: nowrap; }

.collaborative-order__invite {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 38px 0;
    padding: 26px; border: 1px solid #e1c77d; border-radius: 22px; background: #fffaf0;
}
.collaborative-order__invite h2 { margin: 0 0 6px; font-size: 1.15rem; }
.collaborative-order__invite p { margin: 0 0 14px; color: #736a5f; }
.collaborative-order__invite code { display: inline-block; padding: 7px 12px; border: 1px solid #e0d2b6; border-radius: 8px; background: #fff; color: #59430c; }
.collaborative-order__invite-actions { display: flex; gap: 12px; }
.collaborative-order__invite-actions button { padding: 13px 18px; border: 1px solid #d9c79f; border-radius: 13px; background: #fff; font: inherit; font-weight: 700; cursor: pointer; white-space: nowrap; }
.collaborative-order__invite-actions .is-whatsapp { background: #16bd64; border-color: #16bd64; color: #fff; }

.collaborative-order__alert { margin: 18px 0; padding: 14px 18px; border: 1px solid #f0b8ad; border-radius: 12px; background: #fff2ef; color: #a63120; }
.collaborative-order__layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 34px; align-items: start; }
.collaborative-order__participants { display: grid; gap: 24px; }
.collaborative-order__participant { overflow: hidden; border: 1px solid #e7d9bd; border-radius: 22px; background: #fff; box-shadow: 0 12px 32px rgba(58, 46, 18, .04); }
.collaborative-order__participant.is-current { border-color: #d4a51e; }
.collaborative-order__participant > header { display: flex; align-items: center; justify-content: space-between; padding: 20px 26px; background: #fcf8ef; border-bottom: 1px solid #eee2c9; }
.collaborative-order__person { display: flex; align-items: center; gap: 14px; }
.collaborative-order__avatar { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: #2f69dd; color: #fff; font-weight: 800; }
.collaborative-order__person h2 { margin: 0; font-size: 1.08rem; }
.collaborative-order__person p { margin: 5px 0 0; color: #81786b; }
.collaborative-order__participant-total { text-align: right; }
.collaborative-order__participant-total span { display: block; color: #766c5f; }
.collaborative-order__participant-total strong { font-size: 1.25rem; }
.collaborative-order__empty-person { padding: 26px; color: #867d71; }

.collaborative-order__comment-editor,
.collaborative-order__participant-comment {
    margin: 18px 26px 0;
    padding: 16px 18px;
    border: 1px solid #ead9ae;
    border-radius: 14px;
    background: #fffaf0;
}
.collaborative-order__comment-editor label { display: block; margin-bottom: 9px; font-weight: 800; }
.collaborative-order__comment-editor label span { color: #81786b; font-size: .84rem; font-weight: 500; }
.collaborative-order__comment-editor textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 78px;
    resize: vertical;
    padding: 12px 14px;
    border: 1px solid #d9c79f;
    border-radius: 11px;
    background: #fff;
    color: #171210;
    font: inherit;
}
.collaborative-order__comment-editor textarea:focus { outline: 2px solid #e0ae20; outline-offset: 1px; }
.collaborative-order__comment-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 10px; }
.collaborative-order__comment-actions small { margin-right: auto; color: #81786b; }
.collaborative-order__comment-actions span { color: #237a45; font-size: .86rem; font-weight: 700; }
.collaborative-order__comment-actions button {
    padding: 9px 14px;
    border: 1px solid #ba8900;
    border-radius: 9px;
    background: #e4b522;
    color: #171210;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.collaborative-order__comment-actions button:disabled { cursor: wait; opacity: .65; }
.collaborative-order__participant-comment strong { color: #765500; font-size: .87rem; }
.collaborative-order__participant-comment p { margin: 6px 0 0; color: #4f493f; white-space: pre-wrap; }

.collaborative-order__item { display: grid; grid-template-columns: 92px minmax(0, 1fr) auto auto; align-items: center; gap: 22px; margin: 0 26px; padding: 24px 0; border-bottom: 1px solid #eee7d8; }
.collaborative-order__item:last-child { border-bottom: 0; }
.collaborative-order__item-image { width: 92px; height: 78px; display: grid; place-items: center; border-radius: 14px; background: #f2ead8 center/cover no-repeat; color: #a3760c; font-size: 1.5rem; font-weight: 800; }
.collaborative-order__item-copy > span { color: #b77a00; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.collaborative-order__item-copy h3 { margin: 5px 0; font-size: 1.12rem; }
.collaborative-order__item-copy p,
.collaborative-order__item-copy small { margin: 0; color: #7c7265; }
.collaborative-order__counter { display: flex; align-items: center; gap: 16px; padding: 7px; border: 1px solid #deca98; border-radius: 999px; }
.collaborative-order__counter button { width: 30px; height: 30px; border: 0; border-radius: 50%; background: transparent; font-size: 1.15rem; cursor: pointer; }
.collaborative-order__quantity { padding: 9px 14px; border-radius: 999px; background: #f2f0ec; color: #6f685f; white-space: nowrap; }
.collaborative-order__line-total { min-width: 62px; text-align: right; font-size: 1.2rem; }
.collaborative-order__add-more { padding: 16px; border: 1px dashed #cf9e18; border-radius: 14px; color: #936b00; text-align: center; font-weight: 800; text-decoration: none; }
.collaborative-order__add-more--primary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin: 14px 16px 0;
    padding: 15px 18px;
    border: 1px solid #c99500;
    border-radius: 14px;
    background: linear-gradient(135deg, #efc432, #d9a711);
    box-shadow: 0 9px 22px rgba(179, 128, 0, .22);
    color: #171210;
    text-align: left;
    transition: transform .15s ease, box-shadow .15s ease;
}
.collaborative-order__add-more--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(179, 128, 0, .3);
}
.collaborative-order__add-more--primary > span:first-child {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #171210;
    color: #fff;
    font-size: 1.35rem;
}
.collaborative-order__add-more--primary > span:nth-child(2) { display: grid; gap: 2px; }
.collaborative-order__add-more--primary strong { font-size: 1rem; }
.collaborative-order__add-more--primary small { color: rgba(23, 18, 16, .72); font-weight: 650; }
.collaborative-order__add-more--primary > span:last-child { font-size: 1.3rem; }

.collaborative-order__summary { position: sticky; top: 20px; padding: 28px; border: 1px solid #e4d5b5; border-radius: 22px; background: #fff; }
.collaborative-order__summary h2 { margin: 0 0 18px; font-size: 1.45rem; }
.collaborative-order__breakdown { padding-bottom: 14px; border-bottom: 1px solid #e9dfcb; }
.collaborative-order__breakdown div,
.collaborative-order__summary-row,
.collaborative-order__grand-total { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; }
.collaborative-order__summary-row { padding-top: 15px; color: #5f584f; }
.collaborative-order__grand-total { align-items: baseline; margin-top: 12px; padding: 18px 0; border-top: 1px solid #e9dfcb; font-weight: 800; }
.collaborative-order__grand-total strong { font-size: 2.25rem; }
.collaborative-order__lock-note,
.collaborative-order__guest-note { padding: 14px; border-radius: 12px; background: #faf5e9; color: #6f6557; font-size: .9rem; }
.collaborative-order__checkout { width: 100%; margin-top: 10px; }

.customer-store__share-button--group {
    border-style: solid;
    background: #17130c;
    color: #fff4d5;
}

.customer-store__group-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 14px 0 4px;
    padding: 13px 16px;
    border: 1px solid #d9ae38;
    border-radius: 13px;
    background: #fff8df;
    color: #6f5000;
    text-decoration: none;
}

.customer-store__group-banner span:last-child { font-weight: 800; white-space: nowrap; }

.customer-confirm__participant,
.restaurant-order-detail__participant {
    display: block;
    margin-bottom: 4px;
    color: #a06f00;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.customer-order-person {
    overflow: hidden;
    border: 1px solid #eadfca;
    border-radius: 16px;
    background: #fffdf8;
}

.customer-order-person + .customer-order-person {
    margin-top: .8rem;
}

.customer-order-person__head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .7rem;
    padding: .75rem .85rem;
    background: #f8f1df;
}

.customer-order-person__head > div {
    display: grid;
    gap: .08rem;
}

.customer-order-person__head > div strong,
.customer-order-person__head > strong {
    color: #171210;
}

.customer-order-person__head small {
    color: #776d61;
    font-size: .75rem;
}

.customer-order-person__avatar,
.restaurant-order-detail__participant-avatar {
    display: inline-grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border-radius: 50%;
    background: #ddb534;
    color: #171210;
    font-size: .8rem;
    font-weight: 900;
}

.customer-order-person__lines {
    display: grid;
    gap: .55rem;
    padding: .35rem .85rem .55rem;
}

.customer-order-person--tracking .customer-order-person__lines {
    gap: .75rem;
    padding-top: .75rem;
}

@media (max-width: 900px) {
    .collaborative-order { padding: 18px 14px 90px; }
    .collaborative-order__topbar,
    .collaborative-order__heading,
    .collaborative-order__invite { align-items: flex-start; flex-direction: column; }
    .collaborative-order__avatars { width: 100%; box-sizing: border-box; }
    .collaborative-order__invite-actions { width: 100%; flex-direction: column; }
    .collaborative-order__invite-actions button { width: 100%; }
    .collaborative-order__invite code { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
    .collaborative-order__layout { grid-template-columns: 1fr; }
    .collaborative-order__summary { position: static; }
    .collaborative-order__item { grid-template-columns: 64px minmax(0, 1fr) auto; gap: 12px; margin: 0 16px; }
    .collaborative-order__item-image { width: 64px; height: 64px; }
    .collaborative-order__counter,
    .collaborative-order__quantity { grid-column: 2; justify-self: start; }
    .collaborative-order__line-total { grid-column: 3; grid-row: 1 / span 2; }
    .collaborative-order__participant > header { padding: 18px 16px; }
    .collaborative-order__comment-editor,
    .collaborative-order__participant-comment { margin: 14px 16px 0; }
    .collaborative-order__comment-actions { align-items: stretch; flex-wrap: wrap; }
    .collaborative-order__join-card { padding: 28px 20px; }
    .customer-store__group-banner { align-items: flex-start; flex-direction: column; }
}

.home-screen__search {
    width: min(100%, 660px);
    margin-top: 1.75rem;
    padding: .45rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .6rem;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 42px rgba(4, 18, 11, .28);
}

.home-screen__search-icon {
    padding-left: .7rem;
    font-size: 1.2rem;
}

.home-screen__search input {
    min-width: 0;
    min-height: 46px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #18251e;
    font-size: 1rem;
}

.home-screen__search button {
    min-height: 46px;
    padding: 0 1.35rem;
    border: 0;
    border-radius: 13px;
    background: #168a58;
    color: #fff;
    font-weight: 800;
}

.home-screen__search button:hover,
.home-screen__search button:focus-visible {
    background: #0f7046;
}

.home-screen__search-hint {
    margin: .7rem 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: .92rem;
}

@media (max-width: 575.98px) {
    .home-screen__search {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .home-screen__search button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

.section-band {
    padding: 3rem 0;
}

.metric {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    padding: 1rem;
}

.status-dot {
    width: .65rem;
    height: .65rem;
    border-radius: 50%;
    display: inline-block;
    background: #198754;
}

.order-step {
    min-width: 132px;
}

.menu-image {
    min-height: 148px;
    background: #e9ecef center/cover;
}

.login-screen {
    min-height: 100vh;
    padding: 2rem 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-browse-restaurants {
    width: fit-content;
    margin: 1.1rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    color: #6f5310;
    font-weight: 800;
    text-decoration: none;
}

.login-browse-restaurants:hover,
.login-browse-restaurants:focus-visible {
    color: #3f2f08;
    text-decoration: underline;
}

.login-surface {
    width: min(100%, 430px);
}

.login-brand-block {
    text-align: center;
    margin-bottom: 1.75rem;
}

.login-logo-tile {
    width: 164px;
    margin: 0 auto 1.1rem;
    padding: 1.15rem 1rem .85rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--dr-shadow);
    border: 1px solid rgba(216, 178, 59, 0.18);
}

.login-logo-symbol {
    width: 74px;
    height: 52px;
    margin: 0 auto .45rem;
    position: relative;
}

.login-logo-spark,
.login-logo-road,
.login-logo-arch {
    position: absolute;
    display: block;
}

.login-logo-spark {
    left: 2px;
    top: 22px;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--dr-gold), transparent);
    box-shadow: 0 -10px 0 -1px rgba(216, 178, 59, .55);
}

.login-logo-road {
    right: 10px;
    top: 9px;
    width: 22px;
    height: 32px;
    border-radius: 8px 8px 4px 4px;
    background: linear-gradient(180deg, #151515, #323232);
    transform: skew(-10deg);
}

.login-logo-road::after {
    content: "";
    position: absolute;
    inset: 4px 9px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f6edd7, #d8b23b);
}

.login-logo-arch {
    left: 26px;
    top: 0;
    width: 40px;
    height: 40px;
    border: 3px solid var(--dr-gold);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-18deg);
}

.login-logo-word {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: -.02em;
}

.login-logo-word span {
    color: var(--dr-gold-deep);
}

.login-logo-caption {
    margin-top: .2rem;
    font-size: .47rem;
    letter-spacing: .22em;
    color: var(--dr-muted);
}

.login-tagline {
    margin: 0;
    font-size: .85rem;
    letter-spacing: .34em;
    color: #7f705f;
}

.login-panel {
    padding: 1.2rem 1.15rem 1.4rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--dr-shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.login-role-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
    padding: .45rem;
    border-radius: 22px;
    background: var(--dr-surface-soft);
}

.login-role-chip {
    padding: .9rem .35rem;
    border-radius: 16px;
    text-decoration: none;
    color: #5c5044;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.login-role-chip:hover {
    transform: translateY(-1px);
    color: #382f27;
}

.login-role-chip.is-active {
    background: var(--dr-surface);
    color: #111;
    box-shadow: 0 8px 22px rgba(83, 70, 44, 0.12);
}

.login-role-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto .35rem;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: .92rem;
    font-weight: 800;
    background: linear-gradient(180deg, #fff4d0, #efd888);
    color: #7a5600;
}

.login-role-label {
    display: block;
    font-size: .96rem;
    font-weight: 700;
}

.login-message {
    margin: 1.45rem 0 1.55rem;
    text-align: center;
    color: #756958;
    font-size: 1rem;
}

.login-alert {
    margin-bottom: 1.2rem;
    border-radius: 16px;
    font-size: .92rem;
}

.login-form {
    display: block;
}

.login-label {
    margin-bottom: .75rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: #0f0d0a;
}

.login-input {
    min-height: 58px;
    padding: 1rem .95rem;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(144, 125, 96, .18);
    font-size: 1rem;
}

.login-input::placeholder {
    color: #9e937f;
}

.login-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.login-check {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .95rem;
    color: #675b4d;
}

.login-check .form-check-input {
    margin: 0;
}

.login-inline-link {
    font-size: .94rem;
    color: #7a6440;
    text-decoration-thickness: 1px;
}

.login-submit,
.login-google {
    width: 100%;
    min-height: 56px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
}

.login-submit {
    border: 0;
    background: linear-gradient(180deg, #e0ba41, #d8ad2f);
    color: #17120a;
}

.login-submit:hover {
    background: linear-gradient(180deg, #e5c14c, #d4aa28);
}

.login-divider {
    margin: 1.2rem 0;
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #b3a692;
    font-size: .82rem;
}

.login-divider span {
    flex: 1;
    height: 1px;
    background: var(--dr-line);
}

.login-divider strong {
    font-weight: 700;
    color: #c3b8a8;
}

.login-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    border: 1px solid rgba(150, 133, 105, 0.25);
    background: rgba(255, 255, 255, 0.9);
    color: #121212;
}

.login-google:disabled {
    opacity: 1;
}

.login-google-glyph {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #faf3df;
    color: #6d4e00;
    font-weight: 800;
}

.login-footer {
    margin: 1rem 0 0;
    text-align: center;
    color: #74695b;
}

.login-footer a {
    font-weight: 800;
    color: #b98f17;
}

.auth-placeholder {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-placeholder-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--dr-shadow);
}

#blazor-error-ui {
    background: #fff3cd;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, .2);
    display: none;
    left: 0;
    padding: .75rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: .75rem;
    top: .5rem;
}

@media (max-width: 575.98px) {
    .login-screen {
        padding: 1.25rem .9rem 2rem;
    }

    .login-panel {
        padding: 1rem .95rem 1.2rem;
        border-radius: 24px;
    }

    .login-tagline {
        font-size: .77rem;
        letter-spacing: .24em;
    }

    .login-form-row {
        flex-direction: column;
        align-items: flex-start;
        gap: .7rem;
    }
}

.restaurant-console {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 232px minmax(0, 1fr);
    background: #111111;
    color: #f7f1e5;
    transition: grid-template-columns .24s ease;
}

.restaurant-console.is-sidebar-collapsed {
    grid-template-columns: 0 minmax(0, 1fr);
}

.restaurant-console__fallback {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: #111111;
}

.restaurant-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 1.25rem 1rem;
    background: #0b0b0b;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: hidden;
    transition: transform .24s ease, opacity .18s ease;
}

.restaurant-console.is-sidebar-collapsed .restaurant-sidebar {
    opacity: 0;
    pointer-events: none;
}

.restaurant-sidebar-toggle {
    position: fixed;
    z-index: 45;
    top: 1rem;
    left: 244px;
    min-height: 38px;
    padding: 0 .8rem;
    border: 1px solid rgba(221, 181, 52, 0.42);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #171717;
    color: #f3c933;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
    transition: left .24s ease, background .18s ease;
}

.restaurant-sidebar-toggle:hover {
    background: #242018;
}

.restaurant-console.is-sidebar-collapsed .restaurant-sidebar-toggle--desktop {
    left: 1rem;
}

.restaurant-sidebar-toggle--mobile,
.restaurant-sidebar-overlay,
.restaurant-sidebar__mobile-close {
    display: none;
}

.restaurant-sidebar > div,
.restaurant-sidebar__footer,
.restaurant-plan,
.restaurant-account {
    min-width: 0;
}

.restaurant-brand {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .15rem .1rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-brand__logo {
    width: 42px;
    height: 42px;
    font-size: .98rem;
}

.restaurant-brand__name {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.6rem;
    line-height: 1;
}

.restaurant-brand__role {
    margin-top: .18rem;
    color: #aa9f8d;
    font-size: .88rem;
}

.restaurant-nav {
    margin-top: 1rem;
    display: grid;
    gap: .45rem;
}

.restaurant-nav__item {
    width: 100%;
    padding: .85rem .95rem;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: #d7d0c2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    text-decoration: none;
    text-align: left;
}

.restaurant-nav__item:disabled {
    opacity: 1;
}

.restaurant-nav__item.is-active {
    background: #ddb534;
    color: #17130a;
}

.restaurant-nav__item.is-parent-active {
    background: rgba(221, 181, 52, 0.1);
    color: #edc747;
}

.restaurant-nav__item--submenu {
    width: calc(100% - 1.25rem);
    margin-top: -.35rem;
    margin-left: 1.25rem;
    padding: .62rem .8rem;
    border-left: 2px solid rgba(221, 181, 52, 0.35);
    border-radius: 0 12px 12px 0;
    color: #aaa18f;
    justify-content: flex-start;
    font-size: .82rem;
    line-height: 1.25;
}

.restaurant-nav__item--submenu::before {
    content: "\21B3";
    margin-right: .5rem;
    color: #ddb534;
    font-size: 1rem;
}

.restaurant-nav__item--submenu.is-active {
    background: rgba(221, 181, 52, 0.16);
    color: #f1cc53;
}

.restaurant-nav__badge {
    min-width: 1.8rem;
    height: 1.8rem;
    padding: 0 .45rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(23, 19, 10, 0.12);
    font-size: .82rem;
}

.restaurant-collaborators {
    display: grid;
    gap: 1.25rem;
}

.restaurant-collaborators__usage {
    padding: .7rem 1rem;
    border: 1px solid rgba(221, 181, 52, .45);
    border-radius: 999px;
    color: #e5bd3a;
    font-weight: 800;
}

.restaurant-collaborators__create,
.restaurant-collaborators__list {
    padding: 1.35rem;
    border: 1px solid #38342d;
    border-radius: 20px;
    background: #211f1b;
}

.restaurant-collaborators__create h2,
.restaurant-collaborators__list h2 {
    margin: .25rem 0 .4rem;
    color: #f7f1e7;
}

.restaurant-collaborators__create p,
.restaurant-collaborators__list-head small {
    color: #aaa18f;
}

.restaurant-collaborators__form {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}

.restaurant-collaborators__form label {
    display: grid;
    gap: .4rem;
    color: #c7bdab;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.restaurant-collaborators__form input,
.restaurant-collaborators__form select,
.restaurant-collaborators__controls select {
    min-height: 44px;
    padding: .65rem .75rem;
    border: 1px solid #464138;
    border-radius: 11px;
    background: #12110f;
    color: #f5efe5;
}

.restaurant-collaborators__form button {
    align-self: end;
    justify-self: start;
}

.restaurant-collaborators__limit-note {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(221, 181, 52, .35);
    border-radius: 12px;
    background: rgba(221, 181, 52, .08);
    color: #dfc774;
}

.restaurant-collaborators__list-head,
.restaurant-collaborators__card,
.restaurant-collaborators__identity,
.restaurant-collaborators__controls {
    display: flex;
    align-items: center;
}

.restaurant-collaborators__list-head,
.restaurant-collaborators__card {
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-collaborators__cards {
    margin-top: 1rem;
    display: grid;
    gap: .75rem;
}

.restaurant-collaborators__card {
    padding: 1rem;
    border: 1px solid #3c382f;
    border-radius: 14px;
    background: #181714;
}

.restaurant-collaborators__card.is-disabled {
    opacity: .58;
}

.restaurant-collaborators__identity,
.restaurant-collaborators__controls {
    gap: .75rem;
}

.restaurant-collaborators__identity > div {
    display: grid;
    gap: .2rem;
}

.restaurant-collaborators__identity span:not(.restaurant-collaborators__avatar) {
    color: #aaa18f;
    font-size: .86rem;
}

.restaurant-collaborators__avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(221, 181, 52, .17);
    color: #e5bd3a;
    font-weight: 900;
}

.restaurant-collaborators__revoke,
.restaurant-collaborators__restore {
    padding: .62rem .8rem;
    border-radius: 10px;
    background: transparent;
    font-weight: 800;
}

.restaurant-collaborators__revoke {
    border: 1px solid #87413f;
    color: #ef9994;
}

.restaurant-collaborators__restore {
    border: 1px solid #4f7858;
    color: #9bd3a7;
}

@media (max-width: 720px) {
    .restaurant-collaborators__form {
        grid-template-columns: 1fr;
    }

    .restaurant-collaborators__list-head,
    .restaurant-collaborators__card,
    .restaurant-collaborators__controls {
        align-items: stretch;
        flex-direction: column;
    }
}

.restaurant-sidebar__footer {
    display: grid;
    gap: 1rem;
    width: 100%;
}

.restaurant-push {
    display: grid;
    gap: 0.45rem;
}

.restaurant-push__button {
    width: 100%;
    border: 1px solid rgba(221, 181, 52, 0.75);
    border-radius: 0.65rem;
    padding: 0.65rem 0.8rem;
    color: #f8f4e8;
    background: rgba(221, 181, 52, 0.12);
    font-weight: 700;
}

.restaurant-push__button:disabled {
    opacity: 0.65;
}

.restaurant-push__message {
    color: #c9c4b7;
    font-size: 0.76rem;
    line-height: 1.35;
}

.restaurant-plan {
    width: 100%;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(221, 181, 52, 0.08);
    border: 1px solid rgba(221, 181, 52, 0.22);
    overflow: hidden;
}

.restaurant-plan__label {
    color: #ddb534;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.restaurant-plan__value {
    margin-top: .45rem;
    color: #f6f0e2;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.restaurant-plan__bar {
    height: 6px;
    margin: .9rem 0 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.restaurant-plan__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #e8c94f, #ddb534);
}

.restaurant-plan__button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    background: #ddb534;
    color: #17130a;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.restaurant-plan__status {
    margin: -.25rem 0 .8rem;
    font-size: .75rem;
    font-weight: 750;
    line-height: 1.35;
}

.restaurant-plan__status.is-active {
    color: #67da94;
}

.restaurant-plan__status.is-error {
    color: #ff9f88;
}

.restaurant-account {
    display: grid;
    gap: .18rem;
    color: #c3baaa;
    font-size: .92rem;
    overflow-wrap: anywhere;
}

.restaurant-account__name {
    color: #ffffff;
    font-weight: 800;
}

.restaurant-account__logout {
    width: auto;
    margin-top: .45rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #c8c0b3;
    text-decoration: underline;
}

.restaurant-main {
    padding: 2rem 2rem 2.5rem;
}

.restaurant-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.restaurant-header__title {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 2vw + 1.2rem, 3rem);
    color: #fff7e8;
}

.restaurant-header__subtitle {
    margin: .35rem 0 0;
    color: #bdb4a7;
    font-size: 1.05rem;
}

.restaurant-header__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.restaurant-ghost-button,
.restaurant-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1rem;
    border-radius: 14px;
    font-weight: 800;
    line-height: 1;
}

.restaurant-ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: #f1e8d9;
}

.restaurant-primary-button {
    border: 0;
    background: #ddb534;
    color: #17130a;
}

.restaurant-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.45rem;
}

.restaurant-stat-card {
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: #232220;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-stat-card__label {
    color: #97a2b5;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.restaurant-stat-card__value {
    margin-top: .55rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 1.4vw + 1.4rem, 2.8rem);
    color: #fff8eb;
}

.restaurant-stat-card__trend {
    margin-top: .2rem;
    font-weight: 700;
}

.restaurant-stat-card__trend.is-positive {
    color: #22a44f;
}

.restaurant-stat-card__trend.is-negative {
    color: #d45e4f;
}

.restaurant-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-bottom: 1.1rem;
}

.restaurant-subscription-page {
    min-height: 100vh;
    padding: clamp(1rem, 4vw, 3rem);
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 0, rgba(221, 181, 52, .13), transparent 36%),
        #101010;
    color: #f7f1e5;
}

.restaurant-subscription-card {
    width: min(100%, 760px);
    padding: clamp(1.2rem, 4vw, 2.5rem);
    border: 1px solid rgba(221, 181, 52, .25);
    border-radius: 28px;
    background: #22211f;
    box-shadow: 0 32px 90px rgba(0, 0, 0, .45);
}

.restaurant-subscription-back {
    color: #ddb534;
    font-weight: 800;
    text-decoration: none;
}

.restaurant-subscription-heading {
    margin: 2rem 0 1.5rem;
}

.restaurant-subscription-kicker {
    color: #ddb534;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.restaurant-subscription-heading h1 {
    margin: .5rem 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.2rem, 7vw, 4rem);
    line-height: 1;
}

.restaurant-subscription-heading p,
.restaurant-subscription-security {
    color: #bdb4a7;
}

.restaurant-subscription-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.restaurant-subscription-summary article {
    padding: 1rem;
    border-radius: 18px;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .07);
}

.restaurant-subscription-summary span,
.restaurant-subscription-summary strong {
    display: block;
}

.restaurant-subscription-summary span {
    color: #a9a094;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.restaurant-subscription-summary strong {
    margin-top: .35rem;
    font-size: 1.25rem;
}

.restaurant-subscription-summary .is-active {
    color: #55d589;
}

.restaurant-subscription-summary .is-inactive {
    color: #ef9b70;
}

.restaurant-subscription-alert {
    margin: 1rem 0;
    padding: .9rem 1rem;
    border-radius: 15px;
    border: 1px solid transparent;
    line-height: 1.5;
}

.restaurant-subscription-alert.is-success {
    color: #a8efc3;
    background: rgba(55, 166, 101, .13);
    border-color: rgba(85, 213, 137, .28);
}

.restaurant-subscription-alert.is-error {
    color: #ffc3b4;
    background: rgba(190, 65, 38, .14);
    border-color: rgba(239, 112, 81, .3);
}

.restaurant-subscription-alert.is-info {
    color: #d9cba5;
    background: rgba(221, 181, 52, .09);
    border-color: rgba(221, 181, 52, .22);
}

.restaurant-subscription-offer {
    margin: 1.25rem 0;
    padding: 1.25rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(221, 181, 52, .18), rgba(221, 181, 52, .05));
    border: 1px solid rgba(221, 181, 52, .24);
}

.restaurant-subscription-offer > div:first-child > * {
    display: block;
}

.restaurant-subscription-offer strong {
    margin: .2rem 0;
    color: #fff7e7;
    font-family: "Fraunces", Georgia, serif;
    font-size: 2.25rem;
}

.restaurant-subscription-offer small {
    color: #bdb4a7;
}

.restaurant-subscription-clip {
    display: flex;
    align-items: center;
    gap: .55rem;
    white-space: nowrap;
    font-weight: 800;
}

.restaurant-subscription-clip span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #7a55ff;
    color: #fff;
}

.restaurant-subscription-pay {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 16px;
    background: #ddb534;
    color: #17130a;
    font-size: 1.05rem;
    font-weight: 900;
}

.restaurant-subscription-pay:disabled {
    cursor: not-allowed;
    opacity: .5;
}

.restaurant-subscription-security {
    margin: .75rem 0 0;
    text-align: center;
    font-size: .78rem;
}

.restaurant-subscription-loading {
    min-height: 260px;
    display: grid;
    place-items: center;
    color: #c9c0b2;
}

@media (max-width: 575.98px) {
    .restaurant-subscription-page {
        padding: 0;
        place-items: stretch;
    }

    .restaurant-subscription-card {
        min-height: 100vh;
        border: 0;
        border-radius: 0;
    }

    .restaurant-subscription-summary {
        grid-template-columns: 1fr;
    }

    .restaurant-subscription-offer {
        align-items: flex-start;
        flex-direction: column;
    }
}

.restaurant-orders-period {
    display: grid;
    gap: .9rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid rgba(221, 181, 52, .2);
    border-radius: 18px;
    background: #1e1e1d;
}

.restaurant-orders-period__presets,
.restaurant-orders-period__navigation,
.restaurant-orders-period__custom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .65rem;
}

.restaurant-orders-period__preset {
    min-height: 38px;
    padding: 0 1rem;
    border: 1px solid #48443b;
    border-radius: 999px;
    background: #292826;
    color: #e8e0d5;
    font-weight: 800;
}

.restaurant-orders-period__preset.is-active {
    border-color: #e3ba31;
    background: #e3ba31;
    color: #17130a;
}

.restaurant-orders-period__controls {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .85rem 1.25rem;
}

.restaurant-orders-period__navigation strong {
    min-width: 210px;
    color: #f1e9dc;
    text-align: center;
    font-size: .95rem;
}

.restaurant-orders-period__custom label {
    display: grid;
    gap: .25rem;
    color: #bdb3a5;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.restaurant-orders-period__custom input {
    min-height: 40px;
    padding: 0 .7rem;
    border: 1px solid #48443b;
    border-radius: 11px;
    color: #f7f0e6;
    background: #141414;
    color-scheme: dark;
}

.restaurant-orders-period button:disabled {
    cursor: not-allowed;
    opacity: .5;
}

@media (max-width: 700px) {
    .restaurant-orders-period__presets {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .restaurant-orders-period__preset {
        justify-content: center;
    }

    .restaurant-orders-period__controls,
    .restaurant-orders-period__navigation,
    .restaurant-orders-period__custom {
        width: 100%;
    }

    .restaurant-orders-period__navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .restaurant-orders-period__navigation strong {
        grid-column: 1 / -1;
        grid-row: 1;
        min-width: 0;
    }

    .restaurant-orders-period__custom {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .restaurant-orders-period__custom input {
        width: 100%;
    }

    .restaurant-orders-period__custom > button {
        grid-column: 1 / -1;
    }
}

.restaurant-filter {
    min-height: 36px;
    padding: 0 1rem;
    border: 0;
    border-radius: 999px;
    background: #252525;
    color: #d8d0c4;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.restaurant-filter.is-active {
    background: #ddb534;
    color: #17130a;
}

.restaurant-filter--ghost {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.08);
}

.restaurant-filter--outline {
    border: 1px dashed rgba(221, 181, 52, 0.55);
    background: transparent;
    color: #ddb534;
}

.restaurant-menu-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.2rem;
}

.restaurant-menu-search {
    width: min(100%, 620px);
    min-height: 48px;
    margin-bottom: 1rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    border: 1px solid #343434;
    border-radius: 14px;
    background: #111;
    color: #a9a29a;
}

.restaurant-menu-search:focus-within {
    border-color: #ddb534;
    box-shadow: 0 0 0 3px rgba(221, 181, 52, .12);
}

.restaurant-menu-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
}

.restaurant-menu-search__icon {
    line-height: 1;
}

.restaurant-menu-empty {
    padding: 2rem;
    border: 1px dashed #3b3935;
    border-radius: 16px;
    color: #aaa29a;
    text-align: center;
}

.restaurant-import-feedback {
    margin: 0 0 1rem;
    padding: .9rem 1rem;
    border: 1px solid;
    border-radius: 14px;
    font-weight: 700;
}

.restaurant-import-feedback.is-success {
    border-color: rgba(52, 211, 153, .35);
    background: rgba(16, 185, 129, .12);
    color: #a7f3d0;
}

.restaurant-import-feedback.is-error {
    border-color: rgba(248, 113, 113, .4);
    background: rgba(239, 68, 68, .12);
    color: #fecaca;
}

.restaurant-import-feedback.is-warning {
    border-color: rgba(250, 204, 21, .4);
    background: rgba(234, 179, 8, .12);
    color: #fef08a;
}

.restaurant-menu-import {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(221, 181, 52, .22);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(221, 181, 52, .1), rgba(255, 255, 255, .025));
}

.restaurant-menu-import__copy h2 {
    margin: .2rem 0 .35rem;
    color: #fff7e8;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.45rem;
}

.restaurant-menu-import__copy p {
    margin: 0;
    color: #d2c9bb;
}

.restaurant-menu-import__copy small {
    display: block;
    margin-top: .55rem;
    color: #a99f91;
}

.restaurant-menu-import__eyebrow {
    color: #ddb534;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.restaurant-menu-import__form {
    display: grid;
    gap: .65rem;
}

.restaurant-menu-import__form label {
    color: #f0e6d6;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.restaurant-menu-import__form input[type="file"] {
    width: 100%;
    min-height: 44px;
    padding: .55rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: #1b1a18;
    color: #d8d0c4;
}

.restaurant-menu-import__form input[type="file"]::file-selector-button {
    margin-right: .7rem;
    padding: .45rem .7rem;
    border: 0;
    border-radius: 8px;
    background: #39352d;
    color: #fff7e8;
    font-weight: 700;
    cursor: pointer;
}

.restaurant-menu-import__form .restaurant-primary-button {
    width: 100%;
    cursor: pointer;
}

.restaurant-processing-overlay {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1.5rem;
    background: rgba(10, 10, 10, .86);
    color: #f8f3e8;
    text-align: center;
    backdrop-filter: blur(3px);
}

.restaurant-processing-overlay.is-visible,
.restaurant-menu-import__form.is-processing .restaurant-processing-overlay {
    display: flex;
}

.restaurant-processing-overlay strong {
    color: #ddb534;
    font-size: 1.25rem;
}

.restaurant-processing-overlay > span:last-child {
    color: #d8d0c4;
}

.restaurant-processing-overlay__spinner {
    width: 46px;
    height: 46px;
    border: 4px solid rgba(221, 181, 52, .25);
    border-top-color: #ddb534;
    border-radius: 50%;
    animation: restaurant-processing-spin .8s linear infinite;
}

@keyframes restaurant-processing-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .restaurant-processing-overlay__spinner {
        animation-duration: 1.8s;
    }
}

.restaurant-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.restaurant-menu-card {
    border-radius: 18px;
    overflow: hidden;
    background: #232220;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-menu-card.is-disabled .restaurant-menu-card__image {
    filter: grayscale(.7);
    opacity: .65;
}

.restaurant-menu-card__cover {
    min-height: 64px;
    padding: .65rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(221, 181, 52, 0.16) 0 10px,
            rgba(80, 68, 29, 0.32) 10px 20px
        ),
        #2a281f;
    color: #ddb534;
    font-size: .8rem;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.restaurant-menu-card__status {
    padding: .25rem .55rem;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    color: #fff7e8;
    background: rgba(0, 0, 0, .28);
    font-size: .65rem;
    letter-spacing: .08em;
}

.restaurant-menu-card__body {
    padding: 1.2rem;
}

.restaurant-menu-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: .8rem 0;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}

.restaurant-menu-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .75rem;
}

.restaurant-menu-card__head h2 {
    margin: 0;
    color: #fff7e8;
    font-size: 1.9rem;
    font-family: "Fraunces", Georgia, serif;
}

.restaurant-menu-card__price {
    min-height: 32px;
    padding: 0 .8rem;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #f7edc7;
    color: #966d00;
    font-weight: 800;
}

.restaurant-menu-card__body p {
    margin: .65rem 0 1rem;
    color: #a79f92;
}

.restaurant-menu-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-menu-card__meta {
    display: grid;
    gap: .35rem;
}

.restaurant-menu-card__prep {
    color: #9f978c;
    font-size: .95rem;
}

.restaurant-menu-card__schedule {
    color: #ddb534;
    font-size: .82rem;
    font-weight: 800;
}

.restaurant-menu-card__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .9rem;
}

.restaurant-menu-card__link {
    padding: 0;
    border: 0;
    background: transparent;
    color: #ddb534;
    font-weight: 800;
}

.restaurant-menu-card__availability {
    padding: 0;
    border: 0;
    background: transparent;
    color: #ddb534;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.restaurant-menu-card__availability:disabled {
    opacity: .72;
    cursor: wait;
}

.restaurant-menu-card__availability:hover .restaurant-menu-card__availability-label,
.restaurant-menu-card__availability:focus-visible .restaurant-menu-card__availability-label {
    text-decoration: underline;
}

.restaurant-menu-card__availability:focus-visible {
    outline: 2px solid #f7edc7;
    outline-offset: 4px;
    border-radius: 4px;
}

.restaurant-switch {
    width: 34px;
    height: 20px;
    padding: 2px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.restaurant-switch span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(0);
    transition: transform .16s ease;
}

.restaurant-switch.is-on {
    background: #ddb534;
}

.restaurant-switch.is-on span {
    transform: translateX(14px);
}

.restaurant-placeholder-module {
    min-height: 320px;
}

.restaurant-metrics {
    display: grid;
    gap: 1.15rem;
}

.restaurant-metrics__header {
    margin-bottom: .25rem;
}

.restaurant-metrics__range-picker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .8rem;
    border: 1px solid rgba(221, 181, 52, .22);
    border-radius: 16px;
    background: #1b1a18;
}

.restaurant-metrics__range-shortcuts,
.restaurant-metrics__range-navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
}

.restaurant-metrics__range-button,
.restaurant-metrics__range-arrow {
    min-height: 36px;
    padding: 0 .75rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: #242321;
    color: #e8ddca;
    font-size: .82rem;
    font-weight: 800;
}

.restaurant-metrics__range-button:hover,
.restaurant-metrics__range-arrow:hover {
    border-color: rgba(221, 181, 52, .6);
    color: #f3c933;
}

.restaurant-metrics__range-arrow {
    width: 36px;
    padding: 0;
    font-size: 1.1rem;
}

.restaurant-metrics__range-navigation label {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: #aaa093;
    font-size: .78rem;
    font-weight: 800;
}

.restaurant-metrics__range-navigation input {
    min-height: 36px;
    padding: 0 .5rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    background: #111;
    color: #f7f1e5;
    color-scheme: dark;
}

.restaurant-metrics__kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.restaurant-metrics__kpi-card,
.restaurant-metrics__panel {
    background: #232220;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.restaurant-metrics__kpi-card {
    min-height: 128px;
    padding: 1rem 1rem 1.1rem;
    display: grid;
    align-content: space-between;
    position: relative;
    overflow: hidden;
}

.restaurant-metrics__kpi-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.restaurant-metrics__kpi-card--accent::before {
    background: #ddb534;
}

.restaurant-metrics__kpi-label {
    color: #dbcaa1;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.restaurant-metrics__kpi-value {
    color: #fff8eb;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 1vw + 1.5rem, 2.6rem);
    line-height: 1;
}

.restaurant-metrics__kpi-value span {
    margin-left: .15rem;
    font-size: .54em;
}

.restaurant-metrics__kpi-trend {
    font-size: .88rem;
    font-weight: 800;
}

.restaurant-metrics__kpi-trend.is-positive {
    color: #4ed17d;
}

.restaurant-metrics__kpi-trend.is-negative {
    color: #ef7f6e;
}

.restaurant-metrics__kpi-trend.is-neutral {
    color: #bcb3a4;
}

.restaurant-metrics__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(280px, 0.9fr);
    gap: 1rem;
}

.restaurant-metrics__grid--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.restaurant-metrics__panel {
    padding: 1rem;
}

.restaurant-metrics__panel-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.restaurant-metrics__panel-head h2 {
    margin: 0;
    color: #fff7e8;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.6rem, 1vw + 1.1rem, 2.2rem);
    line-height: 1.05;
}

.restaurant-metrics__panel-head span {
    color: #d8bc6b;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.restaurant-metrics__chart {
    min-height: 280px;
    padding: 2rem 1rem .2rem;
    border-radius: 18px;
    background:
        linear-gradient(to top, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 33.33%,
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03)),
        #1f201f;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .95rem;
    align-items: end;
}

.restaurant-metrics__bar-group {
    height: 100%;
    display: grid;
    grid-template-rows: auto minmax(120px, 1fr) auto;
    align-items: end;
    gap: .45rem;
}

.restaurant-metrics__bar-note,
.restaurant-metrics__bar-label {
    text-align: center;
    font-size: .78rem;
    font-weight: 800;
}

.restaurant-metrics__bar-note {
    color: #bfb7aa;
}

.restaurant-metrics__bar-label {
    color: #8f877a;
}

.restaurant-metrics__bar {
    position: relative;
    min-height: 24px;
    width: 100%;
    align-self: end;
    border-radius: 14px 14px 0 0;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: start center;
}

.restaurant-metrics__bar span {
    position: absolute;
    top: -1.55rem;
    min-width: 28px;
    padding: .15rem .35rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: #17130a;
    font-size: .72rem;
    font-weight: 900;
}

.restaurant-metrics__bar.is-today {
    background: linear-gradient(180deg, #e2c242, #d3ad25);
}

.restaurant-metrics__top-list,
.restaurant-metrics__stack,
.restaurant-metrics__mix-list {
    display: grid;
    gap: .8rem;
}

.restaurant-metrics__top-row,
.restaurant-metrics__stack-row,
.restaurant-metrics__mix-row {
    display: grid;
    align-items: center;
    gap: .8rem;
}

.restaurant-metrics__top-row {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    padding: .7rem .75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.restaurant-metrics__rank {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #1c1d1b;
    color: #ddb534;
    font-weight: 900;
}

.restaurant-metrics__dish-copy strong,
.restaurant-metrics__mix-copy strong,
.restaurant-metrics__stack-row strong {
    color: #fff5e6;
    display: block;
}

.restaurant-metrics__dish-copy span,
.restaurant-metrics__mix-copy span,
.restaurant-metrics__stack-row span {
    color: #aca394;
    font-size: .9rem;
}

.restaurant-metrics__dish-badge,
.restaurant-metrics__mix-share,
.restaurant-metrics__count-pill {
    min-height: 38px;
    padding: 0 .8rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.restaurant-metrics__dish-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #f7f1e5;
}

.restaurant-metrics__stack-row,
.restaurant-metrics__mix-row {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: .8rem .85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.restaurant-metrics__count-pill.is-warning {
    background: rgba(224, 184, 67, 0.18);
    color: #f2d05f;
}

.restaurant-metrics__count-pill.is-accent {
    background: rgba(129, 145, 255, 0.16);
    color: #b9c3ff;
}

.restaurant-metrics__count-pill.is-success {
    background: rgba(62, 161, 96, 0.18);
    color: #75e39e;
}

.restaurant-metrics__ticket-card {
    margin-bottom: .9rem;
    padding: .9rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(221, 181, 52, 0.16), rgba(221, 181, 52, 0.05));
    border: 1px solid rgba(221, 181, 52, 0.18);
}

.restaurant-metrics__ticket-card span {
    display: block;
    color: #d5c08e;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.restaurant-metrics__ticket-card strong {
    margin-top: .35rem;
    display: block;
    color: #fff6e2;
    font-family: "Fraunces", Georgia, serif;
    font-size: 2rem;
}

.daily-closing {
    display: grid;
    gap: 1rem;
}

.daily-closing__print-brand {
    display: none;
}

.daily-closing-ticket-print {
    display: none;
}

.daily-closing__header,
.daily-closing__section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.daily-closing__eyebrow {
    margin-bottom: .35rem;
    color: #ddb534;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.daily-closing__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .55rem;
}

.daily-closing__action {
    min-height: 44px;
    padding: 0 1rem;
    border: 1px solid rgba(221, 181, 52, .45);
    border-radius: 12px;
    background: rgba(221, 181, 52, .1);
    color: #f1ca3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-decoration: none;
}

.daily-closing__action:hover:not(:disabled) {
    background: #ddb534;
    color: #17130a;
}

.daily-closing__action--excel {
    background: #ddb534;
    color: #17130a;
}

.daily-closing__action--secondary {
    border-color: rgba(255, 255, 255, .18);
    background: #242321;
    color: #eee4d3;
}

.daily-closing__action--ticket {
    border-color: rgba(66, 201, 119, .5);
    background: rgba(66, 201, 119, .12);
    color: #78e5a6;
}

.daily-closing__action:disabled {
    opacity: .55;
}

.daily-closing__date-picker {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem;
    border: 1px solid rgba(221, 181, 52, .22);
    border-radius: 16px;
    background: #1b1a18;
}

.daily-closing__date-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-right: auto;
}

.daily-closing__cycle-navigation {
    display: flex;
    gap: .45rem;
    padding-left: .65rem;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.daily-closing__date-picker label {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #aaa093;
    font-size: .8rem;
    font-weight: 900;
}

.daily-closing__date-picker input {
    min-height: 38px;
    padding: 0 .65rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    background: #111;
    color: #fff7e8;
    color-scheme: dark;
}

.daily-closing__date-picker button {
    min-width: 38px;
    min-height: 38px;
    padding: 0 .65rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    background: #242321;
    color: #e8ddca;
    font-weight: 900;
}

.daily-closing__date-picker button:hover:not(:disabled) {
    border-color: #ddb534;
    color: #f1ca3d;
}

.daily-closing__date-shortcuts button.is-active {
    border-color: #ddb534;
    background: #ddb534;
    color: #17130a;
}

.daily-closing__date-picker button:disabled {
    opacity: .4;
}

.daily-closing__date-picker .daily-closing__today {
    margin-left: auto;
    padding: 0 .9rem;
    color: #f1ca3d;
}

.daily-closing__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.daily-closing__summary-card,
.daily-closing__section {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    background: #232220;
}

.daily-closing__summary-card {
    position: relative;
    min-height: 142px;
    padding: 1rem 1.1rem;
    overflow: hidden;
}

.daily-closing__summary-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: #ddb534;
}

.daily-closing__summary-card.is-success::before {
    background: #42c977;
}

.daily-closing__summary-card.is-pending::before {
    background: #e38a55;
}

.daily-closing__summary-card span,
.daily-closing__payment-card span {
    display: block;
    color: #cbbd9c;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.daily-closing__summary-card strong {
    display: block;
    margin: .75rem 0 .45rem;
    color: #fff8eb;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 2.2vw, 2.65rem);
    line-height: 1;
}

.daily-closing__summary-card small,
.daily-closing__payment-card small {
    color: #aaa093;
    font-size: .86rem;
}

.daily-closing__executive-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.daily-closing__executive-metrics article {
    padding: .9rem 1rem;
    border: 1px solid rgba(221, 181, 52, .14);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(221, 181, 52, .1), rgba(255, 255, 255, .025));
}

.daily-closing__executive-metrics span,
.daily-closing__executive-metrics small {
    display: block;
    color: #aaa093;
}

.daily-closing__executive-metrics span {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.daily-closing__executive-metrics strong {
    display: block;
    margin: .3rem 0;
    color: #fff7e8;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.65rem;
}

.daily-closing__executive-metrics small {
    font-size: .8rem;
}

.daily-closing__section {
    padding: 1rem;
}

.daily-closing__section-head {
    margin-bottom: 1rem;
}

.daily-closing__section-head h2 {
    margin: 0;
    color: #fff7e8;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.4rem, 1vw + 1rem, 1.9rem);
}

.daily-closing__section-head p {
    margin: .25rem 0 0;
    color: #aaa093;
    font-size: .88rem;
}

.daily-closing__section-head > span {
    color: #d8bc6b;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.daily-closing__payments {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem;
}

.daily-closing__payment-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: .8rem;
    padding: .9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .035);
}

.daily-closing__payment-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(221, 181, 52, .15);
    color: #e9c747;
    font-size: .85rem;
    font-weight: 950;
}

.daily-closing__payment-card.is-clip .daily-closing__payment-icon {
    background: rgba(112, 77, 231, .2);
    color: #ad93ff;
}

.daily-closing__payment-card.is-mercadopago .daily-closing__payment-icon {
    background: rgba(57, 145, 232, .18);
    color: #78bcff;
}

.daily-closing__payment-card.is-transfer .daily-closing__payment-icon {
    background: rgba(65, 196, 123, .16);
    color: #6ee4a3;
}

.daily-closing__payment-card strong {
    display: block;
    margin: .18rem 0;
    color: #fff7e8;
    font-size: 1.35rem;
}

.daily-closing__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
    gap: 1rem;
}

.daily-closing__product-list {
    display: grid;
}

.daily-closing__product-row,
.daily-closing__reconciliation-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.daily-closing__product-row:last-child,
.daily-closing__reconciliation-row:last-child {
    border-bottom: 0;
}

.daily-closing__product-row strong,
.daily-closing__reconciliation-row strong {
    color: #fff5e6;
}

.daily-closing__product-row span,
.daily-closing__reconciliation-row span {
    display: block;
    margin-top: .15rem;
    color: #aaa093;
    font-size: .85rem;
}

.daily-closing__reconciliation-row.is-total {
    margin-top: .35rem;
    padding: 1rem;
    border: 1px solid rgba(221, 181, 52, .25);
    border-radius: 14px;
    background: rgba(221, 181, 52, .08);
}

.daily-closing__reconciliation-row.is-total strong {
    color: #f2ce4e;
    font-size: 1.35rem;
}

.daily-closing__table-wrap {
    overflow-x: auto;
}

.daily-closing__table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.daily-closing__table th,
.daily-closing__table td {
    padding: .8rem .7rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    text-align: left;
    vertical-align: middle;
}

.daily-closing__table th {
    color: #a99f8f;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.daily-closing__table td {
    color: #e9dfd0;
    font-size: .88rem;
}

.daily-closing__table a {
    color: #e3bf3e;
    font-weight: 900;
}

.daily-closing__items {
    max-width: 360px;
    color: #bdb3a5 !important;
}

.daily-closing__status {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 .65rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 900;
    white-space: nowrap;
}

.daily-closing__status.is-paid {
    background: rgba(66, 201, 119, .15);
    color: #6ee4a3;
}

.daily-closing__status.is-pending {
    background: rgba(227, 138, 85, .16);
    color: #f0aa80;
}

@media (max-width: 1100px) {
    .daily-closing__payments {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .daily-closing__summary,
    .daily-closing__executive-metrics,
    .daily-closing__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .daily-closing__header,
    .daily-closing__section-head {
        flex-direction: column;
    }

    .daily-closing__actions,
    .daily-closing__action {
        width: 100%;
    }

    .daily-closing__date-picker {
        flex-wrap: wrap;
    }

    .daily-closing__date-shortcuts {
        width: 100%;
        margin-right: 0;
    }

    .daily-closing__cycle-navigation {
        width: 100%;
        padding-left: 0;
        border-left: 0;
    }

    .daily-closing__cycle-navigation button {
        flex: 1;
    }

    .daily-closing__date-picker label {
        flex: 1;
    }

    .daily-closing__date-picker input {
        width: 100%;
        min-width: 0;
    }

    .daily-closing__date-picker .daily-closing__today {
        width: 100%;
        margin-left: 0;
    }

    .daily-closing__payments {
        grid-template-columns: 1fr;
    }
}

@media print {
    html.daily-closing-print,
    body.daily-closing-print {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        color: #111 !important;
        font-family: "Aptos", Arial, sans-serif !important;
        font-size: 12px !important;
        font-weight: 400 !important;
        line-height: 1.4 !important;
    }

    body.daily-closing-print .restaurant-sidebar,
    body.daily-closing-print .restaurant-sidebar-toggle,
    body.daily-closing-print .restaurant-sidebar-overlay,
    body.daily-closing-print .daily-closing__actions,
    body.daily-closing-print .daily-closing__date-picker {
        display: none !important;
    }

    body.daily-closing-print .restaurant-console,
    body.daily-closing-print .restaurant-main {
        display: block !important;
        width: 100% !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
    }

    body.daily-closing-print .daily-closing {
        display: block;
        color: #111;
    }

    body.daily-closing-print .daily-closing__header,
    body.daily-closing-print .daily-closing__summary,
    body.daily-closing-print .daily-closing__payments,
    body.daily-closing-print .daily-closing__grid {
        margin-bottom: 8mm;
    }

    body.daily-closing-print .daily-closing__summary-card,
    body.daily-closing-print .daily-closing__section,
    body.daily-closing-print .daily-closing__payment-card {
        break-inside: avoid;
        border-color: #c9c9c9 !important;
        background: #fff !important;
        box-shadow: none !important;
    }

    body.daily-closing-print .daily-closing__eyebrow,
    body.daily-closing-print .restaurant-header__title,
    body.daily-closing-print .restaurant-header__subtitle,
    body.daily-closing-print .daily-closing__summary-card span,
    body.daily-closing-print .daily-closing__summary-card strong,
    body.daily-closing-print .daily-closing__summary-card small,
    body.daily-closing-print .daily-closing__section-head h2,
    body.daily-closing-print .daily-closing__section-head p,
    body.daily-closing-print .daily-closing__section-head > span,
    body.daily-closing-print .daily-closing__payment-card span,
    body.daily-closing-print .daily-closing__payment-card strong,
    body.daily-closing-print .daily-closing__payment-card small,
    body.daily-closing-print .daily-closing__product-row strong,
    body.daily-closing-print .daily-closing__product-row span,
    body.daily-closing-print .daily-closing__reconciliation-row strong,
    body.daily-closing-print .daily-closing__reconciliation-row span,
    body.daily-closing-print .daily-closing__table th,
    body.daily-closing-print .daily-closing__table td,
    body.daily-closing-print .daily-closing__items {
        color: #111 !important;
    }

    body.daily-closing-print .daily-closing__table-wrap {
        overflow: visible;
    }

    body.daily-closing-print .daily-closing__table {
        min-width: 0;
        font-size: 9pt;
    }

    body.daily-closing-print .daily-closing__status {
        border: 1px solid #999;
        background: #fff !important;
        color: #111 !important;
    }
}

.restaurant-deliveries {
    display: grid;
    gap: 1.25rem;
}

.restaurant-deliveries__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-deliveries__invite-button {
    border: 0;
    border-radius: 12px;
    background: #ddb534;
    color: #16120f;
    padding: .9rem 1.15rem;
    font-weight: 800;
}

.restaurant-deliveries__feedback {
    border-radius: 16px;
    padding: .95rem 1rem;
    border: 1px solid transparent;
}

.restaurant-deliveries__feedback.is-success {
    background: rgba(62, 121, 69, 0.18);
    border-color: rgba(101, 168, 108, 0.24);
    color: #d8f0dc;
}

.restaurant-deliveries__feedback.is-error {
    background: rgba(161, 58, 48, 0.2);
    border-color: rgba(193, 87, 75, 0.24);
    color: #ffd5ce;
}

.restaurant-deliveries__tabs {
    display: flex;
    gap: .85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.restaurant-deliveries__tab {
    position: relative;
    border: 0;
    background: none;
    color: #8f8b86;
    padding: .85rem .9rem;
    font-weight: 700;
}

.restaurant-deliveries__tab span {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    margin-left: .35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    font-size: .8rem;
}

.restaurant-deliveries__tab.is-active {
    color: #ddb534;
}

.restaurant-deliveries__tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: #ddb534;
}

.restaurant-deliveries__grid,
.restaurant-deliveries__pending-grid {
    display: grid;
    gap: .85rem;
}

.restaurant-deliveries__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restaurant-deliveries__pending-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.restaurant-deliveries__card {
    border-radius: 18px;
    background: #201f1d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.05rem 1rem;
    color: #f8f3ea;
}

.restaurant-deliveries__card-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-deliveries__identity {
    display: flex;
    gap: .85rem;
}

.restaurant-deliveries__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(94,78,36,.8) 25%, rgba(51,46,32,.9) 25%, rgba(51,46,32,.9) 50%, rgba(94,78,36,.8) 50%, rgba(94,78,36,.8) 75%, rgba(51,46,32,.9) 75%, rgba(51,46,32,.9) 100%);
    background-size: 18px 18px;
    color: #ddb534;
    font-weight: 800;
}

.restaurant-deliveries__avatar--pending {
    background: linear-gradient(180deg, rgba(94,78,36,.5), rgba(51,46,32,.9));
}

.restaurant-deliveries__avatar img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.restaurant-deliveries__identity h2 {
    margin: 0 0 .2rem;
    color: #fff;
    font-size: 1.75rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.restaurant-deliveries__identity p {
    margin: 0;
    color: #8f8b86;
}

.restaurant-deliveries__status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .35rem .65rem;
    font-size: .86rem;
    font-weight: 700;
    white-space: nowrap;
}

.restaurant-deliveries__status.is-online {
    background: #e1f4de;
    color: #285f28;
}

.restaurant-deliveries__status.is-offline {
    background: #f0efed;
    color: #5c5852;
}

.restaurant-deliveries__status.is-pending {
    background: rgba(184, 133, 18, 0.28);
    color: #ffca4d;
}

.restaurant-deliveries__meta,
.restaurant-deliveries__pending-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #9d9388;
    font-size: .92rem;
    margin-top: .95rem;
}

.restaurant-deliveries__pending-actions {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: .5rem;
    margin-top: .9rem;
}

.restaurant-deliveries__ghost-button,
.restaurant-deliveries__outline-button,
.restaurant-deliveries__submit {
    border-radius: 12px;
    padding: .85rem 1rem;
    font-weight: 800;
}

.restaurant-deliveries__ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: #fff;
}

.restaurant-deliveries__outline-button {
    border: 1px solid #ddb534;
    background: transparent;
    color: #ddb534;
}

.restaurant-deliveries__danger-link {
    border: 0;
    background: none;
    color: #ff6e5f;
    font-weight: 700;
}

.restaurant-deliveries__modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    display: grid;
    place-items: center;
    padding: 1.5rem;
    z-index: 40;
}

.restaurant-deliveries__modal {
    width: min(100%, 430px);
    border-radius: 20px;
    background: #1f1d1b;
    border: 1px solid rgba(221, 181, 52, 0.22);
    color: #f7f1e5;
    overflow: hidden;
}

.restaurant-deliveries__modal-head,
.restaurant-deliveries__modal-foot {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
}

.restaurant-deliveries__modal-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-deliveries__modal-head h2 {
    margin: 0 0 .25rem;
    color: #fff;
}

.restaurant-deliveries__modal-head p {
    margin: 0;
    color: #9b9389;
}

.restaurant-deliveries__close {
    border: 0;
    background: none;
    color: #c7c1bb;
    font-size: 1.4rem;
}

.restaurant-deliveries__channel-note,
.restaurant-deliveries__field {
    padding: 0 1.2rem;
}

.restaurant-deliveries__channel-note {
    margin-top: 1rem;
    color: #93897b;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.restaurant-deliveries__channels {
    padding: .7rem 1.2rem 0;
}

.restaurant-deliveries__channel {
    display: grid;
    place-items: center;
    min-height: 74px;
    border-radius: 14px;
    border: 1px solid rgba(221, 181, 52, 0.34);
    background: rgba(36, 33, 28, 0.9);
    color: #ddb534;
    gap: .2rem;
}

.restaurant-deliveries__field {
    margin-top: .85rem;
}

.restaurant-deliveries__field label {
    display: block;
    color: #948a7d;
    font-size: .84rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.restaurant-deliveries__field input,
.restaurant-deliveries__field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #171614;
    color: #f7f1e5;
    padding: .85rem 1rem;
    outline: none;
}

.restaurant-deliveries__vehicles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .45rem;
}

.restaurant-deliveries__vehicle {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #171614;
    color: #f7f1e5;
    padding: .75rem .5rem;
    font-weight: 700;
}

.restaurant-deliveries__vehicle.is-active {
    border-color: #ddb534;
    color: #ddb534;
}

.restaurant-deliveries__preview {
    margin: 1rem 1.2rem 0;
    border-radius: 14px;
    background: #171614;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: .95rem 1rem;
}

.restaurant-deliveries__preview small {
    display: block;
    color: #948a7d;
    font-weight: 800;
    margin-bottom: .4rem;
}

.restaurant-deliveries__preview p {
    margin: 0 0 .5rem;
    color: #f7f1e5;
}

.restaurant-deliveries__preview strong {
    color: #ddb534;
}

.restaurant-deliveries__modal-foot {
    padding-top: 1rem;
}

.restaurant-deliveries__submit {
    border: 0;
    background: #efece7;
    color: #8c8a86;
}

.restaurant-deliveries__submit:not(:disabled) {
    background: #ddb534;
    color: #16120f;
}

.restaurant-deliveries__directory {
    display: grid;
    gap: 1rem;
}

.restaurant-deliveries__directory-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-deliveries__directory-toolbar h2 {
    margin: 0 0 .25rem;
    color: #fff;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.restaurant-deliveries__directory-toolbar p {
    margin: 0;
    color: #9d9388;
}

.restaurant-deliveries__directory-toolbar label {
    display: grid;
    min-width: 190px;
    gap: .35rem;
    color: #93897b;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.restaurant-deliveries__directory-toolbar select {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: #201f1d;
    color: #f8f3ea;
    padding: .75rem .9rem;
}

.restaurant-deliveries__directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
}

.restaurant-deliveries__directory-card {
    display: grid;
    align-content: space-between;
    gap: 1rem;
}

.restaurant-deliveries__distance {
    border-radius: 999px;
    background: rgba(221, 181, 52, .14);
    color: #edc853;
    padding: .35rem .65rem;
    font-size: .86rem;
    font-weight: 800;
    white-space: nowrap;
}

.restaurant-deliveries__directory-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.restaurant-deliveries__directory-meta a {
    color: #d6d0c8;
    text-decoration: none;
}

.restaurant-deliveries__directory-action {
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: #ddb534;
    color: #16120f;
    padding: .8rem 1rem;
    font-weight: 800;
}

.restaurant-deliveries__directory-action.is-linked,
.restaurant-deliveries__directory-action.is-pending {
    background: rgba(255, 255, 255, .08);
    color: #9d9388;
}

.restaurant-deliveries__directory-empty {
    min-height: 220px;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: .45rem;
    border: 1px dashed rgba(221, 181, 52, .25);
    border-radius: 18px;
    color: #9d9388;
    text-align: center;
}

.restaurant-deliveries__directory-empty strong {
    color: #f8f3ea;
    font-size: 1.15rem;
}

.restaurant-deliveries__directory-empty a {
    margin-top: .35rem;
    color: #ddb534;
    font-weight: 800;
}

@media (max-width: 1199.98px) {
    .restaurant-deliveries__grid,
    .restaurant-deliveries__directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .restaurant-deliveries__header,
    .restaurant-deliveries__directory-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .restaurant-deliveries__tabs {
        overflow-x: auto;
    }

    .restaurant-deliveries__tab {
        white-space: nowrap;
    }

    .restaurant-deliveries__grid,
    .restaurant-deliveries__pending-grid,
    .restaurant-deliveries__directory-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-deliveries__directory-toolbar label {
        min-width: 0;
    }
}

.restaurant-settings {
    display: grid;
    gap: 1.8rem;
}

.restaurant-settings__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.restaurant-settings__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, .95fr);
    gap: 1.5rem;
    align-items: start;
}

.restaurant-settings__main,
.restaurant-settings__aside {
    display: grid;
    gap: 1.5rem;
}

.restaurant-settings__footer {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}

.restaurant-settings__card {
    padding: 1.7rem;
    border-radius: 24px;
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 1.2rem;
}

.restaurant-mercadopago {
    display: grid;
    gap: 1rem;
}

.restaurant-mercadopago__head,
.restaurant-mercadopago__actions,
.restaurant-mercadopago__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-mercadopago__head h2 {
    margin-bottom: 0;
}

.restaurant-mercadopago__status {
    padding: .35rem .7rem;
    border-radius: 999px;
    background: #34312b;
    color: #aaa18f;
    font-size: .8rem;
    font-weight: 800;
}

.restaurant-mercadopago__status.is-active {
    background: rgba(66, 190, 105, .15);
    color: #65d58b;
}

.restaurant-mercadopago__copy,
.restaurant-mercadopago__help {
    margin: 0;
    color: #aaa18f;
}

.restaurant-mercadopago__form {
    display: grid;
    gap: 1rem;
}

.restaurant-mercadopago__toggle {
    justify-content: flex-start;
    padding: 1rem;
    border: 1px solid rgba(221, 181, 52, .24);
    border-radius: 14px;
    background: #181714;
}

.restaurant-mercadopago__toggle span {
    display: grid;
    gap: .2rem;
}

.restaurant-mercadopago__toggle small,
.restaurant-settings__field small {
    color: #8f8778;
}

.restaurant-mercadopago__input {
    width: 100%;
    min-height: 44px;
    padding: .7rem .8rem;
    border: 1px solid #3c382f;
    border-radius: 10px;
    background: #151411;
    color: #f7f1e5;
}

.restaurant-mercadopago__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.restaurant-mercadopago__help a {
    color: #ddb534;
}

.restaurant-settings__section-title {
    margin: 0;
    color: #9d978d;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.restaurant-settings__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.restaurant-settings__edit-button {
    justify-self: start;
    margin-top: .25rem;
}

.restaurant-settings__field {
    display: grid;
    gap: .55rem;
}

.restaurant-settings__field label {
    color: #a9a299;
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.restaurant-settings__value {
    min-height: 64px;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    background: #0d0d0d;
    color: #fff7e8;
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    line-height: 1.35;
}

.restaurant-settings__service-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.restaurant-settings__service-option {
    min-height: 76px;
    padding: .9rem 1rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: #0d0d0d;
}

.restaurant-settings__service-option > span:last-child {
    display: grid;
    gap: .15rem;
}

.restaurant-settings__service-option strong {
    color: #fff7e8;
}

.restaurant-settings__service-option small {
    color: #8f8778;
}

.restaurant-settings__service-option.is-enabled {
    border-color: rgba(66, 190, 105, .3);
    background: rgba(35, 92, 53, .18);
}

.restaurant-settings__service-option.is-enabled small {
    color: #65d58b;
}

.restaurant-settings__service-option.is-disabled {
    opacity: .62;
}

.restaurant-settings__service-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(221, 181, 52, .12);
    font-size: 1.25rem;
}

.restaurant-settings__logo-box {
    min-height: 210px;
    padding: 1rem;
    border-radius: 20px;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(221, 181, 52, 0.18) 0 12px,
            rgba(221, 181, 52, 0.04) 12px 24px
        ),
        #231f16;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.restaurant-settings__logo-box:focus {
    outline: 2px dashed rgba(221, 181, 52, 0.9);
    outline-offset: 4px;
}

.restaurant-settings__logo-image {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.restaurant-settings__logo-placeholder {
    color: #ddb534;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.restaurant-settings__logo-button {
    min-height: 58px;
    justify-self: center;
    padding: 0 1.6rem;
    border-radius: 16px;
    border: 2px solid rgba(221, 181, 52, 0.9);
    background: transparent;
    color: #ddb534;
    font-size: 1rem;
    font-weight: 900;
    opacity: .9;
}

.restaurant-settings__share-qr {
    display: grid;
    place-items: center;
    padding: 1rem;
    border-radius: 20px;
    background: #f5f1e7;
    margin-bottom: 1rem;
}

.restaurant-settings__share-qr-image {
    width: min(100%, 220px);
    aspect-ratio: 1;
    object-fit: contain;
    image-rendering: pixelated;
}

.restaurant-settings__share-link {
    padding: .85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ddd3c3;
    font-size: .92rem;
    line-height: 1.45;
    word-break: break-all;
}

.restaurant-settings__share-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.restaurant-settings__share-button {
    min-height: 48px;
    padding: 0 1rem;
    border: 0;
    border-radius: 14px;
    background: #ddb534;
    color: #16120b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
}

.restaurant-settings__share-button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #fff7e8;
}

.restaurant-settings__share-status {
    color: #9f978c;
    font-size: .9rem;
}

.restaurant-settings__schedule {
    display: grid;
}

.restaurant-settings__schedule-row {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-settings__schedule-row:first-child {
    border-top: 0;
    padding-top: .2rem;
}

.restaurant-settings__day {
    color: #fff7e8;
    font-size: 1.1rem;
    font-weight: 700;
}

.restaurant-settings__time {
    color: #9f978c;
    font-size: 1.05rem;
    text-align: center;
}

.restaurant-settings__toggle {
    width: 48px;
    height: 28px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
}

.restaurant-settings__toggle span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(0);
}

.restaurant-settings__toggle.is-on {
    background: #ddb534;
}

.restaurant-settings__toggle.is-on span {
    transform: translateX(20px);
}

.restaurant-settings__back {
    color: var(--text-muted, #aaa);
    text-decoration: none;
    font-size: .875rem;
    white-space: nowrap;
    align-self: center;
}

.restaurant-settings__back:hover {
    color: var(--text, #fff);
}

.restaurant-settings__input {
    width: 100%;
    background: var(--surface-alt, #111);
    border: 1px solid var(--border, #2a2a2a);
    border-radius: 8px;
    color: var(--text, #fff);
    padding: .5rem .75rem;
    font-size: .9rem;
    outline: none;
    transition: border-color .15s;
}

.restaurant-settings__input:focus {
    border-color: var(--accent, #d4a800);
}

.restaurant-settings__location-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.restaurant-settings__location-button {
    border: 1px solid rgba(221, 181, 52, .75);
    border-radius: 12px;
    background: #ddb534;
    color: #111;
    cursor: pointer;
    font-weight: 800;
    padding: .65rem .9rem;
}

.restaurant-settings__location-button--ghost {
    background: transparent;
    color: #ddb534;
}

.restaurant-settings__location-button:disabled {
    cursor: not-allowed;
    opacity: .58;
}

.restaurant-settings__location-status {
    color: #7ddc9d;
    font-weight: 800;
}

.restaurant-settings__location-error {
    color: #ff9b8f;
}

.restaurant-settings__map {
    background: #151515;
    border-color: rgba(221, 181, 52, .18);
}

.restaurant-settings__map .geo-map-card__head strong {
    color: #fff7e8;
}

.restaurant-settings__map .geo-map-card__head span,
.restaurant-settings__map .geo-map-card__hint,
.restaurant-settings__map .geo-map-card__footer {
    color: #9f978c;
}

.restaurant-settings__map .geo-map-card__frame-wrap {
    border-color: rgba(221, 181, 52, .22);
}

.restaurant-settings__map-empty {
    border: 1px dashed rgba(221, 181, 52, .35);
    border-radius: 18px;
    color: #9f978c;
    padding: 1rem;
}

.restaurant-settings__paste-note {
    display: block;
    margin-top: .45rem;
    color: var(--text-muted, #aaa);
    font-size: .8rem;
}

.restaurant-settings__paste-box,
.restaurant-onboarding__paste-box,
.dish-form__paste-box {
    border: 2px dashed rgba(221, 181, 52, 0.55);
    border-radius: 16px;
    background: rgba(221, 181, 52, 0.06);
    text-align: center;
    cursor: text;
}

.restaurant-settings__paste-box,
.restaurant-onboarding__paste-box {
    margin-top: .75rem;
    padding: .9rem 1rem;
}

.dish-form__paste-box {
    margin-top: .85rem;
    padding: .85rem 1rem;
}

.restaurant-settings__paste-box strong,
.restaurant-onboarding__paste-box strong,
.dish-form__paste-box strong {
    display: block;
    color: #ddb534;
    font-size: .92rem;
    font-weight: 800;
}

.restaurant-settings__paste-box span,
.restaurant-onboarding__paste-box span,
.dish-form__paste-box span {
    display: block;
    margin-top: .25rem;
    color: #8d8273;
    font-size: .8rem;
}

.restaurant-settings__paste-box:focus,
.restaurant-onboarding__paste-box:focus,
.dish-form__paste-box:focus {
    outline: 2px dashed rgba(221, 181, 52, 0.95);
    outline-offset: 4px;
}

.restaurant-settings__textarea {
    resize: vertical;
    min-height: 80px;
}

.restaurant-settings__checkbox-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
    color: var(--text-muted, #aaa);
    font-size: .85rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.restaurant-settings__checkbox {
    width: 1rem;
    height: 1rem;
    accent-color: var(--accent, #d4a800);
    cursor: pointer;
    flex-shrink: 0;
}

.restaurant-settings__save-button {
    width: min(100%, 260px);
    background: var(--accent, #d4a800);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: .65rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s;
}

.restaurant-settings__save-button:hover {
    opacity: .85;
}

/* Hours section — display card */
.hours-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hours-edit-btn {
    background: transparent;
    border: 1px solid var(--accent, #d4a800);
    color: var(--accent, #d4a800);
    border-radius: 8px;
    padding: .35rem .85rem;
    font-size: .8rem;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

.hours-edit-btn:hover {
    background: rgba(212, 168, 0, .12);
}

.hours-schedule-row {
    align-items: flex-start;
}

.hours-slot-list {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    flex: 1;
    text-align: right;
}

.hours-slot-time {
    color: var(--accent, #d4a800);
    font-size: .9rem;
    font-variant-numeric: tabular-nums;
}

.hours-open-badge {
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
    border-radius: 6px;
    padding: .2rem .6rem;
    font-size: .75rem;
    font-weight: 600;
    white-space: nowrap;
    align-self: center;
}

.hours-closed-text {
    color: #666;
    font-size: .8rem;
    letter-spacing: .05em;
    flex: 1;
    text-align: right;
}

.hours-closed-dash {
    color: #444;
    font-size: .9rem;
    width: 1.5rem;
    text-align: center;
    align-self: center;
}

.hours-loading {
    color: #666;
    font-size: .875rem;
    padding: .5rem 0;
}

/* Hours edit modal */
.hours-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem 3rem;
    overflow-y: auto;
    z-index: 600;
}

.hours-modal {
    background: #1c1c1e;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    width: 100%;
    max-width: 660px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hours-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.hours-modal__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .2rem;
}

.hours-modal__subtitle {
    color: #888;
    font-size: .85rem;
    margin: 0;
}

.hours-modal__close {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: .2rem .4rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.hours-modal__close:hover {
    color: #fff;
    background: #2a2a2a;
}

.hours-modal__copy-btn {
    background: rgba(212, 168, 0, .12);
    border: 1px solid rgba(212, 168, 0, .4);
    color: var(--accent, #d4a800);
    border-radius: 10px;
    padding: .65rem 1rem;
    font-size: .85rem;
    cursor: pointer;
    text-align: left;
    transition: background .15s;
}

.hours-modal__copy-btn:hover {
    background: rgba(212, 168, 0, .22);
}

.hours-modal__days {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: .25rem;
}

.hours-day-card {
    background: #111;
    border: 1px solid #252525;
    border-radius: 12px;
    padding: .9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.hours-day-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-day-card__name {
    font-weight: 600;
    color: #fff;
    font-size: .95rem;
}

.hours-slot-row {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hours-time-input {
    flex: 1;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    padding: .45rem .65rem;
    font-size: .875rem;
    outline: none;
    transition: border-color .15s;
    color-scheme: dark;
}

.hours-time-input:focus {
    border-color: var(--accent, #d4a800);
}

.hours-slot-sep {
    color: #666;
    font-size: .9rem;
    flex-shrink: 0;
}

.hours-slot-remove {
    background: transparent;
    border: 1px solid #333;
    color: #666;
    border-radius: 6px;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    flex-shrink: 0;
    transition: color .15s, border-color .15s;
}

.hours-slot-remove:hover:not(:disabled) {
    color: #ef4444;
    border-color: #ef4444;
}

.hours-slot-remove:disabled {
    opacity: .3;
    cursor: default;
}

.hours-add-slot {
    background: transparent;
    border: 1px dashed rgba(212, 168, 0, .4);
    color: var(--accent, #d4a800);
    border-radius: 8px;
    padding: .5rem;
    font-size: .8rem;
    cursor: pointer;
    width: 100%;
    transition: background .15s;
}

.hours-add-slot:hover {
    background: rgba(212, 168, 0, .08);
}

.hours-modal__footer {
    border-top: 1px solid #252525;
    padding-top: 1rem;
}

.hours-modal__save {
    background: var(--accent, #d4a800);
    color: #000;
    border: none;
    border-radius: 10px;
    padding: .7rem 1.5rem;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .15s;
}

.hours-modal__save:hover:not(:disabled) {
    opacity: .85;
}

.hours-modal__save:disabled {
    opacity: .5;
    cursor: default;
}

.catalog-module {
    display: grid;
    gap: 1.8rem;
}

.catalog-module__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-module__title {
    margin: 0;
    color: #fff7e8;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: .98;
    font-family: "Fraunces", Georgia, serif;
}

.catalog-module__subtitle {
    margin: .45rem 0 0;
    color: #9f978c;
    font-size: 1.05rem;
}

.catalog-module__tabs {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.catalog-module__tab {
    min-height: 72px;
    padding: 0 1.9rem;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #97908a;
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    font-size: 1rem;
    font-weight: 800;
}

.catalog-module__tab.is-active {
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 -2px 0 #ddb534;
    color: #ddb534;
}

.catalog-module__tab-icon {
    font-size: 1.1rem;
}

.catalog-module__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.catalog-module__meta {
    margin: 0;
    color: #b6ae9d;
    font-size: 1rem;
}

.catalog-module__cta {
    min-height: 58px;
    padding: 0 2rem;
    border: 0;
    border-radius: 18px;
    background: #ddb534;
    color: #17130a;
    font-size: 1rem;
    font-weight: 900;
}

.catalog-module__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.catalog-module__grid--attributes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-card {
    padding: 1.8rem;
    border-radius: 22px;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 1.4rem;
}

.catalog-card.is-muted {
    opacity: .58;
}

.catalog-card__head {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.catalog-card__head--compact {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
}

.catalog-card__icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    background: rgba(221, 181, 52, 0.12);
    display: grid;
    place-items: center;
    font-size: 2rem;
}

.catalog-card__copy h2 {
    margin: 0;
    color: #fff7e8;
    font-size: 1.25rem;
    font-weight: 900;
}

.catalog-card__copy p {
    margin: .45rem 0 0;
    color: #9f978c;
    font-size: .98rem;
    line-height: 1.45;
}

.catalog-card__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.catalog-card__footer {
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.catalog-card__footer--end {
    padding-top: 0;
    border-top: 0;
    justify-content: flex-end;
}

.catalog-card__pill {
    min-height: 40px;
    padding: 0 1rem;
    border-radius: 999px;
    background: #252525;
    color: #cdbfa8;
    display: inline-flex;
    align-items: center;
    font-size: .95rem;
    font-weight: 800;
}

.catalog-card__actions {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.catalog-card__action {
    padding: 0;
    border: 0;
    background: transparent;
    color: #ddb534;
    font-weight: 800;
}

.catalog-card__action--danger {
    color: #d36d6d;
}

.catalog-card__action:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.catalog-table {
    border-radius: 22px;
    overflow: hidden;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-table__header,
.catalog-table__row {
    display: grid;
    grid-template-columns: 2fr 2.4fr .9fr .9fr .9fr;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1rem;
}

.catalog-table__header {
    color: #fff7e8;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.catalog-table__row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ddd3c3;
}

.catalog-table__muted {
    color: #a99f91;
}

.catalog-table__actions {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.catalog-tag-chip {
    --tag-color: #ddb534;
    min-height: 40px;
    padding: 0 .95rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--tag-color) 50%, transparent);
    background: color-mix(in srgb, var(--tag-color) 16%, transparent);
    color: var(--tag-color);
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-size: .95rem;
    font-weight: 800;
}

.catalog-tag-chip__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
}

.catalog-module__coming-soon {
    min-height: 260px;
    padding: 2rem;
    border-radius: 22px;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-module__coming-soon h2 {
    margin: 0 0 .75rem;
    color: #fff7e8;
    font-family: "Fraunces", Georgia, serif;
}

.catalog-module__coming-soon p {
    margin: 0;
    max-width: 56ch;
    color: #9f978c;
}

.catalog-attribute__title-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-wrap: wrap;
}

.catalog-attribute__title-row h2 {
    margin: 0;
}

.catalog-attribute__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(221, 181, 52, 0.14);
    color: #ddb534;
    display: inline-grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 900;
}

.catalog-attribute__badge {
    min-height: 34px;
    padding: 0 .9rem;
    border-radius: 999px;
    background: rgba(146, 50, 50, 0.28);
    color: #ff8c8c;
    display: inline-flex;
    align-items: center;
    font-size: .92rem;
    font-weight: 800;
}

.catalog-attribute__chips {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

.catalog-attribute__chip {
    min-height: 34px;
    padding: 0 .95rem;
    border-radius: 10px;
    border: 1px solid rgba(221, 181, 52, 0.35);
    background: rgba(221, 181, 52, 0.08);
    color: #ddb534;
    display: inline-flex;
    align-items: center;
    font-size: .95rem;
}

.catalog-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
}

.catalog-modal {
    width: min(810px, 100%);
    border-radius: 24px;
    overflow: hidden;
    background: #1d1d1d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.catalog-modal__header {
    padding: 1.7rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-modal__header h2 {
    margin: 0;
    color: #fff7e8;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    font-family: "Fraunces", Georgia, serif;
}

.catalog-modal__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #908a82;
    font-size: 2rem;
    line-height: 1;
}

.catalog-modal__body {
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
}

.catalog-modal__field {
    display: grid;
    gap: .8rem;
}

.catalog-modal__label {
    color: #a6a19a;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.catalog-modal__icon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.catalog-modal__icon-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-modal__icon-option {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #202020;
    color: #fff7e8;
    display: grid;
    place-items: center;
    font-size: 1.9rem;
    cursor: pointer;
}

.catalog-modal__icon-input:checked + .catalog-modal__icon-option {
    border-color: rgba(221, 181, 52, 0.72);
    box-shadow: inset 0 0 0 1px rgba(221, 181, 52, 0.3);
    background: #292313;
}

.catalog-modal__color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.catalog-modal__color-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-modal__color-option {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    cursor: pointer;
}

.catalog-modal__color-input:checked + .catalog-modal__color-option {
    box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px rgba(221, 181, 52, 0.72);
}

.catalog-modal__preview {
    padding: 1.35rem;
    border-radius: 18px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: .85rem;
}

.catalog-modal--tag {
    width: min(780px, 100%);
}

.catalog-modal--attribute {
    width: min(860px, 100%);
}

.catalog-modal__input,
.catalog-modal__textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #121212;
    color: #f5efe2;
    padding: 1rem 1.1rem;
    font-size: 1rem;
    outline: none;
    box-shadow: inset 0 0 0 4px rgba(221, 181, 52, 0.08);
}

.catalog-modal__textarea {
    min-height: 98px;
    resize: vertical;
}

.catalog-modal__textarea--options {
    min-height: 132px;
}

.catalog-modal__input::placeholder,
.catalog-modal__textarea::placeholder {
    color: #6f6a63;
}

.catalog-modal__choice-list {
    display: grid;
    gap: .85rem;
}

.catalog-modal__choice {
    padding: 1.2rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1c1c1c;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    cursor: pointer;
}

.catalog-modal__choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-modal__choice-mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.86);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.catalog-modal__choice-mark::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
}

.catalog-modal__choice-copy {
    display: grid;
    gap: .2rem;
}

.catalog-modal__choice-copy strong {
    color: #fff7e8;
    font-size: 1.05rem;
}

.catalog-modal__choice-copy small {
    color: #9f978c;
    font-size: .95rem;
}

.catalog-modal__choice input:checked + .catalog-modal__choice-mark {
    border-color: #4ea3ff;
}

.catalog-modal__choice input:checked + .catalog-modal__choice-mark::after {
    background: #4ea3ff;
}

.catalog-modal__choice:has(input:checked) {
    border-color: rgba(221, 181, 52, 0.9);
    box-shadow: inset 0 0 0 1px rgba(221, 181, 52, 0.24);
    background: rgba(64, 51, 20, 0.58);
}

.catalog-modal__toggle-row {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-modal__toggle-title {
    color: #fff7e8;
    font-size: 1rem;
    font-weight: 900;
}

.catalog-modal__toggle-copy {
    margin: .2rem 0 0;
    color: #9f978c;
}

.catalog-modal__switch {
    position: relative;
    display: inline-flex;
}

.catalog-modal__switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-modal__switch span {
    width: 60px;
    height: 28px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    transition: background .18s ease;
}

.catalog-modal__switch span::after {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(0);
    transition: transform .18s ease;
}

.catalog-modal__switch input:checked + span {
    background: #ddb534;
}

.catalog-modal__switch input:checked + span::after {
    transform: translateX(32px);
}

.catalog-modal__footer {
    padding: 0 2rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
}

.catalog-modal__secondary,
.catalog-modal__primary {
    min-height: 66px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 900;
}

.catalog-modal__secondary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #fff7e8;
}

.catalog-modal__primary {
    border: 0;
    background: #ddb534;
    color: #17130a;
}

.restaurant-orders-wasm__loading {
    min-height: 55vh;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.65rem;
    color: #202020;
    text-align: center;
}

.restaurant-orders-wasm__loading span {
    color: #727272;
}

.restaurant-orders-wasm__spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid #ece5cf;
    border-top-color: #b58a18;
    border-radius: 50%;
    animation: restaurant-orders-spin 0.8s linear infinite;
}

@keyframes restaurant-orders-spin {
    to { transform: rotate(360deg); }
}

.restaurant-orders-wasm__connection {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: fit-content;
    margin: 0 0 1rem auto;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #f4f6f3;
    color: #426146;
    font-size: 0.78rem;
}

.restaurant-orders-wasm__connection.is-offline {
    background: #fff4df;
    color: #80570b;
}

.restaurant-orders-wasm__connection.is-syncing {
    background: #eef4ff;
    color: #315d91;
}

.restaurant-orders-wasm__connection-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: currentColor;
}

.restaurant-orders-wasm__link-button {
    appearance: none;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    cursor: pointer;
}

.restaurant-orders-table {
    border-radius: 18px;
    overflow: hidden;
    background: #f5f3ef;
    color: #181511;
}

.restaurant-orders-layout {
    display: grid;
    gap: 1rem;
}

.restaurant-orders-layout.has-detail {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
}

.restaurant-orders-table__header,
.restaurant-order-row {
    display: grid;
    grid-template-columns: 1fr 1.8fr .8fr .9fr .9fr 1fr .8fr 1.2fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1rem 1rem 1.15rem;
}

.restaurant-orders-table__header {
    border-bottom: 1px solid #d8d0c4;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.restaurant-order-row {
    border-bottom: 1px solid #ddd4c6;
}

.restaurant-order-row.is-selected {
    background: #ece7db;
}

.restaurant-order-row:last-child {
    border-bottom: 0;
}

.restaurant-order-row__ticket {
    color: #d09c10;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.8rem;
}

.restaurant-order-row__ticket-link {
    color: inherit;
    text-decoration: none;
}

.restaurant-order-row__ticket-link:hover {
    text-decoration: underline;
    text-decoration-color: rgba(208, 156, 16, 0.55);
}

.restaurant-order-row__client {
    display: grid;
    gap: .12rem;
}

.restaurant-order-row__client strong {
    font-size: 1.25rem;
}

.restaurant-order-row__client span,
.restaurant-order-row__muted {
    color: #9f978c;
}

.restaurant-order-row__client .restaurant-order-row__restaurant-update {
    color: #8a6b16;
    font-size: 0.76rem;
    font-weight: 650;
}

.restaurant-order-row__total {
    display: grid;
    gap: .2rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.45rem;
}

.catalog-card__actions form,
.catalog-table__actions form {
    display: inline-flex;
    margin: 0;
}

.restaurant-order-row__payment {
    color: #3f8f61;
    font-family: Inter, system-ui, sans-serif;
    font-size: .7rem;
    font-weight: 800;
    line-height: 1.25;
}

.restaurant-order-row__action {
    display: flex;
    justify-content: flex-end;
}

.restaurant-order-row__detail-action {
    display: flex;
    justify-content: center;
}

.restaurant-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 .85rem;
    border-radius: 999px;
    background: #dad4ca;
    font-weight: 800;
}

.restaurant-status-pill.is-pending {
    background: #f4df9b;
    color: #7d6007;
}

.restaurant-status-pill.is-preparing {
    background: #d6e2f6;
    color: #3763a0;
}

.restaurant-status-pill.is-assigned {
    background: #1c1c1c;
    color: #e2bc3e;
}

.restaurant-status-pill.is-route {
    background: #dcecd4;
    color: #26753c;
}

.restaurant-status-pill.is-cancelled {
    background: #f5d4d1;
    color: #8b2b24;
}

.restaurant-row-button {
    min-height: 32px;
    padding: 0 .95rem;
    border-radius: 14px;
    font-weight: 800;
}

.restaurant-row-button.is-solid {
    border: 0;
    background: #ddb534;
    color: #17130a;
}

.restaurant-row-button.is-outline {
    border: 1px solid #ddb534;
    background: transparent;
    color: #d8a40f;
}

.restaurant-order-detail {
    border-radius: 18px;
    overflow: hidden;
    background: #232220;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5efe2;
    position: sticky;
    top: 2rem;
}

.restaurant-order-preview-backdrop {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(5, 5, 5, .78);
    backdrop-filter: blur(5px);
}

.restaurant-order-preview-modal {
    position: relative;
    top: auto;
    width: min(100%, 720px);
    max-height: calc(100dvh - 2.5rem);
    display: flex;
    flex-direction: column;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .62);
}

.restaurant-order-preview-modal .restaurant-order-detail__head {
    flex: 0 0 auto;
}

.restaurant-order-preview-modal .restaurant-order-detail__body {
    overflow-y: auto;
    overscroll-behavior: contain;
}

.restaurant-order-detail__head {
    padding: 1.2rem 1.35rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-order-detail__head strong {
    color: #ddb534;
    display: block;
    font-size: 1.5rem;
    font-family: "Fraunces", Georgia, serif;
}

.restaurant-order-detail__head span {
    color: #a89f92;
}

.restaurant-order-detail__close {
    color: #fff7e8;
    text-decoration: none;
    font-size: 1.8rem;
    line-height: 1;
}

.restaurant-order-detail__body {
    padding: 1.3rem;
    display: grid;
    gap: 1rem;
}

.restaurant-order-detail__customer h2 {
    margin: 0;
    color: #fff7e8;
    font-family: "Fraunces", Georgia, serif;
    font-size: 2rem;
}

.restaurant-order-detail__customer p {
    margin: .35rem 0 0;
    color: #bdb4a7;
}

.restaurant-order-detail__payment-card {
    display: grid;
    gap: .85rem;
    padding: 1rem;
    border: 1px solid rgba(92, 205, 143, .28);
    border-radius: 16px;
    background: rgba(44, 138, 86, .12);
}

.restaurant-order-detail__payment-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-order-detail__payment-card span,
.restaurant-order-detail__payment-card dt {
    color: #a9cdb8;
}

.restaurant-order-detail__payment-card strong {
    color: #78dda3;
}

.restaurant-order-detail__payment-card dl {
    display: grid;
    gap: .55rem;
    margin: 0;
}

.restaurant-order-detail__payment-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-order-detail__payment-card dt,
.restaurant-order-detail__payment-card dd {
    margin: 0;
    font-size: .82rem;
}

.restaurant-order-detail__payment-card dd {
    color: #fff7e8;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-align: right;
}

.restaurant-order-detail__summary-card {
    padding: 1rem;
    border-radius: 16px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    gap: .9rem;
}

.restaurant-order-detail__participant-group {
    display: grid;
    gap: .7rem;
    padding: .75rem;
    border: 1px solid rgba(221, 181, 52, .24);
    border-radius: 13px;
    background: rgba(221, 181, 52, .055);
}

.restaurant-order-detail__participant-group > header,
.restaurant-order-detail__participant-group > header > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
}

.restaurant-order-detail__participant-group > header {
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #fff7e8;
}

.restaurant-order-detail__eyebrow {
    color: #8d857a;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.restaurant-order-detail__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #f5efe2;
}

.restaurant-order-detail__line span {
    color: #c6bfb4;
}

.restaurant-order-detail__divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-order-detail__line--grand strong {
    color: #ddb534;
    font-size: 1.1rem;
}

.restaurant-order-detail__action-form {
    margin: 0;
}

.restaurant-cancellation-message {
    display: grid;
    gap: .4rem;
    margin-bottom: .75rem;
    color: #cfc4b3;
    font-size: .82rem;
    font-weight: 800;
}

.restaurant-cancellation-message textarea {
    width: 100%;
    min-height: 82px;
    padding: .7rem .8rem;
    resize: vertical;
    border: 1px solid rgba(239, 138, 138, .4);
    border-radius: 12px;
    background: #151313;
    color: #fff7e8;
    font: inherit;
    font-weight: 500;
}

.restaurant-cancellation-message textarea:focus {
    border-color: #ef8a8a;
    outline: 2px solid rgba(239, 138, 138, .18);
}

.restaurant-cancellation-message small {
    color: #9f9588;
    font-size: .72rem;
    font-weight: 600;
}

.restaurant-order-payment-state,
.restaurant-order-row__payment {
    color: #39c778;
    font-family: "Manrope", Arial, sans-serif;
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.restaurant-order-payment-state.is-pending {
    color: #e6b949;
}

.restaurant-order-detail__primary,
.restaurant-order-detail__danger {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 900;
}

.restaurant-order-detail__primary {
    border: 0;
    background: #ddb534;
    color: #17130a;
}

.restaurant-order-detail__primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.restaurant-order-detail__secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(221, 181, 52, 0.42);
    background: transparent;
    color: #ddb534;
    text-decoration: none;
    font-weight: 800;
}

.restaurant-order-detail__danger {
    border: 1px solid #8d2020;
    background: transparent;
    color: #ef8a8a;
}

.restaurant-assign-modal__backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
}

.restaurant-assign-modal {
    width: min(100%, 420px);
    border-radius: 18px;
    overflow: hidden;
    background: #232220;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5efe2;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.restaurant-assign-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-assign-modal__head h2 {
    margin: 0;
    color: #fff7e8;
    font-size: 1.8rem;
    font-family: "Fraunces", Georgia, serif;
}

.restaurant-assign-modal__head p {
    margin: .3rem 0 0;
    color: #9d9589;
}

.restaurant-assign-modal__close {
    color: #fff7e8;
    text-decoration: none;
    font-size: 1.5rem;
    line-height: 1;
}

.restaurant-assign-modal__list {
    display: grid;
    gap: .7rem;
    padding: 1rem;
}

.restaurant-assign-modal__empty {
    padding: 1rem;
    border-radius: 16px;
    background: #161616;
    color: #bdb4a7;
    text-align: center;
}

.restaurant-assign-modal__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .9rem;
    padding: .7rem .75rem;
    border-radius: 14px;
    background: #161616;
}

.restaurant-assign-modal__item.is-disabled {
    opacity: .6;
}

.restaurant-assign-modal__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #463a12, #1f1d1a);
    color: #ddb534;
    font-weight: 900;
    font-size: .78rem;
}

.restaurant-assign-modal__identity {
    display: grid;
    gap: .15rem;
}

.restaurant-assign-modal__identity strong {
    color: #fff7e8;
    font-size: 1.25rem;
}

.restaurant-assign-modal__identity span {
    color: #9d9589;
    font-size: .92rem;
}

.restaurant-assign-modal__assign-button,
.restaurant-assign-modal__badge {
    min-height: 36px;
    padding: 0 .95rem;
    border-radius: 14px;
    font-weight: 800;
}

.restaurant-assign-modal__assign-button {
    border: 0;
    background: #ddb534;
    color: #17130a;
}

.restaurant-assign-modal__badge {
    display: inline-flex;
    align-items: center;
    background: #575757;
    color: #d6d1ca;
}

.restaurant-empty-state {
    padding: 2rem;
    border-radius: 18px;
    background: #232220;
    color: #d5ccbf;
    text-align: center;
}

.restaurant-order-page {
    display: grid;
    gap: 1.25rem;
    color: #f7efe2;
}

.restaurant-order-page__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(221, 181, 52, 0.18);
}

.restaurant-order-page__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .7rem;
    color: #a89f92;
    font-size: .95rem;
}

.restaurant-order-page__breadcrumbs strong {
    color: #ddb534;
}

.restaurant-order-page__back,
.restaurant-order-page__ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #171717;
    color: #fff7e8;
    text-decoration: none;
    font-weight: 800;
}

.restaurant-order-page__top-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .85rem;
}

.restaurant-order-page__ghost:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.restaurant-order-page__hero {
    display: grid;
    gap: 1.25rem;
    padding: 1.4rem;
    border-radius: 22px;
    background: #171717;
    border: 1px solid rgba(221, 181, 52, 0.18);
}

.restaurant-order-page__hero-main {
    display: grid;
    gap: .3rem;
}

.restaurant-order-page__eyebrow,
.restaurant-order-page__section-title {
    color: #8f877c;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.restaurant-order-page__hero-main h1 {
    margin: 0;
    color: #ddb534;
    font-size: clamp(2.6rem, 3vw, 3.4rem);
    font-family: "Fraunces", Georgia, serif;
}

.restaurant-order-page__hero-main p,
.restaurant-order-page__hero-status p,
.restaurant-order-page__muted {
    margin: 0;
    color: #c3baae;
}

.restaurant-order-page__hero-status {
    display: grid;
    justify-items: end;
    gap: .35rem;
}

.restaurant-order-page__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.restaurant-order-page__stat,
.restaurant-order-page__main-card,
.restaurant-order-page__side-card {
    border-radius: 18px;
    background: #232220;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-order-page__stat {
    display: grid;
    gap: .35rem;
    padding: 1rem 1.1rem;
}

.restaurant-order-page__stat span {
    color: #8f877c;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.restaurant-order-page__stat strong {
    color: #fff7e8;
    font-size: 2rem;
    font-family: "Fraunces", Georgia, serif;
}

.restaurant-order-page__stat small {
    color: #93cb80;
}

.restaurant-order-page__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.restaurant-order-page__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 1rem;
    border-radius: 12px;
    color: #9f9689;
    text-decoration: none;
    font-weight: 800;
}

.restaurant-order-page__tab.is-active {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #151515;
    color: #fff7e8;
}

.restaurant-order-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, .85fr);
    gap: 1.25rem;
    align-items: start;
}

.restaurant-order-page__main-card,
.restaurant-order-page__side-card {
    padding: 1.2rem;
}

.restaurant-order-page__section {
    display: grid;
    gap: 1rem;
}

.restaurant-order-page__participant-group {
    overflow: hidden;
    border: 1px solid rgba(221, 181, 52, .2);
    border-radius: 16px;
    background: rgba(255, 255, 255, .018);
}

.restaurant-order-page__participant-group > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem 1rem;
    background: rgba(221, 181, 52, .1);
    color: #fff7e8;
}

.restaurant-order-page__participant-group > header > div {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.restaurant-order-page__participant-group > header > div > div {
    display: grid;
    gap: .05rem;
}

.restaurant-order-page__participant-group > header small {
    color: #a99d8c;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.restaurant-order-page__participant-group .restaurant-order-page__product-row {
    margin: 0 1rem;
}

.restaurant-order-page__product-row,
.restaurant-order-page__history-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.restaurant-order-page__history-row {
    grid-template-columns: minmax(0, 1fr) auto;
}

.restaurant-order-page__product-row:last-of-type,
.restaurant-order-page__history-row:last-of-type {
    border-bottom: 0;
}

.restaurant-order-edit__heading,
.restaurant-order-edit__summary,
.restaurant-order-edit__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-order-edit {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(221, 181, 52, .24);
    border-radius: 16px;
    background: rgba(0, 0, 0, .14);
}

.restaurant-order-edit__notice,
.restaurant-order-edit__message {
    padding: .75rem .9rem;
    border-radius: 10px;
    color: #d4cabb;
    background: rgba(221, 181, 52, .1);
}

.restaurant-order-edit__message.is-error {
    color: #ffd3d3;
    background: rgba(190, 57, 57, .18);
}

.restaurant-order-edit__message.is-success {
    color: #c9f2bd;
    background: rgba(74, 145, 61, .18);
}

.restaurant-order-edit__lines,
.restaurant-order-edit__catalog,
.restaurant-order-edit__catalog-list {
    display: grid;
    gap: .75rem;
}

.restaurant-order-edit__line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: .75rem;
    align-items: center;
    padding: .85rem;
    border-radius: 12px;
    background: #181817;
}

.restaurant-order-edit__line-copy,
.restaurant-order-edit__catalog-list button span {
    display: grid;
    gap: .15rem;
}

.restaurant-order-edit__line-copy strong,
.restaurant-order-edit__catalog > strong,
.restaurant-order-edit__catalog-list button strong,
.restaurant-order-edit__summary strong {
    color: #fff7e8;
}

.restaurant-order-edit__line-copy span,
.restaurant-order-edit__line-copy small,
.restaurant-order-edit__catalog-list button small,
.restaurant-order-edit__summary span {
    color: #9f9689;
}

.restaurant-order-edit__quantity {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.restaurant-order-edit__quantity button,
.restaurant-order-edit__remove {
    border: 1px solid rgba(221, 181, 52, .25);
    border-radius: 9px;
    background: rgba(221, 181, 52, .12);
    color: #ddb534;
    font-weight: 900;
    cursor: pointer;
}

.restaurant-order-edit__quantity button {
    width: 34px;
    height: 34px;
}

.restaurant-order-edit__remove {
    min-height: 34px;
    padding: 0 .7rem;
    color: #ffabab;
    border-color: rgba(255, 120, 120, .2);
    background: rgba(160, 45, 45, .12);
}

.restaurant-order-edit__line textarea,
.restaurant-order-edit__catalog input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: #0f0f0f;
    color: #fff7e8;
    padding: .7rem .8rem;
}

.restaurant-order-edit__line textarea {
    grid-column: 1 / -1;
    resize: vertical;
}

.restaurant-order-edit__catalog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 320px;
    overflow-y: auto;
}

.restaurant-order-edit__catalog-list button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    min-height: 62px;
    padding: .7rem .85rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 11px;
    background: #181817;
    cursor: pointer;
}

.restaurant-order-edit__summary {
    padding-top: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.restaurant-order-edit__actions {
    justify-content: flex-end;
}

.restaurant-order-edit__actions button {
    min-height: 42px;
    border: 0;
    cursor: pointer;
}

.restaurant-order-edit__actions button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.restaurant-order-page__product-qty {
    min-width: 42px;
    min-height: 34px;
    padding: 0 .7rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(221, 181, 52, 0.18);
    color: #ddb534;
    font-weight: 900;
}

.restaurant-order-page__product-copy,
.restaurant-order-page__history-row div {
    display: grid;
    gap: .18rem;
}

.restaurant-order-page__product-copy strong,
.restaurant-order-page__history-row strong,
.restaurant-order-page__info-grid strong,
.restaurant-order-page__status-highlight,
.restaurant-order-page__next-step {
    color: #fff7e8;
}

.restaurant-order-page__product-copy span,
.restaurant-order-page__history-row p,
.restaurant-order-page__info-grid label {
    color: #a79e92;
    margin: 0;
}

.restaurant-order-page__history-row span {
    color: #8f877c;
    white-space: nowrap;
}

.restaurant-order-page__totals {
    display: grid;
    gap: .55rem;
    padding-top: .5rem;
}

.restaurant-order-page__totals div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #d8d0c3;
}

.restaurant-order-page__totals .is-highlight strong {
    color: #ddb534;
    font-size: 1.2rem;
}

.restaurant-order-page__note-box {
    display: grid;
    gap: .55rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(221, 181, 52, 0.08);
    border: 1px solid rgba(221, 181, 52, 0.28);
    color: #f2e6c6;
}

.restaurant-order-page__note-box p {
    margin: 0;
    color: #fff7e8;
}

.restaurant-order-page__info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.restaurant-order-page__info-grid .is-wide {
    grid-column: 1 / -1;
}

.restaurant-order-page__payment-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(92, 205, 143, .28);
    border-radius: 14px;
    background: rgba(44, 138, 86, .12);
}

.restaurant-order-page__payment-banner div {
    display: grid;
    gap: .2rem;
}

.restaurant-order-page__payment-banner span,
.restaurant-order-page__payment-banner p {
    color: #a9cdb8;
}

.restaurant-order-page__payment-banner strong {
    color: #78dda3;
}

.restaurant-order-page__payment-banner p {
    margin: 0;
    font-size: .88rem;
    text-align: right;
}

.restaurant-order-page__sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 1.5rem;
}

.restaurant-order-page__status-highlight {
    font-size: 1.1rem;
    font-weight: 900;
}

.restaurant-order-page__next-step {
    color: #ddb534;
    font-size: 1.15rem;
    font-weight: 900;
}

.restaurant-order-page__side-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: .2rem 0;
}

.restaurant-order-page__rider {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .9rem;
    align-items: center;
}

.restaurant-order-page__rider p {
    margin: .2rem 0 0;
    color: #a79e92;
}

.restaurant-order-page__rider-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin-top: .9rem;
}

.restaurant-order-page__side-button,
.restaurant-order-page__primary-button,
.restaurant-order-page__danger-button,
.restaurant-order-page__primary-link,
.restaurant-order-page__secondary-link {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
}

.restaurant-order-page__side-button {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: #f7efe2;
}

.restaurant-order-page__primary-button,
.restaurant-order-page__primary-link {
    border: 0;
    background: #ddb534;
    color: #17130a;
}

.restaurant-order-page__secondary-link {
    border: 1px solid rgba(221, 181, 52, 0.42);
    background: transparent;
    color: #ddb534;
}

.restaurant-order-page__danger-button {
    border: 1px solid #8d2020;
    background: transparent;
    color: #ef8a8a;
}

.restaurant-order-page__action-form {
    margin: 0;
}

.restaurant-ticket-print {
    display: none;
}

.restaurant-ticket-print--measuring {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: -10000px !important;
    visibility: hidden !important;
    box-sizing: border-box !important;
    width: 54mm !important;
    min-width: 54mm !important;
    max-width: 54mm !important;
    margin: 0 !important;
    padding: 2mm 1mm 7mm !important;
    color: #000 !important;
    background: #fff !important;
    overflow: hidden !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

.restaurant-ticket-print--measuring,
.restaurant-ticket-print--measuring * {
    box-sizing: border-box !important;
    color: #000 !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.restaurant-ticket-print--measuring .restaurant-ticket-print__header h1 {
    font-size: 15px !important;
    font-weight: 900 !important;
    overflow-wrap: anywhere;
}

.restaurant-ticket-print--measuring .restaurant-ticket-print__header p,
.restaurant-ticket-print--measuring .restaurant-ticket-print__meta,
.restaurant-ticket-print--measuring .restaurant-ticket-print__items,
.restaurant-ticket-print--measuring .restaurant-ticket-print__totals,
.restaurant-ticket-print--measuring .restaurant-ticket-print__notes {
    font-size: 11px !important;
    font-weight: 700 !important;
}

.restaurant-ticket-print--measuring .restaurant-ticket-print__meta div,
.restaurant-ticket-print--measuring .restaurant-ticket-print__totals div,
.restaurant-ticket-print--measuring .restaurant-ticket-print__item {
    width: 100% !important;
    max-width: 100% !important;
}

.restaurant-ticket-print--measuring .restaurant-ticket-print__meta strong {
    min-width: 0;
    max-width: 32mm;
    text-align: right;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.restaurant-ticket-print--measuring .restaurant-ticket-print__item-main strong {
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

.restaurant-ticket-print--measuring .restaurant-ticket-print__item-main small,
.restaurant-ticket-print--measuring .restaurant-ticket-print__item-main span,
.restaurant-ticket-print--measuring .restaurant-ticket-print__meta span,
.restaurant-ticket-print--measuring .restaurant-ticket-print__notes span {
    font-size: 10px !important;
    font-weight: 700 !important;
}

.restaurant-ticket-print--measuring .restaurant-ticket-print__divider {
    border-top: 2px dashed #000 !important;
    margin: 2mm 0 !important;
}

.restaurant-ticket-print--measuring .restaurant-ticket-print__totals .is-grand {
    padding-top: 1mm;
    border-top: 1px solid #000;
    font-size: 14px !important;
    font-weight: 900 !important;
}

.restaurant-ticket-print__header,
.restaurant-ticket-print__meta,
.restaurant-ticket-print__items,
.restaurant-ticket-print__totals,
.restaurant-ticket-print__notes {
    display: grid;
    gap: .4rem;
}

.restaurant-ticket-print__header {
    text-align: center;
}

.restaurant-ticket-print__header h1 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}

.restaurant-ticket-print__header p,
.restaurant-ticket-print__notes p {
    margin: 0;
}

.restaurant-ticket-print__meta div,
.restaurant-ticket-print__totals div,
.restaurant-ticket-print__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2mm;
}

.restaurant-ticket-print__meta span,
.restaurant-ticket-print__item-main span,
.restaurant-ticket-print__notes span {
    color: #000;
    font-size: 10px;
    font-weight: 700;
}

.restaurant-ticket-print__item-main {
    display: grid;
    gap: .15rem;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.restaurant-ticket-print__participant-group {
    display: grid;
    gap: .3rem;
    padding: .4rem 0;
    border-bottom: 1px dashed #000;
}

.restaurant-ticket-print__participant-group > header {
    display: flex;
    justify-content: space-between;
    gap: 2mm;
    padding-bottom: .2rem;
    font-size: 11px;
    text-transform: uppercase;
}

.restaurant-ticket-print__item-main small {
    display: block;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.restaurant-ticket-print__item > strong,
.restaurant-ticket-print__totals strong {
    white-space: nowrap;
}

.restaurant-ticket-print__divider {
    border-top: 1px dashed #000;
    margin: .5rem 0;
}

.restaurant-ticket-print__totals .is-grand {
    font-size: .95rem;
    font-weight: 800;
}

.restaurant-ticket-print__printed-at {
    display: grid;
    gap: .15rem;
    text-align: center;
    font-size: 10px;
}

.restaurant-ticket-print__printed-at span {
    font-weight: 700;
}

.restaurant-ticket-print__printed-at strong {
    font-size: 11px;
    font-weight: 900;
}

@page {
    size: auto;
    margin: 0;
}

@media print {
    html,
    body {
        width: 58mm !important;
        min-width: 58mm !important;
        max-width: 58mm !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        color: #000 !important;
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        line-height: 1.35 !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .restaurant-sidebar,
    .restaurant-sidebar-toggle,
    .restaurant-sidebar-overlay,
    .restaurant-order-page,
    .restaurant-order-page__topbar,
    .restaurant-order-page__tabs,
    .restaurant-order-page__layout,
    .restaurant-order-page__sidebar,
    .restaurant-header,
    .restaurant-console__fallback,
    body:not(.daily-closing-print) .restaurant-main > :not(.restaurant-ticket-print) {
        display: none !important;
    }

    .restaurant-console,
    .restaurant-main {
        display: block !important;
        width: 58mm !important;
        min-width: 0 !important;
        max-width: 58mm !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #fff !important;
        overflow: visible !important;
    }

    .restaurant-ticket-print {
        display: block !important;
        box-sizing: border-box !important;
        width: 54mm !important;
        min-width: 0 !important;
        max-width: 54mm !important;
        margin: 0 auto;
        padding: 2mm 1mm 7mm !important;
        color: #000 !important;
        background: #fff !important;
        overflow: visible !important;
    }

    .restaurant-ticket-print,
    .restaurant-ticket-print * {
        box-sizing: border-box !important;
        color: #000 !important;
        opacity: 1 !important;
        text-shadow: none !important;
    }

    .restaurant-ticket-print__header h1 {
        font-size: 15px !important;
        font-weight: 900 !important;
        overflow-wrap: anywhere;
    }

    .restaurant-ticket-print__header p,
    .restaurant-ticket-print__meta,
    .restaurant-ticket-print__items,
    .restaurant-ticket-print__totals,
    .restaurant-ticket-print__notes {
        font-size: 11px !important;
        font-weight: 700 !important;
    }

    .restaurant-ticket-print__meta div,
    .restaurant-ticket-print__totals div,
    .restaurant-ticket-print__item {
        width: 100% !important;
        max-width: 100% !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .restaurant-ticket-print__meta strong {
        min-width: 0;
        max-width: 32mm;
        text-align: right;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .restaurant-ticket-print__item-main strong {
        font-size: 12px !important;
        font-weight: 900 !important;
        line-height: 1.25 !important;
    }

    .restaurant-ticket-print__item-main small,
    .restaurant-ticket-print__item-main span,
    .restaurant-ticket-print__meta span,
    .restaurant-ticket-print__notes span {
        font-size: 10px !important;
        font-weight: 700 !important;
    }

    .restaurant-ticket-print__divider {
        border-top: 2px dashed #000 !important;
        margin: 2mm 0 !important;
    }

    .restaurant-ticket-print__totals .is-grand {
        padding-top: 1mm;
        border-top: 1px solid #000;
        font-size: 14px !important;
        font-weight: 900 !important;
    }
}

@media (max-width: 1199.98px) {
    .restaurant-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .restaurant-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .restaurant-menu-import {
        grid-template-columns: 1fr;
    }

    .restaurant-orders-layout.has-detail {
        grid-template-columns: 1fr;
    }

    .restaurant-order-detail {
        position: static;
    }

    .restaurant-orders-table__header,
    .restaurant-order-row {
        grid-template-columns: 1fr 1.5fr .8fr .9fr .9fr 1fr .8fr 1.1fr;
    }

    .restaurant-order-page__layout {
        grid-template-columns: 1fr;
    }

    .restaurant-order-page__sidebar {
        position: static;
    }

    .restaurant-order-page__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .restaurant-console,
    .restaurant-console.is-sidebar-collapsed {
        grid-template-columns: 1fr;
    }

    .restaurant-sidebar {
        position: fixed;
        z-index: 60;
        inset: 0 auto 0 0;
        width: min(86vw, 300px);
        gap: 1.5rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 0;
        overflow-y: auto;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(-105%);
        box-shadow: 20px 0 50px rgba(0, 0, 0, .4);
    }

    .restaurant-console.is-sidebar-open .restaurant-sidebar {
        transform: translateX(0);
    }

    .restaurant-sidebar-toggle--desktop {
        display: none;
    }

    .restaurant-sidebar-toggle--mobile {
        display: inline-flex;
        top: .75rem;
        left: .75rem;
    }

    .restaurant-sidebar-overlay {
        position: fixed;
        z-index: 55;
        inset: 0;
        display: block;
        width: 100%;
        border: 0;
        background: rgba(0, 0, 0, .66);
        backdrop-filter: blur(2px);
    }

    .restaurant-sidebar__mobile-close {
        width: 34px;
        height: 34px;
        margin-left: auto;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 50%;
        display: inline-grid;
        place-items: center;
        background: #171717;
        color: #f7f1e5;
        font-size: 1.1rem;
    }

    .restaurant-sidebar__footer {
        grid-template-columns: 1fr;
    }

    .restaurant-main {
        padding: 4.25rem 1rem 2rem;
    }

    .restaurant-header {
        flex-direction: column;
    }

    .restaurant-filter--ghost {
        margin-left: 0;
    }

    .restaurant-order-page__topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .restaurant-order-page__hero {
        padding: 1rem;
    }

    .restaurant-order-page__hero-status {
        justify-items: start;
    }

    .restaurant-metrics__kpis,
    .restaurant-metrics__grid,
    .restaurant-metrics__grid--bottom {
        grid-template-columns: 1fr;
    }

    .restaurant-metrics__chart {
        min-height: 240px;
        gap: .65rem;
        padding-left: .65rem;
        padding-right: .65rem;
    }
}

@media (max-width: 767.98px) {
    .restaurant-stats {
        grid-template-columns: 1fr;
    }

    .restaurant-menu-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-header__actions,
    .restaurant-header__actions > * {
        width: 100%;
    }

    .restaurant-menu-import {
        padding: 1rem;
    }

    .restaurant-metrics__top-row {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .restaurant-metrics__dish-badge {
        grid-column: 2;
        justify-self: start;
    }

    .catalog-module__grid {
        grid-template-columns: 1fr;
    }

    .catalog-module__grid--attributes {
        grid-template-columns: 1fr;
    }

    .catalog-table__header {
        display: none;
    }

    .catalog-table__row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .catalog-table__actions {
        justify-content: flex-start;
    }

    .catalog-modal-backdrop {
        padding: 1rem;
    }

    .catalog-modal__body,
    .catalog-modal__header,
    .catalog-modal__footer {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .catalog-modal__footer {
        grid-template-columns: 1fr;
    }

    .catalog-card__head--compact,
    .catalog-modal__choice {
        grid-template-columns: 1fr;
    }

    .catalog-card__footer--end {
        justify-content: flex-start;
    }

    .restaurant-orders-table {
        background: transparent;
    }

    .restaurant-orders-table__header {
        display: none;
    }

    .restaurant-order-row {
        grid-template-columns: 1fr;
        gap: .55rem;
        margin-bottom: .85rem;
        border: 1px solid #ddd4c6;
        border-radius: 18px;
        background: #f5f3ef;
    }

    .restaurant-order-row__action {
        justify-content: flex-start;
    }

    .restaurant-order-preview-backdrop {
        place-items: stretch;
        padding: 0;
    }

    .restaurant-order-preview-modal {
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border: 0;
        border-radius: 0;
    }

    .restaurant-order-preview-modal .restaurant-order-detail__head {
        padding-top: max(1rem, env(safe-area-inset-top));
        background: #232220;
    }

    .restaurant-order-preview-modal .restaurant-order-detail__body {
        padding: 1rem 1rem max(1.25rem, env(safe-area-inset-bottom));
    }

    .restaurant-order-preview-modal .restaurant-order-detail__customer h2 {
        font-size: 1.65rem;
    }

    .restaurant-order-page__stats,
    .restaurant-order-page__info-grid,
    .restaurant-order-page__rider-actions {
        grid-template-columns: 1fr;
    }

    .restaurant-order-page__product-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .restaurant-order-page__product-row > strong {
        grid-column: 2;
    }

    .restaurant-order-edit__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .restaurant-order-edit__line {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .restaurant-order-edit__line > strong {
        grid-column: 1;
    }

    .restaurant-order-edit__catalog-list {
        grid-template-columns: 1fr;
    }

    .restaurant-order-edit__actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .restaurant-order-page__history-row {
        grid-template-columns: 1fr;
    }

    .restaurant-order-page__history-row span {
        white-space: normal;
    }

    .restaurant-order-page__main-card,
    .restaurant-order-page__side-card {
        padding: 1rem;
    }
}

.restaurant-onboarding {
    min-height: 100vh;
    padding: 1rem;
    background:
        radial-gradient(circle at top, rgba(221, 181, 52, 0.08), transparent 24%),
        linear-gradient(180deg, #161616, #121212);
    color: #f5efe4;
}

.restaurant-onboarding__shell {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.restaurant-onboarding__topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding-top: .4rem;
}

.restaurant-onboarding__topbar > :last-child {
    justify-self: end;
}

.restaurant-onboarding__nav-button {
    min-height: 38px;
    padding: 0 .95rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    color: #f2ede3;
    text-decoration: none;
}

.restaurant-onboarding__brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    justify-self: center;
    color: #f4efe4;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 800;
}

.restaurant-onboarding__brand span span {
    color: #ddb534;
}

.restaurant-onboarding__brand-logo {
    width: 38px;
    height: 38px;
    font-size: .9rem;
}

.restaurant-onboarding__hero {
    padding: 2rem 0 1.8rem;
    text-align: center;
}

.restaurant-onboarding__icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 1.2rem;
    position: relative;
    border-radius: 22px;
    background: rgba(97, 79, 24, 0.35);
    display: grid;
    place-items: center;
}

.restaurant-onboarding__icon-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: .05rem .35rem;
    border-radius: 6px;
    background: #5a4e75;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
}

.restaurant-onboarding__icon-store {
    width: 38px;
    height: 28px;
    border-radius: 4px;
    background:
        linear-gradient(180deg, #3f3f3f 0 28%, #4fd2ff 28% 100%);
    position: relative;
    box-shadow: 12px 8px 0 -8px #ff6aa0;
}

.restaurant-onboarding__icon-store::before,
.restaurant-onboarding__icon-store::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 14px;
    background: #563c1d;
}

.restaurant-onboarding__icon-store::before {
    left: 6px;
}

.restaurant-onboarding__icon-store::after {
    right: 6px;
}

.restaurant-onboarding__title {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.3rem, 2.4vw + 1.6rem, 4rem);
    color: #f9f4e8;
}

.restaurant-onboarding__subtitle {
    margin: .85rem 0 0;
    color: #aba39a;
    font-size: 1.2rem;
}

.restaurant-onboarding__steps {
    margin: 0 auto 1.8rem;
    padding: 0;
    width: min(100%, 760px);
    list-style: none;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .3rem;
}

.restaurant-onboarding__step {
    display: grid;
    justify-items: center;
    color: #8d8a84;
}

.restaurant-onboarding__step-button {
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    border: 0;
    background: transparent;
    color: inherit;
}

.restaurant-onboarding__step-button:disabled {
    opacity: 1;
}

.restaurant-onboarding__step-dot {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #333333;
    font-weight: 800;
}

.restaurant-onboarding__step-line {
    height: 2px;
    background: #333333;
}

.restaurant-onboarding__step:last-child .restaurant-onboarding__step-line {
    display: none;
}

.restaurant-onboarding__step-label {
    margin-top: .65rem;
    font-size: .94rem;
    font-weight: 700;
}

.restaurant-onboarding__step.is-current,
.restaurant-onboarding__step.is-complete {
    color: #ddb534;
}

.restaurant-onboarding__step.is-current .restaurant-onboarding__step-dot,
.restaurant-onboarding__step.is-complete .restaurant-onboarding__step-dot {
    background: #ddb534;
    color: #17130a;
}

.restaurant-onboarding__step.is-complete .restaurant-onboarding__step-dot {
    background: #353535;
    border: 2px solid #ddb534;
    color: #ddb534;
    text-transform: uppercase;
}

.restaurant-onboarding__step.is-current .restaurant-onboarding__step-line,
.restaurant-onboarding__step.is-complete .restaurant-onboarding__step-line {
    background: #ddb534;
}

.restaurant-onboarding__panel {
    padding: 2.25rem 2.4rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(33, 33, 33, 0.98), rgba(27, 27, 27, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.restaurant-onboarding__panel-head h2,
.restaurant-onboarding__success h2,
.restaurant-onboarding__subsection-head h3 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    color: #f8f3e8;
}

.restaurant-onboarding__panel-head h2,
.restaurant-onboarding__success h2 {
    font-size: clamp(2rem, 1vw + 1.6rem, 3rem);
}

.restaurant-onboarding__optional {
    color: #a9a299;
    font-family: Inter, Arial, sans-serif;
    font-size: 0.55em;
    font-weight: 500;
}

.dish-form__helper {
    margin: -.25rem 0 1rem;
    color: #8f877d;
    font-size: .9rem;
}

.dish-form__option-groups-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    margin: 1rem 0;
}

.dish-form__option-group {
    display: grid;
    gap: .85rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #e3d8c8;
    border-radius: 16px;
    background: #fffaf1;
}

.dish-form__option-group-head {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) 100px 100px auto;
    align-items: end;
    gap: .8rem;
}

.dish-form__option-group-head label {
    display: grid;
    gap: .35rem;
    color: #62594f;
    font-size: .82rem;
    font-weight: 750;
}

.dish-form__option-group-remove {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f4e5df;
    color: #9a372e;
    font-size: 1.3rem;
}

@media (max-width: 640px) {
    .dish-form__option-group-head {
        grid-template-columns: 1fr 1fr;
    }

    .dish-form__option-group-head label:first-child {
        grid-column: 1 / -1;
    }
}

.dish-form__extras-catalog {
    display: grid;
    gap: .8rem;
}

.dish-form__extra-option {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem;
    border: 1px solid #e1dbd2;
    border-radius: 14px;
    background: #faf8f4;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.dish-form__extra-option.is-selected {
    border-color: #d4a91d;
    background: #fff2bc;
}

.dish-form__group-option {
    display: grid;
    gap: .55rem;
}

.dish-form__group-option .dish-form__extra-option {
    width: 100%;
}

.dish-form__group-option-price {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    align-items: center;
    gap: .75rem;
    padding: 0 .25rem .35rem;
    color: #62594f;
    font-size: .82rem;
    font-weight: 750;
}

.dish-form__group-option-price.is-hidden {
    display: none;
}

@media (max-width: 640px) {
    .dish-form__group-option-price {
        grid-template-columns: 1fr;
    }
}

.dish-form__extra-option input {
    width: 18px;
    height: 18px;
    accent-color: #d4a91d;
}

.dish-form__extra-option span {
    flex: 1;
    color: #30291f;
    font-weight: 750;
}

.dish-form__extra-option strong {
    color: #8d6b00;
}

.dish-form__extras-empty {
    padding: 1rem;
    border: 1px dashed #d2c7b9;
    border-radius: 14px;
    color: #6f665b;
    background: #faf8f4;
}

.dish-form__extras-empty a,
.dish-form__extras-manage {
    color: #987300;
    font-weight: 800;
}

.dish-form__extras-manage {
    display: inline-block;
    margin-top: 1rem;
}

.catalog-table__row.is-muted {
    opacity: .58;
}

.customer-extras-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.customer-extras-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(20, 14, 7, .65);
    backdrop-filter: blur(3px);
}

.customer-extras-modal__card {
    position: relative;
    width: min(520px, 100%);
    max-height: min(720px, calc(100vh - 2rem));
    overflow: auto;
    border-radius: 24px;
    padding: 1.35rem;
    background: #fffaf1;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

.customer-extras-modal__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.customer-extras-modal__head span {
    color: #8c7554;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.customer-extras-modal__head h2 {
    margin: .25rem 0 0;
    color: #2d2114;
}

.customer-extras-modal__limit {
    margin: .85rem 0 0;
    color: #70591b;
    font-size: .9rem;
    font-weight: 700;
}

.customer-extras-modal__close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #eee5d7;
    color: #3a2b1b;
    font-size: 1.5rem;
}

.customer-extras-modal__list {
    display: grid;
    gap: .65rem;
    margin: 1.2rem 0;
}

.customer-extras-modal__group {
    margin-top: 1.15rem;
}

.customer-extras-modal__group .customer-extras-modal__list {
    margin: .65rem 0 0;
}

.customer-extras-modal__group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #3b2b1b;
}

.customer-extras-modal__group-head span {
    color: #80651b;
    font-size: .82rem;
    font-weight: 750;
}

.customer-extras-modal__error {
    margin: 1rem 0;
    padding: .75rem .9rem;
    border: 1px solid #e4a49d;
    border-radius: 12px;
    background: #fff0ed;
    color: #8f2820;
    font-weight: 700;
}

.customer-extras-modal__option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .75rem;
    align-items: center;
    padding: .9rem 1rem;
    border: 1px solid #e4d9c9;
    border-radius: 14px;
    color: #3b2b1b;
    background: #fff;
    cursor: pointer;
}

.customer-extras-modal__option input {
    width: 20px;
    height: 20px;
    accent-color: #d9a916;
}

.customer-extras-modal__option:has(input:disabled) {
    cursor: not-allowed;
    opacity: .5;
}

.customer-extras-modal__option strong {
    color: #85650a;
}

.customer-extras-modal__add {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 14px;
    color: #1d170c;
    background: #edbd2c;
    font-weight: 900;
}

.customer-cart__extras {
    color: #85650a !important;
    font-size: .82rem !important;
}

.restaurant-favorite-customers {
    display: grid;
    gap: 1.25rem;
}

.restaurant-favorite-customers__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-favorite-customers__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.restaurant-favorite-customers__summary article {
    display: grid;
    gap: .45rem;
    padding: 1.15rem;
    border: 1px solid rgba(221, 181, 52, .2);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(221, 181, 52, .1), rgba(255, 255, 255, .025));
}

.restaurant-favorite-customers__summary span {
    color: #a9a196;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.restaurant-favorite-customers__summary strong {
    color: #f7c83d;
    font-size: 1.8rem;
}

.restaurant-favorite-customers__toolbar {
    display: grid;
    grid-template-columns: auto minmax(220px, 420px) 1fr;
    align-items: center;
    gap: .8rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: #191919;
}

.restaurant-favorite-customers__toolbar label {
    color: #f6efe3;
    font-weight: 800;
}

.restaurant-favorite-customers__toolbar input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 11px;
    padding: .72rem .85rem;
    color: #f7f0e5;
    background: #101010;
}

.restaurant-favorite-customers__toolbar > span {
    justify-self: end;
    color: #9f978b;
    font-size: .88rem;
}

.restaurant-favorite-customers__table-wrap {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: #181818;
}

.restaurant-favorite-customers__table-header,
.restaurant-favorite-customers__row {
    display: grid;
    grid-template-columns: 1.35fr 1.5fr .9fr .55fr .85fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
}

.restaurant-favorite-customers__table-header {
    color: #938b80;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.restaurant-favorite-customers__row {
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: #ddd4c8;
}

.restaurant-favorite-customers__identity {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
}

.restaurant-favorite-customers__identity > div,
.restaurant-favorite-customers__contact {
    display: grid;
    gap: .18rem;
    min-width: 0;
}

.restaurant-favorite-customers__identity strong,
.restaurant-favorite-customers__contact a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.restaurant-favorite-customers__identity small,
.restaurant-favorite-customers__contact small {
    color: #90887d;
}

.restaurant-favorite-customers__contact a {
    color: #e8c85e;
    text-decoration: none;
}

.restaurant-favorite-customers__avatar {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #17120a;
    background: #e7b92d;
    font-size: .85rem;
    font-weight: 900;
}

.restaurant-favorite-customers__empty {
    display: grid;
    gap: .35rem;
    place-items: center;
    min-height: 220px;
    padding: 2rem;
    border: 1px dashed rgba(221, 181, 52, .28);
    border-radius: 18px;
    color: #a8a095;
    text-align: center;
    background: rgba(255, 255, 255, .02);
}

.restaurant-favorite-customers__empty strong {
    color: #f5eee2;
    font-size: 1.15rem;
}

@media (max-width: 920px) {
    .restaurant-favorite-customers__table-header {
        display: none;
    }

    .restaurant-favorite-customers__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .restaurant-favorite-customers__identity,
    .restaurant-favorite-customers__contact {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .restaurant-favorite-customers__header {
        align-items: stretch;
        flex-direction: column;
    }

    .restaurant-favorite-customers__summary,
    .restaurant-favorite-customers__toolbar,
    .restaurant-favorite-customers__row {
        grid-template-columns: 1fr;
    }

    .restaurant-favorite-customers__toolbar > span {
        justify-self: start;
    }

    .restaurant-favorite-customers__identity,
    .restaurant-favorite-customers__contact {
        grid-column: auto;
    }
}

.restaurant-onboarding__panel-head p,
.restaurant-onboarding__subsection-head p,
.restaurant-onboarding__success p {
    margin: .75rem 0 0;
    color: #a9a299;
    font-size: 1.08rem;
}

.restaurant-onboarding__grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}

.restaurant-onboarding__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.restaurant-onboarding__field,
.restaurant-onboarding__choice-group {
    display: grid;
    gap: .6rem;
}

.restaurant-onboarding__field--full {
    grid-column: 1 / -1;
}

.restaurant-onboarding__field label,
.restaurant-onboarding__choice-title {
    color: #f1ece0;
    font-weight: 700;
}

.restaurant-onboarding__field input,
.restaurant-onboarding__field textarea,
.restaurant-onboarding__field select,
.restaurant-onboarding__chip-adder input,
.restaurant-onboarding__schedule-times input {
    min-height: 54px;
    width: 100%;
    padding: .95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: #141414;
    color: #f5efe4;
}

.restaurant-onboarding__field textarea {
    min-height: 120px;
    resize: vertical;
}

.restaurant-onboarding__email-verification,
.restaurant-onboarding__email-code {
    display: flex;
    align-items: stretch;
    gap: .55rem;
}

.restaurant-onboarding__email-verification input,
.restaurant-onboarding__email-code input {
    min-width: 0;
    flex: 1;
}

.restaurant-onboarding__verify-button {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 .9rem;
    border: 1px solid #d9ad23;
    border-radius: 12px;
    background: #f0c83f;
    color: #241b0e;
    font-weight: 800;
    cursor: pointer;
}

.restaurant-onboarding__verify-button:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.restaurant-onboarding__verify-button--secondary {
    background: transparent;
    color: #ddb534;
}

.restaurant-onboarding__verify-button--test {
    align-self: flex-start;
    margin-top: .45rem;
    background: transparent;
    color: #9d978d;
    border-color: rgba(157, 151, 141, .55);
}

.restaurant-onboarding__email-code {
    margin-top: .55rem;
}

.restaurant-onboarding__email-status {
    display: block;
    margin-top: .45rem;
}

.restaurant-onboarding__email-status.is-success {
    color: #39bd78;
}

.restaurant-onboarding__email-status.is-error {
    color: #e66a5b;
}

.restaurant-onboarding__field select {
    appearance: none;
}

.restaurant-onboarding__check-tile {
    min-height: 52px;
    padding: .8rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    border-radius: 14px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #efe8dc;
}

.restaurant-onboarding__check-tile input {
    accent-color: #ddb534;
}

.restaurant-onboarding__choice-group {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    align-items: center;
}

.restaurant-onboarding__choice-title {
    width: 100%;
}

.restaurant-onboarding__subsection {
    margin-top: 1.7rem;
}

.restaurant-onboarding__schedule {
    margin-top: 1rem;
    display: grid;
    gap: .8rem;
}

.restaurant-onboarding__schedule-row {
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: .35rem 0;
}

.restaurant-onboarding__schedule-toggle {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-height: 54px;
    color: #f3ece0;
    font-weight: 700;
}

.restaurant-onboarding__schedule-toggle input {
    accent-color: #ddb534;
}

.restaurant-onboarding__schedule-slots {
    display: grid;
    gap: .65rem;
}

.restaurant-onboarding__schedule-times {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) 42px;
    gap: .65rem;
    align-items: center;
    color: #a79f92;
}

.restaurant-onboarding__schedule-remove,
.restaurant-onboarding__schedule-add {
    border: 1px solid rgba(221, 181, 52, .35);
    background: transparent;
    color: #ddb534;
    font-weight: 800;
    cursor: pointer;
}

.restaurant-onboarding__schedule-remove {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.4rem;
    line-height: 1;
}

.restaurant-onboarding__schedule-remove:disabled {
    cursor: not-allowed;
    opacity: .35;
}

.restaurant-onboarding__schedule-add {
    justify-self: start;
    min-height: 38px;
    padding: .45rem .8rem;
    border-radius: 10px;
}

.restaurant-onboarding__schedule-add:hover:not(:disabled),
.restaurant-onboarding__schedule-remove:hover:not(:disabled) {
    background: rgba(221, 181, 52, .1);
}

.restaurant-onboarding__schedule-closed {
    display: flex;
    align-items: center;
    min-height: 54px;
    color: #777168;
    font-weight: 700;
}

.restaurant-onboarding__map {
    min-height: 220px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(0deg, rgba(221, 181, 52, 0.15), rgba(221, 181, 52, 0.15)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 20%),
        linear-gradient(135deg, #f4ead7, #e5d1a1);
}

.restaurant-onboarding__map-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0 2%, transparent 2% 24%, rgba(255, 255, 255, 0.3) 24% 26%, transparent 26% 48%, rgba(255, 255, 255, 0.3) 48% 50%, transparent 50% 74%, rgba(255, 255, 255, 0.3) 74% 76%, transparent 76%),
        linear-gradient(rgba(214, 193, 142, 0.45), rgba(214, 193, 142, 0.45));
    mix-blend-mode: multiply;
}

.restaurant-onboarding__map-pin {
    position: absolute;
    top: 50%;
    left: 56%;
    width: 26px;
    height: 26px;
    transform: translate(-50%, -70%) rotate(45deg);
    border-radius: 50% 50% 50% 0;
    background: #1a1a1a;
    border: 4px solid #ddb534;
    z-index: 1;
}

.restaurant-onboarding__upload-card {
    min-height: 260px;
    padding: 1.4rem;
    position: relative;
    border: 2px dashed rgba(221, 181, 52, 0.38);
    border-radius: 22px;
    background: rgba(221, 181, 52, 0.05);
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: .55rem;
    cursor: pointer;
}

.restaurant-onboarding__upload-card:focus {
    outline: 2px dashed rgba(221, 181, 52, 0.9);
    outline-offset: 4px;
}

.restaurant-onboarding__upload-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 48px;
    padding: 0 1.1rem;
    border-radius: 999px;
    background: #ddb534;
    color: #17130a;
    font-weight: 800;
    cursor: pointer;
}

.restaurant-onboarding__upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.restaurant-onboarding__upload-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(221, 181, 52, 0.16);
    color: #ddb534;
    font-size: 1.5rem;
    font-weight: 900;
}

.restaurant-onboarding__upload-title {
    font-size: 1.2rem;
    font-weight: 800;
}

.restaurant-onboarding__upload-preview {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(221, 181, 52, 0.22);
}

.restaurant-onboarding__upload-preview--square {
    max-width: 180px;
    height: 180px;
    justify-self: center;
}

.restaurant-onboarding__upload-preview-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: .35rem;
}

.restaurant-onboarding__upload-note--paste {
    color: #8b6a15;
    font-weight: 700;
}

.restaurant-onboarding__upload-note {
    color: #a79e8f;
}

.restaurant-onboarding__upload-file {
    margin-top: .4rem;
    color: #f5efe4;
    font-weight: 700;
}

.restaurant-onboarding__chips {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.restaurant-onboarding__chip {
    min-height: 42px;
    padding: 0 1rem;
    border: 1px solid rgba(221, 181, 52, 0.25);
    border-radius: 999px;
    background: rgba(221, 181, 52, 0.1);
    color: #ddb534;
    font-weight: 800;
}

.restaurant-onboarding__chip-adder {
    display: flex;
    gap: .65rem;
    align-items: center;
}

.restaurant-onboarding__chip-adder input {
    min-height: 42px;
    width: 180px;
}

.restaurant-onboarding__chip-adder button,
.restaurant-onboarding__secondary-button,
.restaurant-onboarding__primary-button,
.restaurant-onboarding__primary-link {
    min-height: 46px;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
}

.restaurant-onboarding__chip-adder button,
.restaurant-onboarding__secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: #f2ece0;
}

.restaurant-onboarding__dishes {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
}

.restaurant-onboarding__dish-card {
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-onboarding__dish-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.restaurant-onboarding__dish-card-head strong {
    color: #f8f3e8;
    font-size: 1.1rem;
}

.restaurant-onboarding__mini-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: #ddb534;
    font-weight: 800;
}

.restaurant-onboarding__panel-footer {
    margin-top: 1.75rem;
    display: grid;
    gap: 1rem;
}

.restaurant-onboarding__actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-onboarding__primary-button,
.restaurant-onboarding__primary-link {
    border: 0;
    background: #ddb534;
    color: #17130a;
    text-decoration: none;
}

.restaurant-onboarding__error {
    padding: .9rem 1rem;
    border-radius: 14px;
    background: rgba(210, 78, 78, 0.14);
    border: 1px solid rgba(210, 78, 78, 0.35);
    color: #ffc5c5;
}

.restaurant-onboarding__success {
    padding: 1.2rem 0 .3rem;
    text-align: center;
}

.restaurant-onboarding__success-badge {
    width: 104px;
    height: 104px;
    margin: 0 auto 1.35rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle, #4db34a, #2e8b36);
    box-shadow: 0 0 0 14px rgba(77, 179, 74, 0.1);
    color: #f5fff3;
    font-size: 1.8rem;
    font-weight: 900;
}

.restaurant-onboarding__summary {
    margin-top: 1.7rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    text-align: left;
}

.restaurant-onboarding__summary div {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-onboarding__summary span {
    display: block;
    color: #9f978c;
    margin-bottom: .35rem;
}

.restaurant-onboarding__summary strong {
    color: #f7f1e5;
}

@media (max-width: 991.98px) {
    .restaurant-onboarding__steps {
        width: 100%;
        overflow-x: auto;
        padding-bottom: .3rem;
    }

    .restaurant-onboarding__panel {
        padding: 1.6rem 1.2rem;
    }

    .restaurant-onboarding__grid--2,
    .restaurant-onboarding__summary {
        grid-template-columns: 1fr;
    }

    .restaurant-onboarding__schedule-row {
        grid-template-columns: 1fr;
    }

    .restaurant-metrics__range-picker {
        align-items: stretch;
    }

    .restaurant-metrics__range-shortcuts,
    .restaurant-metrics__range-navigation {
        width: 100%;
    }

    .restaurant-metrics__range-navigation label {
        flex: 1;
    }

    .restaurant-metrics__range-navigation input {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    .restaurant-onboarding__topbar {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .restaurant-onboarding__topbar > :last-child {
        justify-self: center;
    }

    .restaurant-onboarding__brand {
        order: -1;
    }

    .restaurant-onboarding__steps {
        grid-template-columns: repeat(7, 104px);
        justify-content: flex-start;
    }

    .restaurant-onboarding__step-label {
        font-size: .85rem;
    }

    .restaurant-onboarding__actions {
        flex-direction: column;
    }

    .restaurant-onboarding__chip-adder {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .restaurant-onboarding__chip-adder input {
        width: 100%;
    }
}

/* ── Nuevo Platillo form ─────────────────────────────────────────────────── */

.dish-error-modal__backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    padding: 1.5rem;
    background: rgba(0, 0, 0, .74);
    backdrop-filter: blur(7px);
    display: grid;
    place-items: center;
}

.dish-error-modal {
    position: relative;
    width: min(520px, 100%);
    padding: 2rem;
    border: 1px solid rgba(224, 91, 91, .36);
    border-radius: 24px;
    background: #211d1c;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .55);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.1rem;
}

.dish-error-modal__close {
    position: absolute;
    top: .75rem;
    right: .85rem;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #b8ada4;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.dish-error-modal__close:hover,
.dish-error-modal__close:focus-visible {
    background: rgba(255, 255, 255, .08);
    color: #fff7e8;
}

.dish-error-modal__icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(224, 91, 91, .14);
    border: 1px solid rgba(224, 91, 91, .42);
    color: #ff8b8b;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.dish-error-modal__content {
    padding-right: 1.75rem;
}

.dish-error-modal__eyebrow {
    color: #ff8b8b;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.dish-error-modal__content h2 {
    margin: .4rem 0 .7rem;
    color: #fff7e8;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.55rem, 4vw, 2.15rem);
    line-height: 1.1;
}

.dish-error-modal__content p {
    margin: 0;
    color: #c5bbb0;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.dish-error-modal__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    padding-top: .45rem;
}

.dish-error-modal__actions .restaurant-primary-button {
    min-width: 132px;
}

.dish-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dish-form__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: .25rem;
}

.dish-form__body {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.25fr);
    gap: 1.25rem;
    align-items: start;
}

.dish-form__back-link {
    min-height: 40px;
    padding: 0 1rem;
    text-decoration: none;
}

.dish-form__left,
.dish-form__right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dish-form__card {
    padding: 1.5rem;
    border-radius: 20px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dish-form__card--compact {
    padding: 0;
}

.dish-form__card-label {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8a8278;
}

.dish-form__section-title {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ddb534;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: .25rem;
}

/* Upload zone */
.dish-form__upload-zone {
    position: relative;
    min-height: 240px;
    border-radius: 14px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(221, 181, 52, 0.05) 0 10px,
            rgba(80, 68, 29, 0.1) 10px 20px
        ),
        #0e0d0b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    overflow: hidden;
}

.dish-form__upload-zone:focus {
    outline: 2px dashed rgba(221, 181, 52, 0.9);
    outline-offset: 4px;
}

.dish-form__upload-input-native {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.dish-form__upload-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-form__upload-preview--hidden {
    display: none;
}

.dish-form__upload-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    opacity: .55;
}

.dish-form__upload-hint {
    position: relative;
    z-index: 1;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: #7a7469;
}

.dish-form__upload-hint--paste {
    color: #b9931f;
}

.dish-form__upload-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(221, 181, 52, 0.5);
    background: rgba(221, 181, 52, 0.08);
    color: #ddb534;
    font-weight: 800;
    cursor: pointer;
}

.dish-form__upload-note {
    margin: 0;
    font-size: .8rem;
    color: #6b6257;
}

.dish-form__preview-block {
    margin-top: .5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Preview card */
.dish-form__preview-card {
    width: 100%;
    min-height: 120px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e8e2d8;
    box-shadow: 0 10px 24px rgba(20, 14, 8, 0.06);
}

.dish-form__preview-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #e9e4dc;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.dish-form__preview-thumb svg {
    width: 36px;
    height: 36px;
}

.dish-form__preview-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dish-form__preview-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .55rem;
}

.dish-form__preview-info {
    min-width: 0;
    display: grid;
    gap: .3rem;
}

.dish-form__preview-info strong {
    color: #1f1a14;
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dish-form__preview-info p {
    margin: 0;
    color: #9f978c;
    font-size: .92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dish-form__preview-schedule {
    display: inline-flex;
    width: fit-content;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(221, 181, 52, 0.14);
    color: #8f6d12;
    font-size: .8rem;
    font-weight: 800;
}

.dish-form__preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    min-width: 0;
    margin-top: .1rem;
}

.dish-form__preview-footer span:first-child {
    color: #1f1a14;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.dish-form__preview-add {
    color: #c8920a !important;
    font-weight: 800;
    font-size: .95rem;
    font-family: "Manrope", sans-serif !important;
    white-space: nowrap;
}

/* Form fields */
.dish-form__field {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.dish-form__label {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #8a8278;
}

.dish-form__input {
    width: 100%;
    min-height: 48px;
    padding: .65rem .9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1917;
    color: #f0ebe0;
    font-family: inherit;
    font-size: 1rem;
}

.dish-form__input::placeholder {
    color: #5a5450;
}

.dish-form__input:focus {
    outline: none;
    border-color: rgba(221, 181, 52, 0.4);
}

.dish-form__textarea {
    min-height: 96px;
    resize: vertical;
}

.dish-form__char-count {
    align-self: flex-end;
    font-size: .78rem;
    color: #6b6257;
}

.dish-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dish-form__input-affixed {
    display: flex;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1917;
    overflow: hidden;
}

.dish-form__input-affixed:focus-within {
    border-color: rgba(221, 181, 52, 0.4);
}

.dish-form__affix {
    padding: 0 .75rem;
    color: #8a8278;
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
}

.dish-form__input-affixed .dish-form__input {
    border: 0;
    background: transparent;
    border-radius: 0;
    padding-left: 0;
}

.dish-form__affix--post {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.dish-form__affix--pre {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hidden native inputs for chip/spice/toggle */
.dish-form__chip-input {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* Chips */
.dish-form__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.dish-form__attribute-list {
    display: grid;
    gap: 1rem;
}

.dish-form__attribute-card {
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    gap: .9rem;
}

.dish-form__attribute-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.dish-form__attribute-head strong {
    color: #f0ebe0;
    font-size: .98rem;
    font-weight: 800;
}

.dish-form__attribute-head p {
    margin: .2rem 0 0;
    color: #8a8278;
    font-size: .84rem;
}

.dish-form__attribute-badge {
    min-height: 28px;
    padding: 0 .75rem;
    border-radius: 999px;
    background: rgba(221, 181, 52, 0.12);
    color: #ddb534;
    display: inline-flex;
    align-items: center;
    font-size: .8rem;
    font-weight: 800;
    white-space: nowrap;
}

.dish-form__chip {
    min-height: 36px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #222018;
    color: #c0b9ae;
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background .12s, color .12s, border-color .12s;
}

.dish-form__chip-input:checked + .dish-form__chip {
    background: #ddb534;
    border-color: #ddb534;
    color: #17130a;
}

.dish-form__chip--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
    color: #c0b9ae;
}

.dish-form__chip-input:checked + .dish-form__chip--outline {
    background: #ddb534;
    border-color: #ddb534;
    color: #17130a;
}

/* Spice level */
.dish-form__spice-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .6rem;
}

.dish-form__spice-option {
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1917;
    color: #c0b9ae;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .12s, background .12s;
}

.dish-form__chip-input:checked + .dish-form__spice-option {
    border-color: #ddb534;
    background: rgba(221, 181, 52, 0.08);
}

/* Availability toggle row */
.dish-form__availability {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.dish-form__availability-title {
    color: #f0ebe0;
    font-size: 1rem;
    font-weight: 800;
    display: block;
}

.dish-form__availability-desc {
    margin: .2rem 0 0;
    color: #8a8278;
    font-size: .88rem;
}

.dish-form__toggle-input {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.dish-form__toggle-thumb {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    width: 48px;
    height: 28px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    transition: background .16s;
}

.dish-form__toggle-thumb::after {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transition: transform .16s;
}

.dish-form__toggle-input:checked ~ .dish-form__toggle-thumb {
    background: #ddb534;
}

.dish-form__toggle-input:checked ~ .dish-form__toggle-thumb::after {
    transform: translateX(20px);
}

/* Footer buttons */
.dish-form__footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.dish-form__footer > * {
    flex: 1;
}

.dish-form__submit-btn {
    min-height: 52px;
}

.dish-form__cancel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 52px;
}

@media (max-width: 1199.98px) {
    .dish-form__body {
        grid-template-columns: 320px minmax(0, 1fr);
    }
}

@media (max-width: 991.98px) {
    .restaurant-settings__grid,
    .dish-form__body {
        grid-template-columns: 1fr;
    }

    .dish-form__left {
        order: 2;
    }

    .restaurant-settings__main {
        order: 2;
    }

    .restaurant-settings__aside,
    .dish-form__right {
        order: 1;
    }

    .restaurant-settings__footer {
        order: 3;
    }
}

@media (max-width: 575.98px) {
    .dish-error-modal__backdrop {
        padding: 1rem;
    }

    .dish-error-modal {
        padding: 1.5rem;
        grid-template-columns: 1fr;
    }

    .dish-error-modal__content {
        padding-right: 0;
    }

    .dish-error-modal__actions .restaurant-primary-button {
        width: 100%;
    }

    .restaurant-settings__row,
    .restaurant-settings__service-options,
    .restaurant-settings__schedule-row,
    .dish-form__row {
        grid-template-columns: 1fr;
    }

    .restaurant-settings__share-actions {
        grid-template-columns: 1fr;
    }

    .restaurant-settings__time {
        text-align: left;
    }

    .dish-form__spice-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .dish-form__attribute-head {
        flex-direction: column;
    }

    .dish-form__footer {
        flex-direction: column;
    }

    .dish-form__preview-card {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: .85rem;
        min-height: 108px;
    }

    .dish-form__preview-thumb {
        width: 48px;
        height: 48px;
    }

    .dish-form__preview-thumb svg {
        width: 30px;
        height: 30px;
    }

    .dish-form__preview-info strong {
        font-size: 1rem;
    }

    .dish-form__preview-info p,
    .dish-form__preview-add {
        font-size: .86rem;
    }
}

.customer-signup {
    min-height: 100vh;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top, rgba(224, 189, 59, 0.12), transparent 32%),
        linear-gradient(180deg, #fbf8f0 0%, #f7f1e3 100%);
}

.customer-signup__shell {
    max-width: 1080px;
    margin: 0 auto;
}

.customer-signup__topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.customer-signup__topbar > :last-child {
    justify-self: end;
}

.customer-signup__nav-button {
    border: 1px solid rgba(162, 138, 89, 0.28);
    background: rgba(255, 252, 245, 0.84);
    color: #1f1b16;
    border-radius: 12px;
    padding: .7rem 1rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(63, 45, 15, 0.06);
}

.customer-signup__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    text-decoration: none;
    color: #211b14;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.customer-signup__brand span span {
    color: #d5a418;
}

.customer-signup__brand-logo {
    width: 26px;
    height: 26px;
    font-size: .68rem;
}

.customer-signup__hero {
    display: grid;
    justify-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.customer-signup__icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fff6d9 0%, #f6edd7 100%);
    color: #b99a4f;
    font-size: 2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.customer-signup__title {
    margin: 0;
    color: #111012;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 700;
    line-height: .95;
}

.customer-signup__subtitle {
    margin: 0;
    color: #6f675c;
    font-size: 1.15rem;
}

.customer-signup__steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    max-width: 760px;
}

.customer-signup__step {
    position: relative;
    display: grid;
    justify-items: center;
    gap: .65rem;
    color: #8f877b;
    font-size: .9rem;
    text-align: center;
}

.customer-signup__step-dot {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #6d665d;
    background: #efede7;
    border: 3px solid #f7f1e3;
    box-shadow: 0 0 0 1px rgba(166, 153, 130, 0.18);
}

.customer-signup__step-line {
    position: absolute;
    top: 17px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e7dfcf;
}

.customer-signup__step.is-current,
.customer-signup__step.is-complete {
    color: #c79204;
}

.customer-signup__step.is-current .customer-signup__step-dot,
.customer-signup__step.is-complete .customer-signup__step-dot {
    background: #dbb128;
    color: #22190b;
}

.customer-signup__step.is-complete .customer-signup__step-dot {
    background: #c89e13;
    color: #fff7d8;
}

.customer-signup__step.is-complete .customer-signup__step-line {
    background: #c89e13;
}

.customer-signup__panel {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(227, 219, 203, 0.9);
    border-radius: 24px;
    box-shadow: 0 28px 60px rgba(91, 73, 29, 0.08);
    padding: 2rem 2rem 1.5rem;
}

.customer-signup__error {
    margin-bottom: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(196, 68, 56, 0.18);
    background: #fff4f2;
    color: #9d2f28;
    padding: .95rem 1rem;
    font-weight: 500;
}

.customer-signup__panel-head {
    margin-bottom: 1.5rem;
}

.customer-signup__panel-head h2,
.customer-signup__success h2 {
    margin: 0 0 .5rem;
    color: #111012;
    font-size: 1.5rem;
    font-weight: 700;
}

.customer-signup__panel-head h2 small {
    color: #6f675c;
    font-size: .75em;
    font-weight: 500;
}

.customer-signup__panel-head p,
.customer-signup__success p {
    margin: 0;
    color: #665f54;
}

.customer-signup__grid {
    display: grid;
    gap: 1.25rem;
}

.customer-signup__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-signup__field {
    display: grid;
    gap: .55rem;
}

.customer-signup__field--full {
    grid-column: 1 / -1;
}

.customer-signup__field label {
    color: #1f1b16;
    font-weight: 600;
}

.customer-signup__field label span {
    color: #d94841;
}

.customer-signup__field input,
.customer-signup__field textarea {
    width: 100%;
    border: 1px solid transparent;
    border-bottom-color: #ddd3c1;
    background: transparent;
    color: #28231e;
    padding: .95rem 0 .8rem;
    font-size: 1.05rem;
    outline: none;
}

.customer-signup__field textarea {
    min-height: 100px;
    resize: vertical;
}

.customer-signup__field input:focus,
.customer-signup__field textarea:focus {
    border-bottom-color: #c89e13;
}

.courier-signup__select {
    width: 100%;
    border: 1px solid transparent;
    border-bottom: 1px solid #ddd3c1;
    background: transparent;
    color: #28231e;
    padding: .95rem 0 .8rem;
    font-size: 1.05rem;
    outline: none;
}

.courier-signup__select:focus {
    border-bottom-color: #c89e13;
}

.customer-signup__field small {
    color: #8d8478;
    font-size: .86rem;
}

.customer-signup__profile-step {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.customer-signup__profile-info {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.customer-signup__profile-email {
    margin: 0;
    font-size: .9rem;
    color: #5a5147;
    word-break: break-all;
}

.customer-signup__avatar {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #ddb52d 0%, #cea31b 100%);
    color: #1a1409;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    font-size: 3rem;
    overflow: hidden;
}

.customer-signup__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.courier-signup__avatar {
    background: #111;
    color: rgba(221, 181, 45, 0.18);
}

.customer-signup__upload-card {
    position: relative;
    display: grid;
    place-items: center;
    gap: .4rem;
    min-height: 150px;
    border-radius: 20px;
    border: 2px dashed rgba(208, 174, 66, 0.62);
    background: #fffdfa;
    text-align: center;
    padding: 1.5rem;
    color: #52493f;
    overflow: hidden;
}

.customer-signup__upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.customer-signup__upload-arrow {
    font-size: 2rem;
    color: #d6ae26;
    font-weight: 700;
}

.customer-signup__upload-card strong {
    font-size: 1.3rem;
    color: #171411;
}

.customer-signup__upload-card span,
.customer-signup__upload-card em {
    color: #776f64;
    font-style: normal;
}

.courier-signup__checklist {
    display: grid;
    gap: 1rem;
}

.courier-signup__check-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.15rem 1.25rem;
    border: 1px solid #e6dcc8;
    border-radius: 18px;
    background: #fff;
    color: #4b4339;
}

.courier-signup__check-card input {
    width: 18px;
    height: 18px;
    margin-top: .2rem;
}

.courier-signup__check-card strong {
    display: block;
    color: #171411;
    font-size: 1.2rem;
    margin-bottom: .2rem;
}

.courier-signup__check-card span {
    color: #6e665b;
}

.courier-signup__login-form {
    margin: 0;
}

.delivery-home {
    min-height: 100vh;
    background: #fffdfa;
    padding: .75rem 1.25rem 6.5rem;
}

.delivery-home__shell,
.delivery-profile__shell {
    max-width: 560px;
    margin: 0 auto;
}

.delivery-home__topbar {
    margin-bottom: 1.4rem;
}

.delivery-home__actions {
    gap: .75rem;
}

.dish-form__scope {
    display: grid;
    gap: 1rem;
}

.dish-form__scope-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.dish-form__scope-option {
    min-height: 48px;
    padding: .7rem 1rem;
    border: 1px solid rgba(221, 181, 52, .3);
    border-radius: 12px;
    background: #171717;
    color: #d8d0c3;
    font-weight: 800;
}

.dish-form__scope-option.is-active {
    border-color: #ddb534;
    background: rgba(221, 181, 52, .16);
    color: #f1c62e;
}

@media (max-width: 680px) {
    .dish-form__scope-options {
        grid-template-columns: 1fr;
    }
}

.delivery-home__notification-button {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-height: 38px;
    border: 1px solid #d7c99d;
    border-radius: 999px;
    background: #fffaf0;
    color: #6e5711;
    padding: .45rem .8rem;
    font-size: .78rem;
    font-weight: 800;
    white-space: nowrap;
}

.delivery-home__notification-button.is-active {
    border-color: #a8ddbe;
    background: #edf9f1;
    color: #18733d;
}

.delivery-home__notification-button:disabled {
    cursor: wait;
    opacity: .7;
}

.delivery-home__notification-message {
    margin: -.65rem 0 1rem;
    border: 1px solid #eadfc9;
    border-radius: 12px;
    background: #fffaf0;
    color: #5f544b;
    padding: .65rem .8rem;
    font-size: .82rem;
}

.delivery-home__availability {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: #5f544b;
    font-weight: 600;
}

.delivery-home__switch {
    width: 44px;
    height: 28px;
    border-radius: 999px;
    border: 0;
    padding: 3px;
    background: #d9d3ca;
    transition: background .2s ease;
}

.delivery-home__switch span {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(0);
    transition: transform .2s ease;
}

.delivery-home__switch.is-active {
    background: #d6ad29;
}

.delivery-home__switch.is-active span {
    transform: translateX(16px);
}

.delivery-home__logout {
    background: none;
    border: 0;
    padding: 0;
}

.delivery-home__directory-prompt {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .8rem;
    margin-bottom: .9rem;
    border: 1px solid #eadfc9;
    border-radius: 16px;
    background: #fffaf0;
    color: #443b31;
    padding: .8rem .9rem;
}

.delivery-home__directory-prompt-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f4e8bd;
    color: #9a7813;
    font-size: 1.1rem;
    font-weight: 800;
}

.delivery-home__directory-prompt strong {
    display: block;
    font-size: .92rem;
}

.delivery-home__directory-prompt p {
    margin: .15rem 0 0;
    color: #776d62;
    font-size: .82rem;
    line-height: 1.35;
}

.delivery-home__directory-prompt a {
    border-radius: 10px;
    background: #1b1b1b;
    color: #fff;
    padding: .55rem .7rem;
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
}

.delivery-home__status-card,
.delivery-profile__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 22px;
    background: #1b1b1b;
    color: #fff;
    padding: 1.35rem 1.3rem;
    box-shadow: 0 18px 40px rgba(15, 15, 15, 0.16);
}

.delivery-profile__card {
    display: block;
}

.delivery-home__eyebrow {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: .55rem;
}

.delivery-home__status-card h1,
.delivery-profile__card h1 {
    margin: 0 0 .4rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    font-size: 2.25rem;
    color: #ddb534;
}

.delivery-home__status-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.delivery-home__status-action {
    border: 0;
    border-radius: 16px;
    background: #ddb534;
    color: #1a1407;
    padding: 1.15rem 1.35rem;
    font-weight: 800;
    min-width: 94px;
}

.delivery-home__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
    margin-top: 1.2rem;
}

.delivery-home__metric-card,
.delivery-home__order-card,
.delivery-profile__grid div {
    border-radius: 18px;
    border: 1px solid #eadfc9;
    background: #fff;
}

.delivery-home__metric-card {
    padding: 1rem;
}

.delivery-home__metric-card span,
.delivery-profile__grid span {
    display: block;
    color: #7e7265;
    font-weight: 800;
    letter-spacing: .06em;
}

.delivery-home__metric-card strong,
.delivery-profile__grid strong {
    display: block;
    margin: .45rem 0 .2rem;
    color: #171411;
    font-size: 2rem;
    line-height: 1;
}

.delivery-home__metric-card small {
    color: #8a7d71;
}

.delivery-home__section-head {
    margin: 1.2rem 0 .85rem;
}

.delivery-home__section-head span {
    color: #71675e;
    font-weight: 800;
    letter-spacing: .05em;
}

.delivery-home__orders {
    display: grid;
    gap: 1rem;
}

.delivery-home__invites {
    display: grid;
    gap: .9rem;
}

.delivery-home__invite-card {
    border-radius: 18px;
    border: 1px solid #eadfc9;
    background: #fff;
    padding: 1.1rem 1.15rem;
    box-shadow: 0 14px 30px rgba(92, 71, 28, 0.05);
}

.delivery-home__invite-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.delivery-home__invite-head h2 {
    margin: 0 0 .25rem;
    color: #171411;
    font-size: 1.8rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.delivery-home__invite-head p {
    margin: 0;
    color: #7a7067;
}

.delivery-home__invite-message {
    margin: .85rem 0 1rem;
    color: #534b43;
}

.delivery-home__invite-actions {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
}

.delivery-home__invite-secondary,
.delivery-home__invite-button {
    padding: .85rem 1rem;
    font-weight: 800;
    border-radius: 12px;
}

.delivery-home__invite-secondary {
    border: 1px solid #e6ddd1;
    background: #fff;
    color: #2b2420;
}

.delivery-home__invite-button {
    border: 0;
    background: #ddb534;
    color: #1a1407;
}

.delivery-home__feedback {
    border-radius: 16px;
    padding: .9rem 1rem;
    margin-bottom: 1rem;
}

.delivery-home__feedback.is-success {
    background: #edf8ef;
    border: 1px solid #cce8d0;
    color: #2d6f37;
}

.delivery-home__feedback.is-error {
    background: #fff4f2;
    border: 1px solid rgba(196, 68, 56, 0.18);
    color: #9d2f28;
}

.delivery-home__order-card {
    padding: 1.15rem 1.2rem;
    box-shadow: 0 14px 30px rgba(92, 71, 28, 0.06);
}

.delivery-home__order-top,
.delivery-home__order-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.delivery-home__order-meta {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: #7a7067;
}

.delivery-home__ticket {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #1b1b1b;
    color: #ddb534;
    padding: .45rem .7rem;
    font-weight: 800;
}

.delivery-home__order-top strong {
    color: #171411;
    font-size: 2rem;
    line-height: 1;
}

.delivery-home__order-copy {
    padding: 1rem 0;
    border-bottom: 1px solid #efe3cd;
    margin-bottom: 1rem;
}

.delivery-home__order-copy h2 {
    margin: 0 0 .25rem;
    color: #171411;
    font-size: 1.8rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.delivery-home__order-copy p {
    margin: 0;
    color: #7a7067;
}

.delivery-home__badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #f8e8b2;
    color: #8b6a12;
    padding: .45rem .8rem;
    font-weight: 700;
}

.delivery-home__detail-link {
    color: #c89e13;
    text-decoration: none;
    font-weight: 700;
}

.delivery-home__offer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 36;
    display: grid;
    align-items: end;
    justify-items: center;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.46);
}

.delivery-home__offer-modal {
    width: min(100%, 448px);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.delivery-home__offer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: #1b1b1b;
    color: #fff7e8;
}

.delivery-home__offer-topbar strong {
    color: #ddb534;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: .03em;
}

.delivery-home__offer-topbar span {
    font-weight: 800;
}

.delivery-home__offer-body {
    padding: 1.35rem 1.2rem 1.2rem;
}

.delivery-home__offer-body h2 {
    margin: 0 0 .3rem;
    color: #171411;
    font-size: 2rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.delivery-home__offer-body p {
    margin: 0;
    color: #7b7065;
}

.delivery-home__offer-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.2rem 0 1.3rem;
    text-align: center;
}

.delivery-home__offer-metrics span {
    display: block;
    color: #8a7d71;
    margin-bottom: .35rem;
}

.delivery-home__offer-metrics strong {
    color: #171411;
    font-size: 1.8rem;
    line-height: 1;
}

.delivery-home__offer-tip {
    color: #d0a11a !important;
}

.delivery-home__offer-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.delivery-home__offer-reject,
.delivery-home__offer-accept {
    min-height: 50px;
    border-radius: 14px;
    font-weight: 800;
}

.delivery-home__offer-reject {
    border: 1px solid #e6ddd1;
    background: #fff;
    color: #2b2420;
}

.delivery-home__offer-accept {
    border: 0;
    background: #ddb534;
    color: #17130a;
}

.delivery-home__toast {
    position: fixed;
    left: 50%;
    bottom: 6.25rem;
    z-index: 38;
    transform: translateX(-50%);
    min-width: 220px;
    max-width: min(92vw, 360px);
    min-height: 54px;
    padding: .9rem 1rem;
    border-radius: 16px;
    background: #1f1f1f;
    color: #fff7e8;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .7rem;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25);
}

.delivery-home__toast.is-success {
    background: #1f1f1f;
}

.delivery-home__toast.is-error {
    background: #2c1d1d;
}

.delivery-home__toast-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #d7af35;
}

.delivery-home__toast.is-error .delivery-home__toast-dot {
    background: #e47b73;
}

.delivery-home__toast span:last-of-type {
    font-weight: 700;
    line-height: 1.35;
}

.delivery-home__toast-close {
    border: 0;
    background: transparent;
    color: #b8afa2;
    font-size: 1rem;
    line-height: 1;
}

.delivery-home__bottom-nav {
    grid-template-columns: repeat(3, 1fr);
}

.delivery-profile__card {
    padding: 1.35rem 1.3rem;
}

.delivery-profile__grid {
    display: grid;
    gap: .9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.delivery-profile__grid div {
    padding: 1rem;
}

.delivery-profile {
    min-height: 100vh;
    background: #fffdfa;
    padding: .75rem 1.25rem 6.5rem;
}

.delivery-profile__hero h1 {
    margin: 1rem 0 .2rem;
    color: #151312;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 800;
}

.delivery-profile__hero p {
    margin: 0 0 1rem;
    color: #70665c;
    font-size: 1.05rem;
}

.delivery-profile__hero-card,
.delivery-profile__form-card,
.delivery-profile__directory-card,
.delivery-profile__links-card {
    border-radius: 20px;
    border: 1px solid #eadfc9;
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 14px 30px rgba(92, 71, 28, 0.05);
}

.delivery-profile__directory-card {
    scroll-margin-top: 1rem;
}

.delivery-profile__hero-card {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-bottom: .95rem;
}

.delivery-profile__avatar {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(241,229,191,.8) 25%, rgba(251,246,231,.85) 25%, rgba(251,246,231,.85) 50%, rgba(241,229,191,.8) 50%, rgba(241,229,191,.8) 75%, rgba(251,246,231,.85) 75%, rgba(251,246,231,.85) 100%);
    background-size: 24px 24px;
    color: #c89d1d;
    font-weight: 700;
    margin-bottom: .85rem;
}

.delivery-profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-profile__hero-card h2 {
    margin: 0 0 .35rem;
    color: #161210;
    font-size: 2rem;
}

.delivery-profile__rating {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #7a7067;
    margin-bottom: .9rem;
}

.delivery-profile__rating span {
    color: #d0a11a;
    font-weight: 700;
}

.delivery-profile__change-photo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    border-radius: 12px;
    border: 1px solid rgba(215, 174, 63, 0.38);
    color: #c89e13;
    background: #fffdfa;
    padding: .65rem .95rem;
    font-weight: 700;
    overflow: hidden;
}

.delivery-profile__file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.delivery-profile__form-card,
.delivery-profile__directory-card,
.delivery-profile__links-card {
    margin-bottom: .95rem;
}

.delivery-profile__directory-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.delivery-profile__directory-heading p {
    margin: 0;
    color: #70665c;
}

.delivery-profile__directory-toggle {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #3f392f;
    font-weight: 800;
    white-space: nowrap;
}

.delivery-profile__directory-toggle input {
    width: 18px;
    height: 18px;
    accent-color: #d2a927;
}

.delivery-profile__privacy-note {
    margin: 1rem 0;
    border-radius: 12px;
    background: #fbf5df;
    color: #675a37;
    padding: .8rem .9rem;
    font-size: .9rem;
}

.delivery-profile__location-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem;
    margin-top: .75rem;
}

.delivery-profile__location-actions button {
    border: 1px solid #d6ad29;
    border-radius: 12px;
    background: #d6ad29;
    color: #211b0c;
    padding: .75rem .8rem;
    font-weight: 800;
}

.delivery-profile__location-actions button.is-ghost {
    background: #fffdfa;
    color: #987716;
}

.delivery-profile__location-actions button:disabled {
    opacity: .55;
}

.delivery-profile__location-error {
    display: block;
    margin-top: .65rem;
    color: #9d2f28;
}

.delivery-profile__directory-map {
    margin-top: .85rem;
}

@media (max-width: 575.98px) {
    .delivery-home__directory-prompt {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .delivery-home__directory-prompt a {
        grid-column: 2;
        justify-self: start;
    }

    .delivery-profile__directory-heading {
        display: grid;
    }

    .delivery-profile__directory-toggle {
        justify-self: start;
    }

    .delivery-profile__location-actions {
        grid-template-columns: 1fr;
    }
}

.delivery-profile__field + .delivery-profile__field {
    margin-top: .95rem;
}

.delivery-profile__field label,
.delivery-profile__card-headline {
    display: block;
    color: #7e7265;
    font-weight: 800;
    letter-spacing: .06em;
    margin-bottom: .45rem;
}

.delivery-profile__input {
    width: 100%;
    border: 1px solid #e6dcc8;
    border-radius: 12px;
    background: #fbfaf8;
    color: #1e1a16;
    padding: .9rem 1rem;
    outline: none;
}

.delivery-profile__input:focus {
    border-color: #d6ad29;
}

.delivery-profile__input--readonly {
    color: #8d8478;
    cursor: default;
}

.delivery-profile__restaurant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    padding: .8rem 0;
    border-top: 1px solid #efe3cd;
}

.delivery-profile__restaurant-row:first-of-type {
    border-top: 0;
}

.delivery-profile__restaurant-actions { display: flex; align-items: center; gap: .65rem; }
.delivery-profile__unlink-button {
    border: 1px solid #d9aaa5;
    border-radius: 9px;
    background: #fff;
    color: #a43b32;
    padding: .48rem .68rem;
    font: inherit;
    font-size: .82rem;
    font-weight: 750;
    cursor: pointer;
}
.delivery-profile__unlink-button:hover { background: #fff3f1; border-color: #c87970; }
.delivery-profile__unlink-button:disabled { cursor: wait; opacity: .6; }
.delivery-profile__unlink-confirm {
    flex: 1 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1rem;
    border: 1px solid #e3b1ab;
    border-radius: 12px;
    background: #fff5f3;
}
.delivery-profile__unlink-confirm p { margin: .3rem 0 0; color: #776863; font-size: .86rem; }
.delivery-profile__unlink-confirm > div:last-child { display: flex; gap: .55rem; flex-shrink: 0; }
.delivery-profile__unlink-confirm button {
    border-radius: 9px;
    padding: .58rem .75rem;
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    cursor: pointer;
}
.delivery-profile__unlink-confirm button.is-cancel { border: 1px solid #d8cdbd; background: #fff; color: #514940; }
.delivery-profile__unlink-confirm button.is-confirm { border: 1px solid #a43b32; background: #a43b32; color: #fff; }
.delivery-profile__unlink-confirm button:disabled { cursor: wait; opacity: .65; }

@media (max-width: 575.98px) {
    .delivery-profile__restaurant-row { align-items: flex-start; }
    .delivery-profile__restaurant-actions { width: 100%; justify-content: space-between; }
    .delivery-profile__unlink-confirm { align-items: stretch; flex-direction: column; }
    .delivery-profile__unlink-confirm > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
}

.delivery-profile__status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .35rem .7rem;
    font-size: .88rem;
    font-weight: 700;
}

.delivery-profile__status.is-active {
    background: #dff5df;
    color: #448847;
}

.delivery-profile__status.is-pending {
    background: #f8e8b2;
    color: #8b6a12;
}

.delivery-profile__status.is-neutral {
    background: #ece7df;
    color: #6c645d;
}

.delivery-profile__save-button {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: #141414;
    color: #fff;
    padding: 1rem 1.2rem;
    font-weight: 800;
}

.delivery-profile__feedback {
    border-radius: 16px;
    padding: .9rem 1rem;
    margin-bottom: .95rem;
}

.delivery-profile__feedback.is-success {
    background: #edf8ef;
    border: 1px solid #cce8d0;
    color: #2d6f37;
}

.delivery-profile__feedback.is-error {
    background: #fff4f2;
    border: 1px solid rgba(196, 68, 56, 0.18);
    color: #9d2f28;
}

.delivery-profile__empty-note {
    color: #7a7067;
}

.delivery-history {
    min-height: 100vh;
    background: #fffdfa;
    padding: .75rem 1.25rem 6.5rem;
}

.delivery-history__shell {
    max-width: 560px;
    margin: 0 auto;
}

.delivery-history__hero h1 {
    margin: 1rem 0 .2rem;
    color: #151312;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 800;
}

.delivery-history__hero p {
    margin: 0 0 1rem;
    color: #70665c;
    font-size: 1.05rem;
}

.delivery-history__summary {
    border-radius: 22px;
    background: #1b1b1b;
    color: #fff;
    padding: 1.25rem 1.3rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 18px 40px rgba(15, 15, 15, 0.16);
}

.delivery-history__summary strong {
    display: block;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: .45rem;
}

.delivery-history__summary p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.delivery-history__list {
    display: grid;
    gap: .95rem;
}

.delivery-history__card {
    border-radius: 20px;
    border: 1px solid #eadfc9;
    background: #fff;
    padding: 1.15rem 1.2rem;
    box-shadow: 0 14px 30px rgba(92, 71, 28, 0.05);
}

.delivery-history__row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: .75rem;
}

.delivery-history__row h2 {
    margin: 0 0 .25rem;
    color: #171411;
    font-size: 1.8rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.delivery-history__row p {
    margin: 0;
    color: #8c8175;
}

.delivery-history__row strong {
    color: #171411;
    font-size: 2rem;
    line-height: 1;
}

.delivery-history__tip {
    color: #d0a11a;
    text-align: right;
    font-weight: 600;
    margin-top: .6rem;
}

.delivery-history__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 14px;
    border: 1px solid #eadfc9;
    background: #fff;
    color: #171411;
    text-decoration: none;
    font-weight: 700;
}

.delivery-order-detail {
    min-height: 100vh;
    background: #fffdfa;
    padding: .75rem 1.25rem 6.5rem;
}

.delivery-order-detail__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

.delivery-order-detail__ticket {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 .8rem;
    border-radius: 999px;
    background: #1b1b1b;
    color: #ddb534;
    font-weight: 800;
}

.delivery-order-detail__map {
    min-height: 210px;
    border-radius: 20px;
    border: 1px solid #eadfc9;
    background:
        radial-gradient(circle at 22% 24%, rgba(221, 181, 52, 0.9) 0 10px, transparent 11px),
        radial-gradient(circle at 26% 28%, rgba(221, 181, 52, 0.22) 0 24px, transparent 25px),
        radial-gradient(circle at 80% 62%, rgba(27, 27, 27, 0.95) 0 10px, transparent 11px),
        radial-gradient(circle at 80% 66%, rgba(27, 27, 27, 0.18) 0 24px, transparent 25px),
        radial-gradient(circle at 58% 52%, rgba(232, 71, 100, 0.92) 0 7px, transparent 8px),
        linear-gradient(rgba(195, 184, 156, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(195, 184, 156, 0.18) 1px, transparent 1px),
        linear-gradient(180deg, #f9f6ea 0%, #f0ead2 100%);
    background-size: auto, auto, auto, auto, auto, 28px 28px, 28px 28px, auto;
    box-shadow: 0 14px 30px rgba(92, 71, 28, 0.05);
}

.delivery-order-detail__card {
    margin-top: .9rem;
    border-radius: 20px;
    border: 1px solid #eadfc9;
    background: #fff;
    padding: 1.15rem 1.2rem;
    box-shadow: 0 14px 30px rgba(92, 71, 28, 0.05);
}

.delivery-order-detail__eyebrow {
    display: block;
    color: #8b7f72;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: .6rem;
}

.delivery-order-detail__card h2,
.delivery-order-detail__card h3 {
    margin: 0 0 .25rem;
    color: #171411;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.delivery-order-detail__card h2 {
    font-size: 2rem;
}

.delivery-order-detail__card h3 {
    font-size: 1.5rem;
}

.delivery-order-detail__card p {
    margin: 0;
    color: #6f6459;
}

.delivery-order-detail__meta {
    display: flex;
    align-items: center;
    gap: .9rem;
    flex-wrap: wrap;
    margin-top: .85rem;
    color: #7b7065;
}

.delivery-order-detail__money-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.delivery-order-detail__money-head strong {
    color: #171411;
    font-size: 2rem;
    line-height: 1;
}

.delivery-order-detail__tip {
    margin-top: .7rem !important;
    color: #d0a11a !important;
    font-weight: 700;
}

.delivery-order-detail__line-item,
.delivery-order-detail__summary-row,
.delivery-order-detail__transfer-row,
.delivery-order-detail__transfer-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.delivery-order-detail__line-item + .delivery-order-detail__line-item {
    margin-top: .8rem;
}

.delivery-order-detail__line-item strong,
.delivery-order-detail__summary-row strong,
.delivery-order-detail__transfer-row strong {
    color: #171411;
}

.delivery-order-detail__line-item span,
.delivery-order-detail__summary-row span,
.delivery-order-detail__transfer-row span {
    color: #7b7065;
}

.delivery-order-detail__divider {
    margin: .95rem 0;
    border-top: 1px dashed #e5d8bc;
}

.delivery-order-detail__summary-row + .delivery-order-detail__summary-row {
    margin-top: .5rem;
}

.delivery-order-detail__summary-row.is-total strong {
    font-size: 1.2rem;
}

.delivery-order-detail__payment-copy {
    color: #c89e13 !important;
    margin-bottom: .85rem !important;
}

.delivery-order-detail__transfer-box {
    border-radius: 16px;
    border: 1px solid #e8d19a;
    background: #fffaf0;
    padding: .95rem 1rem;
}

.delivery-order-detail__transfer-row {
    padding: .5rem 0;
}

.delivery-order-detail__transfer-row span,
.delivery-order-detail__transfer-total span {
    color: #7c7165;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .05em;
}

.delivery-order-detail__transfer-total {
    margin-top: .5rem;
    padding-top: .8rem;
    border-top: 1px dashed #e8d19a;
}

.delivery-order-detail__transfer-total strong {
    color: #d0a11a;
    font-size: 1.8rem;
}

.delivery-order-detail__warning {
    margin-top: .85rem !important;
    color: #9b8354 !important;
    font-size: .92rem;
}

.delivery-order-detail__timeline-card {
    display: grid;
    gap: .95rem;
}

.delivery-order-detail__step {
    position: relative;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: .9rem;
}

.delivery-order-detail__step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 22px;
    bottom: -14px;
    width: 1px;
    background: #ddd7cd;
}

.delivery-order-detail__step-dot {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid #d5cfc3;
    background: #fff;
}

.delivery-order-detail__step.is-completed .delivery-order-detail__step-dot,
.delivery-order-detail__step.is-current .delivery-order-detail__step-dot {
    border-color: #d7af35;
    background: #d7af35;
}

.delivery-order-detail__step-copy {
    display: grid;
    gap: .18rem;
}

.delivery-order-detail__step-copy strong {
    color: #171411;
}

.delivery-order-detail__step-copy span {
    color: #7b7065;
    font-size: .94rem;
}

.delivery-order-detail__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
    margin-top: .95rem;
}

.delivery-order-detail__contact,
.delivery-order-detail__bubble,
.delivery-order-detail__primary {
    min-height: 52px;
    border-radius: 14px;
    font-weight: 800;
}

.delivery-order-detail__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: 1px solid #eadfc9;
    background: #fff;
    color: #4d4035;
    padding: 0 .85rem;
    text-align: center;
    text-decoration: none;
}

.delivery-order-detail__contact:only-child {
    grid-column: 1 / -1;
}

.delivery-order-detail__route {
    border-color: #d4a915;
    background: linear-gradient(135deg, #e8be31 0%, #d9aa12 100%);
    color: #17130a;
    font-size: 1.02rem;
    box-shadow: 0 10px 22px rgba(168, 125, 0, .2);
}

.delivery-order-detail__route:hover {
    color: #17130a;
    transform: translateY(-1px);
    box-shadow: 0 13px 26px rgba(168, 125, 0, .28);
}

.delivery-order-detail__bubble {
    border: 1px solid #eadfc9;
    background: #fff;
    color: #9c8f81;
}

.delivery-order-detail__primary {
    width: 100%;
    margin-top: .7rem;
    border: 0;
    background: #171717;
    color: #fff;
}

.delivery-order-detail__toast {
    position: fixed;
    left: 50%;
    bottom: 6.25rem;
    z-index: 35;
    transform: translateX(-50%);
    min-width: 220px;
    max-width: min(92vw, 360px);
    min-height: 54px;
    padding: .9rem 1rem;
    border-radius: 16px;
    background: #1f1f1f;
    color: #fff7e8;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .7rem;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25);
}

.delivery-order-detail__toast.is-success {
    background: #1f1f1f;
}

.delivery-order-detail__toast.is-error {
    background: #2c1d1d;
}

.delivery-order-detail__toast-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #d7af35;
}

.delivery-order-detail__toast.is-error .delivery-order-detail__toast-dot {
    background: #e47b73;
}

.delivery-order-detail__toast span:last-of-type {
    font-weight: 700;
    line-height: 1.35;
}

.delivery-order-detail__toast-close {
    border: 0;
    background: transparent;
    color: #b8afa2;
    font-size: 1rem;
    line-height: 1;
}

.customer-signup__map-card {
    border-radius: 18px;
    overflow: hidden;
    background: #f8f0d9;
    border: 1px solid #e1d3aa;
}

.customer-signup__map {
    position: relative;
    min-height: 228px;
    background: linear-gradient(180deg, #f7eed6 0%, #efe2b5 100%);
}

.customer-signup__map-street,
.customer-signup__map-block {
    position: absolute;
}

.customer-signup__map-street {
    background: rgba(195, 168, 92, 0.75);
}

.customer-signup__map-street--a {
    top: 38px;
    left: -20px;
    width: 120%;
    height: 4px;
    transform: rotate(3deg);
}

.customer-signup__map-street--b {
    top: 120px;
    left: -12px;
    width: 120%;
    height: 4px;
    transform: rotate(-4deg);
}

.customer-signup__map-street--c {
    top: -8px;
    left: 42%;
    width: 4px;
    height: 260px;
    transform: rotate(5deg);
}

.customer-signup__map-block {
    background: rgba(221, 195, 112, 0.35);
}

.customer-signup__map-block--a {
    top: 0;
    left: 9%;
    width: 68px;
    height: 62px;
}

.customer-signup__map-block--b {
    top: 30px;
    right: 8%;
    width: 70px;
    height: 64px;
}

.customer-signup__map-block--c {
    bottom: 24px;
    left: 39%;
    width: 80px;
    height: 30px;
}

.customer-signup__map-pin {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.customer-signup__map-pin span {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #d8af21;
    box-shadow: 0 0 0 10px rgba(216, 175, 33, 0.2);
    position: relative;
}

.customer-signup__map-pin span::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 999px;
    background: #22190b;
}

.customer-signup__map-caption {
    padding: .75rem 1rem;
    background: rgba(231, 224, 205, 0.85);
    color: #2b251d;
}

.customer-signup__permissions {
    display: grid;
    gap: .85rem;
}

.customer-signup__permission-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: .95rem;
    background: #fffdfa;
    border: 1px solid #e8decb;
    border-radius: 18px;
    padding: .95rem 1rem;
}

.customer-signup__permission-card--outlined {
    border-color: rgba(214, 165, 22, 0.75);
}

.customer-signup__permission-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fff5d7 0%, #f4ead1 100%);
    font-size: 1.25rem;
}

.customer-signup__permission-copy {
    display: grid;
    gap: .2rem;
}

.customer-signup__permission-copy strong {
    color: #171411;
    font-size: 1.1rem;
}

.customer-signup__permission-copy span {
    color: #6b6358;
}

.customer-signup__toggle {
    position: relative;
    width: 40px;
    height: 24px;
}

.customer-signup__toggle input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.customer-signup__toggle span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #d8d4cd;
    transition: background .2s ease;
}

.customer-signup__toggle span::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
    transition: transform .2s ease;
}

.customer-signup__toggle input:checked + span {
    background: #d3ab24;
}

.customer-signup__toggle input:checked + span::after {
    transform: translateX(16px);
}

.customer-signup__success {
    display: grid;
    justify-items: center;
    gap: 1rem;
    text-align: center;
    padding: 1rem 0 .5rem;
}

.customer-signup__success-badge {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #36a64f;
    color: #fff;
    font-size: 2.4rem;
    box-shadow: 0 12px 30px rgba(54, 166, 79, 0.28);
}

.customer-signup__summary {
    width: min(100%, 380px);
    display: grid;
    gap: .9rem;
    text-align: left;
    background: #fff9ed;
    border: 1px solid #ead6a1;
    border-radius: 16px;
    padding: 1rem 1.15rem;
}

.customer-signup__summary div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: .5rem;
}

.customer-signup__summary span {
    color: #b88600;
    font-weight: 600;
}

.customer-signup__summary strong {
    color: #2a231a;
    font-weight: 600;
}

.customer-signup__footer {
    margin-top: 1.75rem;
    padding-top: 1.35rem;
    border-top: 1px solid #efe5d4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.customer-signup__button {
    border-radius: 14px;
    min-height: 52px;
    min-width: 128px;
    padding: .85rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.customer-signup__button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.customer-signup__button--ghost {
    border: 1px solid #dfd5c4;
    background: #fff;
    color: #15120f;
}

.customer-signup__button--primary {
    border: 1px solid #1f180a;
    background: linear-gradient(180deg, #ddb52f 0%, #d0a41b 100%);
    color: #16120d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.customer-signup__button--primary:not(:disabled):hover,
.customer-signup__button--ghost:not(:disabled):hover {
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .customer-signup {
        padding: 1rem;
    }

    .customer-signup__topbar {
        grid-template-columns: 1fr 1fr;
    }

    .customer-signup__brand {
        grid-column: 1 / -1;
        order: -1;
        font-size: 1.75rem;
    }

    .customer-signup__steps {
        padding: 0;
    }

    .customer-signup__step-label {
        font-size: .8rem;
    }

    .customer-signup__panel {
        padding: 1.4rem;
        border-radius: 20px;
    }

    .customer-signup__grid--2,
    .customer-signup__profile-step,
    .customer-signup__permission-card,
    .customer-signup__summary div {
        grid-template-columns: 1fr;
    }

    .customer-signup__avatar {
        margin: 0 auto;
    }

    .customer-signup__footer {
        flex-direction: column;
    }

    .customer-signup__button {
        width: 100%;
    }
}

.customer-home {
    min-height: 100vh;
    background: #fffdfa;
    padding: .75rem 1.25rem 6.5rem;
}

.customer-home__shell {
    max-width: 560px;
    margin: 0 auto;
}

.customer-home__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem 1.15rem;
    background: linear-gradient(180deg, #fff9eb 0%, #f8f0dc 100%);
    border-bottom: 1px solid rgba(219, 186, 95, 0.25);
    margin-bottom: 1rem;
}

.customer-home__location-area {
    position: relative;
    display: flex;
    align-items: center;
    gap: .65rem;
    min-width: 0;
}

.customer-home__brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    color: #19130f;
    text-decoration: none;
    min-width: 0;
}

.customer-home__brand-logo {
    width: 30px;
    height: 30px;
    font-size: .76rem;
}

.customer-home__brand strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

.customer-home__brand strong span {
    color: #d8a81f;
}

.customer-home__brand span {
    display: block;
    color: #997e74;
    font-size: .92rem;
    margin-top: .15rem;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-home__change-address {
    border: 1px solid rgba(139, 102, 9, .24);
    border-radius: 999px;
    background: rgba(255, 253, 250, .82);
    color: #8a6700;
    cursor: pointer;
    font-weight: 800;
    padding: .45rem .7rem;
    white-space: nowrap;
}

.customer-home__address-selector {
    position: absolute;
    top: calc(100% + .55rem);
    left: 0;
    z-index: 40;
    width: min(340px, calc(100vw - 2.5rem));
    border: 1px solid #ead9b3;
    border-radius: 18px;
    background: #fffdfa;
    box-shadow: 0 18px 45px rgba(67, 49, 13, .18);
    padding: .8rem;
}

.customer-home__address-selector-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #19130f;
    margin-bottom: .55rem;
}

.customer-home__address-selector-head button {
    border: 0;
    background: transparent;
    color: #8a766a;
    cursor: pointer;
    font-size: 1rem;
}

.customer-home__address-option {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #fff;
    color: #211914;
    cursor: pointer;
    display: block;
    padding: .75rem;
    text-align: left;
}

.customer-home__address-option + .customer-home__address-option {
    margin-top: .45rem;
}

.customer-home__address-option.is-active {
    border-color: rgba(219, 181, 52, .65);
    background: #fff7dc;
}

.customer-home__address-option span,
.customer-home__address-option small {
    display: block;
}

.customer-home__address-option span {
    font-weight: 800;
}

.customer-home__address-option small {
    color: #8b776e;
    line-height: 1.25;
    margin-top: .18rem;
}

.customer-home__address-manage {
    display: inline-block;
    color: #8a6700;
    font-weight: 800;
    margin-top: .7rem;
    text-decoration: none;
}

.customer-home__actions {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.customer-home__pill {
    border-radius: 14px;
    padding: .7rem 1rem;
    text-decoration: none;
    color: #19130f;
    background: #fffdfa;
    border: 1px solid rgba(215, 174, 63, 0.38);
    font-weight: 600;
}

.customer-home__logout {
    border: 0;
    padding: 0;
    background: transparent;
    color: #7f695e;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.customer-home__logout-form {
    margin: 0;
}

.delivery-order-detail__offer-decision {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e3bd3f;
    border-radius: 20px;
    background: linear-gradient(145deg, #171717 0%, #24211a 100%);
    color: #fff;
    padding: 1.15rem;
    box-shadow: 0 16px 34px rgba(49, 39, 13, .16);
}

.delivery-order-detail__offer-decision span {
    display: block;
    color: #e8bd2d;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .09em;
}

.delivery-order-detail__offer-decision strong {
    display: block;
    margin-top: .28rem;
    font-size: 1.28rem;
}

.delivery-order-detail__offer-decision p {
    margin: .35rem 0 0;
    color: #d5cec1;
    line-height: 1.4;
}

.delivery-order-detail__offer-actions {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: .65rem;
}

.delivery-order-detail__offer-actions button {
    min-height: 50px;
    border-radius: 14px;
    font: inherit;
    font-weight: 850;
}

.delivery-order-detail__offer-actions .is-reject {
    border: 1px solid #5c574d;
    background: transparent;
    color: #fff;
}

.delivery-order-detail__offer-actions .is-accept {
    border: 1px solid #e5ba28;
    background: #e5ba28;
    color: #17130a;
}

.delivery-order-detail__offer-actions button:disabled {
    cursor: wait;
    opacity: .68;
}

.customer-home__guest-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: .55rem 1rem;
    border: 1px solid #dbc895;
    border-radius: 999px;
    background: #fffaf0;
    color: #6f5310;
    font-weight: 800;
    text-decoration: none;
}

.customer-home__guest-login:hover,
.customer-home__guest-login:focus-visible {
    background: #f5e7bb;
    color: #4e3907;
}

.customer-home__hero h1 {
    margin: 1.1rem 0 1rem;
    color: #121013;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.02;
    font-weight: 800;
}

.customer-home__search {
    display: flex;
    align-items: center;
    gap: .75rem;
    border: 1px solid #ecdcb5;
    border-radius: 16px;
    background: #fff;
    padding: .95rem 1rem;
    box-shadow: 0 8px 22px rgba(92, 71, 28, 0.04);
}

.customer-home__search span {
    font-size: 1.25rem;
}

.customer-home__search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #2a241d;
    font-size: 1.05rem;
}

.customer-home__browse-controls {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: .85rem;
}

.customer-home__browse-controls label {
    display: grid;
    gap: .28rem;
    min-width: 150px;
}

.customer-home__browse-controls label > span {
    color: #766d63;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.customer-home__browse-controls select {
    min-height: 38px;
    padding: .35rem 2rem .35rem .7rem;
    border: 1px solid #e5d7c3;
    border-radius: 999px;
    background: #fffaf3;
    color: #332b25;
    font-size: .86rem;
}

.customer-home__browse-controls .customer-home__open-filter {
    min-width: auto;
    min-height: 38px;
    align-self: end;
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .35rem .85rem;
    border: 1px solid #e5d7c3;
    border-radius: 999px;
    background: #fffaf3;
    color: #332b25;
    cursor: pointer;
}

.customer-home__open-filter input {
    width: 1rem;
    height: 1rem;
    margin: 0;
    accent-color: #d7ae22;
}

.customer-home__browse-controls .customer-home__open-filter > span {
    color: inherit;
    font-size: .86rem;
    letter-spacing: 0;
    text-transform: none;
}

.customer-home__location-status {
    margin: .65rem 0 0;
    color: #796d5c;
    font-size: .82rem;
}

.customer-home__location-status.is-success {
    color: #267545;
}

.customer-home__location-status.is-error {
    color: #a53a32;
}

.customer-home__filters {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 1.35rem 0 .65rem;
}

.customer-home__filters::-webkit-scrollbar {
    display: none;
}

.customer-home__filter {
    white-space: nowrap;
    border: 0;
    border-radius: 999px;
    background: #f0efed;
    color: #5a534b;
    padding: .7rem 1rem;
    font-weight: 700;
}

.customer-home__filter.is-active {
    background: #d7ae22;
    color: #1a1307;
}

.customer-home__filters-rail {
    width: 88%;
    height: 10px;
    border-radius: 999px;
    background: #d8d8d8;
    margin-bottom: 1.35rem;
}

.customer-home__error,
.customer-home__empty {
    margin: 1rem 0;
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

.customer-home__error {
    background: #fff4f2;
    color: #9d2f28;
    border: 1px solid rgba(196, 68, 56, 0.18);
}

.customer-home__empty {
    background: #fff8ea;
    color: #735d24;
    border: 1px solid rgba(207, 170, 67, 0.28);
}

.customer-confirm__payment-result {
    margin: 1rem 0;
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

.customer-confirm__payment-result.is-pending {
    background: #fff8ea;
    color: #735d24;
    border: 1px solid rgba(207, 170, 67, 0.28);
}

.customer-confirm__payment-result.is-error {
    background: #fff4f2;
    color: #9d2f28;
    border: 1px solid rgba(196, 68, 56, 0.18);
}

.customer-store__loading {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    color: #735d24;
}

.customer-store__loading-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(207, 170, 67, .25);
    border-top-color: #d7ae22;
    border-radius: 50%;
    animation: customer-store-loading-spin .8s linear infinite;
}

@keyframes customer-store-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .customer-store__loading-spinner {
        animation-duration: 1.8s;
    }
}

.customer-home__list-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.customer-home__list-body p {
    margin: 0 0 .75rem;
    color: #6d655c;
}

.customer-home__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    color: #4a433c;
    font-size: .97rem;
}

.customer-home__section-head {
    margin: 1.55rem 0 .85rem;
    padding-top: .2rem;
    border-top: 1px solid #efe6d4;
}

.customer-home__section-head span {
    color: #6f5c4e;
    font-weight: 800;
    letter-spacing: .06em;
}

.customer-home__list {
    display: grid;
    gap: 1rem;
}

.customer-home__list-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #ecdfc6;
    border-radius: 20px;
    background: #fff;
}

.customer-home__list-cover {
    min-height: 116px;
    background-position: center;
    background-size: cover;
    display: grid;
    place-items: center;
    color: #c89d1d;
    font-size: .94rem;
    letter-spacing: .08em;
}

.customer-home__list-body {
    padding: 1rem;
}

.customer-home__list-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: .75rem;
}

.customer-home__list-head h3 {
    margin: 0 0 .25rem;
    color: #161210;
    font-size: 1.8rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    line-height: 1.02;
}

.customer-home__favorite {
    color: #c9c1bb;
    font-size: 1.3rem;
    line-height: 1;
}

.customer-home__favorite.is-active {
    color: #d14b4b;
}

.customer-home__bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .25rem;
    padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #ece1c9;
    backdrop-filter: blur(14px);
}

.customer-home__bottom-item {
    display: grid;
    justify-items: center;
    gap: .2rem;
    color: #8c8276;
    text-decoration: none;
    font-size: .86rem;
}

.customer-home__bottom-item span {
    font-size: 1.3rem;
}

.customer-home__bottom-item.is-active {
    color: #d0a11a;
    font-weight: 700;
}

.customer-home__bottom-nav--guest {
    display: block;
    padding: .65rem 1rem calc(.65rem + env(safe-area-inset-bottom));
}

.customer-home__login-link {
    width: min(100%, 560px);
    min-height: 54px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    border-radius: 14px;
    background: #1b1b1b;
    color: #fff;
    padding: .65rem 1rem;
    text-decoration: none;
}

.customer-home__login-link > span:first-child {
    color: #ddb534;
    font-size: 1.25rem;
}

.customer-home__login-link > span:last-child {
    display: grid;
    gap: .05rem;
}

.customer-home__login-link strong {
    font-size: .92rem;
}

.customer-home__login-link small {
    color: rgba(255, 255, 255, .68);
    font-size: .75rem;
}

.customer-home__bottom-nav--legacy {
    display: none;
}

.customer-home__topbar--legacy {
    display: none;
}

@media (max-width: 575.98px) {
    .customer-home {
        padding-inline: .95rem;
    }

    .customer-home__topbar {
        padding-inline: .85rem;
        flex-wrap: wrap;
    }

    .customer-home__location-area {
        flex: 1 1 220px;
        flex-wrap: wrap;
    }

    .customer-home__brand span {
        max-width: 165px;
    }

    .customer-home__change-address {
        padding: .4rem .65rem;
    }

    .customer-home__actions {
        gap: .55rem;
        margin-left: auto;
    }

    .customer-home__pill {
        padding-inline: .85rem;
    }

    .customer-home__list-head h3 {
        font-size: 1.45rem;
    }
}

.customer-store {
    min-height: 100vh;
    background: #fffdfa;
    padding: .75rem 1.25rem 7.5rem;
}

.customer-store__shell {
    max-width: 560px;
    margin: 0 auto;
}

.customer-store__topbar {
    margin-bottom: 0;
}

.restaurant-manual {
    display: grid;
    gap: 1.5rem;
    color: #f5f5f5;
}

.restaurant-manual__hero {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.restaurant-manual__hero h1 {
    margin: .7rem 0 .35rem;
    font-size: clamp(2.3rem, 5vw, 3.35rem);
    font-weight: 800;
    color: #fff;
}

.restaurant-manual__hero p,
.restaurant-manual__ticket-note {
    color: #aaacae;
}

.restaurant-manual__back {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .7rem 1rem;
    border-radius: 16px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
}

.restaurant-manual__ticket-note {
    border-radius: 16px;
    background: rgba(255, 208, 71, 0.12);
    border: 1px solid rgba(255, 208, 71, 0.18);
    padding: .95rem 1rem;
}

.restaurant-manual-error__backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    background: rgba(0, 0, 0, .76);
    backdrop-filter: blur(3px);
}

.restaurant-manual-error {
    width: min(100%, 460px);
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(239, 104, 104, .32);
    border-radius: 20px;
    background: #23201f;
    color: #f8f3ed;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.restaurant-manual-error__head,
.restaurant-manual-error__head > div {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.restaurant-manual-error__head {
    justify-content: space-between;
}

.restaurant-manual-error__head h2 {
    margin: 0;
    color: #fff7f3;
    font-size: 1.45rem;
}

.restaurant-manual-error__icon {
    width: 36px;
    height: 36px;
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: rgba(213, 65, 65, .18);
    color: #ff9898;
    font-size: 1.25rem;
    font-weight: 900;
}

.restaurant-manual-error__close {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #f8f3ed;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.restaurant-manual-error p {
    margin: 0;
    padding: .9rem 1rem;
    border-radius: 12px;
    background: rgba(213, 65, 65, .1);
    color: #ffb4b4;
    line-height: 1.5;
}

.restaurant-manual-error__confirm {
    min-height: 48px;
    border: 0;
    border-radius: 13px;
    background: #ddb52f;
    color: #17130c;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.restaurant-manual-error__close:focus-visible,
.restaurant-manual-error__confirm:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .9);
    outline-offset: 3px;
}

.restaurant-manual__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, .8fr);
    gap: 1.5rem;
    align-items: start;
}

.restaurant-manual__main,
.restaurant-manual__sidebar {
    display: grid;
    gap: 1.5rem;
}

.restaurant-manual__card {
    background: #1d1d1d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1.5rem;
}

.restaurant-manual__eyebrow {
    display: block;
    margin-bottom: 1rem;
    color: #9ca0a7;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.restaurant-manual__section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.restaurant-manual__section-head small {
    color: #8f949b;
}

.restaurant-manual__type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.restaurant-manual__type,
.restaurant-manual__payment {
    display: grid;
    gap: .35rem;
    text-align: left;
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d0d0d;
    color: #f5f5f5;
    padding: 1.15rem 1.1rem;
}

.restaurant-manual__type span,
.restaurant-manual__payment span {
    color: #9ca0a7;
}

.restaurant-manual__type.is-active,
.restaurant-manual__payment.is-active {
    background: rgba(221, 181, 47, 0.14);
    border-color: #ddb52f;
    box-shadow: inset 0 0 0 1px rgba(221, 181, 47, 0.35);
}

.restaurant-manual__search,
.restaurant-manual__form-grid input,
.restaurant-manual__form-grid textarea,
.restaurant-manual__inline-input input {
    width: 100%;
    border: 0;
    outline: none;
    border-radius: 16px;
    background: #0b0b0b;
    color: #fff;
    padding: .95rem 1rem;
}

.restaurant-manual__search {
    margin-bottom: 1rem;
}

.restaurant-manual__chips {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.restaurant-manual__chip {
    border: 0;
    border-radius: 999px;
    background: #2b2b2b;
    color: #c9cbd0;
    padding: .7rem 1rem;
    font-weight: 700;
}

.restaurant-manual__chip.is-active {
    background: #ddb52f;
    color: #15120d;
}

.restaurant-manual__dish-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.restaurant-manual__dish {
    display: grid;
    gap: .75rem;
    border-radius: 20px;
    background: #0d0d0d;
    border: 1px solid rgba(221, 181, 47, 0.18);
    padding: 1rem;
}

.restaurant-manual__dish-main {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    align-items: center;
}

.restaurant-manual__dish.has-qty {
    box-shadow: inset 0 0 0 1px rgba(221, 181, 47, 0.45);
}

.restaurant-manual__dish-copy {
    display: grid;
    gap: .3rem;
}

.restaurant-manual__dish-copy strong {
    font-size: 1.05rem;
}

.restaurant-manual__dish-copy span {
    color: #989ca3;
}

.restaurant-manual__extras {
    display: grid;
    gap: .55rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-manual__extras > span {
    color: #a9adb3;
    font-size: .82rem;
    font-weight: 700;
}

.restaurant-manual__extra-unit {
    display: grid;
    gap: .5rem;
    padding: .65rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.restaurant-manual__extra-unit > strong {
    color: #f2f2f2;
    font-size: .82rem;
}

.restaurant-manual__extra-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.restaurant-manual__extra-group {
    display: grid;
    gap: .45rem;
}

.restaurant-manual__extra-group-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    color: #f2f2f2;
    font-size: .8rem;
}

.restaurant-manual__extra-group-title small {
    color: #ddb52f;
}

.restaurant-manual__extra {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid rgba(221, 181, 47, 0.25);
    border-radius: 999px;
    background: #191919;
    color: #d2d4d8;
    padding: .5rem .7rem;
    font-size: .82rem;
}

.restaurant-manual__extra strong {
    color: #ddb52f;
}

.restaurant-manual__extra.is-active {
    border-color: #ddb52f;
    background: rgba(221, 181, 47, 0.16);
    color: #fff;
}

.restaurant-manual__extra:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.restaurant-manual__add,
.restaurant-manual__counter button {
    border: 0;
    border-radius: 14px;
    background: rgba(221, 181, 47, 0.18);
    color: #ddb52f;
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
    font-weight: 800;
}

.restaurant-manual__counter {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.restaurant-manual__counter strong {
    min-width: 18px;
    text-align: center;
}

.restaurant-manual__counter.is-compact button {
    width: 36px;
    height: 36px;
}

.restaurant-manual__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.restaurant-manual__form-grid label {
    display: grid;
    gap: .5rem;
    color: #c4c8cf;
}

.restaurant-manual__form-grid label.is-wide {
    grid-column: 1 / -1;
}

.restaurant-manual__form-grid textarea {
    min-height: 112px;
    resize: vertical;
}

.restaurant-manual__summary-line,
.restaurant-manual__total-row,
.restaurant-manual__inline-input {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: .75rem;
    align-items: center;
}

.restaurant-manual__summary-line + .restaurant-manual__summary-line {
    margin-top: 1rem;
}

.restaurant-manual__summary-line span {
    color: #91969d;
}

.restaurant-manual__summary-copy {
    display: grid;
    gap: .25rem;
}

.restaurant-manual__product-comment {
    width: 100%;
    min-width: 190px;
    margin-top: .35rem;
    padding: .6rem .7rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #f4f4f4;
    font: inherit;
    resize: vertical;
}

.restaurant-manual__product-comment::placeholder {
    color: #8f949b;
}

.restaurant-manual__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1rem 0;
}

.restaurant-manual__inline-input {
    grid-template-columns: minmax(0, 1fr) 120px;
    margin-top: .8rem;
}

.restaurant-manual__inline-input label {
    color: #c4c8cf;
}

.restaurant-manual__total-row {
    grid-template-columns: minmax(0, 1fr) auto;
}

.restaurant-manual__total-row.is-grand strong:last-child {
    color: #ddb52f;
    font-size: 1.9rem;
}

.restaurant-manual__payments {
    display: grid;
    gap: .85rem;
}

.restaurant-manual__payment-timing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
    margin-bottom: 1rem;
}

.restaurant-manual__payment-option {
    display: grid;
    gap: .3rem;
    padding: .85rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: #0d0d0d;
    color: #f5f5f5;
    text-align: left;
}

.restaurant-manual__payment-option span {
    color: #9ca0a7;
    font-size: .82rem;
}

.restaurant-manual__payment-option.is-active {
    border-color: #ddb52f;
    background: rgba(221, 181, 47, .14);
}

.restaurant-manual__cash-field {
    display: grid;
    gap: .45rem;
    margin-top: 1rem;
    color: #c4c8cf;
}

.restaurant-manual__cash-field input {
    width: 100%;
    min-height: 50px;
    padding: .75rem .9rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: #0d0d0d;
    color: #f5f5f5;
    font: inherit;
}

.restaurant-manual__change {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .8rem;
    padding: .8rem .9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
}

.restaurant-manual__change strong {
    font-size: 1.25rem;
}

.restaurant-manual__change.is-valid strong {
    color: #ddb52f;
}

.restaurant-manual__change.is-pending strong,
.restaurant-manual__cash-help {
    color: #ef8a8a;
}

.restaurant-manual__pay-later-note {
    padding: .85rem;
    border-radius: 12px;
    background: rgba(221, 181, 47, .1);
    color: #d7c47e;
}

.restaurant-manual__post-create {
    display: grid;
    gap: .7rem;
}

.restaurant-manual__post-create-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .75rem;
    align-items: center;
    padding: .85rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: #0d0d0d;
    color: #f5f5f5;
    cursor: pointer;
}

.restaurant-manual__post-create-option.is-active {
    border-color: #ddb52f;
    background: rgba(221, 181, 47, .14);
    box-shadow: inset 0 0 0 1px rgba(221, 181, 47, .2);
}

.restaurant-manual__post-create-option input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #ddb52f;
}

.restaurant-manual__post-create-option span {
    display: grid;
    gap: .2rem;
}

.restaurant-manual__post-create-option small {
    color: #9ca0a7;
    font-size: .82rem;
}

.restaurant-manual__success {
    margin-bottom: 1rem;
    padding: .9rem 1rem;
    border: 1px solid rgba(102, 187, 106, .35);
    border-radius: 14px;
    background: rgba(76, 175, 80, .14);
    color: #c9f2bd;
}

.restaurant-manual__submit {
    border: 0;
    border-radius: 20px;
    min-height: 68px;
    background: linear-gradient(180deg, #ddb52f 0%, #c99f19 100%);
    color: #16120d;
    font-size: 1.15rem;
    font-weight: 800;
}

.restaurant-manual__submit:disabled {
    background: #8f8f8f;
    color: #474747;
}

.restaurant-manual__cancel {
    justify-self: center;
    color: #a7abb1;
    text-decoration: none;
}

.restaurant-manual__empty {
    color: #8f949b;
}

@media (max-width: 1100px) {
    .restaurant-manual__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .restaurant-manual__hero,
    .restaurant-manual__type-grid,
    .restaurant-manual__dish-grid,
    .restaurant-manual__form-grid,
    .restaurant-manual__payment-timing {
        grid-template-columns: 1fr;
    }

    .restaurant-manual__hero {
        display: grid;
    }

    .restaurant-manual__summary-line {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

.customer-store__hero {
    position: relative;
    margin-bottom: 1.4rem;
}

.customer-store__cover {
    position: relative;
    min-height: 320px;
    background-position: center;
    background-size: cover;
    display: grid;
    place-items: center;
    color: rgba(255, 248, 232, 0.92);
    text-align: center;
    letter-spacing: .18em;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
}

.customer-store__circle-action {
    position: absolute;
    top: 22px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #18120f;
    box-shadow: 0 10px 20px rgba(58, 45, 18, 0.12);
    font-size: 1.25rem;
    font-weight: 700;
}

.customer-store__circle-action--left {
    left: 16px;
}

.customer-store__circle-action--right {
    right: 16px;
    color: #b9b0aa;
}

.customer-store__circle-action--right.is-active {
    color: #d14b4b;
}

.customer-store__summary-card {
    position: relative;
    z-index: 1;
    margin: -2.9rem 1rem 0;
    border: 1px solid #eee3d4;
    border-radius: 30px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: 0 24px 50px rgba(86, 63, 20, 0.12);
    backdrop-filter: blur(16px);
}

.customer-store__summary {
    padding: 1.35rem 1.35rem 1.2rem;
}

.customer-store__summary h1 {
    margin: 0 0 .45rem;
    color: #171210;
    font-size: clamp(2.3rem, 4.4vw, 3.2rem);
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    line-height: .96;
}

.customer-store__share-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem;
    margin: 0 0 .9rem;
}

.customer-store__share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 38px;
    padding: .55rem .85rem;
    border: 1px solid #d9ad23;
    border-radius: 999px;
    background: #f0c83f;
    color: #241b0e;
    font-size: .86rem;
    font-weight: 800;
    cursor: pointer;
}

.customer-store__share-status {
    color: #6d655c;
    font-size: .82rem;
}

.customer-store__summary p {
    margin: 0 0 .9rem;
    color: #6d655c;
    font-size: 1.05rem;
}

.customer-store__closed-notice {
    margin: 1rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid #e2b936;
    border-radius: 20px;
    background: #fff4c8;
    color: #4b3710;
}

.customer-store__closed-notice strong {
    display: block;
    margin-bottom: .3rem;
    font-size: 1.05rem;
}

.customer-store__closed-notice p {
    margin: 0;
    color: #6d5730;
}

.customer-store__meta {
    padding-bottom: 1rem;
    border-bottom: 1px solid #efe4d3;
}

.customer-store__hours-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
    color: #4b4339;
}

.customer-store__hours-panel {
    margin-top: 1rem;
    border-top: 1px solid #efe4d3;
}

.customer-store__hours-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.customer-store__hours-trigger {
    color: #9a7517;
    font-weight: 700;
    white-space: nowrap;
}

.customer-store__hours-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 .8rem;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 800;
}

.customer-store__hours-badge.is-open {
    background: #e8f7ea;
    color: #216e39;
}

.customer-store__hours-badge.is-closed {
    background: #f7e9e7;
    color: #9a3f34;
}

.customer-store__hours-dropdown {
    display: grid;
    gap: .55rem;
    padding: 1rem 0 .15rem;
}

.customer-store__hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #6d655c;
    font-size: .96rem;
}

.customer-store__hours-grid {
    display: grid;
    gap: .32rem;
    color: #6d655c;
    font-size: .94rem;
}

.customer-store__filters {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    overflow: visible;
    padding: .3rem 1.2rem .6rem;
}

.customer-store__search {
    min-height: 48px;
    margin: 0 1.2rem .6rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    border: 1px solid #e5d7bb;
    border-radius: 16px;
    background: #fff;
    color: #9b7a22;
    box-shadow: 0 8px 22px rgba(92, 71, 28, .06);
}

.customer-store__search:focus-within {
    border-color: #d7ae22;
    box-shadow: 0 0 0 3px rgba(215, 174, 34, .15);
}

.customer-store__search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #2d2925;
    font: inherit;
}

.customer-store__divider {
    margin: 0 1.2rem 1rem;
    border-top: 1px solid #efe6d4;
}

.customer-store__menu {
    display: grid;
    gap: 1rem;
    padding: 0 1.2rem;
}

.customer-store__dish-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #ecdfc6;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,251,244,.98));
    box-shadow: 0 16px 34px rgba(92, 71, 28, 0.08);
}

.customer-store__dish-cover {
    min-height: 98px;
    display: grid;
    place-items: center;
    color: #c89d1d;
    letter-spacing: .08em;
    font-size: .92rem;
    background: linear-gradient(135deg, rgba(241,229,191,.8) 25%, rgba(251,246,231,.85) 25%, rgba(251,246,231,.85) 50%, rgba(241,229,191,.8) 50%, rgba(241,229,191,.8) 75%, rgba(251,246,231,.85) 75%, rgba(251,246,231,.85) 100%);
    background-size: 32px 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.customer-store__dish-body {
    display: grid;
    gap: .85rem;
    padding: 1.05rem 1.1rem;
}

.customer-store__dish-body h2 {
    margin: 0 0 .2rem;
    color: #171210;
    font-size: 1.5rem;
    font-weight: 700;
}

.customer-store__dish-body p {
    margin: 0;
    color: #6d655c;
}

.customer-store__dish-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}

.customer-store__dish-footer strong {
    color: #13100d;
    font-size: 1.2rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.customer-store__counter {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    border: 1px solid #ead39a;
    border-radius: 999px;
    padding: .45rem .75rem;
    color: #17130f;
    font-weight: 700;
}

.customer-store__counter button,
.customer-store__add-button,
.customer-store__cart-button {
    border: 0;
    background: transparent;
}

.customer-store__counter button {
    color: #18120f;
    font-size: 1.15rem;
    font-weight: 800;
}

.customer-store__add-button {
    border: 1px solid #d7ae22;
    border-radius: 14px;
    color: #d0a11a;
    font-weight: 700;
    padding: .55rem 1rem;
}

.customer-store__cart-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 88px;
    display: none;
    justify-content: center;
    pointer-events: none;
}

.customer-store__cart-bar.is-visible {
    display: flex;
}

.customer-store__cart-button {
    width: min(100%, 450px);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 16px;
    background: #d7ae22;
    color: #17120f;
    padding: 1rem 1.2rem;
    font-size: 1.12rem;
    font-weight: 800;
    box-shadow: 0 18px 35px rgba(109, 84, 16, 0.28);
}

@media (max-width: 575.98px) {
    .customer-store {
        padding-inline: 0;
    }

    .customer-store__summary,
    .customer-store__filters,
    .customer-store__menu {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .customer-store__divider {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-store__search {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-store__dish-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }
}

.customer-cart {
    min-height: 100vh;
    padding: 1.5rem 1rem 7.5rem;
    background:
        radial-gradient(circle at top, rgba(221, 181, 52, 0.18), transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 18%, #fffaf4 100%);
}

.customer-cart__shell {
    max-width: 560px;
    margin: 0 auto;
}

.customer-cart__back {
    margin: 1.1rem 1.2rem 1rem;
    border: 1px solid #ecd8ad;
    border-radius: 14px;
    background: #fff;
    color: #171210;
    padding: .7rem 1rem;
    font-weight: 600;
}

.customer-cart__restaurant {
    display: grid;
    gap: 1rem;
}

.customer-cart__top-actions {
    margin: 0 1.2rem .4rem;
    display: flex;
    justify-content: flex-end;
}

.customer-cart__hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: .2rem 1.2rem .4rem;
}

.customer-cart__hero h1 {
    margin: 0 0 .2rem;
    color: #171210;
    font-size: 2.3rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    line-height: 1.02;
}

.customer-cart__hero p {
    margin: 0;
    color: #675f56;
    font-size: 1.1rem;
}

.customer-cart__list-card,
.customer-cart__totals-card {
    margin: 0 1.2rem;
    border: 1px solid #eadfca;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(92, 71, 28, 0.06);
}

.customer-cart__line {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: .9rem;
    align-items: center;
    padding: 1rem .95rem;
}

.customer-cart__line + .customer-cart__line {
    border-top: 1px solid #efe6d4;
}

.customer-cart__line-cover {
    min-height: 56px;
    border-radius: 14px;
    font-size: .82rem;
}

.customer-cart__line-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.customer-cart__line-copy {
    flex: 1;
    min-width: 0;
}

.customer-cart__line-copy h2 {
    margin: 0 0 .15rem;
    color: #171210;
    font-size: 1.05rem;
    font-weight: 700;
}

.customer-cart__category {
    display: block;
    margin-bottom: .2rem;
    color: #9a7620;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.customer-cart__line-copy p {
    margin: 0;
    color: #7a7066;
}

.customer-cart__comment-label {
    display: block;
    margin-top: .65rem;
    color: #4f463f;
    font-size: .78rem;
    font-weight: 700;
}

.customer-cart__comment-label span {
    color: #8a8179;
    font-weight: 400;
}

.customer-cart__comment {
    display: block;
    width: min(100%, 420px);
    min-width: 250px;
    margin-top: .3rem;
    padding: .55rem .65rem;
    border: 1px solid #ddd1bd;
    border-radius: 10px;
    background: #fffdf9;
    color: #241d18;
    font: inherit;
    resize: vertical;
}

.customer-cart__comment:focus {
    border-color: #b48a22;
    outline: 2px solid rgba(180, 138, 34, .16);
}

.customer-cart__comment-status {
    display: block;
    margin-top: .25rem;
    color: #8a6b20;
}

.restaurant-order__product-comment {
    color: #9a7620 !important;
    font-weight: 700;
    white-space: pre-wrap;
}

@media print {
    .restaurant-ticket-print .restaurant-ticket-print__comment {
        display: block !important;
        margin-top: 1mm !important;
        padding: 1mm !important;
        border: 2px solid #000 !important;
        background: #fff !important;
        color: #000 !important;
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        line-height: 1.4 !important;
        letter-spacing: .15px !important;
        overflow-wrap: anywhere;
        word-break: break-word;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}

.customer-cart__line-actions,
.customer-cart__total-row,
.customer-cart__total-row--grand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.customer-cart__line-actions {
    min-width: 208px;
}

.customer-cart__line-actions strong {
    color: #13100d;
    font-size: 1.05rem;
    min-width: 52px;
    text-align: right;
}

.customer-cart__counter {
    padding-inline: .85rem;
}

.customer-cart__totals-card {
    padding: 1.2rem;
}

.customer-cart__total-row {
    color: #171210;
    font-size: 1rem;
}

.customer-cart__total-row strong {
    font-weight: 500;
}

.customer-cart__divider {
    margin: .9rem 0 1rem;
    border-top: 1px solid #d9d1c5;
}

.customer-cart__total-row--grand {
    color: #15110e;
    font-size: 1.15rem;
    font-weight: 800;
}

.customer-cart__total-row--grand strong {
    font-size: 1.2rem;
}

.customer-cart__checkout {
    margin: 0 1.2rem;
    border: 0;
    border-radius: 16px;
    background: #d7ae22;
    color: #17120f;
    padding: 1rem 1.1rem;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(109, 84, 16, 0.18);
}

.customer-cart__checkout:disabled {
    cursor: not-allowed;
    background: #d8d4cc;
    color: #817b72;
    box-shadow: none;
}

.customer-checkout__address-required {
    margin: .8rem 1.2rem 0;
}

.customer-cart__clear {
    min-height: 42px;
    padding: 0 .95rem;
    border: 1px solid #eadfca;
    border-radius: 14px;
    background: #fff;
    color: #9f2f2f;
    font-size: .95rem;
    font-weight: 800;
}

.customer-cart__nav-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
}

.customer-cart__nav-icon em {
    position: absolute;
    top: -.45rem;
    right: -.75rem;
    min-width: 1.2rem;
    height: 1.2rem;
    padding: 0 .22rem;
    border-radius: 999px;
    background: #d7ae22;
    color: #17120f;
    font-size: .72rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.2rem;
}

.customer-cart__empty-actions {
    margin-top: 1rem;
}

.customer-checkout {
    min-height: 100vh;
    padding: 1.5rem 1rem 7.5rem;
    background:
        radial-gradient(circle at top, rgba(221, 181, 52, 0.18), transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 18%, #fffaf4 100%);
}

.customer-checkout__shell {
    max-width: 560px;
    margin: 0 auto;
}

.customer-checkout__hero {
    padding: .35rem 1.2rem 1rem;
}

.customer-checkout__hero h1 {
    margin: 0 0 .2rem;
    color: #171210;
    font-size: 2.05rem;
    font-weight: 800;
    line-height: 1.05;
}

.customer-checkout__hero p {
    margin: 0;
    color: #6b6358;
    font-size: 1.1rem;
}

.customer-checkout__card {
    display: grid;
    gap: .95rem;
    margin: 0 1.2rem 1.15rem;
    padding: 1.2rem;
    border: 1px solid #eadfca;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(92, 71, 28, 0.06);
}

.customer-checkout__eyebrow {
    color: #766d63;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.customer-checkout__type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.customer-checkout__type-grid.is-single {
    grid-template-columns: 1fr;
}

.customer-checkout__type {
    display: grid;
    gap: .45rem;
    place-items: center;
    border: 1px solid #eeddb7;
    border-radius: 18px;
    background: #fff;
    color: #18120f;
    padding: 1.2rem .8rem;
}

.customer-checkout__type span {
    font-size: 1.35rem;
}

.customer-checkout__type strong {
    font-size: 1.05rem;
}

.customer-checkout__type.is-active {
    border-color: #d7ae22;
    background: #fff4cf;
    box-shadow: inset 0 0 0 1px #d7ae22;
}

.customer-checkout__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.customer-checkout__ghost {
    border: 1px solid #ecd8ad;
    border-radius: 14px;
    background: #fff;
    color: #171210;
    padding: .45rem .8rem;
    font-weight: 600;
}

.customer-checkout__address-list {
    display: grid;
    margin: 0 -1.2rem -1.2rem;
}

.customer-checkout__address {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: .85rem;
    align-items: center;
    padding: 1rem 1.2rem;
    cursor: pointer;
}

.customer-checkout__address + .customer-checkout__address {
    border-top: 1px solid #efe6d4;
}

.customer-checkout__address.is-active {
    background: #fff4cf;
}

.customer-checkout__address input {
    margin: 0;
}

.customer-checkout__address-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #f0e4ca;
    font-size: 1.15rem;
}

.customer-checkout__address-copy {
    display: grid;
    gap: .15rem;
}

.customer-checkout__address-copy strong {
    color: #171210;
    font-size: 1.05rem;
}

.customer-checkout__address-copy small {
    color: #6e665c;
    font-size: 1rem;
}

.customer-checkout__notes {
    min-height: 96px;
    border: 1px solid #efdfbf;
    border-radius: 14px;
    padding: .9rem 1rem;
    color: #171210;
    resize: vertical;
}

.customer-checkout__map-card {
    gap: 0;
    overflow: hidden;
    padding: 0;
}

.customer-checkout__map-card:has(.customer-checkout__map[style*="display:none"]) {
    display: none;
}

.customer-checkout__map {
    position: relative;
    min-height: 170px;
    background:
        linear-gradient(rgba(199, 184, 135, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199, 184, 135, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 30% 30%, rgba(221, 181, 52, 0.12), transparent 24%),
        #f6f4ea;
    background-size: 28px 28px, 28px 28px, auto, auto;
}

.customer-checkout__map-pin {
    position: absolute;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px 999px 999px 0;
    transform: rotate(-45deg);
    box-shadow: 0 12px 24px rgba(45, 34, 13, 0.18);
}

.customer-checkout__map-pin > * ,
.customer-checkout__map-pin {
    font-style: normal;
}

.customer-checkout__map-pin--restaurant {
    left: 22%;
    top: 34%;
    background: #d7ae22;
}

.customer-checkout__map-pin--address {
    right: 18%;
    top: 42%;
    background: #171210;
    color: #ff5b8a;
}

.customer-checkout__map-pin::before {
    content: "";
    transform: rotate(45deg);
}

.customer-checkout__map-pin--restaurant,
.customer-checkout__map-pin--address {
    font-size: 1.1rem;
    color: inherit;
}

.customer-checkout__map-foot {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    padding: .95rem 1rem 1rem;
    color: #6a6258;
}

.customer-checkout__map-foot strong {
    color: #394351;
}

.customer-checkout__submit {
    width: calc(100% - 2.4rem);
}

.customer-checkout__pickup-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: .95rem;
}

.customer-checkout__pickup-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #f0e4ca;
    font-size: 1.3rem;
}

.customer-checkout__pickup-copy {
    display: grid;
    gap: .15rem;
}

.customer-checkout__pickup-copy strong {
    color: #171210;
    font-size: 1.05rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.customer-checkout__pickup-copy span {
    color: #6f675d;
}

.customer-confirm {
    min-height: 100vh;
    padding: 1.5rem 1rem 7.5rem;
    background:
        radial-gradient(circle at top, rgba(221, 181, 52, 0.18), transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 18%, #fffaf4 100%);
}

.customer-confirm__shell {
    max-width: 560px;
    margin: 0 auto;
}

.customer-confirm__hero {
    padding: .35rem 1.2rem 1rem;
}

.customer-confirm__hero h1 {
    margin: 0 0 .2rem;
    color: #171210;
    font-size: 2.2rem;
    font-weight: 800;
}

.customer-confirm__hero p {
    margin: 0;
    color: #6b6358;
    font-size: 1.05rem;
}

.customer-confirm__card {
    display: grid;
    gap: .95rem;
    margin: 0 1.2rem 1.15rem;
    padding: 1.2rem;
    border: 1px solid #eadfca;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(92, 71, 28, 0.06);
}

.customer-confirm__merchant,
.customer-confirm__location {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
}

.customer-confirm__merchant-icon,
.customer-confirm__payment-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(241,229,191,.8) 25%, rgba(251,246,231,.85) 25%, rgba(251,246,231,.85) 50%, rgba(241,229,191,.8) 50%, rgba(241,229,191,.8) 75%, rgba(251,246,231,.85) 75%, rgba(251,246,231,.85) 100%);
    background-size: 32px 32px;
    font-size: 1.2rem;
}

.customer-confirm__merchant-copy {
    display: grid;
    gap: .15rem;
}

.customer-confirm__merchant-copy strong {
    color: #171210;
    font-size: 1.05rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.customer-confirm__merchant-copy span {
    color: #6f675d;
}

.customer-confirm__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.customer-confirm__order-lines {
    display: grid;
    margin: 0 -1.2rem -1.2rem;
}

.customer-confirm__order-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
}

.customer-confirm__order-copy {
    display: grid;
    gap: .15rem;
}

.customer-confirm__category {
    color: #9a7620;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.customer-confirm__order-line + .customer-confirm__order-line {
    border-top: 1px solid #efe6d4;
}

.customer-confirm__order-line > span,
.customer-confirm__order-line > strong {
    color: #171210;
}

.customer-confirm__payment-list {
    display: grid;
    gap: .8rem;
}

.customer-confirm__payment {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: .85rem;
    align-items: center;
    padding: .95rem 1rem;
    border: 1px solid #eeddb7;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
}

.customer-confirm__payment.is-active {
    border-color: #d7ae22;
    background: #fff4cf;
    box-shadow: inset 0 0 0 1px #d7ae22;
}

.customer-confirm__payment input {
    margin: 0;
}

.customer-confirm__payment strong {
    color: #171210;
    font-size: 1.05rem;
}

.customer-confirm__bank-box {
    display: grid;
    gap: .7rem;
    border: 1px solid #efdfbf;
    border-radius: 16px;
    background: #fffaf0;
    padding: 1rem;
}

.customer-confirm__bank-box div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.customer-confirm__bank-box span {
    color: #7a7066;
    font-size: .92rem;
}

.customer-confirm__bank-box strong {
    color: #171210;
    text-align: right;
}

.customer-confirm__totals {
    gap: 0;
}

.customer-confirm__submit {
    width: calc(100% - 2.4rem);
}

.customer-confirmed {
    min-height: 100vh;
    padding: 1.5rem 1rem 7.5rem;
    background:
        radial-gradient(circle at top, rgba(221, 181, 52, 0.18), transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 18%, #fffaf4 100%);
}

.customer-confirmed__shell {
    max-width: 560px;
    margin: 0 auto;
}

.customer-confirmed__hero {
    display: grid;
    justify-items: center;
    gap: .5rem;
    padding: 1rem 1.2rem 1.25rem;
    text-align: center;
}

.customer-confirmed__badge {
    width: 106px;
    height: 106px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #d7ae22;
    color: #171210;
    font-size: 3rem;
    font-weight: 900;
    box-shadow: 0 0 0 8px rgba(215, 174, 34, 0.08);
}

.customer-confirmed__hero h1 {
    margin: 0;
    color: #171210;
    font-size: 2.1rem;
    font-weight: 800;
}

.customer-confirmed__hero p {
    margin: 0;
    color: #6a6258;
    font-size: 1.1rem;
}

.customer-confirmed__hero p strong {
    color: #d0a11a;
}

.customer-confirmed__card {
    display: grid;
    gap: .9rem;
    margin: 0 1.2rem 1.15rem;
    padding: 1.2rem;
    border: 1px solid #eadfca;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(92, 71, 28, 0.06);
}

.customer-confirmed__row,
.customer-confirmed__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.customer-cart__group-orders {
    display: grid;
    gap: 1rem;
    margin: 0 1.2rem 1.35rem;
}

.customer-cart__group-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.customer-cart__group-heading h1 {
    margin: .15rem 0 .2rem;
    color: #171210;
    font-size: clamp(1.45rem, 4vw, 2rem);
}

.customer-cart__group-heading p {
    margin: 0;
    color: #6f675d;
}

.customer-cart__group-heading > span {
    display: inline-grid;
    min-width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 999px;
    background: #ddb534;
    color: #171210;
    font-weight: 900;
}

.customer-cart__group-eyebrow {
    color: #94700f;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .09em;
}

.customer-cart__group-list {
    margin: 0;
}

.customer-confirm__payment-icon--clip {
    background: #ff5a4f;
    color: #fff;
    font-weight: 900;
}

.customer-confirmed__payment {
    display: grid;
    gap: .65rem;
    padding: .85rem;
    border: 1px solid #ccebd9;
    border-radius: 14px;
    background: #effaf4;
}

.customer-confirmed__payment .customer-confirmed__row strong {
    color: #267548;
    overflow-wrap: anywhere;
    text-align: right;
}

.customer-confirmed__row span {
    color: #675f56;
}

.customer-confirmed__row strong,
.customer-confirmed__total strong {
    color: #171210;
}

.customer-confirmed__total {
    font-size: 1.15rem;
    font-weight: 800;
}

.customer-confirmed__submit {
    width: calc(100% - 2.4rem);
}

.customer-orders {
    min-height: 100vh;
    padding: 1.5rem 1rem 7.5rem;
    background:
        radial-gradient(circle at top, rgba(221, 181, 52, 0.18), transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 18%, #fffaf4 100%);
}

.customer-orders__shell {
    max-width: 560px;
    margin: 0 auto;
}

.customer-orders__hero {
    padding: .35rem 1.2rem 1rem;
}

.customer-orders__hero h1 {
    margin: 0 0 .2rem;
    color: #171210;
    font-size: 2.2rem;
    font-weight: 800;
}

.customer-orders__hero p {
    margin: 0;
    color: #6b6358;
    font-size: 1.05rem;
}

.customer-orders__views {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin: 0 1.2rem 1rem;
    padding: .3rem;
    border: 1px solid #eadfca;
    border-radius: 18px;
    background: #f8f3e9;
}

.customer-orders__views button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #6b6358;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

.customer-orders__views button span {
    display: inline-grid;
    min-width: 1.55rem;
    height: 1.55rem;
    place-items: center;
    border-radius: 999px;
    background: rgba(23, 18, 16, .08);
    font-size: .78rem;
}

.customer-orders__views button.is-active {
    background: #171210;
    color: #fff;
    box-shadow: 0 7px 18px rgba(23, 18, 16, .15);
}

.customer-orders__views button.is-active span {
    background: #ddb534;
    color: #171210;
}

.customer-orders__empty {
    display: grid;
    gap: .35rem;
    margin: 0 1.2rem;
}

.customer-orders__empty span {
    color: #756c61;
    font-size: .9rem;
}

.customer-orders__list {
    display: grid;
    gap: .9rem;
    padding: 0 1.2rem;
}

.customer-orders__card {
    display: grid;
    gap: .9rem;
    padding: 1.15rem 1.2rem;
    border: 1px solid #eadfca;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(92, 71, 28, 0.06);
}

.customer-orders__card--group {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.customer-orders__card--group::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: #ddb534;
    content: "";
}

.customer-orders__group-role {
    display: inline-flex;
    margin-bottom: .45rem;
    padding: .25rem .55rem;
    border-radius: 999px;
    background: #fff4cf;
    color: #8a6500;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.customer-orders__group-total {
    display: grid;
    gap: .12rem;
    text-align: right;
    white-space: nowrap;
}

.customer-orders__group-total span {
    color: #7a7066;
    font-size: .72rem;
}

.customer-orders__group-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.customer-orders__group-metrics span {
    padding: .45rem .65rem;
    border-radius: 10px;
    background: #f8f4ec;
    color: #675f56;
    font-size: .78rem;
}

.customer-orders__group-metrics strong {
    color: #171210;
}

.customer-orders__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.customer-orders__row h2 {
    margin: 0 0 .1rem;
    color: #171210;
    font-size: 1.05rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.customer-orders__row p {
    margin: 0;
    color: #7a7066;
}

.customer-orders__row strong {
    color: #171210;
    font-size: 1.05rem;
}

.customer-orders__row--foot {
    align-items: center;
}

.customer-orders__payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem .85rem;
    border: 1px solid #ccebd9;
    border-radius: 14px;
    background: #effaf4;
}

.customer-orders__payment div {
    display: grid;
    gap: .1rem;
}

.customer-orders__payment strong,
.customer-orders__payment span {
    color: #267548;
}

.customer-orders__payment span,
.customer-orders__payment small {
    font-size: .78rem;
}

.customer-orders__payment small {
    color: #557264;
    overflow-wrap: anywhere;
    text-align: right;
}

.customer-orders__status {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    padding: .45rem .8rem;
    font-size: .92rem;
    font-weight: 700;
}

.customer-orders__status.is-success {
    background: #e2f5e3;
    color: #2f7a37;
}

.customer-orders__status.is-progress {
    background: #fff4cf;
    color: #916a00;
}

.customer-orders__status.is-danger {
    background: #fde6e4;
    color: #b63e33;
}

.customer-orders__repeat {
    border: 1px solid #ecd8ad;
    border-radius: 14px;
    background: #fff;
    color: #171210;
    padding: .45rem .8rem;
    font-weight: 600;
}

.customer-tracking {
    min-height: 100vh;
    padding: 1.5rem 1rem 7.5rem;
    background:
        radial-gradient(circle at top, rgba(221, 181, 52, 0.18), transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 18%, #fffaf4 100%);
}

.customer-tracking__shell {
    max-width: 560px;
    margin: 0 auto;
}

.customer-tracking__hero {
    padding: .7rem 1.2rem 1rem;
}

.customer-tracking__hero h1 {
    margin: 0 0 .2rem;
    color: #171210;
    font-size: 2.15rem;
    font-weight: 800;
}

.customer-tracking__hero p {
    margin: 0;
    color: #6a6258;
    font-size: 1.05rem;
}

.customer-tracking__cancellation {
    display: grid;
    gap: .35rem;
    margin: 0 1.2rem 1.15rem;
    padding: 1rem 1.1rem;
    border: 1px solid #e6a09a;
    border-left: 5px solid #c53b31;
    border-radius: 14px;
    background: #fff0ee;
    color: #6f211c;
}

.customer-tracking__cancellation strong {
    font-size: 1.05rem;
}

.customer-tracking__cancellation p {
    margin: 0;
    line-height: 1.45;
}

.customer-tracking__live-update {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: 0 1.2rem 1rem;
    padding: .9rem 1rem;
    border: 1px solid #b9dfc5;
    border-radius: 14px;
    background: #edf9f1;
    color: #195d31;
}

.customer-tracking__live-update > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: #258a49;
    color: #fff;
    font-weight: 900;
}

.customer-tracking__live-update p {
    margin: .15rem 0 0;
    color: #39714c;
}

.customer-tracking__card {
    display: grid;
    gap: .95rem;
    margin: 0 1.2rem 1.15rem;
    padding: 1.2rem;
    border: 1px solid #eadfca;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(92, 71, 28, 0.06);
}

.customer-tracking__transfer {
    background: linear-gradient(180deg, #fffdf7 0%, #fff 100%);
}

.customer-tracking__mercadopago {
    border-color: #ccebd9;
    background: linear-gradient(180deg, #effaf4 0%, #fff 100%);
}

.customer-tracking__payment-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: .85rem;
    align-items: center;
}

.customer-tracking__payment-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #168bd2;
    color: #fff;
    font-weight: 900;
}

.customer-tracking__payment-head strong {
    color: #171210;
}

.customer-tracking__payment-head p {
    margin: .15rem 0 0;
    color: #557264;
    font-size: .85rem;
}

.customer-tracking__payment-status {
    padding: .4rem .65rem;
    border-radius: 999px;
    background: #d6f3e2;
    color: #267548;
    font-size: .78rem;
    font-weight: 800;
}

.customer-tracking__payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
}

.customer-tracking__payment-grid div {
    display: grid;
    gap: .2rem;
    padding: .75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
}

.customer-tracking__payment-grid span {
    color: #6e7f75;
    font-size: .75rem;
}

.customer-tracking__payment-grid strong {
    color: #213d2e;
    overflow-wrap: anywhere;
}

.customer-tracking__transfer-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .85rem;
    align-items: start;
}

.customer-tracking__transfer-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(241,229,191,.8) 25%, rgba(251,246,231,.85) 25%, rgba(251,246,231,.85) 50%, rgba(241,229,191,.8) 50%, rgba(241,229,191,.8) 75%, rgba(251,246,231,.85) 75%, rgba(251,246,231,.85) 100%);
    background-size: 32px 32px;
}

.customer-tracking__transfer-head strong {
    color: #171210;
    font-size: 1.05rem;
}

.customer-tracking__transfer-head p {
    margin: .15rem 0 0;
    color: #d0a11a;
    font-weight: 600;
}

.customer-tracking__transfer-table {
    display: grid;
    gap: .65rem;
}

.customer-tracking__transfer-table div,
.customer-tracking__amount,
.customer-tracking__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.customer-tracking__transfer-table div {
    padding-bottom: .45rem;
    border-bottom: 1px dashed #efdfbf;
}

.customer-tracking__transfer-table span,
.customer-tracking__amount span {
    color: #766d63;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.customer-tracking__transfer-table strong,
.customer-tracking__item strong,
.customer-tracking__amount strong {
    color: #171210;
}

.customer-tracking__amount strong {
    color: #d0a11a;
    font-size: 1.8rem;
    font-weight: 900;
}

.customer-tracking__transfer small {
    color: #8d857c;
    line-height: 1.45;
}

.customer-tracking__items {
    display: grid;
    gap: .85rem;
}

.customer-tracking__category-group {
    display: grid;
    gap: .55rem;
}

.customer-tracking__category-group + .customer-tracking__category-group {
    padding-top: .8rem;
    border-top: 1px solid #efe4d3;
}

.customer-tracking__category-group h3 {
    margin: 0;
    color: #8b6711;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.customer-tracking__item {
    color: #171210;
}

.customer-tracking__item-copy {
    display: grid;
    gap: .15rem;
}

.customer-tracking__item-copy small {
    color: #8d857c;
    font-size: .78rem;
}

.customer-tracking__totals {
    display: grid;
    gap: .45rem;
}

.customer-home__success {
    margin: 0 1.2rem 1rem;
    padding: .95rem 1.05rem;
    border: 1px solid #b8debf;
    border-radius: 18px;
    background: #eef9f0;
    color: #1d6b2e;
    font-weight: 700;
}

.customer-tracking__feedback {
    margin-top: 0;
}

.customer-tracking__estimate-value {
    color: #171210;
    font-family: "Fraunces", Georgia, serif;
    font-size: 2.1rem;
    line-height: 1;
}

.customer-tracking__delivery-mode strong {
    color: #171210;
    font-size: 1.2rem;
    font-weight: 900;
}

.customer-tracking__delivery-mode p {
    margin: .25rem 0 0;
    color: #6f675d;
}

.customer-tracking__location-grid {
    display: grid;
    gap: .85rem;
}

.customer-tracking__location-box {
    padding: 1rem 1.05rem;
    border: 1px solid #efe3cf;
    border-radius: 18px;
    background: #fffdfa;
    display: grid;
    gap: .2rem;
}

.customer-tracking__location-box span {
    color: #7b7368;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.customer-tracking__location-box strong {
    color: #171210;
    font-size: 1rem;
    font-weight: 900;
}

.customer-tracking__location-box p {
    margin: 0;
    color: #6f675d;
    line-height: 1.45;
}

.customer-tracking__timeline {
    position: relative;
    display: grid;
    gap: 1.1rem;
}

.customer-tracking__timeline::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #eadfca;
}

.customer-tracking__timeline-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.customer-tracking__timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #eadfca;
    background: #fff;
    display: block;
}

.customer-tracking__timeline-row.is-completed .customer-tracking__timeline-dot,
.customer-tracking__timeline-row.is-current .customer-tracking__timeline-dot {
    border-color: #ddb534;
    background: #ddb534;
}

.customer-tracking__timeline-row.is-current .customer-tracking__timeline-dot {
    box-shadow: 0 0 0 6px rgba(221, 181, 52, 0.16);
}

.customer-tracking__timeline-copy {
    display: grid;
    gap: .18rem;
}

.customer-tracking__timeline-copy strong {
    color: #171210;
    font-size: 1.2rem;
    font-weight: 800;
}

.customer-tracking__timeline-copy span {
    color: #6f675d;
    line-height: 1.45;
}

.customer-tracking__stars {
    display: flex;
    gap: .55rem;
}

.customer-tracking__star {
    width: 46px;
    height: 46px;
    border: 1px solid #eadfca;
    border-radius: 14px;
    background: #fff;
    color: #c8c0b3;
    font-size: 1.45rem;
    line-height: 1;
}

.customer-tracking__star.is-active {
    border-color: #ddb534;
    background: #fff7df;
    color: #d19f0d;
}

.customer-tracking__comment {
    width: 100%;
    min-height: 120px;
    padding: .95rem 1rem;
    border: 1px solid #eadfca;
    border-radius: 18px;
    resize: vertical;
    color: #171210;
    background: #fffdf9;
}

.customer-tracking__submit {
    min-height: 56px;
    border: 0;
    border-radius: 18px;
    background: #ddb534;
    color: #17130a;
    font-size: 1rem;
    font-weight: 900;
}

.customer-tracking__rating-value {
    color: #171210;
    font-size: 1.5rem;
    font-weight: 900;
}

.customer-tracking__rating-note {
    margin: 0;
    color: #6f675d;
    line-height: 1.55;
}

.customer-tracking__actions {
    margin: 0 1.2rem 1.15rem;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: .75rem;
}

.customer-tracking__action {
    min-height: 58px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 900;
}

.customer-tracking__action--ghost {
    border: 1px solid #eadfca;
    background: #fff;
    color: #171210;
}

.customer-tracking__action--primary {
    border: 0;
    background: #ddb534;
    color: #17130a;
}

.customer-tracking__whatsapp-row {
    margin: 0 1.2rem 1.15rem;
    display: flex;
    justify-content: flex-end;
}

.customer-tracking__whatsapp-link {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
    transition: transform .18s ease, box-shadow .18s ease;
}

.customer-tracking__whatsapp-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
}

.customer-tracking__whatsapp-link svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.customer-profile {
    min-height: 100vh;
    padding: 1.5rem 1rem 7.5rem;
    background:
        radial-gradient(circle at top, rgba(221, 181, 52, 0.18), transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 18%, #fffaf4 100%);
}

.customer-profile__shell {
    max-width: 680px;
    margin: 0 auto;
}

.customer-profile__hero-card,
.customer-profile__card {
    margin: 0 1.2rem 1.3rem;
    border: 1px solid #eadfca;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(92, 71, 28, 0.06);
    overflow: hidden;
}

.customer-profile__hero-cover {
    height: 120px;
    background: linear-gradient(180deg, #d8b23b, #ccaa32);
}

.customer-profile__hero-body {
    padding: 0 1.75rem 1.8rem;
    text-align: center;
}

.customer-profile__avatar {
    width: 132px;
    height: 132px;
    margin: -38px auto 1rem;
    border: 6px solid #fff;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(241,229,191,.8) 25%, rgba(251,246,231,.85) 25%, rgba(251,246,231,.85) 50%, rgba(241,229,191,.8) 50%, rgba(241,229,191,.8) 75%, rgba(251,246,231,.85) 75%, rgba(251,246,231,.85) 100%);
    background-size: 32px 32px;
    display: grid;
    place-items: center;
    color: #b38716;
    font-size: 2rem;
    font-weight: 900;
    overflow: hidden;
}

.customer-profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-profile__hero-body h1 {
    margin: 0;
    color: #171210;
    font-family: "Fraunces", Georgia, serif;
    font-size: 2.1rem;
}

.customer-profile__hero-body p {
    margin: .25rem 0 1.35rem;
    color: #6f675d;
    font-size: 1.1rem;
}

.customer-profile__photo-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0 1.25rem;
}

.customer-profile__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 1.35rem;
    border-top: 1px solid #efe5d4;
}

.customer-profile__stats strong {
    display: block;
    color: #171210;
    font-size: 1.2rem;
    font-weight: 900;
}

.customer-profile__stats span {
    color: #7f766a;
}

.customer-profile__card {
    padding: 1.55rem 1.6rem;
}

.customer-profile__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.customer-profile__card-head span,
.customer-profile__card-head small {
    color: #7c7481;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.customer-profile__outline-button,
.customer-profile__mini-button,
.customer-profile__ghost-button,
.customer-profile__primary-button {
    min-height: 46px;
    padding: 0 1rem;
    border-radius: 16px;
    font-weight: 800;
}

.customer-profile__outline-button {
    border: 1px solid #eadfca;
    background: #fff;
    color: #171210;
}

.customer-profile__outline-button:disabled {
    opacity: .45;
}

.customer-profile__form,
.customer-profile__favorites,
.customer-profile__address-list {
    display: grid;
    gap: 1rem;
}

.customer-profile__field {
    display: grid;
    gap: .55rem;
}

.customer-profile__field label {
    color: #5e565d;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.customer-profile__input,
.customer-profile__value {
    min-height: 58px;
    padding: 1rem 1.1rem;
    border: 1px solid #eadfca;
    border-radius: 18px;
    background: #fffdfa;
    color: #171210;
    font-size: 1rem;
}

.customer-profile__value {
    display: flex;
    align-items: center;
}

.customer-profile__primary-button {
    border: 0;
    background: #ddb534;
    color: #17130a;
}

.customer-profile__ghost-button {
    border: 1px solid #eadfca;
    background: #fff;
    color: #171210;
}

.customer-profile__inline-actions {
    display: flex;
    gap: .8rem;
    justify-content: flex-end;
}

.customer-profile__checkbox {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #5f574d;
}

.customer-profile__address-row,
.customer-profile__favorite-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: .95rem;
    align-items: center;
    padding: .8rem 0;
    border-top: 1px solid #f0e7d9;
}

.customer-profile__address-row:first-child,
.customer-profile__favorite-row:first-child {
    border-top: 0;
}

.customer-profile__address-icon,
.customer-profile__favorite-cover {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #f7e9be;
    color: #9c740b;
    font-weight: 900;
}

.customer-profile__address-title {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-wrap: wrap;
}

.customer-profile__address-title strong,
.customer-profile__favorite-copy strong {
    color: #171210;
    font-size: 1rem;
    font-weight: 900;
}

.customer-profile__address-title span {
    min-height: 28px;
    padding: 0 .8rem;
    border-radius: 999px;
    background: #f5e3ab;
    color: #8a6b0f;
    display: inline-flex;
    align-items: center;
    font-size: .9rem;
    font-weight: 800;
}

.customer-profile__address-copy p,
.customer-profile__favorite-copy p,
.customer-profile__empty-note,
.customer-profile__footer-note {
    margin: .2rem 0 0;
    color: #6f675d;
    line-height: 1.45;
}

.customer-profile__address-actions {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.customer-profile__mini-button {
    min-height: 36px;
    padding: 0 .8rem;
    border: 1px solid #eadfca;
    background: #fff;
    color: #171210;
    font-size: .92rem;
}

.customer-profile__mini-button.is-danger {
    color: #b43a3a;
}

.customer-profile__favorite-row {
    text-decoration: none;
}

.customer-profile__favorite-mark {
    color: #ddb534;
    font-size: 1.3rem;
}

.customer-profile__toggle-row {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .15rem 0;
    border-top: 1px solid #f0e7d9;
    color: #171210;
}

.customer-profile__toggle-row:first-of-type {
    border-top: 0;
}

.customer-profile__switch-input {
    width: 44px;
    height: 24px;
}

.customer-profile__links {
    padding: 0;
}

.customer-profile__link-row {
    min-height: 70px;
    padding: 0 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0e7d9;
    color: #171210;
    text-decoration: none;
    font-size: 1rem;
}

.customer-profile__link-row:first-child {
    border-top: 0;
}

.customer-profile__logout-form {
    margin: 0 1.2rem;
}

.customer-profile__logout-button {
    width: 100%;
    min-height: 62px;
    border: 1px solid #f0c6c6;
    border-radius: 20px;
    background: #fff;
    color: #a11e1e;
    font-size: 1.05rem;
    font-weight: 800;
}

.customer-profile__footer-note {
    margin: 1.3rem 1.2rem 0;
    text-align: center;
}

.customer-profile__feedback,
.customer-profile__empty-card {
    margin: 0 1.2rem 1.3rem;
}

@media (max-width: 575.98px) {
    .customer-cart {
        padding-inline: 0;
    }

    .customer-cart__hero,
    .customer-cart__list-card,
    .customer-cart__totals-card,
    .customer-cart__checkout,
    .customer-cart__back,
    .customer-cart__top-actions {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-cart__hero {
        flex-direction: column;
        align-items: stretch;
        padding-left: 0;
        padding-right: 0;
    }

    .customer-cart__line {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .customer-cart__line-body {
        flex-direction: column;
        align-items: stretch;
    }

    .customer-cart__comment {
        min-width: 0;
    }

    .customer-cart__line-actions {
        min-width: 0;
    }

    .customer-checkout {
        padding-inline: 0;
    }

    .customer-checkout__card,
    .customer-checkout__back,
    .customer-checkout__submit {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-checkout__hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .customer-checkout__type-grid {
        grid-template-columns: 1fr;
    }

    .customer-confirm {
        padding-inline: 0;
    }

    .customer-confirm__hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .customer-confirm__card,
    .customer-confirm__submit {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-confirm__bank-box div {
        flex-direction: column;
        align-items: flex-start;
        gap: .2rem;
    }

    .customer-confirmed {
        padding-inline: 0;
    }

    .customer-confirmed__card,
    .customer-confirmed__submit {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-confirmed__hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .customer-orders {
        padding-inline: 0;
    }

    .customer-orders__hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .customer-orders__list {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .customer-tracking {
        padding-inline: 0;
    }

    .customer-tracking__hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .customer-tracking__card {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-tracking__cancellation {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-tracking__live-update {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-home__success,
    .customer-tracking__actions {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-tracking__actions {
        grid-template-columns: 1fr;
    }

    .customer-profile {
        padding-inline: 0;
    }

    .customer-profile__hero-card,
    .customer-profile__card,
    .customer-profile__logout-form,
    .customer-profile__feedback,
    .customer-profile__empty-card,
    .customer-profile__footer-note {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .customer-profile__card {
        padding: 1.35rem 1.2rem;
    }

    .customer-profile__stats {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .customer-profile__inline-actions {
        flex-direction: column;
    }

    .customer-profile__address-row,
    .customer-profile__favorite-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .customer-profile__address-actions,
    .customer-profile__favorite-mark {
        grid-column: 2;
    }

    .customer-profile__address-actions {
        flex-direction: row;
        justify-content: flex-start;
    }
}
}
