

/* Start:/menu/style.css?176902074921232*/
/* MENU PAGE STYLES - STRICT CLONE & FIXES */

/* --- GLOBAL LAYOUT --- */

#show-more {
    /* Сброс стилей */
    background: none;
    border: none;
    padding: 2rem 4rem; /* Увеличили область клика вокруг текста */
    cursor: pointer;
    outline: none;

    /* Позиционирование */
    display: block;
    margin: 4rem auto; /* Увеличили внешний отступ, чтобы отделить от контента */

    /* Увеличение размера и веса */
    color: #4a4a4a;
    font-size: 1.8rem; /* Значительно увеличили шрифт (было 1.4) */
    font-weight: 700;   /* Сделали шрифт жирнее */
    text-transform: uppercase;
    letter-spacing: 0.3rem; /* Растянули буквы сильнее для премиального вида */

    /* Плавность */
    transition: all 0.3s ease;
}

/* Эффект при наведении */
#show-more:hover {
    opacity: 0.7;
    letter-spacing: 0.4rem; /* Эффект «раздвигания» букв при наведении */
    color: #000;           /* Становится чуть темнее */
}

/* Стили для состояния загрузки */
#show-more:disabled {
    color: #ccc;
    letter-spacing: 0.3rem; /* Возвращаем интервал в дефолт */
    cursor: not-allowed;
}

.menu-page .menu {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 6rem;
    width: 100%;
}

/* --- BANNER --- */
.menu__banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff3e5;
    border-radius: 2rem;
    padding: 6.4rem 6rem;
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
    min-height: 48rem;
}

.menu__banner-content {
    display: flex;
    flex-direction: column;
    z-index: 2;
    max-width: 55%;
}

.menu__banner-subtitle {
    font-family: 'Gotham', sans-serif;
    font-size: 1.8rem;
    color: #434248;
    margin-bottom: 2rem;
    opacity: 0.7;
    font-weight: 400;
}

.menu__banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem;
    font-weight: 500;
    color: #434248;
    margin-bottom: 5rem;
    text-transform: uppercase;
    line-height: 1;
}

/* Fixed alignment for banner bottom items */
.menu__banner-bottom {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.menu__banner-item {
    font-family: 'Gotham', sans-serif;
    font-size: 1.6rem;
    color: #434248;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 9rem;
    /* Fixed height for text block alignment */
}

.menu__banner-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #e9743f;
    display: block;
    font-size: 2.2rem;
    margin-top: auto;
    /* Push value to bottom */
    padding-top: 0.8rem;
}

.menu__banner-img {
    position: absolute;
    right: -6%;
    bottom: 0;
    height: 100%; /* Увеличиваем высоту больше 100% */
    width: 55%;
    z-index: 1;
    pointer-events: none;
}

.menu__banner-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: bottom right;
}

/* --- BUSINESS LUNCH (SPECIAL) --- */
.menu__special-wrapper {
    margin-bottom: 10rem;
    width: 100%;
}

.menu__special--title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    color: #434248;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

/* Enforce 3-column grid strictly */
.menu__special-force-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 3rem !important;
    width: 100% !important;
    justify-content: space-between !important;
}

/* Legacy support if class not immediately applied */
.menu__special .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 3rem !important;
    width: 100% !important;
}

.menu__special-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 2rem;
    overflow: hidden;
    padding: 0;
    height: 100%;
    cursor: pointer;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.menu__special-card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.5rem);
}

.menu__special-card-top--img {
    width: 100%;
    height: 30rem;
    /* Taller */
    overflow: hidden;
    position: relative;
    background: #fff;
    border-bottom: 1px solid #f9f9f9;
}

.menu__special-card-top--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu__special-card-content {
    background: #fff;
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu__special-card-top--title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #434248;
    text-align: center;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.menu__special-card-top--article {
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 1.4rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.menu__special-card-info--subtitle {
    font-family: 'Gotham', sans-serif;
    font-size: 1.6rem;
    color: #434248;
    text-align: center;
    line-height: 1.5;
    opacity: 0.8;
}

/* Orange Bottom for Lunch */
.menu__special-card-bottom {
    background: #fff3e5;
    padding: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.menu__special-card-bottom--price strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #434248;
}

.menu__special-card-bottom--price span {
    font-size: 1.4rem;
    color: #666;
    margin-left: 0.5rem;
}

/* --- MAIN CONTENT & FILTER --- */
.menu__content {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    margin-bottom: 10rem;
    width: 100%;
}

.menu__search-bar {
    width: 32rem;
    flex-shrink: 0;
    position: sticky;
    top: 4rem;
}

.search__input {
    width: 100%;
    padding: 1.8rem 2.4rem;
    border-radius: 3rem;
    border: 1px solid rgba(67, 66, 72, 0.2);
    font-family: 'Gotham', sans-serif;
    font-size: 1.6rem;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}

.search__input:focus {
    border-color: #e9743f;
}

.search__placeholder-wrapper {
    display: none;
}

.menu__filter {
    margin-top: 4rem;
}

.filter__head-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #434248;
    margin-bottom: 2rem;
    display: block;
    text-transform: uppercase;
}

.filter__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #434248;
}

