.menu-body {
    background: #f7f2e8;
}

[dir="rtl"] .menu-body,
[dir="rtl"] body {
    font-family: "Noto Kufi Arabic", "DM Sans", sans-serif;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switch {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 15px;
    background: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    transition: border-color .2s ease, background .2s ease;
}

.language-switch:hover {
    border-color: var(--burgundy);
    background: white;
}

.menu-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 86px;
    background: var(--green);
    color: white;
}

.menu-hero::after {
    position: absolute;
    top: -190px;
    right: -130px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.018);
    content: "";
}

[dir="rtl"] .menu-hero::after {
    right: auto;
    left: -130px;
}

.menu-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 390px;
    align-items: center;
    gap: 70px;
}

.menu-hero h1 {
    max-width: 820px;
    font-size: clamp(3.5rem, 6.5vw, 6.4rem);
}

[dir="rtl"] .menu-hero h1,
[dir="rtl"] .menu-category h2,
[dir="rtl"] .branches-heading h2,
[dir="rtl"] .menu-download h2,
[dir="rtl"] .menu-status-card h2 {
    font-family: "Noto Kufi Arabic", sans-serif;
    letter-spacing: -.05em;
}

.menu-hero-copy > p:last-child {
    max-width: 570px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 1.08rem;
}

.menu-hero-food {
    position: relative;
    height: 320px;
    overflow: hidden;
    border: 8px solid rgba(255,255,255,.08);
    border-radius: 48% 48% 24px 24px;
    box-shadow: 0 28px 55px rgba(0,0,0,.24);
    transform: rotate(3deg);
}

[dir="rtl"] .menu-hero-food {
    transform: rotate(-3deg);
}

.menu-hero-food::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(4,11,7,.78));
    content: "";
}

.menu-hero-food img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
}

.menu-hero-food span {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 20px;
    color: white;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.08rem;
}

[dir="rtl"] .menu-hero-food span {
    right: auto;
    left: 24px;
    font-family: "Noto Kufi Arabic", sans-serif;
}

.menu-section {
    padding: 72px 0 110px;
}

.menu-toolbar {
    position: sticky;
    top: 86px;
    z-index: 50;
    display: grid;
    grid-template-columns: minmax(240px, 330px) 1fr;
    align-items: center;
    gap: 22px;
    margin: -102px 0 65px;
    border: 1px solid rgba(32,37,31,.09);
    border-radius: 20px;
    padding: 16px;
    background: rgba(255,253,248,.93);
    box-shadow: 0 18px 50px rgba(32,37,31,.11);
    backdrop-filter: blur(18px);
}

.menu-search {
    position: relative;
    display: block;
}

.menu-search input {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 13px;
    outline: none;
    padding: 12px 18px 12px 48px;
    background: white;
    color: var(--ink);
    font: inherit;
    font-size: .9rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

[dir="rtl"] .menu-search input {
    padding: 12px 48px 12px 18px;
}

.menu-search input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(23,63,43,.09);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    z-index: 2;
    width: 15px;
    height: 15px;
    border: 2px solid var(--green);
    border-radius: 50%;
    transform: translateY(-58%);
}

.search-icon::after {
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 6px;
    height: 2px;
    background: var(--green);
    content: "";
    transform: rotate(45deg);
}

[dir="rtl"] .search-icon {
    right: 18px;
    left: auto;
}

.category-nav {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 2px;
    scrollbar-width: none;
}

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

.category-nav a {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 9px 15px;
    color: var(--muted);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}

.category-nav a:hover,
.category-nav a.is-active {
    background: var(--green);
    color: white;
}

.menu-categories {
    display: grid;
    gap: 90px;
}

.menu-category {
    scroll-margin-top: 190px;
}

.category-heading {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.category-icon {
    width: 58px;
    height: 58px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #ebdfce;
}

.category-icon img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}

.category-heading > div:nth-child(2) {
    display: grid;
    gap: 1px;
}

.category-heading span {
    color: var(--burgundy);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.category-heading h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    letter-spacing: -.035em;
}

.category-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: .8rem;
}

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

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,253,248,.84);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
    border-color: rgba(23,63,43,.3);
    box-shadow: 0 18px 42px rgba(32,37,31,.1);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: block;
    background: #e8dfd1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 999px;
    padding: 7px 11px;
    background: var(--burgundy);
    color: white;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

[dir="rtl"] .sale-badge {
    right: 15px;
    left: auto;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    min-height: 52px;
    margin: 0 0 16px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.18rem;
    line-height: 1.3;
}

[dir="rtl"] .product-info h3 {
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 1rem;
}

