:root {
    --brand: #ff5a00;
    --brand-dark: #d94800;
    --ink: #242424;
    --muted: #6f6f6f;
    --line: #e8e1dc;
    --bg: #fff8f3;
    --panel: #ffffff;
    --soft: #fff0e6;
    --button-text: #ffffff;
    --hero-title-color: #ffffff;
    --hero-subtitle-color: #ffffff;
    --site-font-family: Arial, Helvetica, sans-serif;
    --brand-logo-size: 42px;
    --hero-banner-height: 220px;
    --hero-display: flex;
    --hero-overlay-rgb: 0, 0, 0;
    --hero-overlay-opacity: 0.72;
    --hero-banner-image: none;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: var(--site-font-family);
}

body.sheet-open,
body.modal-open {
    overflow: hidden;
}

html.modal-open,
html.sheet-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 66px;
    padding: 12px clamp(16px, 4vw, 44px);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.site-topbar {
    display: block;
    gap: 0;
    padding: 0;
}

.site-topbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1280px, 100%);
    margin: 0 auto;
    min-height: 66px;
    padding: 12px clamp(16px, 4vw, 44px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-weight: 800;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin-left: auto;
}

.mobile-site-menu {
    display: none;
}

.topbar-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.topbar-link-strong {
    color: var(--brand);
}

.brand-mark {
    display: grid;
    width: var(--brand-logo-size);
    min-width: var(--brand-logo-size);
    height: var(--brand-logo-size);
    padding: 0 10px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--brand);
    flex: 0 0 auto;
}