.filter__item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter__item-title {
    font-family: 'Gotham', sans-serif;
    font-size: 2.2rem;
    color: #434248;
    cursor: pointer;
}

/* --- PRODUCT GRID --- */
.menu__list-wrapper {
    flex: 1;
    width: 100%;
}

.menu__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.6rem;
    font-weight: 500;
    color: #434248;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.menu__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.card-conteiner {
    display: flex;
    flex-direction: column;
}

.menu__new-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border-radius: 2rem;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #eee;
}

.menu__new-card:hover {
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
    z-index: 5;
}

/* Top Wrapper for Image + Hover */
.menu__new-card-top {
    width: 100%;
    position: relative;
    background: #fff;
    height: 28rem;
}

.menu__new-card--img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
}

.menu__new-card--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Full bleed */
}

/* Info Wrapper: Orange Background */
.menu__card-info-wrap {
    width: 100%;
    background-color: #fff3e5;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.menu__new-card--info {
    font-family: 'Gotham', sans-serif;
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 1rem;
}

.menu__new-card--title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #434248;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    min-height: 5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.menu__new-card-bottom--price strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #434248;
}

.menu__new-card-bottom--price span {
    font-size: 1.3rem;
    color: #666;
    margin-left: 0.5rem;
}

/* HOVER OVERLAY: Inside .menu__new-card-top ONLY */
.menu__new-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2;
}

/* User feedback 12: Allow active toggle for mobile */
/* Fix: Use @media (hover: hover) to prevent mobile tap from triggering CSS hover */
@media (hover: hover) {
    .menu__new-card:hover .menu__new-card-hover {
        opacity: 1;
        visibility: visible;
    }
}

.menu__new-card-hover--title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #e9743f;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.menu__new-card-hover--text p {
    font-family: 'Gotham', sans-serif;
    font-size: 1.4rem;
    color: #333;
    line-height: 1.5;
}

/* BUTTONS */
.card-swiper-img {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card-swiper-img-item {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    opacity: 0.7;
    transition: all 0.2s;
}

.card-swiper-img-item.active-card-swiper-img-item,
.card-swiper-img-item:hover {
    border-color: #e9743f;
    opacity: 1;
    transform: scale(1.1);
}

.card-img-cont.disable,
.card-img-plate.disable {
    display: none !important;
}

/* --- MODAL --- */
.menu__modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(67, 66, 72, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.menu__modal-overlay.open {
    display: flex;
}

.menu__modal-container {
    background: #fff;
    width: 1200px;
    max-width: 95%;
    height: 700px;
    border-radius: 2rem;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5rem 10rem rgba(0, 0, 0, 0.4);
}

.menu__modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 10;
    color: #434248;
    transition: all 0.2s;
}

.menu__modal-close:hover {
    transform: scale(1.1);
    color: #e9743f;
}

.menu__modal-img {
    flex: 1.2;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.menu__modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu__modal-info {
    flex: 0.8;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}

.menu__modal-header {
    background: #fff3e5;
    padding: 4rem 5rem;
    margin-bottom: 2rem;
}

.menu__modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: #434248;
    text-transform: uppercase;
    line-height: 1.2;
}

.menu__modal-stats {
    padding: 0 5rem;
    margin-bottom: 3rem;
}

.menu__modal-stat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #434248;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.menu__modal-stat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu__modal-stat-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    font-family: 'Gotham', sans-serif;
    font-size: 1.5rem;
    color: #555;
    width: 100%;
}

.menu__modal-stat-list li .label {
    white-space: nowrap;
    font-weight: 500;
}

.menu__modal-stat-list li .dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 1rem;
    transform: translateY(-0.4rem);
}

.menu__modal-stat-list li .val {
    white-space: nowrap;
    color: #000;
    font-weight: 600;
}

.menu__modal-structure-box {
    padding: 0 5rem;
    margin-bottom: 3rem;
}

.menu__modal-structure-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #434248;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.menu__modal-structure {
    font-family: 'Gotham', sans-serif;
    font-size: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.menu__modal-price-box {
    margin-top: auto;
    padding: 4rem 5rem;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.menu__modal-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    color: #e9743f;
    font-weight: 700;
}