.product-info h3 a {
    text-decoration: none;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-meta strong {
    color: var(--burgundy);
    font-size: 1.05rem;
}

.product-meta small {
    font-size: .68rem;
    font-weight: 700;
}

.product-meta del {
    color: #9b9e98;
    font-size: .78rem;
}

.product-arrow {
    width: 36px;
    height: 36px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
}

[dir="rtl"] .product-arrow {
    margin-right: auto;
    margin-left: 0;
}

.product-card[hidden],
.menu-category[hidden] {
    display: none;
}

.no-results {
    margin: 70px auto 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    background: var(--paper);
    color: var(--muted);
    text-align: center;
}

.menu-status-card {
    max-width: 720px;
    margin: 50px auto 0;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 50px;
    background: var(--paper);
    box-shadow: var(--shadow);
    text-align: center;
}

.menu-status-card > span {
    width: 54px;
    height: 54px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3ded4;
    color: var(--burgundy);
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.menu-status-card h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.menu-status-card p {
    max-width: 560px;
    margin: 18px auto 28px;
    color: var(--muted);
}

.branches-section {
    padding: 105px 0;
    background: var(--green-soft);
}

.branches-heading {
    display: grid;
    grid-template-columns: 1fr .55fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 42px;
}

.branches-heading h2 {
    font-size: clamp(3rem, 5vw, 4.7rem);
}

.branches-heading > p {
    margin: 0 0 7px;
    color: var(--muted);
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.branch-card {
    min-height: 250px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid rgba(23,63,43,.14);
    border-radius: 22px;
    padding: 28px;
    background: rgba(255,253,248,.78);
}

.branch-pin {
    position: relative;
    width: 33px;
    height: 33px;
    margin-bottom: 28px;
    border: 8px solid var(--burgundy);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.branch-card h3 {
    margin: 0 0 7px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
}

[dir="rtl"] .branch-card h3 {
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 1.05rem;
}

.branch-card > p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: .88rem;
}

.branch-card > div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: auto;
}

.branch-card a {
    color: var(--green);
    font-size: .8rem;
    font-weight: 700;
    text-underline-offset: 4px;
}

.menu-download {
    overflow: hidden;
    padding: 100px 0;
    background: var(--paper);
}

.menu-download-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: center;
    border-radius: 32px;
    padding: 65px 75px;
    background: var(--burgundy);
    color: white;
}

.menu-download-card > div {
    position: relative;
    z-index: 3;
}

.menu-download h2 {
    font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.menu-download-card > div > p:not(.eyebrow) {
    max-width: 520px;
    color: rgba(255,255,255,.7);
}

.menu-download-phone {
    position: absolute;
    right: 8%;
    bottom: -55%;
    width: 30%;
    transform: rotate(5deg);
    filter: drop-shadow(0 28px 30px rgba(0,0,0,.3));
}

[dir="rtl"] .menu-download-phone {
    right: auto;
    left: 8%;
    transform: rotate(-5deg);
}

.menu-footer {
    padding-top: 50px;
}

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

@media (max-width: 980px) {
    .menu-hero-grid {
        grid-template-columns: 1fr 290px;
        gap: 40px;
    }

    .menu-hero-food {
        height: 270px;
    }

    .menu-toolbar {
        grid-template-columns: 1fr;
    }

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

    .branches-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .menu-download-card {
        grid-template-columns: 1fr;
    }

    .menu-download-phone {
        right: 3%;
        width: 34%;
        opacity: .45;
    }

    [dir="rtl"] .menu-download-phone {
        right: auto;
        left: 3%;
    }
}

@media (max-width: 720px) {
    .nav-actions {
        gap: 7px;
    }

    .language-switch {
        min-height: 38px;
        padding: 7px 12px;
        font-size: .72rem;
    }

    .menu-hero {
        padding: 62px 0 95px;
    }

    .menu-hero-grid {
        grid-template-columns: 1fr;
    }

    .menu-hero h1 {
        font-size: clamp(3rem, 14vw, 4.6rem);
    }

    [dir="rtl"] .menu-hero h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
        line-height: 1.25;
    }

    .menu-hero-food {
        display: none;
    }

    .menu-section {
        padding-top: 52px;
    }

    .menu-toolbar {
        top: 74px;
        margin-top: -82px;
        margin-bottom: 50px;
        border-radius: 17px;
        padding: 11px;
    }

    .menu-categories {
        gap: 68px;
    }

    .menu-category {
        scroll-margin-top: 180px;
    }

    .category-heading {
        grid-template-columns: 48px 1fr;
        gap: 13px;
    }

    .category-heading > p {
        grid-column: 2;
    }

    .category-icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

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

    .product-image {
        height: 260px;
    }

    .menu-status-card {
        padding: 38px 22px;
    }

    .branches-section,
    .menu-download {
        padding: 75px 0;
    }

    .menu-download-card {
        min-height: 620px;
        align-items: start;
        padding: 45px 25px;
    }

    .menu-download-phone {
        right: 8%;
        bottom: -42%;
        width: 58%;
        opacity: .62;
    }

    [dir="rtl"] .menu-download-phone {
        right: auto;
        left: 8%;
    }
}

@media (max-width: 430px) {
    .menu-app-link.button-small {
        display: none;
    }

    .product-image {
        height: 230px;
    }
}
