/* Public restaurant menu pages using layouts/menu. */
.menu-body {
    background: #fff;
    color: #27272a;
    font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.menu-body main,
.menu-body .site-header,
.menu-body .site-footer {
    width: auto;
    margin: 0;
}

.restaurant-menu-shell {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
    background: #fff;
}

.venue-menu-page {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    background: #fff;
}

.menu-powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 28px 16px 34px;
    color: #71717a;
    font-size: 13px;
    font-weight: 700;
    background: #fff;
}

.menu-powered-by a {
    color: var(--brand-dark);
    font-weight: 900;
}

.venue-hero {
    position: relative;
}

.venue-language-switch {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 8;
    display: grid;
    width: 126px;
    grid-template-columns: repeat(3, 38px);
    gap: 6px;
    transform: none;
}

.venue-language-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 0;
    min-height: 34px;
    border-radius: 76px;
    background: rgba(0, 0, 0, .64);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
}

.venue-language-switch a.is-active,
.venue-language-switch a:hover {
    background: #18181b;
    text-decoration: none;
}

.venue-info {
    display: block;
}

.venue-hero-summary {
    position: relative;
    display: block;
    min-height: 218px;
    overflow: hidden;
    cursor: pointer;
    list-style: none;
}

.venue-hero-summary::-webkit-details-marker {
    display: none;
}

.venue-hero-summary::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .34)),
        linear-gradient(0deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, 0) 56%);
}

.venue-hero-cover {
    display: block;
    width: 100%;
    aspect-ratio: 414 / 233;
    object-fit: cover;
    background: #fff;
}

.venue-hero-cover-empty {
    background: linear-gradient(135deg, #fff, #f8fafc);
}

.venue-hero-text {
    position: absolute;
    right: 16px;
    left: 16px;
    top: 50%;
    z-index: 2;
    display: grid;
    gap: 6px;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .42);
    transform: translateY(-50%);
}

.venue-hero-title {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 32px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.venue-hero-meta {
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, .94);
    font-size: 15px;
    font-weight: 800;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.venue-open-status {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(24, 24, 27, .76);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 18px;
}

.venue-open-status.is-open {
    background: rgba(22, 101, 52, .88);
}

.venue-info-less {
    display: none;
}

.venue-info[open] .venue-info-more {
    display: none;
}

.venue-info[open] .venue-info-less {
    display: inline;
}

.venue-info-backdrop,
.venue-info-sheet-handle {
    display: none;
}

.venue-info-panel {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-bottom: 1px solid #e4e4e7;
    background: #fff;
}

.venue-info-map {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 220px;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    background: #f4f4f5;
}

.venue-info-map iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
    pointer-events: none;
}

.venue-info-map a {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.venue-info-heading {
    display: grid;
    gap: 8px;
}

.venue-info-heading h2 {
    margin: 0;
    color: #18181b;
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: 0;
}

.venue-info-status {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #52525b;
    font-size: 13px;
    font-weight: 800;
    line-height: 18px;
}

.venue-info-status.is-open {
    background: #dcfce7;
    color: #166534;
}

.venue-info-description {
    margin: 0;
    color: #52525b;
    font-size: 14px;
    line-height: 20px;
}

.venue-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.venue-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #e4e4e7;
    border-radius: 999px;
    background: #18181b;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    cursor: pointer;
}

.venue-action-button:hover {
    text-decoration: none;
}

.venue-action-button:nth-child(n + 2) {
    background: #fff;
    color: #18181b;
}

.venue-action-button.is-copied {
    border-color: #166534;
    color: #166534;
}

.venue-contact-grid {
    display: grid;
    margin-top: 0;
}

.venue-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 56px;
    padding: 8px 16px;
    color: #27272a;
}

.venue-contact-card:hover {
    text-decoration: none;
}

.venue-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    color: #1f2937;
    font-size: 22px;
    line-height: 1;
}

