.restaurant-menu-page .app-shell {
        gap: 22px;
    }

    .menu-top-stack {
        position: relative;
        align-self: start;
        min-height: 0;
    }

    .menu-top-stack__inner {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 90;
        width: min(var(--restaurant-max-width), calc(100vw - 32px));
        max-width: calc(100vw - 32px);
        display: grid;
        gap: 12px;
        padding: 8px 0 10px;
        background: linear-gradient(180deg, rgba(247, 245, 242, 0.98) 0%, rgba(247, 245, 242, 0.95) 78%, rgba(247, 245, 242, 0) 100%);
        backdrop-filter: blur(10px);
    }

    .menu-top-stack--header-only .menu-top-stack__inner {
        padding-bottom: 4px;
    }

    .menu-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 18px;
    }

    .menu-header .page-title {
        grid-column: 1;
        flex: 1 1 auto;
        gap: 10px;
        min-width: 0;
        overflow: hidden;
    }

    .menu-header .page-title h1 {
        font-size: clamp(1.45rem, 4vw, 2.05rem);
        line-height: 1.05;
        letter-spacing: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-break: normal;
        overflow-wrap: normal;
    }

    .menu-header .header-actions {
        grid-column: 3;
        justify-self: end;
        flex: 0 0 auto;
        gap: 6px;
        padding-top: 4px;
        min-width: max-content;
    }

    html[dir='rtl'] .menu-header .header-actions {
        justify-self: start;
    }

    .menu-brand-center {
        grid-column: 2;
        width: clamp(86px, 12vw, 140px);
        height: clamp(56px, 8vw, 82px);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: center;
        min-width: 0;
    }

    .menu-brand-center img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .menu-brand-center--empty {
        width: 62px;
        height: 62px;
        border-radius: 999px;
        background: var(--restaurant-accent);
        color: #fff;
        font-size: 1.55rem;
        line-height: 1;
        font-weight: 900;
        box-shadow: 0 10px 20px rgba(242, 119, 162, 0.2);
    }

    .menu-header .icon-button {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .menu-header .icon-button svg {
        width: 28px;
        height: 28px;
    }

    .menu-header .count-badge {
        top: 2px;
        inset-inline-end: 1px;
    }

    .menu-subline {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .menu-subline span {
        color: var(--restaurant-muted);
        font-size: 1rem;
        line-height: 1.4;
        font-weight: 500;
        overflow-wrap: anywhere;
    }

    .menu-subline strong {
        color: var(--restaurant-text);
        font-weight: 700;
    }

    .menu-note {
        color: var(--restaurant-muted);
        font-size: 0.95rem;
        line-height: 1.45;
        font-weight: 500;
    }

    .category-shell {
        padding: 12px 14px;
        border-radius: 22px;
    }

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

    .category-card {
        position: relative;
        display: block;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: 28px;
        border: 1px solid var(--restaurant-line);
        background: #ece9e4;
        box-shadow: 0 16px 30px rgba(31, 31, 31, 0.08);
    }

    .category-card-image,
    .category-card-fallback {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .category-card-image {
        object-fit: cover;
    }

    .category-card-fallback {
        display: none;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #f1eee7 0%, #e4ded5 100%);
        color: #cac3b9;
    }

    .category-card-fallback svg {
        width: 80px;
        height: 80px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .category-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(18, 18, 18, 0.04) 20%, rgba(18, 18, 18, 0.62) 100%);
    }

    .category-card.is-fallback::after {
        background: linear-gradient(180deg, rgba(18, 18, 18, 0.02) 20%, rgba(18, 18, 18, 0.14) 100%);
    }

    .category-card.is-fallback .category-card-fallback {
        display: flex;
    }

    .category-card-label {
        position: absolute;
        inset-inline-start: 16px;
        inset-inline-end: 16px;
        bottom: 16px;
        z-index: 1;
        color: #fff;
        font-size: 1.35rem;
        line-height: 1.06;
        font-weight: 800;
        letter-spacing: -0.03em;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
        word-break: break-word;
    }

    .category-card.is-fallback .category-card-label {
        color: var(--restaurant-text);
        text-shadow: none;
    }

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

    .product-card {
        overflow: hidden;
        background: var(--restaurant-surface);
        border: 1px solid var(--restaurant-line);
        border-radius: 22px;
        box-shadow: 0 8px 24px rgba(31, 31, 31, 0.06);
        display: grid;
        grid-template-rows: auto 1fr;
        min-width: 0;
        cursor: pointer;
    }

    .product-card.soldout {
        opacity: 0.68;
    }

    .product-link {
        display: block;
    }

    .product-copy-link {
        display: block;
        color: inherit;
    }

    .product-thumb-wrap {
        position: relative;
        aspect-ratio: 1 / 0.82;
        background: #eef1f3;
        overflow: hidden;
    }

    .product-thumb {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .product-thumb-fallback {
        position: absolute;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #f0f3f5 0%, #e5e8eb 100%);
        color: #c9c3bb;
    }

    .product-thumb-fallback svg {
        width: 68px;
        height: 68px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .product-thumb-wrap.is-fallback .product-thumb {
        display: none;
    }

    .product-thumb-wrap.is-fallback .product-thumb-fallback {
        display: flex;
    }

    .product-copy {
        padding: 14px 14px 16px;
        display: grid;
        gap: 14px;
        align-content: space-between;
        min-height: 118px;
    }

    .product-name {
        margin: 0;
        font-size: 1rem;
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: -0.03em;
        min-height: 2.3em;
        text-align: start;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

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

    .product-price {
        margin: 0;
        color: var(--restaurant-text);
        font-size: 0.98rem;
        line-height: 1;
        font-weight: 700;
        direction: ltr;
        text-align: left;
        unicode-bidi: plaintext;
    }

    .product-add {
        display: none !important;
    }

    .product-add svg {
        width: 30px;
        height: 30px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .product-add[disabled] {
        opacity: 0.45;
        box-shadow: none;
        cursor: not-allowed;
    }

    .product-stepper {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        direction: ltr;
    }

    .product-stepper[hidden] {
        display: none !important;
    }

    .product-card:not(.has-inline-stepper) .product-stepper {
        gap: 0;
    }

    .product-card:not(.has-inline-stepper) [data-card-stepper="minus"],
    .product-card:not(.has-inline-stepper) [data-card-stepper-qty] {
        display: none !important;
    }

    .product-stepper-btn {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--restaurant-accent);
        color: var(--restaurant-text);
        font-size: 1.5rem;
        line-height: 1;
        font-weight: 700;
        flex-shrink: 0;
    }

    .product-stepper-btn:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

    .product-stepper-qty {
        min-width: 18px;
        text-align: center;
        color: var(--restaurant-text);
        font-size: 1rem;
        line-height: 1;
        font-weight: 700;
    }

    .table-service-card {
        display: grid;
        gap: 14px;
    }

    .service-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .service-actions form {
        margin: 0;
    }

    .service-actions button {
        min-height: 48px;
        padding: 0 20px;
        border: 1px solid var(--restaurant-line);
        border-radius: 999px;
        background: var(--restaurant-surface-soft);
        color: var(--restaurant-text);
        font-size: 0.95rem;
        font-weight: 500;
    }

    .drawer-item {
        display: grid;
        gap: 10px;
        padding: 16px 0;
        border-bottom: 1px solid var(--restaurant-line);
    }

    .drawer-item:last-child {
        border-bottom: 0;
    }

    .drawer-item-main {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
    }

    .drawer-item-image {
        width: 92px;
        height: 92px;
        border-radius: 16px;
        object-fit: cover;
        background: #ece9e4;
        flex-shrink: 0;
    }

    .drawer-item-image.placeholder::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(135deg, #efedea, #e4e1db);
    }

    .drawer-item-copy {
        min-width: 0;
        display: grid;
        gap: 8px;
    }

    .drawer-item-name {
        margin: 0;
        font-size: 1rem;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: -0.03em;
    }

    .drawer-item-price,
    .drawer-item-meta {
        margin: 0;
        color: var(--restaurant-muted);
        font-size: 0.96rem;
        line-height: 1.4;
        font-weight: 500;
    }

    .drawer-item-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .drawer-remove {
        border: 0;
        background: transparent;
        color: var(--restaurant-danger);
        padding: 0;
        font-size: 0.95rem;
        line-height: 1;
        font-weight: 700;
    }

    .drawer-stepper {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .drawer-stepper button {
        width: 46px;
        height: 46px;
        border: 0;
        border-radius: 999px;
        background: #212121;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        line-height: 1;
        font-weight: 500;
    }

    .drawer-stepper span {
        min-width: 30px;
        text-align: center;
        font-size: 1.15rem;
        line-height: 1;
        font-weight: 700;
    }

    .drawer-total-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-size: 1.2rem;
        line-height: 1;
        font-weight: 900;
        letter-spacing: -0.03em;
    }

    .drawer-total-row span:first-child {
        font-size: 1.1rem;
        font-weight: 700;
    }

    .pager {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        padding-top: 6px;
    }

    .pager a,
    .pager span {
        min-width: 44px;
        height: 44px;
        padding: 0 14px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--restaurant-surface);
        color: var(--restaurant-text);
        border: 1px solid var(--restaurant-line);
        font-size: 0.92rem;
        line-height: 1;
        font-weight: 700;
        box-shadow: 0 6px 16px rgba(31, 31, 31, 0.04);
    }

    .pager .is-current {
        background: var(--restaurant-accent);
        border-color: transparent;
    }

    .pager .is-disabled {
        opacity: 0.45;
    }

    @media (max-width: 720px) {
        .restaurant-menu-page .app-shell {
            gap: 18px;
        }

        .menu-top-stack {
            min-height: 0;
        }

        .menu-top-stack__inner {
            gap: 10px;
            padding: 6px 0 8px;
        }

        .menu-header {
            grid-template-columns: minmax(78px, 1fr) minmax(112px, 136px) minmax(126px, auto);
            gap: 8px;
        }

        .menu-header .page-title h1 {
            font-size: clamp(1rem, 4.6vw, 1.35rem);
        }

        .menu-header .header-actions {
            width: auto;
            align-self: flex-start;
        }

        .product-grid {
            gap: 14px;
        }

        .product-copy {
            padding: 12px;
            gap: 12px;
            min-height: 112px;
        }

        .product-name {
            font-size: 0.95rem;
            min-height: 2.35em;
        }

        .product-price {
            font-size: 0.94rem;
        }

        .product-add {
            width: 52px;
            height: 52px;
        }

        .product-stepper-btn {
            width: 42px;
            height: 42px;
            font-size: 1.4rem;
        }

        .product-stepper {
            gap: 8px;
        }

        .drawer-item-main {
            gap: 12px;
        }

        .drawer-item-image {
            width: 84px;
            height: 84px;
        }

        .drawer-stepper button {
            width: 42px;
            height: 42px;
        }
    }

    @media (max-width: 560px) {
        .restaurant-menu-page .app-shell {
            gap: 14px;
        }

        .menu-top-stack {
            min-height: 0;
        }

        .menu-top-stack__inner {
            width: calc(100vw - 16px);
            max-width: calc(100vw - 16px);
            gap: 8px;
            padding: 4px 0 8px;
        }

        .menu-header {
            grid-template-columns: minmax(72px, 1fr) minmax(104px, 124px) minmax(118px, auto);
            gap: 6px;
        }

        .menu-header .page-title h1 {
            font-size: clamp(0.95rem, 4.2vw, 1.15rem);
        }

        .menu-brand-center {
            width: 112px;
            height: 58px;
        }

        .menu-brand-center--empty {
            width: 46px;
            height: 46px;
            font-size: 1.2rem;
        }

        .menu-header .header-actions {
            gap: 2px;
            padding-top: 2px;
        }

        .menu-header .icon-button {
            width: 38px;
            height: 38px;
            border-radius: 14px;
        }

        .menu-header .icon-button svg {
            width: 21px;
            height: 21px;
        }

        .menu-header .count-badge {
            min-width: 22px;
            height: 22px;
            font-size: 0.82rem;
        }

        .menu-subline {
            gap: 6px;
        }

        .menu-subline span {
            font-size: 0.84rem;
        }

        .category-shell {
            padding: 10px;
        }

        .category-card-grid {
            gap: 12px;
        }

        .category-card {
            border-radius: 24px;
        }

        .category-card-label {
            inset-inline-start: 12px;
            inset-inline-end: 12px;
            bottom: 12px;
            font-size: 1.1rem;
        }

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

        .section-head h2,
        .section-head h3 {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 380px) {
        .menu-header {
            grid-template-columns: minmax(64px, 1fr) minmax(92px, 108px) minmax(108px, auto);
            gap: 4px;
        }

        .menu-brand-center {
            width: 100px;
            height: 54px;
        }

        .menu-header .page-title h1 {
            font-size: 0.92rem;
        }

        .menu-header .header-actions {
            gap: 0;
        }

        .menu-header .icon-button {
            width: 36px;
            height: 36px;
        }
    }

    @media (max-width: 420px) {
        .menu-top-stack__inner {
            width: calc(100vw - 16px);
            max-width: calc(100vw - 16px);
        }

        .category-shell {
            padding: 8px;
        }

        .category-card-grid {
            gap: 10px;
        }

        .category-card {
            border-radius: 22px;
        }

        .category-card-label {
            font-size: 1rem;
        }

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

        .product-copy {
            padding: 10px 10px 12px;
            gap: 10px;
            min-height: 102px;
        }

        .product-bottom {
            gap: 10px;
        }

        .product-name {
            font-size: 0.88rem;
        }

        .product-price {
            font-size: 0.84rem;
        }

        .product-add {
            width: 44px;
            height: 44px;
            border-radius: 13px;
        }

        .product-add svg {
            width: 24px;
            height: 24px;
        }

        .product-stepper {
            gap: 6px;
        }

        .product-stepper-btn {
            width: 36px;
            height: 36px;
            font-size: 1.2rem;
        }

        .product-stepper-qty {
            min-width: 16px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 280px) {
        .menu-top-stack__inner {
            width: calc(100vw - 12px);
            max-width: calc(100vw - 12px);
        }

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

    .category-card-image,
    .product-thumb {
        object-fit: contain;
        background: #eef1f3;
        padding: 8px;
    }