.brand-logo {
    width: calc(var(--brand-logo-size) * 2.45);
    min-width: var(--brand-logo-size);
    max-width: calc(var(--brand-logo-size) * 4);
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.site-links {
    display: flex;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    padding: 0;
    background: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.site-links::-webkit-scrollbar {
    display: none;
}

.site-link {
    flex: 0 0 auto;
    padding: 8px 13px;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: color 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.site-link:hover,
.site-link.is-active {
    color: var(--brand);
    border-color: #ffd4bd;
    background: #fff6ef;
    box-shadow: 0 8px 18px rgba(36, 36, 36, 0.05);
}

.layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    width: min(1280px, 100%);
    max-width: 100%;
    margin: 0 auto;
    padding: 24px clamp(16px, 4vw, 44px);
}

.hero {
    position: relative;
    display: var(--hero-display);
    height: var(--hero-banner-height);
    min-height: 0;
    padding: 28px;
    color: #fff;
    overflow: hidden;
    background-image: var(--hero-banner-image);
    background-color: #d8d0ca;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(36, 36, 36, 0.07);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--hero-overlay-rgb), var(--hero-overlay-opacity));
}

.hero-brand {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(680px, 86%);
    margin: auto;
    text-align: center;
}

.hero-brand-center {
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hero-brand-right {
    justify-content: flex-end;
    text-align: right;
}

.hero-logo {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    width: calc(var(--brand-logo-size) * 2.45);
    min-width: var(--brand-logo-size);
    max-width: calc(var(--brand-logo-size) * 4);
    height: var(--brand-logo-size);
    flex: 0 0 auto;
    border-radius: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
    --hero-logo-tx: 0;
    --hero-logo-ty: 0;
    transform: translate(var(--hero-logo-tx), var(--hero-logo-ty));
}

.hero-logo-x-left {
    left: 28px;
}

.hero-logo-x-center {
    left: 50%;
    --hero-logo-tx: -50%;
}

.hero-logo-x-right {
    right: 28px;
}

.hero-logo-y-top {
    top: 28px;
}

.hero-logo-y-middle {
    top: 50%;
    --hero-logo-ty: -50%;
}

.hero-logo-y-bottom {
    bottom: 28px;
}

.hero h1 {
    margin: 0 0 8px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    color: var(--hero-title-color);
}

.hero p {
    max-width: 620px;
    margin: 0;
    color: var(--hero-subtitle-color);
    font-weight: 600;
}

.site-closed-card,
.info-card {
    margin-top: 20px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(36, 36, 36, 0.05);
}

.last-order-card {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 14px 0 12px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 90, 0, 0.28);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 10px 24px rgba(36, 36, 36, 0.06);
    cursor: pointer;
    text-align: left;
}

.last-order-card[hidden] {
    display: none;
}

.last-order-card small,
.last-order-card em {
    display: block;
    color: var(--muted);
    font-style: normal;
}

.last-order-card small {
    margin-bottom: 3px;
    color: var(--brand);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.last-order-card strong {
    display: block;
    font-size: 16px;
}

.last-order-card b {
    flex: 0 0 auto;
    color: var(--brand);
    font-size: 14px;
}

.site-closed-card[hidden] {
    display: none;
}

.site-closed-copy h2,
.info-card h1 {
    margin: 6px 0 8px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
}

.info-kicker {
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-copy,
.site-closed-copy p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.hours-table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.hours-table-wrap.compact {
    margin-top: 16px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.hours-table th,
.hours-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.hours-table thead th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #fffaf6;
}

.hours-table tbody tr.is-today td {
    background: #fff6ef;
    font-weight: 700;
}

.hours-table td.is-open {
    color: #177245;
}

.hours-table td.is-closed {
    color: #9c2f21;
}

.info-layout {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 26px clamp(16px, 4vw, 44px) 40px;
}

.legal-card {
    padding-bottom: 28px;
}

.legal-content {
    color: var(--ink);
    line-height: 1.7;
}

.legal-content p:first-child {
    margin-top: 0;
}

.site-footer {
    padding: 0 16px 36px;
}

.site-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.site-footer-links a {
    color: inherit;
    text-decoration: none;
}

.site-footer-links a:hover {
    color: var(--brand);
}

.category-nav-shell {
    position: sticky;
    top: 67px;
    z-index: 30;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 12px 0 16px;
    background: rgba(255, 248, 243, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.category-scroll-button {
    position: relative;
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #574f49;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 20px rgba(36, 36, 36, 0.08);
    cursor: pointer;
    transition: opacity 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.category-scroll-button::before {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(225deg);
    margin-left: 3px;
}

.category-scroll-button[data-category-scroll="right"]::before {
    transform: rotate(45deg);
    margin-left: 0;
    margin-right: 3px;
}

.category-scroll-button:hover:not(:disabled) {
    color: var(--brand);
    border-color: #ffd0b3;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(36, 36, 36, 0.12);
}

.category-scroll-button:disabled,
.category-scroll-button.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.category-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    max-width: 100%;
    min-width: 0;
    padding: 2px 2px;
    background: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-bar::-webkit-scrollbar {
    display: none;
}

.category-button {
    position: relative;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    color: #4c453f;
    background: rgba(255, 255, 255, 0.96);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(36, 36, 36, 0.04);
    transition: color 140ms ease, border-color 140ms ease, background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.category-button:hover {
    border-color: #ffd0b3;
    color: var(--ink);
    box-shadow: 0 6px 16px rgba(36, 36, 36, 0.08);
}

.category-button.active {
    color: var(--button-text);
    border-color: var(--brand);
    background: var(--brand);
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(255, 90, 0, 0.22);
}

.category-section {
    margin: 0 0 34px;
    min-width: 0;
    scroll-margin-top: 140px;
    animation: categoryFadeIn 170ms ease;
}

.category-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.category-section-copy {
    display: grid;
    gap: 4px;
}

.category-kicker {
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-section h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1.05;
}

.category-summary {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

@keyframes categoryFadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 100%;
    min-width: 0;
}

.product-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 122px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 148px;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(36, 36, 36, 0.06);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.product-card.no-image {
    grid-template-columns: minmax(0, 1fr);
}

.product-card:hover {
    border-color: #ffc39e;
    box-shadow: 0 16px 34px rgba(36, 36, 36, 0.1);
    transform: translateY(-2px);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    padding: 18px 17px;
}

.product-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.product-meta {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.product-alert {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 7px;
    color: #9a5b00;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.product-alert-icon {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #f59e0b;
    font-size: 12px;
    font-weight: 900;
}

.product-promo {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-top: 8px;
    border-radius: 999px;
    background: #fff1e8;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    padding: 6px 9px;
}

.product-price {
    margin-top: auto;
    font-weight: 800;
    font-size: 20px;
}

.product-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.product-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.product-action::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 1px;
}

.product-visual {
    position: relative;
    overflow: hidden;
    background: var(--soft);
}

.product-card img {
    width: 122px;
    height: 100%;
    object-fit: cover;
    background: var(--soft);
    min-width: 0;
    transition: transform 180ms ease;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-modal img[hidden] {
    display: none;
}

.add-row {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.add-row select {
    min-width: 0;
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 7px 8px;
    background: #fff;
}

.add-row button,
.checkout button {
    border: 0;
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--button-text);
    background: var(--brand);
    cursor: pointer;
    font-weight: 700;
}

.basket {
    position: sticky;
    top: 90px;
    align-self: start;
    display: grid;
    grid-template-rows: auto auto minmax(80px, 1fr) auto auto auto auto auto;
    height: calc(100vh - 110px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.basket header,
.checkout {
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

.basket header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.basket-close {
    display: none;
}

.checkout {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
}

.basket h2 {
    margin: 0;
}

.basket-items {
    min-height: 0;
    max-height: none;
    overflow: auto;
    overflow-anchor: none;
    overscroll-behavior: contain;
}

.basket-empty,
.notice {
    padding: 18px 16px;
    color: var(--muted);
}

.basket-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
}

.basket-line:hover {
    background: #fff8f3;
}

.basket-line strong {
    display: block;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.quantity button {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.quantity button.quantity-remove {
    display: inline-grid;
    place-items: center;
    color: #2f2a26;
}

.quantity button.quantity-remove svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 18px;
    font-weight: 800;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 16px;
    color: var(--muted);
}

.fee-row[hidden] {
    display: none;
}

.fee-row.needs-address span:last-child {
    color: #9a5b00;
    font-size: 12px;
    font-weight: 400;
}

.promotion-row {
    color: #087443;
    font-weight: 800;
}

.total-final {
    border-top: 1px solid var(--line);
}

.open-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 7px 11px;
    color: #177245;
    background: #eaf8f0;
}

.open-pill.closed {
    color: #9c2f21;
    background: #ffecea;
}

.checkout {
    display: grid;
    gap: 8px;
    overflow: auto;
    overscroll-behavior: contain;
}

.checkout-section-title {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.requested-time {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
}

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

.fulfilment-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 4px;
    border-radius: 999px;
    background: #eee8e2;
}

.fulfilment-switch.table-mode-hidden {
    display: none;
}

.fulfilment-top {
    display: grid;
    gap: 8px;
    padding: 0 16px 12px;
}

.fulfilment-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.fulfilment-option strong,
.fulfilment-option small {
    display: block;
    line-height: 1.15;
}

.fulfilment-option small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.fulfilment-option.active {
    color: var(--button-text);
    background: var(--brand);
    box-shadow: 0 4px 14px rgba(255, 90, 0, 0.26);
}

.fulfilment-option.active small {
    color: rgba(255, 255, 255, 0.86);
}

.fulfilment-option.active .fulfilment-icon {
    color: var(--button-text);
}

.fulfilment-option:disabled {
    opacity: 0.45;
    color: #9b948f;
    background: #f3ede9;
    box-shadow: none;
    cursor: not-allowed;
}

.fulfilment-option:disabled small {
    color: #9b948f;
}

.fulfilment-option:disabled .fulfilment-icon {
    color: #9b948f;
}

.fulfilment-icon {
    position: relative;
    width: 22px;
    height: 22px;
    color: #ff5a00;
}

.fulfilment-icon::before,
.fulfilment-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

.delivery-icon::before {
    left: 2px;
    top: 9px;
    width: 14px;
    height: 7px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 7px 7px;
}

.delivery-icon::after {
    left: 4px;
    bottom: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 11px 0 0 currentColor;
}

.collection-icon {
    color: #3f3a36;
}

.collection-icon::before {
    left: 4px;
    top: 8px;
    width: 14px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 2px 2px 5px 5px;
}

.collection-icon::after {
    left: 7px;
    top: 4px;
    width: 8px;
    height: 7px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.earliest-time {
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.order-rule-top {
    min-height: 16px;
    line-height: 16px;
    text-align: center;
}

.order-rule-top:empty::before {
    content: "";
}

.delivery-fields {
    display: grid;
    gap: 10px;
}

.delivery-fields[hidden] {
    display: none !important;
}

.checkout input,
.checkout textarea,
.checkout select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 10px;
    color: var(--ink);
    background: #fff;
}

.checkout textarea {
    min-height: 48px;
    resize: vertical;
}

.checkout button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

[data-checkout-button] {
    position: sticky;
    bottom: 0;
    z-index: 1;
    box-shadow: 0 -8px 12px rgba(255, 255, 255, 0.9);
}

.status {
    color: var(--muted);
    font-size: 13px;
}

.status.is-error {
    color: #b42318;
    font-weight: 700;
}

.status.is-ok {
    color: #177245;
}

.mobile-basket-bar {
    display: none;
}

.basket-sheet-backdrop[hidden] {
    display: none;
}

.remove-line {
    border: 0;
    color: #b42318;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 18px;
}

.confirmation-modal[hidden] {
    display: none;
}

.confirmation-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 18px;
}

.confirmation-card {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 24px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.welcome-card {
    text-align: left;
}

.welcome-content {
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 18px;
}

.welcome-content p:first-child {
    margin-top: 0;
}

.confirmation-check {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    border-radius: 50%;
    color: #fff;
    background: var(--brand);
    font-size: 28px;
    font-weight: 900;
}

.confirmation-card h2 {
    margin: 0 0 6px;
}

.confirmation-card p {
    margin: 0 0 16px;
    color: var(--muted);
}

.confirmation-summary {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    text-align: left;
}

.confirmation-summary div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-top: 1px solid var(--line);
}

.confirmation-summary dt {
    color: var(--muted);
}

.confirmation-summary dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.product-modal {
    position: relative;
    width: min(620px, 100%);
    max-height: min(760px, 92vh);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
}

.product-modal img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--soft);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.modal-body {
    display: grid;
    gap: 14px;
    padding: 18px;
    overflow: auto;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
}

.modal-body h2,
.modal-body p {
    margin: 0;
}

.modal-allergy-info[hidden] {
    display: none;
}

.modal-allergy-info {
    display: grid;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid #ffd39b;
    border-radius: 8px;
    color: #8a4f00;
    background: #fff7eb;
    font-size: 14px;
    line-height: 1.45;
}

.modal-promotion-info[hidden] {
    display: none;
}

.modal-promotion-info {
    display: grid;
    gap: 8px;
    margin: 12px 0;
    border: 1px solid rgba(255, 90, 0, 0.22);
    border-radius: 10px;
    background: #fff7f1;
    color: #2d2926;
    padding: 10px 12px;
}

.modal-promotion-info div {
    display: grid;
    gap: 2px;
}

.modal-promotion-info span {
    color: var(--muted);
    font-size: 13px;
}

.choice-group {
    display: grid;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.choice-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.choice-group h3 {
    margin: 0;
    font-size: 18px;
}

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

.choice-badge {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 5px 8px;
    color: #fff;
    background: #2f2f2f;
    font-size: 12px;
    font-weight: 800;
}

.choice-badge.optional {
    color: var(--muted);
    background: #f1ece8;
}

.choice-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.choice-row label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
    flex: 1;
    font-weight: 700;
    cursor: pointer;
}

.choice-label-copy {
    display: grid;
    gap: 2px;
}

.choice-label-name {
    display: block;
}

.choice-label-sub {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.combo-fixed-row {
    cursor: default;
}

.choice-row-aside {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.option-info-wrap {
    position: relative;
    flex: 0 0 auto;
}

.option-info-button {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid #ffc39e;
    border-radius: 50%;
    color: var(--brand);
    background: #fff7f0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.option-info-panel[hidden] {
    display: none;
}

.option-info-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 3;
    display: grid;
    gap: 6px;
    width: min(260px, calc(100vw - 72px));
    padding: 10px 12px;
    border: 1px solid #ffd39b;
    border-radius: 8px;
    color: #8a4f00;
    background: #fffaf2;
    box-shadow: 0 12px 30px rgba(36, 36, 36, 0.14);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.option-info-match {
    padding-top: 6px;
    border-top: 1px solid #f4ddc4;
}

.choice-row input[type="radio"],
.choice-row input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: var(--brand);
}

.choice-row:has(input:checked),
.choice-row.selected {
    border-color: var(--brand);
    background: #fff7f0;
}

.option-stepper {
    display: flex;
    align-items: center;
    gap: 9px;
}

.option-stepper button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--brand);
    background: #fff;
    cursor: pointer;
    font-weight: 800;
}

.option-stepper button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.option-qty {
    min-width: 18px;
    text-align: center;
    font-weight: 800;
}

.modal-notes {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0 calc(env(safe-area-inset-bottom, 0px) + 2px);
    border-top: 1px solid var(--line);
    position: sticky;
    bottom: 0;
    background: #fff;
    box-shadow: 0 -10px 18px rgba(255, 255, 255, 0.94);
}

.modal-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: #f6f1ec;
}

.modal-quantity button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.modal-quantity span {
    min-width: 26px;
    text-align: center;
    font-weight: 900;
}

[data-modal-add] {
    flex: 1;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    color: var(--button-text);
    background: linear-gradient(180deg, #ff741f, var(--brand));
    box-shadow: 0 10px 20px rgba(255, 90, 0, 0.22);
    cursor: pointer;
    font-size: 17px;
    font-weight: 900;
}

[data-modal-add]:disabled {
    color: #aaa29a;
    background: #f1ece8;
    box-shadow: none;
    cursor: not-allowed;
}

@media (max-width: 980px) {
    .layout {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 12px 96px;
    }

    .layout > div {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .basket {
        position: fixed;
        inset: 0;
        bottom: 0;
        z-index: 45;
        width: 100%;
        max-height: none;
        height: 100vh;
        border: 0;
        border-radius: 0;
        transform: translateY(110%);
        transition: transform 0.22s ease;
        box-shadow: none;
        display: grid;
        grid-template-rows: auto auto minmax(0, 1fr) auto auto auto auto;
    }

    .basket.basket-empty-state {
        display: none;
    }

    .basket.sheet-open {
        transform: translateY(0);
    }

    .basket header {
        cursor: default;
        min-height: 60px;
    }

    .basket-close {
        display: grid;
        width: 36px;
        height: 36px;
        place-items: center;
        border: 0;
        border-radius: 50%;
        color: var(--ink);
        background: #f4eee9;
        cursor: pointer;
        font-size: 20px;
        line-height: 1;
    }

    .basket-sheet-backdrop {
        position: fixed;
        inset: 0;
        z-index: 40;
        background: rgba(0, 0, 0, 0.34);
    }

    .mobile-basket-bar {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 46;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 0;
        border-radius: 8px;
        padding: 15px 16px;
        color: var(--button-text);
        background: var(--brand);
        box-shadow: 0 8px 22px rgba(217, 72, 0, 0.28);
        font-weight: 800;
        cursor: pointer;
    }

    .mobile-basket-bar[hidden],
    .basket.sheet-open + .mobile-basket-bar {
        display: none;
    }

    .basket-items {
        max-height: none;
        overflow: auto;
    }

    .checkout {
        max-height: 42vh;
        overflow: auto;
    }
}

@media (max-width: 700px) {
    .topbar {
        padding: 12px;
    }

    .site-topbar {
        padding: 0;
    }

    .site-topbar-main {
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 12px 14px 8px;
    }

    .site-links,
    .topbar-actions {
        display: none;
    }

    .mobile-site-menu {
        position: relative;
        display: block;
        width: auto;
        margin-left: auto;
    }

    .mobile-site-menu summary {
        display: grid;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        cursor: pointer;
        list-style: none;
        box-shadow: 0 8px 18px rgba(36, 36, 36, 0.06);
    }

    .mobile-site-menu summary::-webkit-details-marker {
        display: none;
    }

    .mobile-site-menu summary span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
    }

    .mobile-site-menu summary::after {
        content: "";
        display: none;
    }

    .mobile-site-menu-panel {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: auto;
        z-index: 250;
        display: grid;
        gap: 6px;
        width: min(320px, calc(100vw - 28px));
        max-height: min(70vh, 420px);
        overflow: auto;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 18px 34px rgba(36, 36, 36, 0.14);
    }

    .mobile-site-menu-panel a,
    .mobile-site-menu-panel .open-pill {
        display: flex;
        align-items: center;
        min-height: 40px;
        padding: 10px 12px;
        border-radius: 8px;
        color: var(--ink);
        text-decoration: none;
        font-weight: 800;
    }

    .mobile-site-menu-panel a.is-active {
        color: var(--brand);
        background: #fff2e8;
    }

    .mobile-site-menu-panel .open-pill {
        justify-content: center;
    }

    .hero {
        min-height: 170px;
        height: max(170px, var(--hero-banner-height));
        padding: 18px;
        border-radius: 7px;
    }

    .hero-brand,
    .hero-brand-right {
        justify-content: flex-start;
        text-align: left;
    }

    .hero-brand {
        gap: 12px;
    }

    .hero-logo {
        width: calc(var(--brand-logo-size) * 2.05);
    }

    .hero h1 {
        font-size: clamp(28px, 9vw, 38px);
    }

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

    .category-nav-shell {
        top: 67px;
        gap: 8px;
        margin-bottom: 16px;
        padding-top: 10px;
        padding-bottom: 12px;
    }

    .category-scroll-button {
        width: 32px;
        height: 32px;
    }

    .product-card {
        grid-template-columns: minmax(0, 1fr) 104px;
        min-height: 144px;
    }

    .product-card img {
        display: block;
        width: 104px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-price {
        font-size: 18px;
    }

    .product-action {
        font-size: 12px;
    }

    .category-section h2 {
        font-size: 30px;
    }

    .topbar {
        align-items: center;
        flex-direction: row;
    }

    .product-modal {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        align-self: stretch;
    }

    .modal {
        align-items: stretch;
        padding: 0;
    }

    .product-modal img {
        height: 190px;
    }

    .modal-body {
        padding: 16px 16px calc(22px + env(safe-area-inset-bottom, 0px));
    }

    .modal-footer {
        gap: 10px;
        padding-top: 12px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    }

    .modal-quantity {
        flex: 0 0 auto;
    }

    [data-modal-add] {
        min-width: 0;
        font-size: 16px;
    }

    .hours-table {
        min-width: 440px;
    }

    .site-footer {
        padding-bottom: 24px;
    }
}