.venue-contact-text {
    min-width: 0;
}

.venue-contact-card strong,
.venue-contact-card small {
    display: block;
}

.venue-contact-card strong {
    color: #27272a;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.venue-contact-card small {
    margin-top: 4px;
    overflow: hidden;
    color: #71717a;
    font-size: 12px;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.venue-hours-card {
    display: grid;
    gap: 0;
    margin-top: 0;
    overflow: hidden;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
}

.venue-hours-card > strong {
    padding: 12px 14px;
    color: #27272a;
    font-size: 14px;
    line-height: 20px;
}

.venue-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 14px;
    border-top: 1px solid #e4e4e7;
    color: #71717a;
    font-size: 13px;
}

.venue-hours-row b {
    color: #27272a;
}

.venue-info-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    justify-self: end;
    width: auto;
    min-height: 42px;
    margin: 0;
    padding: 0 16px;
    border: 1px solid #e4e4e7;
    border-radius: 999px;
    background: #fff;
    color: #18181b;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    cursor: pointer;
}

.venue-info-close:hover {
    border-color: #18181b;
}

.venue-menu-content {
    border-top: 1px solid #e4e4e7;
    background: #fff;
}

.venue-category-bar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 60;
    margin: 0;
    background: #fff;
    box-shadow: 0 3px 10px rgba(23, 24, 24, .08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-110%);
    transition: transform .18s ease, opacity .18s ease;
}

.menu-body.is-venue-category-bar-visible .venue-category-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.venue-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 14px;
    background: #fff;
}

.venue-category-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    color: #3f3f46;
    font-size: 30px;
    line-height: 1;
}

.venue-category-header a:hover {
    text-decoration: none;
}

.venue-category-header strong {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    color: #27272a;
    font-size: 17px;
    font-weight: 800;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.venue-category-tabs {
    display: flex;
    gap: 8px;
    padding: 10px 0 9px;
    overflow-x: auto;
    background: #fff;
    border-top: 1px solid #f4f4f5;
    border-bottom: 1px solid #e4e4e7;
    scrollbar-width: none;
    white-space: nowrap;
}

.venue-category-tabs::-webkit-scrollbar {
    display: none;
}

.venue-category-tabs a {
    flex: 0 0 auto;
    max-width: 210px;
    overflow: hidden;
    padding: 7px 14px;
    border: 1px solid #e4e4e7;
    border-radius: 100px;
    color: #18181b;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-overflow: ellipsis;
}

.venue-category-tabs a:first-child {
    margin-left: 16px;
}

.venue-category-tabs a:last-child {
    margin-right: 16px;
}

.venue-category-tabs a:hover,
.venue-category-tabs a.is-active {
    background: #27272a;
    border-color: #27272a;
    color: #fff;
    text-decoration: none;
}

.venue-menu-section {
    scroll-margin-top: 104px;
    border-top: 1px solid #e4e4e7;
}

.venue-menu-section:first-of-type {
    border-top: 0;
}

.venue-section-header {
    padding: 32px 14px 14px;
    border-bottom: 1px solid #e4e4e7;
    background: #fff;
}

.venue-section-header h2 {
    margin: 0;
    color: #18181b;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0;
}

.venue-section-header p {
    margin: 4px 0 0;
    color: #71717a;
    font-size: 14px;
    line-height: 20px;
}

.venue-subsection-header {
    padding: 28px 14px 14px;
    border-bottom: 1px solid #e4e4e7;
    background: #fff;
}

.venue-subsection-header h3 {
    margin: 0;
    color: #18181b;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    letter-spacing: 0;
}

.venue-subsection-header p {
    margin: 4px 0 0;
    color: #71717a;
    font-size: 14px;
    line-height: 20px;
}

.venue-dish-list {
    padding: 0 14px;
    background: #fff;
}

.venue-dish {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid #e4e4e7;
    cursor: pointer;
}

.venue-dish:first-child {
    border-top: 0;
}

.venue-dish:focus-visible {
    outline: 3px solid rgba(39, 39, 42, .24);
    outline-offset: 4px;
}

.venue-dish-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    min-height: 64px;
}

