/* =====================================================
   Restaurant Menu Block
   ===================================================== */

.s-restaurant-menu {
    background-color: #18191F;
    padding: 80px 0;
    direction: rtl;
}

/* Card */
.restaurant-menu__card {
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 80px;
    background: rgba(24, 25, 31, 0.41);
    padding: 40px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    overflow: hidden;
}

/* Lotus decorations (desktop only) */
.restaurant-menu__lotus {
    position: absolute;
    width: 89px;
    height: 154px;
    pointer-events: none;
}
.restaurant-menu__lotus--r { right: 60px; top: 20px; }
.restaurant-menu__lotus--l { left: 60px; top: 20px; }

/* --- Top section (header + columns) --- */
.restaurant-menu__top {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
}

/* Header */
.restaurant-menu__header {
    width: 100%;
    text-align: center;
    padding: 0 37px;
}

.restaurant-menu__subtitle {
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 29px;
    color: #fff;
    margin: 0;
    line-height: normal;
}

.restaurant-menu__title {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 100px;
    line-height: 1;
    margin: 0;
    background: linear-gradient(270deg, #E3B407 0%, #FFEECB 81.98%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Two-column layout --- */
.restaurant-menu__cols {
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 0 60px;
}

.restaurant-menu__col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* --- Category --- */
.restaurant-menu__category {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.restaurant-menu__cat-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* No align-items: default stretch fills full column width; text-align:right on children handles alignment */
}

.restaurant-menu__cat-name {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #fff;
    margin: 0;
    line-height: normal;
    text-align: right;
}

.restaurant-menu__cat-note {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 21px;
    color: #fff;
    margin: 0;
    line-height: normal;
    text-align: right;
}

/* --- Items list --- */
.restaurant-menu__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Single item --- */
.restaurant-menu__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    /* align-items default stretch; text-align:right on children aligns text in RTL */
}

/* Item header row: RTL flex — price+name first (rightmost), badges last (leftmost) */
.restaurant-menu__item-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    /* justify-content: default flex-start; in RTL flex-start = right edge, items cluster from right ✓ */
}

/* Price + name sub-row: RTL flex — name first (right), price second (left) */
.restaurant-menu__item-price-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.restaurant-menu__item-name {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 26px;
    color: #fff;
    line-height: normal;
    white-space: nowrap;
}

/* Price: RTL flex — number first (right), ₪ second (left) → renders as "69 ₪" */
.restaurant-menu__item-price {
    display: flex;
    align-items: center;
    gap: 3px;
}

.restaurant-menu__price-num {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    line-height: normal;
}

.restaurant-menu__price-sym {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 29px;
    color: #fff;
    line-height: 32px;
}

.restaurant-menu__item-badges {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-shrink: 0;
}

.restaurant-menu__badge {
    width: 30px;
    height: 30px;
    display: block;
}

.restaurant-menu__item-desc {
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 25px;
    color: #fff;
    margin: 0;
    line-height: normal;
    text-align: right;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* --- Footer --- */
.restaurant-menu__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* CTA button — RTL: text first (right), icon second (left) */
.restaurant-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 586px;
    height: 91px;
    background: linear-gradient(270deg, #E3B407 0%, #FFEECB 81.98%);
    border: 1px solid #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.6);
    text-decoration: none;
    color: #000;
}

.restaurant-menu__cta:hover {
    opacity: 0.9;
}

.restaurant-menu__cta-text {
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #000;
    line-height: 20px;
}

.restaurant-menu__cta-icon {
    width: 59px;
    height: 37px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.restaurant-menu__cta-icon svg {
    width: 100%;
    height: 100%;
}

/* Action buttons (download / share) — direction:ltr so icon stays left, text right */
.restaurant-menu__actions {
    display: flex;
    gap: 24px;
    align-items: center;
    direction: ltr;
}

.restaurant-menu__action-btn {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    background: none;
    font-family: inherit;
    cursor: pointer;
}


.restaurant-menu__action-btn:hover {
    opacity: 0.8;
}

.restaurant-menu__action-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: block;
}

.restaurant-menu__action-text {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 26px;
    color: #fff;
    text-align: center;
    direction: rtl;
    width: 109px;
}

/* =====================================================
   Tablet (≤1024px)
   ===================================================== */
@media (max-width: 1024px) {
    .s-restaurant-menu {
        padding: 60px 0;
    }

    .restaurant-menu__card {
        border-radius: 60px;
        padding: 20px 0;
        gap: 44px;
    }

    .restaurant-menu__lotus {
        display: none;
    }

    .restaurant-menu__top {
        gap: 30px;
    }

    .restaurant-menu__subtitle {
        font-size: 24px;
    }

    .restaurant-menu__title {
        font-size: 60px;
    }

    /* Single column on tablet */
    .restaurant-menu__cols {
        flex-direction: column;
        gap: 21px;
        padding: 0 20px;
    }

    .restaurant-menu__col {
        gap: 21px;
    }

    .restaurant-menu__cat-name {
        font-size: 29px;
    }

    .restaurant-menu__cat-note {
        font-size: 13px;
    }

    .restaurant-menu__badge {
        width: 25px;
        height: 25px;
    }

    .restaurant-menu__item-name {
        font-size: 23px;
    }

    .restaurant-menu__price-num {
        font-size: 20px;
    }

    .restaurant-menu__price-sym {
        font-size: 23px;
    }

    .restaurant-menu__item-desc {
        font-size: 17px;
    }

    .restaurant-menu__footer {
        gap: 40px;
    }

    .restaurant-menu__cta {
        width: 462px;
        height: 60px;
    }

    .restaurant-menu__cta-text {
        font-size: 33px;
    }

    .restaurant-menu__cta-icon {
        width: 50px;
        height: 22px;
    }

    .restaurant-menu__action-text {
        font-size: 25px;
    }
}

/* =====================================================
   Mobile (≤767px)
   ===================================================== */
@media (max-width: 767px) {
    .s-restaurant-menu {
        padding: 40px 0;
    }

    .restaurant-menu__card {
        border-radius: 40px;
        padding: 20px 0;
        gap: 20px;
    }

    .restaurant-menu__top {
        gap: 10px;
    }

    .restaurant-menu__subtitle {
        font-size: 20px;
    }

    .restaurant-menu__title {
        font-size: 50px;
    }

    .restaurant-menu__cols {
        padding: 0 10px;
    }

    .restaurant-menu__col {
        gap: 19px;
    }

    .restaurant-menu__cat-name {
        font-size: 24px;
    }

    .restaurant-menu__cat-note {
        font-size: 10px;
    }

    .restaurant-menu__badge {
        width: 16px;
        height: 16px;
    }

    .restaurant-menu__item-name {
        font-size: 15px;
        white-space: normal;
    }

    .restaurant-menu__price-num {
        font-size: 15px;
    }

    .restaurant-menu__price-sym {
        font-size: 17px;
    }

    .restaurant-menu__item-desc {
        font-size: 14px;
    }

    .restaurant-menu__footer {
        gap: 30px;
    }

    .restaurant-menu__cta {
        width: 273px;
        height: 40px;
        gap: 5px;
    }

    .restaurant-menu__cta-text {
        font-size: 24px;
    }

    .restaurant-menu__cta-icon {
        width: 29px;
        height: 20px;
    }

    .restaurant-menu__actions {
        gap: 33px;
    }

    .restaurant-menu__action-btn {
        gap: 1px;
        padding: 10px;
    }

    .restaurant-menu__action-icon {
        width: 22px;
        height: 22px;
    }

    .restaurant-menu__action-text {
        font-size: 13px;
        width: 67px;
    }
}