/* --- MOBILE ADAPTATION (User Feedback 12) --- */
@media (max-width: 1024px) {
    .menu-page .menu {
        padding: 0 2rem;
    }

    .menu__list,
    .menu__special-force-grid,
    .menu__special .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {

    /* 1. LAYOUT STACK */
    .menu__content {
        flex-direction: column;
        gap: 0;
    }

    .menu__search-bar {
        width: 100%;
        position: static;
        margin-bottom: 0;
    }

    /* 10. Search Input 2.8rem */
    .search__input {
        padding: 2.2rem 3rem;
        font-size: 2.8rem;
        /* User Request */
        border-radius: 4rem;
    }

    /* 2. MOBILE FILTERS */
    .menu__filter {
        margin-top: 4rem;
        width: 100%;
        margin-bottom: 4rem;
    }

    .filter__head,
    .filter__title {
        display: none;
    }

    .filter__type {
        width: 100%;
    }

    .filter__list {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter__list::-webkit-scrollbar {
        display: none;
    }

    .filter__item {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .filter__item input {
        display: none;
    }

    /* 9. Filter Title 2.8rem */
    .filter__item-title {
        display: block;
        padding: 1.5rem 3rem;
        background: #f4f4f4;
        border-radius: 3rem;
        font-size: 2.8rem;
        /* User Request */
        font-weight: 600;
        color: #666;
        transition: all 0.2s;
        border: 1px solid transparent;
    }

    .filter__item input:checked+.filter__item-title {
        background: #e9743f;
        color: #fff;
        box-shadow: 0 0.5rem 1rem rgba(233, 116, 63, 0.3);
    }

    /* 3. BANNER REDESIGN */
    .menu__banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem;
        height: auto;
        min-height: auto;
        text-align: center;
    }

    .menu__banner-content {
        max-width: 100%;
        margin-bottom: 25rem;
        z-index: 2;
    }

    /* 5. Banner Title 6rem */
    .menu__banner-title {
        font-size: 6rem;
        /* User Request */
        margin-bottom: 2rem;
    }

    /* 6. Banner Subtitle 2.8rem */
    .menu__banner-subtitle {
        font-size: 2.8rem;
        /* User Request */
    }

    .menu__banner-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        width: 100%;
    }

    /* 7. Banner Item 2.6rem */
    .menu__banner-item {
        height: auto;
        align-items: flex-start;
        text-align: left;
        font-size: 2.6rem;
        /* User Request */
    }

    /* 8. Banner Item Span 3.2rem */
    .menu__banner-item span {
        font-size: 3.2rem;
        /* User Request */
    }

    .menu__banner-img {
        width: 90%;
        height: 40%;
        right: 5%;
        bottom: 0;
        top: auto;
        object-position: bottom center;
    }

    /* 4. CARDS & GRID */
    .menu__list,
    .menu__special-force-grid,
    .menu__special .swiper-wrapper {
        grid-template-columns: 1fr !important;
        gap: 5rem !important;
    }

    .menu-page .menu {
        padding: 0 1.5rem;
    }

    .menu__new-card-top,
    .menu__special-card-top--img {
        height: 52rem;
    }

    .menu__new-card--title,
    .menu__special-card-top--title {
        font-size: 3.6rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    /* 4. Special Card Article 2.8rem */
    .menu__special-card-top--article {
        font-size: 2.8rem;
        /* User Request */
    }

    .menu__new-card-bottom--price strong,
    .menu__special-card-bottom--price strong {
        font-size: 4.2rem;
    }

    /* 2. Price Span 3.4rem */
    .menu__new-card-bottom--price span,
    .menu__special-card-bottom--price span {
        font-size: 3.4rem !important;
        /* User Request */
        margin-left: 1rem;
    }

    .menu__new-card--info,
    .menu__special-card-info--subtitle {
        font-size: 2.8rem;
    }

    /* 1. Swiper Images 12rem x 12rem */
    .card-swiper-img-item {
        width: 12rem;
        /* User Request */
        height: 12rem;
        /* User Request */
    }

    /* MODAL */
    .menu__modal-container {
        border-radius: 0;
        height: 100%;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
    }

    .menu__modal-close {
        position: fixed;
        top: 2rem;
        right: 2rem;
        background: rgba(255, 255, 255, 0.9);
        width: 5rem;
        height: 5rem;
        font-size: 3.5rem;
        z-index: 99999;
        box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
    }

    .menu__modal-img {
        height: 35vh;
        width: 100%;
        flex: none;
    }

    .menu__modal-info {
        height: 65vh;
        padding: 4rem 3rem;
        width: 100%;
        flex: none;
    }

    /* MODAL FONTS DECREASED BY 0.4rem due to User Feedback 12 */
    .menu__modal-title {
        font-size: 4.2rem;
        /* Was 4.6 */
    }

    .menu__modal-stat-title,
    .menu__modal-structure-title {
        font-size: 3.0rem;
        /* Was 3.4 */
        margin-bottom: 2rem;
    }

    .menu__modal-stat-list li {
        font-size: 2.6rem;
        /* Was 3.0 */
        margin-bottom: 1.5rem;
    }

    .menu__modal-structure {
        font-size: 2.6rem;
        /* Was 3.0 */
        line-height: 1.6;
    }

    .menu__modal-price {
        font-size: 5.6rem;
        /* Was 6.0 */
    }
}
/* End */
/* /menu/style.css?176902074921232 */