.venue-dish h3 {
    margin: 0;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0;
}

.venue-dish p {
    display: -webkit-box;
    margin: 2px 0 0;
    overflow: hidden;
    color: #667085;
    font-size: 14px;
    line-height: 20px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.venue-dish-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
    margin-top: 5px;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.venue-dish-prices span + span::before {
    content: "\00b7";
    padding: 0 4px;
    font-weight: 800;
    opacity: .5;
}

.venue-dish-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.venue-dish-badges span {
    padding: 3px 7px;
    border: 1px solid #e4e4e7;
    border-radius: 4px;
    background: #fff;
    color: #27272a;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.venue-dish-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.venue-dish-flags span {
    padding: 3px 7px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #52525b;
    font-size: 11px;
    font-weight: 800;
    line-height: 15px;
}

.venue-dish-image {
    width: 82px;
    min-width: 82px;
    height: 82px;
    flex: 0 0 82px;
    object-fit: cover;
    object-position: center;
    border: 1px solid #f4f4f5;
    border-radius: 4px;
    background: #fff;
}

.venue-dish.is-contain-image .venue-dish-image {
    padding: 4px;
    object-fit: contain;
}

.venue-modal-open {
    overflow: hidden;
}

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

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

.venue-dish-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .62);
    backdrop-filter: blur(8px);
}

.venue-dish-modal-card {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(15, 23, 42, .28);
}

.venue-dish-modal-handle {
    display: none;
}

.venue-dish-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(24, 24, 27, .86);
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.venue-dish-modal-media {
    display: none;
    margin: 0;
    overflow: hidden;
    background: #f4f4f5;
    align-items: center;
    justify-content: center;
    height: clamp(220px, 38vh, 360px);
}

.venue-dish-modal.has-image .venue-dish-modal-media {
    display: flex;
}

.venue-dish-modal-media img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}

.venue-dish-modal.is-contain-image .venue-dish-modal-media img {
    object-fit: contain;
    background: #fff;
}

.venue-dish-modal.is-wide-image .venue-dish-modal-media {
    height: auto;
    max-height: none;
    background: #fff;
}

.venue-dish-modal.is-wide-image .venue-dish-modal-media img {
    height: auto;
    max-height: none;
}

.venue-dish-modal-body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

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

.venue-dish-modal-body h2 {
    color: #0f172a;
    font-size: 26px;
    font-weight: 800;
    line-height: 32px;
    letter-spacing: 0;
}

.venue-dish-modal-description {
    color: #52525b;
    font-size: 15px;
    line-height: 22px;
}

.venue-dish-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.venue-dish-modal-badges span {
    padding: 4px 8px;
    border: 1px solid #e4e4e7;
    border-radius: 4px;
    background: #fff;
    color: #27272a;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.venue-dish-modal-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
    color: #111827;
    font-size: 17px;
    font-weight: 800;
    line-height: 24px;
}

.venue-dish-modal-prices span + span::before {
    content: "\00b7";
    padding: 0 7px;
    opacity: .5;
}

.venue-dish-variants {
    display: none;
}

.venue-dish-modal-variants {
    display: grid;
    gap: 12px;
}

.venue-dish-modal-variants:empty {
    display: none;
}

.venue-dish-option-groups {
    display: none;
}

.venue-dish-modal-options {
    display: grid;
    gap: 12px;
}

.venue-dish-modal-options:empty {
    display: none;
}

.venue-dish-modal-options .venue-dish-option-groups {
    display: grid;
    gap: 12px;
}

.venue-dish-price-group,
.venue-dish-option-group {
    margin: 0;
    padding: 12px;
    border: 1px solid #e4e4e7;
    border-radius: 10px;
}

.venue-dish-price-group legend,
.venue-dish-option-group legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 4px;
    color: #18181b;
    font-size: 14px;
    font-weight: 800;
}

.venue-dish-option-group legend span {
    color: #71717a;
    font-size: 12px;
    font-weight: 700;
}

.venue-dish-price-list,
.venue-dish-option-list {
    display: grid;
    gap: 8px;
    padding-top: 4px;
}

.venue-dish-price-list label,
.venue-dish-option-list label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    color: #27272a;
    font-size: 14px;
    line-height: 20px;
}

.venue-dish-price-list b,
.venue-dish-option-list b {
    color: #111827;
    font-size: 13px;
}

.venue-menu-empty {
    margin: 0 16px 72px;
    padding: 24px 16px;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    background: #fff;
    text-align: center;
}

.venue-menu-empty h2,
.venue-menu-empty p {
    margin: 0;
}

.venue-menu-empty p {
    margin-top: 8px;
    color: #71717a;
}

@media (min-width: 760px) {
    .restaurant-menu-shell {
        align-items: flex-start;
        padding: 24px 0 56px;
        background: #fff;
    }

    .venue-menu-page {
        width: min(var(--venue-max, 1180px), calc(100% - 48px));
        max-width: var(--venue-max, 1180px);
        min-height: calc(100vh - 80px);
        overflow: hidden;
        border: 1px solid #e4e4e7;
        border-radius: 18px;
        box-shadow: 0 18px 52px rgba(24, 24, 27, .08);
    }

    .venue-hero-summary {
        min-height: clamp(320px, 34vw, 420px);
    }

    .venue-hero-cover {
        height: clamp(320px, 34vw, 420px);
        aspect-ratio: auto;
        border-radius: 0;
    }

    .venue-hero-summary::after {
        border-radius: 0;
        background:
            linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .12) 58%),
            linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .38));
    }

    .venue-language-switch {
        top: 24px;
        right: 24px;
        left: auto;
        width: 138px;
        grid-template-columns: repeat(3, 42px);
    }

    .venue-language-switch a {
        width: 42px;
        min-height: 38px;
        font-size: 13px;
    }

    .venue-hero-text {
        right: 48px;
        left: 48px;
        max-width: none;
        text-align: center;
    }

    .venue-hero-title {
        font-size: 48px;
        line-height: 54px;
        white-space: normal;
    }

    .venue-hero-meta {
        font-size: 18px;
        line-height: 26px;
        white-space: normal;
    }

    .venue-open-status {
        font-size: 14px;
    }

    .venue-info-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        gap: 18px 28px;
        align-items: start;
        padding: 24px 32px;
    }

    .venue-info-map {
        grid-column: 1 / -1;
    }

    .venue-info-heading {
        grid-column: 1 / -1;
    }

    .venue-info-description {
        grid-column: 1 / -1;
        max-width: 760px;
        margin: 0;
        font-size: 16px;
        line-height: 24px;
    }

    .venue-action-row {
        grid-column: 1 / -1;
    }

    .venue-contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 10px;
    }

    .venue-contact-card {
        min-height: 64px;
        padding: 12px 14px;
        border: 1px solid #e4e4e7;
        border-radius: 12px;
        background: #fff;
    }

    .venue-hours-card {
        margin-top: 0;
    }

    .venue-info-close {
        grid-column: 1 / -1;
        justify-self: end;
        width: auto;
        padding: 0 18px;
    }

    .venue-menu-content {
        display: block;
        width: min(1100px, calc(100% - 56px));
        margin: 0 auto;
        padding: 0 0 48px;
        border-top: 0;
    }

    .venue-category-bar {
        right: auto;
        left: 50%;
        margin: 0;
        width: min(var(--venue-max, 1180px), calc(100% - 48px));
        overflow: hidden;
        border-right: 1px solid #e4e4e7;
        border-left: 1px solid #e4e4e7;
        transform: translate(-50%, -110%);
    }

    .menu-body.is-venue-category-bar-visible .venue-category-bar {
        transform: translate(-50%, 0);
    }

    .venue-category-header {
        min-height: 56px;
        padding: 0 28px;
    }

    .venue-category-header strong {
        font-size: 18px;
    }

    .venue-category-tabs {
        padding: 12px 28px;
    }

    .venue-category-tabs a:first-child,
    .venue-category-tabs a:last-child {
        margin: 0;
    }

    .venue-menu-section {
        overflow: hidden;
        scroll-margin-top: 120px;
        border: 1px solid #ececef;
        border-radius: 0;
        background: #fff;
    }

    .venue-menu-section + .venue-menu-section {
        margin-top: 22px;
    }

    .venue-menu-section:first-of-type {
        border-top: 1px solid #e4e4e7;
    }

    .venue-section-header {
        padding: 22px 20px 14px;
    }

    .venue-section-header h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .venue-subsection-header {
        padding: 22px 20px 14px;
        background: #fff;
    }

    .venue-subsection-header h3 {
        font-size: 23px;
        line-height: 31px;
    }

    .venue-dish-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding: 18px;
    }

    .venue-dish {
        flex-direction: column-reverse;
        justify-content: flex-end;
        gap: 16px;
        min-height: 116px;
        overflow: hidden;
        padding: 0;
        border: 1px solid #e4e4e7;
        border-radius: 12px;
        background: #fff;
    }

    .venue-dish:not(.has-image)::before {
        content: "";
        display: block;
        height: 8px;
        background: linear-gradient(90deg, #18181b, #71717a);
    }

    .venue-dish:first-child {
        border-top: 1px solid #e4e4e7;
    }

    .venue-dish-content {
        padding: 0 16px 16px;
    }

    .venue-dish h3 {
        font-size: 18px;
        line-height: 25px;
    }

    .venue-dish p {
        max-width: 680px;
        font-size: 15px;
        line-height: 22px;
        -webkit-line-clamp: 3;
    }

    .venue-dish-image {
        width: 100%;
        min-width: 0;
        height: 176px;
        flex-basis: auto;
        border: 0;
        border-radius: 0;
    }

    .venue-dish.is-contain-image .venue-dish-image {
        padding: 10px;
    }

    .venue-dish:not(.has-image) .venue-dish-content {
        padding-top: 16px;
    }

    .venue-menu-empty {
        max-width: 900px;
        margin: 24px auto 72px;
    }
}

@media (min-width: 1100px) {
    .venue-dish-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .menu-body,
    .restaurant-menu-shell {
        background: #fff;
    }

    .restaurant-menu-shell {
        display: block;
        padding: 0;
    }

    .venue-menu-page {
        width: 100%;
        min-height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }

    .venue-hero-cover,
    .venue-hero-summary::after {
        border-radius: 0;
    }
}

@media (max-width: 759px) {
    .menu-body.venue-info-open {
        overflow: hidden;
    }

    .venue-info[open] .venue-info-backdrop {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: block;
        background: rgba(15, 23, 42, .42);
        backdrop-filter: blur(4px);
    }

    .venue-info-panel {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 101;
        display: block;
        height: min(78vh, 680px);
        max-height: calc(100vh - 28px);
        padding: 0 16px calc(28px + env(safe-area-inset-bottom));
        overflow: auto;
        border: 0;
        border-radius: 18px 18px 0 0;
        background: #fff;
        box-shadow: 0 -18px 52px rgba(15, 23, 42, .24);
        overscroll-behavior: contain;
        animation: venue-sheet-up .18s ease-out;
    }

    .venue-info-sheet-handle {
        position: sticky;
        top: 0;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100% + 32px);
        height: 28px;
        margin: 0 -16px;
        padding: 0;
        border: 0;
        background: rgba(255, 255, 255, .96);
        cursor: pointer;
    }

    .venue-info-sheet-handle::before {
        content: "";
        width: 42px;
        height: 5px;
        border-radius: 999px;
        background: #d4d4d8;
    }

    .venue-info-close {
        position: absolute;
        top: 40px;
        right: 12px;
        z-index: 10;
        width: 40px;
        min-width: 40px;
        height: 40px;
        min-height: 40px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(24, 24, 27, .9);
        color: #fff;
        font-size: 0;
        line-height: 1;
        overflow: hidden;
    }

    .venue-info-close span {
        display: none;
    }

    .venue-info-close::before {
        content: "\00d7";
        font-size: 28px;
        line-height: 1;
    }

    .venue-info-map {
        width: calc(100% + 32px);
        min-height: 190px;
        margin: 0 -16px 20px;
        border: 0;
        border-radius: 0;
    }

    .venue-info-map iframe {
        height: 190px;
    }

    .venue-info-heading,
    .venue-info-description,
    .venue-action-row,
    .venue-contact-grid,
    .venue-hours-card {
        margin-top: 16px;
    }

    .venue-info-heading {
        padding-right: 44px;
    }

    .venue-info-heading h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .venue-action-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .venue-action-button {
        min-height: 40px;
        padding: 0 10px;
        font-size: 13px;
    }

    .venue-contact-grid {
        border-top: 1px solid #e4e4e7;
    }

    .venue-contact-card {
        min-height: 64px;
        padding: 12px 0;
        border-bottom: 1px solid #e4e4e7;
    }

    .venue-contact-card::after {
        content: "\203a";
        margin-left: auto;
        color: #71717a;
        font-size: 34px;
        line-height: 1;
    }

    .venue-contact-card small {
        white-space: normal;
    }

    .venue-hours-card {
        border-radius: 10px;
    }

    .venue-dish-modal {
        display: flex;
        align-items: flex-end;
        padding: 0;
        overflow: hidden;
    }

    .venue-dish-modal-backdrop {
        background: rgba(15, 23, 42, .42);
        backdrop-filter: blur(4px);
    }

    .venue-dish-modal-card {
        width: 100%;
        height: min(72vh, 620px);
        max-height: calc(100vh - 28px);
        border-radius: 18px 18px 0 0;
        border-bottom: 0;
        box-shadow: 0 -18px 52px rgba(15, 23, 42, .24);
        animation: venue-sheet-up .18s ease-out;
        overscroll-behavior: contain;
        transition: transform .16s ease;
        will-change: transform;
    }

    .venue-dish-modal-card.is-dragging {
        transition: none;
    }

    .venue-dish-modal.has-image .venue-dish-modal-card,
    .venue-dish-modal.has-options .venue-dish-modal-card {
        height: min(82vh, 720px);
    }

    .venue-dish-modal-handle {
        position: sticky;
        top: 0;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 28px;
        padding: 0;
        border: 0;
        background: rgba(255, 255, 255, .96);
        cursor: grab;
    }

    .venue-dish-modal-handle::before {
        content: "";
        width: 42px;
        height: 5px;
        border-radius: 999px;
        background: #d4d4d8;
    }

    .venue-dish-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        border: 0;
        background: rgba(24, 24, 27, .9);
        color: #fff;
        font-size: 28px;
        box-shadow: none;
    }

    .venue-dish-modal-media {
        height: clamp(180px, 32vh, 280px);
    }

    .venue-dish-modal-body {
        padding: 18px 16px calc(28px + env(safe-area-inset-bottom));
        background: #fff;
    }

    .venue-dish-modal-body h2 {
        padding-right: 42px;
        font-size: 22px;
        line-height: 28px;
    }
}

@keyframes venue-sheet-up {
    from {
        opacity: .72;
        transform: translateY(22px);
    }

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