/* ============================================
   MENU PAGE — Rout Catering
   Использует rem-систему из main.css
   (1rem ≈ 10px при 1920px)
   ============================================ */

/* ============================================
   HERO BLOCK — Зелёный приветственный блок
   ============================================ */
.menu-hero {
    background-color: #2e574d;
    color: #fbf7eb;
    padding: 0 0 15rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 48em) {
    .menu-hero {
        padding: 0 0 20rem;
    }
}

@media (max-width: 30em) {
    .menu-hero {
        padding: 0 0 24rem;
    }
}

.menu-hero__container {
    width: 152rem;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 64em) {
    .menu-hero__container {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
}

/* --- Heading (заголовок + подзаголовок + кнопка) --- */
.menu-hero__heading {
    position: relative;
    padding-top: 6.6rem;
    margin-bottom: 4rem;
}

@media (max-width: 48em) {
    .menu-hero__heading {
        padding-top: 4.6rem;
        display: flex;
        flex-direction: column;
        gap: 3.2rem;
        margin-bottom: 5rem;
    }
}

@media (max-width: 30em) {
    .menu-hero__heading {
        padding-top: 6rem;
        gap: 4rem;
        margin-bottom: 6rem;
    }
}

.menu-hero__title {
    font-family: "eurofurence";
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.menu-hero__title-line {
    font-size: 9rem;
    line-height: 1.15;
}

.menu-hero__title-line._left {
    align-self: flex-start;
}

.menu-hero__title-line._right {
    align-self: flex-end;
}

@media (max-width: 48em) {
    .menu-hero__title-line {
        font-size: 6.4rem;
    }

    .menu-hero__title-line._right {
        align-self: flex-start;
    }
}

@media (max-width: 30em) {
    .menu-hero__title-line {
        font-size: 8rem;
    }
}

/* Подзаголовок и кнопка — абсолютно позиционированы рядом с заголовком */
.menu-hero__subtitle-wrap {
    position: absolute;
    top: 20.5rem;
    left: 0;
    width: 35rem;
    z-index: 3;
}

@media (max-width: 48em) {
    .menu-hero__subtitle-wrap {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
    }
}

.menu-hero__subtitle {
    font-family: "Gilroy";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(251, 247, 235, 0.75);
    margin: 0;
}

@media (max-width: 48em) {
    .menu-hero__subtitle {
        font-size: 2.8rem;
    }
}

@media (max-width: 30em) {
    .menu-hero__subtitle {
        font-size: 3.6rem;
    }
}

.menu-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    border: none;
    color: #fbf7eb;
    font-family: "Gilroy";
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 3rem;
    padding: 0;
    border-bottom: 0.1rem solid rgba(251, 247, 235, 0.3);
    padding-bottom: 0.4rem;
}

.menu-hero__btn:hover {
    color: #d3fca0;
    border-color: #d3fca0;
}

.menu-hero__btn svg {
    width: 3.2rem;
    height: 3.2rem;
    transition: transform 0.3s ease;
}

.menu-hero__btn:hover svg {
    transform: translateX(0.4rem);
}

@media (max-width: 48em) {
    .menu-hero__btn {
        font-size: 2.8rem;
        gap: 1.6rem;
        margin-top: 3rem;
    }

    .menu-hero__btn svg {
        width: 4.4rem;
        height: 4.4rem;
    }
}

@media (max-width: 30em) {
    .menu-hero__btn {
        font-size: 3.6rem;
        gap: 2rem;
        margin-top: 4rem;
    }

    .menu-hero__btn svg {
        width: 6rem;
        height: 6rem;
    }
}

/* --- Image wrapper (маскированное изображение) --- */
.menu-hero__wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 10rem;
}

.menu-hero__img-box {
    width: 131rem;
    height: 47rem;
    margin-left: 4rem;
    border-radius: 4rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(90, 123, 103, 0.3) 0%, rgba(46, 87, 77, 0.6) 100%);
}

.menu-hero__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Если картинки нет — плейсхолдер */
.menu-hero__img-box--empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-hero__img-box--empty::after {
    content: 'Добавьте изображение';
    font-family: "Gilroy";
    font-size: 2rem;
    font-weight: 500;
    color: rgba(251, 247, 235, 0.3);
}

@media (max-width: 48em) {
    .menu-hero__img-box {
        width: 100%;
        height: 36rem;
        margin-left: 0;
        border-radius: 2.4rem;
    }
}

@media (max-width: 30em) {
    .menu-hero__img-box {
        height: 50rem;
        border-radius: 3.2rem;
    }
}

/* --- Плавающий бейдж поверх картинки --- */
.menu-hero__badge {
    position: absolute;
    bottom: 4rem;
    left: 8rem;
    background-color: #fbf7eb;
    color: #2e574d;
    border-radius: 2rem;
    padding: 2.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    box-shadow: 0 1.2rem 3.6rem rgba(0, 0, 0, 0.12);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-0.8rem); }
}

.menu-hero__badge-icon {
    width: 5.2rem;
    height: 5.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d3fca0;
    border-radius: 1.4rem;
    flex-shrink: 0;
}

.menu-hero__badge-icon svg {
    width: 2.8rem;
    height: 2.8rem;
}

.menu-hero__badge-text {
    font-family: "Gilroy";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2e574d;
    margin: 0;
}

@media (max-width: 48em) {
    .menu-hero__badge {
        bottom: -5rem;
        left: 2rem;
        right: 2rem;
        padding: 2.4rem;
        gap: 1.6rem;
        border-radius: 2rem;
    }

    .menu-hero__badge-icon {
        width: 7rem;
        height: 7rem;
        border-radius: 1.8rem;
    }

    .menu-hero__badge-icon svg {
        width: 3.6rem;
        height: 3.6rem;
    }

    .menu-hero__badge-text {
        font-size: 2.4rem;
    }
}

@media (max-width: 30em) {
    .menu-hero__badge {
        bottom: -7rem;
        left: 3rem;
        right: 3rem;
        padding: 3.6rem;
        gap: 2.4rem;
        border-radius: 2.8rem;
    }

    .menu-hero__badge-icon {
        width: 10rem;
        height: 10rem;
        border-radius: 2.4rem;
    }

    .menu-hero__badge-icon svg {
        width: 5rem;
        height: 5rem;
    }

    .menu-hero__badge-text {
        font-size: 3.4rem;
    }
}

/* --- Декоративная звезда --- */
.menu-hero__star {
    position: absolute;
    left: 0;
    top: 12rem;
    width: 23.3rem;
    height: 18.1rem;
    opacity: 0.4;
    animation: heroStarRotate 20s linear infinite;
}

@keyframes heroStarRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (max-width: 48em) {
    .menu-hero__star {
        width: 18rem;
        height: 14rem;
        left: auto;
        right: 2rem;
        top: 3rem;
        opacity: 0.3;
    }
}

/* --- Page Layout --- */
.menu-page {
    background-color: #fbf7eb;
    padding-top: 8rem;
    padding-bottom: 15rem;
}

.menu-page__container {
    width: 152rem;
    margin: 0 auto;
}

@media (max-width: 64em) {
    .menu-page {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .menu-page__container {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
}

@media (max-width: 30em) {
    .menu-page {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .menu-page__container {
        padding: 0 16px;
    }
}

/* Старый page-header убран — заголовок теперь в hero-блоке */

/* --- Section Titles --- */
.menu-page__section-title {
    font-family: "eurofurence";
    font-size: 5rem;
    line-height: 120%;
    font-weight: 500;
    text-transform: uppercase;
    color: #2e574d;
    margin-bottom: 4rem;
}

@media (max-width: 48em) {
    .menu-page__section-title {
        font-size: 4.2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 30em) {
    .menu-page__section-title {
        font-size: 6.4rem;
        margin-bottom: 4.8rem;
    }
}

/* ============================================
   OFFERS — "Наши предложения" (Инфоблок 32)
   ============================================ */
.menu-page__offers {
    margin-bottom: 10rem;
}

@media (max-width: 48em) {
    .menu-page__offers {
        margin-bottom: 10rem;
    }
}

@media (max-width: 30em) {
    .menu-page__offers {
        margin-bottom: 14rem;
    }
}

/* --- Offers Section Heading --- */
.offers-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.offers-heading__title {
    margin-bottom: 0;
}

.offers-heading__info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.offers-heading__icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d3fca0;
    border-radius: 1.6rem;
    flex-shrink: 0;
}

.offers-heading__icon svg {
    width: 3.2rem;
    height: 3.2rem;
}

.offers-heading__line {
    width: 0.15rem;
    height: 5rem;
    background: rgba(90, 123, 103, 0.25);
    flex-shrink: 0;
}

.offers-heading__text-main {
    font-family: "Gilroy";
    font-size: 1.8rem;
    font-weight: 600;
    color: #2e574d;
    line-height: 1.4;
}

@media (max-width: 48em) {
    .offers-heading {
        flex-direction: column;
        gap: 2.4rem;
    }

    .offers-heading__info {
        gap: 2rem;
    }

    .offers-heading__icon {
        width: 7.5rem;
        height: 7.5rem;
        border-radius: 2rem;
    }

    .offers-heading__icon svg {
        width: 4rem;
        height: 4rem;
    }

    .offers-heading__line {
        width: 0.2rem;
        height: 5.5rem;
    }

    .offers-heading__text-main {
        font-size: 2.6rem;
    }
}

@media (max-width: 30em) {
    .offers-heading {
        gap: 4rem;
    }

    .offers-heading__info {
        gap: 2.8rem;
    }

    .offers-heading__icon {
        width: 11rem;
        height: 11rem;
        border-radius: 3rem;
    }

    .offers-heading__icon svg {
        width: 6rem;
        height: 6rem;
    }

    .offers-heading__line {
        height: 8rem;
    }

    .offers-heading__text-main {
        font-size: 3.8rem;
    }
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
}

@media (max-width: 80em) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 48em) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 30em) {
    .offers-grid {
        gap: 5rem;
    }
}

/* --- Offer Card --- */
.offer-card {
    background: #fff;
    border-radius: 2.4rem;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0.4rem 2rem rgba(46, 87, 77, 0.06);
}

.offer-card:hover {
    transform: translateY(-0.6rem);
    box-shadow: 0 1.2rem 3.6rem rgba(46, 87, 77, 0.12);
}

/* Image */
.offer-card__image-wrap {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background: linear-gradient(135deg, #e8efe9 0%, #d4e2d8 100%);
}

.offer-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-card__image {
    transform: scale(1.05);
}

.offer-card__no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a7b67;
    font-family: "Gilroy";
    font-size: 1.6rem;
    font-weight: 500;
    flex-direction: column;
    gap: 1rem;
}

.offer-card__no-image svg {
    opacity: 0.3;
}

/* Body */
.offer-card__body {
    padding: 3.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 48em) {
    .offer-card__body {
        padding: 3.2rem;
    }
}

@media (max-width: 30em) {
    .offer-card__body {
        padding: 4.8rem;
    }
}

.offer-card__top {
    margin-bottom: 1.2rem;
}

.offer-card__price {
    font-family: "eurofurence";
    font-size: 4rem;
    font-weight: 500;
    color: #2e574d;
    line-height: 1.2;
}

.offer-card__price-note {
    font-family: "Gilroy";
    font-size: 1.4rem;
    font-weight: 500;
    color: #5a7b67;
    margin-left: 0.4rem;
}

@media (max-width: 48em) {
    .offer-card__price {
        font-size: 4.4rem;
    }

    .offer-card__price-note {
        font-size: 2rem;
    }
}

@media (max-width: 30em) {
    .offer-card__price {
        font-size: 6.4rem;
    }

    .offer-card__price-note {
        font-size: 3rem;
    }
}

.offer-card__title {
    font-family: "Gilroy";
    font-size: 2.4rem;
    font-weight: 700;
    color: #2e574d;
    margin: 0 0 1rem;
    line-height: 1.3;
}

@media (max-width: 48em) {
    .offer-card__title {
        font-size: 3.4rem;
    }
}

@media (max-width: 30em) {
    .offer-card__title {
        font-size: 4.8rem;
    }
}

.offer-card__count {
    font-family: "Gilroy";
    font-size: 1.4rem;
    font-weight: 500;
    color: #5a7b67;
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.offer-card__count::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: #d3fca0;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 48em) {
    .offer-card__count {
        font-size: 2.4rem;
    }

    .offer-card__count::before {
        width: 2rem;
        height: 2rem;
    }
}

@media (max-width: 30em) {
    .offer-card__count {
        font-size: 3.2rem;
    }

    .offer-card__count::before {
        width: 2.8rem;
        height: 2.8rem;
    }
}

.offer-card__composition {
    font-family: "Gilroy";
    font-size: 1.6rem;
    font-weight: 500;
    color: #5a7b67;
    line-height: 1.6;
    margin-bottom: 1.6rem;
}

@media (max-width: 48em) {
    .offer-card__composition {
        font-size: 2.4rem;
    }
}

@media (max-width: 30em) {
    .offer-card__composition {
        font-size: 3.2rem;
    }
}

/* Details expandable */
.offer-card__details {
    margin-bottom: 2rem;
}

.offer-card__details-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.offer-card__details-list--collapsed {
    max-height: 7rem;
    overflow: hidden;
    position: relative;
}

.offer-card__details-list--collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3rem;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.offer-card__details-item {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: #f5f3eb;
    border-radius: 2rem;
    font-family: "Gilroy";
    font-size: 1.3rem;
    font-weight: 500;
    color: #5a7b67;
}

@media (max-width: 48em) {
    .offer-card__details-item {
        padding: 0.8rem 1.8rem;
        font-size: 2rem;
    }

    .offer-card__details-list--collapsed {
        max-height: 10rem;
    }
}

@media (max-width: 30em) {
    .offer-card__details-item {
        padding: 1.2rem 2.4rem;
        font-size: 2.8rem;
    }

    .offer-card__details-list--collapsed {
        max-height: 14rem;
    }
}

.offer-card__toggle {
    background: none;
    border: none;
    color: #2e574d;
    font-family: "Gilroy";
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.4rem 0;
    margin-top: 1rem;
    transition: color 0.3s ease;
    border-bottom: 0.1rem solid #2e574d;
}

.offer-card__toggle:hover {
    color: #d3fca0;
    border-color: #d3fca0;
}

@media (max-width: 48em) {
    .offer-card__toggle {
        font-size: 2.4rem;
        padding: 0.6rem 0;
    }
}

@media (max-width: 30em) {
    .offer-card__toggle {
        font-size: 3.2rem;
    }
}

/* Footer / CTA */
.offer-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding-top: 2rem;
}

.offer-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 2.4rem;
    padding: 0.4rem 0.4rem 0.4rem 4.8rem;
    background: #d3fca0;
    color: #2e574d;
    border: none;
    border-radius: 1.2rem;
    font-family: "Gilroy";
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.offer-card__btn:hover {
    background: #2e574d;
    color: #d3fca0;
}

.offer-card__btn svg {
    width: 5.2rem;
    height: 4.6rem;
}

@media (max-width: 48em) {
    .offer-card__btn {
        font-size: 2.6rem;
        padding: 0.4rem 0.4rem 0.4rem 3.6rem;
        gap: 3rem;
        width: 100%;
        justify-content: space-between;
    }

    .offer-card__btn svg {
        width: 7rem;
        height: 6.2rem;
    }
}

@media (max-width: 30em) {
    .offer-card__btn {
        font-size: 3.6rem;
        padding: 0.8rem 0.8rem 0.8rem 5rem;
        gap: 5rem;
        border-radius: 1.6rem;
    }

    .offer-card__btn svg {
        width: 10rem;
        height: 8.8rem;
    }
}

/* Zigzag separator (молния) */
.offer-card__zigzag {
    margin-top: -0.1rem;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.offer-card__zigzag svg {
    display: block;
    width: 100%;
    height: 1.2rem;
}

@media (max-width: 48em) {
    .offer-card__zigzag svg {
        height: 1.8rem;
    }

    /* Отключаем hover на тач-устройствах */
    .offer-card:hover {
        transform: none;
        box-shadow: 0 0.4rem 2rem rgba(46, 87, 77, 0.06);
    }

    .offer-card:hover .offer-card__image {
        transform: none;
    }
}

.offer-card__note {
    font-family: "Gilroy";
    font-size: 1.2rem;
    font-weight: 500;
    color: #5a7b67;
    font-style: italic;
    margin-top: 1.6rem;
}

@media (max-width: 48em) {
    .offer-card__note {
        font-size: 2rem;
    }
}

@media (max-width: 30em) {
    .offer-card__note {
        font-size: 2.8rem;
        margin-top: 2rem;
    }
}

/* ============================================
   ITEMS SECTION (заголовок + двухколоночный макет)
   ============================================ */
.menu-page__items-section {
    margin-bottom: 6rem;
}

/* ============================================
   TWO-COLUMN LAYOUT: Sidebar + Content
   ============================================ */
.menu-layout {
    display: grid;
    grid-template-columns: 32rem 1fr;
    gap: 4rem;
    align-items: start;
}

/* Если сайдбара нет — одна колонка */
.menu-layout:not(:has(.menu-layout__sidebar)) {
    grid-template-columns: 1fr;
}

@media (max-width: 64em) {
    .menu-layout {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}

/* --- Sidebar --- */
.menu-layout__sidebar {
    position: sticky;
    top: 12rem;
    align-self: start;
}

@media (max-width: 64em) {
    .menu-layout__sidebar {
        position: static;
        width: 100%;
        margin-bottom: 3rem;
    }
}

@media (max-width: 30em) {
    .menu-layout__sidebar {
        margin-bottom: 5rem;
    }
}

/* --- Content area --- */
.menu-layout__content {
    min-width: 0;
}

/* ============================================
   FILTER (Vertical sidebar style)
   ============================================ */
.menu-filter {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: #fff;
    border-radius: 2.4rem;
    padding: 3.2rem;
    box-shadow: 0 0.4rem 2.4rem rgba(46, 87, 77, 0.08);
}

.menu-filter__heading {
    display: block;
    font-family: "eurofurence";
    font-size: 2.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #2e574d;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 0.15rem solid rgba(90, 123, 103, 0.15);
}

.menu-filter__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.6rem 2rem;
    border: none;
    border-radius: 1.4rem;
    background: transparent;
    color: #5a7b67;
    font-family: "Gilroy";
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    gap: 1rem;
}

.menu-filter__btn:hover {
    background: rgba(211, 252, 160, 0.2);
    color: #2e574d;
}

.menu-filter__btn--active {
    background: #2e574d;
    color: #fbf7eb;
}

.menu-filter__btn--active:hover {
    background: #3a6e64;
    color: #fbf7eb;
}

.menu-filter__btn-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.menu-filter__btn-count {
    flex-shrink: 0;
    min-width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(90, 123, 103, 0.1);
    border-radius: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #5a7b67;
    padding: 0 0.8rem;
    transition: all 0.25s ease;
}

.menu-filter__btn--active .menu-filter__btn-count {
    background: rgba(211, 252, 160, 0.25);
    color: #d3fca0;
}

/* Mobile: horizontal scroll pills */
@media (max-width: 64em) {
    .menu-filter {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 2rem;
        gap: 1.2rem;
        border-radius: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .menu-filter::-webkit-scrollbar {
        display: none;
    }

    .menu-filter__heading {
        display: none;
    }

    .menu-filter__btn {
        padding: 1.8rem 3.6rem;
        font-size: 2.8rem;
        flex-shrink: 0;
        border-radius: 5rem;
        border: 0.2rem solid #5a7b67;
        justify-content: center;
        white-space: nowrap;
        width: auto;
    }

    .menu-filter__btn--active {
        border-color: #2e574d;
    }

    .menu-filter__btn-count {
        display: none;
    }
}

@media (max-width: 30em) {
    .menu-filter {
        padding: 2.4rem;
        gap: 1.6rem;
        border-radius: 2.4rem;
    }

    .menu-filter__btn {
        padding: 2.4rem 4.4rem;
        font-size: 3.4rem;
        border-radius: 6rem;
        border-width: 0.3rem;
    }
}

/* ============================================
   MENU ITEMS GRID
   ============================================ */
.menu-page__items {
    margin-bottom: 4rem;
}

.menu-items__empty {
    text-align: center;
    padding: 10rem 2rem;
    color: #5a7b67;
    font-family: "Gilroy";
    font-size: 2rem;
    font-weight: 500;
}

@media (max-width: 48em) {
    .menu-items__empty {
        font-size: 2.6rem;
        padding: 8rem 2rem;
    }
}

@media (max-width: 30em) {
    .menu-items__empty {
        font-size: 3.6rem;
        padding: 12rem 3rem;
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
}

@media (max-width: 100em) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 64em) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
}

@media (max-width: 30em) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* --- Menu Card --- */
.menu-card {
    background: #fff;
    border-radius: 2.4rem;
    overflow: hidden;
    box-shadow: 0 0.4rem 2rem rgba(46, 87, 77, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: cardFadeIn 0.5s ease both;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 1.2rem 3.6rem rgba(46, 87, 77, 0.12);
}

.menu-card--hide {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s;
}

.menu-card--show {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s, transform 0.3s;
}

.menu-card--new {
    opacity: 0;
    transform: translateY(2rem);
}

/* Card Image */
.menu-card__image-wrap {
    position: relative;
    width: 100%;
    padding-top: 72%;
    overflow: hidden;
    background: linear-gradient(135deg, #e8efe9 0%, #d4e2d8 100%);
}

.menu-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card__image {
    transform: scale(1.06);
}

.menu-card__no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #5a7b67;
    font-family: "Gilroy";
    font-size: 1.4rem;
    font-weight: 500;
}

@media (max-width: 48em) {
    .menu-card__no-image {
        font-size: 1.8rem;
    }

    .menu-card__no-image svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 30em) {
    .menu-card__no-image {
        font-size: 2.8rem;
    }

    .menu-card__no-image svg {
        width: 48px;
        height: 48px;
    }
}

.menu-card__badge {
    position: absolute;
    top: 1.6rem;
    left: 1.6rem;
    padding: 0.6rem 1.8rem;
    background: #2e574d;
    color: #fbf7eb;
    border-radius: 2rem;
    font-family: "Gilroy";
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 2;
}

@media (max-width: 48em) {
    .menu-card__badge {
        padding: 0.8rem 1.8rem;
        font-size: 1.8rem;
        top: 1.2rem;
        left: 1.2rem;
    }

    /* Отключаем hover на тач-устройствах */
    .menu-card:hover {
        transform: none;
        box-shadow: 0 0.4rem 2rem rgba(46, 87, 77, 0.06);
    }

    .menu-card:hover .menu-card__image {
        transform: none;
    }
}

@media (max-width: 30em) {
    .menu-card__badge {
        padding: 1.2rem 2.8rem;
        font-size: 2.6rem;
        top: 1.8rem;
        left: 1.8rem;
    }
}

/* Card Body */
.menu-card__body {
    padding: 2.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 48em) {
    .menu-card__body {
        padding: 2rem;
    }
}

@media (max-width: 30em) {
    .menu-card__body {
        padding: 3.6rem;
    }
}

.menu-card__title {
    font-family: "Gilroy";
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e574d;
    margin: 0 0 1rem;
    line-height: 1.35;
}

@media (max-width: 48em) {
    .menu-card__title {
        font-size: 2.4rem;
        margin: 0 0 0.6rem;
    }
}

@media (max-width: 30em) {
    .menu-card__title {
        font-size: 3.6rem;
        margin: 0 0 1.2rem;
    }
}

.menu-card__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Gilroy";
    font-size: 1.4rem;
    font-weight: 500;
    color: #5a7b67;
    margin-bottom: 1.6rem;
}

@media (max-width: 48em) {
    .menu-card__meta {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 30em) {
    .menu-card__meta {
        font-size: 3rem;
        margin-bottom: 1.8rem;
    }
}

.menu-card__meta-sep {
    opacity: 0.4;
}

/* Price area */
.menu-card__bottom {
    margin-top: auto;
    padding-top: 1.6rem;
    border-top: 0.1rem solid rgba(90, 123, 103, 0.15);
}

.menu-card__price {
    font-family: "eurofurence";
    font-size: 2.8rem;
    font-weight: 500;
    color: #2e574d;
}

@media (max-width: 48em) {
    .menu-card__price {
        font-size: 3.2rem;
    }
}

@media (max-width: 30em) {
    .menu-card__price {
        font-size: 5rem;
    }
}

.menu-card__price--request {
    font-family: "Gilroy";
    font-size: 1.6rem;
    font-weight: 500;
    color: #5a7b67;
    font-style: italic;
}

@media (max-width: 48em) {
    .menu-card__price--request {
        font-size: 2rem;
    }
}

@media (max-width: 30em) {
    .menu-card__price--request {
        font-size: 3.2rem;
    }
}

/* ============================================
   DETAIL MODAL
   ============================================ */
.menu-card__detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 87, 77, 0.5);
    backdrop-filter: blur(0.8rem);
    -webkit-backdrop-filter: blur(0.8rem);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.2rem;
}

.menu-card__detail-inner {
    background: #fff;
    border-radius: 2.4rem;
    max-width: 56rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 2.4rem 6.4rem rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(3rem) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.menu-card__detail-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 4.4rem;
    height: 4.4rem;
    border: none;
    background: rgba(251, 247, 235, 0.9);
    border-radius: 50%;
    font-size: 2.4rem;
    color: #2e574d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
}

.menu-card__detail-close:hover {
    background: #fff;
    transform: scale(1.1);
}

@media (max-width: 48em) {
    .menu-card__detail-modal {
        align-items: flex-end;
        padding: 0;
    }

    .menu-card__detail-inner {
        max-width: 100%;
        max-height: 85vh;
        border-radius: 2.4rem 2.4rem 0 0;
        animation: modalSlideUp 0.35s ease;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    /* Drag handle для bottom-sheet */
    .menu-card__detail-inner::before {
        content: '';
        display: block;
        width: 5rem;
        height: 0.5rem;
        background: rgba(46, 87, 77, 0.2);
        border-radius: 0.3rem;
        margin: 1.6rem auto 0;
    }

    @keyframes modalSlideUp {
        from {
            transform: translateY(100%);
            opacity: 0.5;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .menu-card__detail-close {
        width: 6rem;
        height: 6rem;
        font-size: 3.2rem;
        top: 1.6rem;
        right: 1.6rem;
    }
}

@media (max-width: 30em) {
    .menu-card__detail-inner {
        max-height: 90vh;
        border-radius: 3.6rem 3.6rem 0 0;
    }

    .menu-card__detail-inner::before {
        width: 8rem;
        height: 0.8rem;
        border-radius: 0.4rem;
        margin: 2.4rem auto 0;
    }

    .menu-card__detail-close {
        width: 9rem;
        height: 9rem;
        font-size: 4.4rem;
        top: 2.4rem;
        right: 2.4rem;
    }
}

.menu-card__detail-title {
    font-family: "Gilroy";
    font-size: 2.8rem;
    font-weight: 700;
    color: #2e574d;
    padding: 3.2rem 3.2rem 0;
    margin: 0;
    padding-right: 6rem;
}

@media (max-width: 48em) {
    .menu-card__detail-title {
        font-size: 3.4rem;
        padding: 2.4rem 8rem 0 3.2rem;
    }
}

@media (max-width: 30em) {
    .menu-card__detail-title {
        font-size: 5rem;
        padding: 3.2rem 12rem 0 4rem;
    }
}

.menu-card__detail-category {
    padding: 0.6rem 3.2rem 0;
    font-family: "Gilroy";
    font-size: 1.4rem;
    font-weight: 600;
    color: #5a7b67;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

@media (max-width: 48em) {
    .menu-card__detail-category {
        font-size: 2rem;
        padding: 0.6rem 3.2rem 0;
    }
}

@media (max-width: 30em) {
    .menu-card__detail-category {
        font-size: 3rem;
        padding: 1.2rem 4rem 0;
    }
}

.menu-card__detail-section {
    padding: 1.6rem 3.2rem 0;
    font-family: "Gilroy";
    font-size: 1.6rem;
    font-weight: 500;
    color: #5a7b67;
    line-height: 1.6;
}

.menu-card__detail-section strong {
    color: #2e574d;
    font-weight: 700;
}

.menu-card__detail-section p {
    margin: 0.4rem 0 0;
}

@media (max-width: 48em) {
    .menu-card__detail-section {
        font-size: 2.2rem;
        padding: 1.6rem 3.2rem 0;
    }
}

@media (max-width: 30em) {
    .menu-card__detail-section {
        font-size: 3.2rem;
        padding: 2.4rem 4rem 0;
    }
}

/* Nutrition grid */
.menu-card__detail-nutrition {
    display: flex;
    gap: 1.6rem;
    padding: 2.4rem 3.2rem;
}

@media (max-width: 48em) {
    .menu-card__detail-nutrition {
        gap: 1.4rem;
        padding: 2rem 3.2rem;
    }
}

@media (max-width: 30em) {
    .menu-card__detail-nutrition {
        gap: 2rem;
        padding: 3.2rem 4rem;
    }
}

.menu-card__detail-nutrition-item {
    flex: 1;
    text-align: center;
    padding: 1.6rem 1rem;
    background: #f5f3eb;
    border-radius: 1.2rem;
}

.menu-card__detail-nutrition-val {
    display: block;
    font-family: "eurofurence";
    font-size: 2.8rem;
    font-weight: 500;
    color: #2e574d;
    margin-bottom: 0.2rem;
}

@media (max-width: 48em) {
    .menu-card__detail-nutrition-val {
        font-size: 3rem;
    }
}

@media (max-width: 30em) {
    .menu-card__detail-nutrition-val {
        font-size: 4.4rem;
    }
}

.menu-card__detail-nutrition-label {
    display: block;
    font-family: "Gilroy";
    font-size: 1.1rem;
    font-weight: 600;
    color: #5a7b67;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 48em) {
    .menu-card__detail-nutrition-label {
        font-size: 1.6rem;
    }
}

@media (max-width: 30em) {
    .menu-card__detail-nutrition-label {
        font-size: 2.4rem;
    }
}

.menu-card__detail-price {
    padding: 2rem 3.2rem 3.2rem;
    font-family: "eurofurence";
    font-size: 3.6rem;
    font-weight: 500;
    color: #2e574d;
}

@media (max-width: 48em) {
    .menu-card__detail-price {
        font-size: 4rem;
        padding: 2rem 3.2rem 3.2rem;
    }
}

@media (max-width: 30em) {
    .menu-card__detail-price {
        font-size: 6rem;
        padding: 3.2rem 4rem 5rem;
    }
}

/* ============================================
   SHOW MORE BUTTON
   ============================================ */
.menu-page__more {
    text-align: center;
    padding-top: 2rem;
}

.menu-page__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem 4.8rem;
    background: transparent;
    color: #2e574d;
    border: 0.2rem solid #2e574d;
    border-radius: 5rem;
    font-family: "Gilroy";
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.menu-page__more-btn:hover {
    background: #2e574d;
    color: #fbf7eb;
}

.menu-page__more-btn svg {
    width: 2.4rem;
    height: 2.4rem;
    transition: color 0.4s ease;
}

.menu-page__more-btn:hover svg {
    color: #fbf7eb;
}

.menu-page__more-btn--loading {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 48em) {
    .menu-page__more-btn {
        padding: 2rem 5rem;
        font-size: 2.6rem;
        width: 100%;
        justify-content: center;
    }

    .menu-page__more-btn svg {
        width: 3.2rem;
        height: 3.2rem;
    }
}

@media (max-width: 30em) {
    .menu-page__more-btn {
        padding: 3.2rem 6rem;
        font-size: 3.6rem;
    }

    .menu-page__more-btn svg {
        width: 4.8rem;
        height: 4.8rem;
    }
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.menu-card--skeleton {
    pointer-events: none;
    cursor: default;
}

.menu-card--skeleton .menu-card__image-wrap {
    padding-top: 72%;
}

.skeleton-pulse {
    background: linear-gradient(90deg, #e8efe9 25%, #f0f5f1 50%, #e8efe9 75%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-line {
    height: 1.6rem;
    border-radius: 0.8rem;
    background: linear-gradient(90deg, #e8efe9 25%, #f0f5f1 50%, #e8efe9 75%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.5s ease-in-out infinite;
    margin-bottom: 1rem;
}

.skeleton-line--title {
    width: 75%;
    height: 2rem;
}

.skeleton-line--meta {
    width: 50%;
    height: 1.4rem;
}

.skeleton-line--price {
    width: 35%;
    height: 2.4rem;
    margin-top: auto;
}

@keyframes skeletonPulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.menu-grid--loading {
    opacity: 1;
}

/* ============================================
   MOBILE OVERRIDE — px вместо rem
   vw-based rem на мобилке даёт ~1.8px за 1rem,
   поэтому все размеры нужно задать в px.
   ============================================ */
@media (max-width: 64em) {

    /* --- Hero --- */
    .menu-hero { padding: 0 0 60px; }
    .menu-hero__container { width: 100%; padding: 0 16px; box-sizing: border-box; }
    .menu-hero__heading { padding-top: 24px; gap: 16px; margin-bottom: 24px; display: flex; flex-direction: column; }
    .menu-hero__title { order: -1; }
    .menu-hero__title-line { font-size: 32px; }
    .menu-hero__title-line._right { align-self: flex-start; }
    .menu-hero__subtitle-wrap { position: relative; top: auto; left: auto; width: 100%; order: 1; }
    .menu-hero__subtitle { font-size: 14px; }
    .menu-hero__btn { font-size: 14px; gap: 8px; margin-top: 12px; display: inline-flex; }
    .menu-hero__btn svg { width: 20px; height: 20px; flex-shrink: 0; }
    .menu-hero__wrapper { order: 2; }
    .menu-hero__img-box { width: 100%; height: 200px; margin-left: 0; border-radius: 16px; }
    .menu-hero__badge { bottom: -28px; left: 16px; right: 16px; padding: 12px; gap: 10px; border-radius: 12px; }
    .menu-hero__badge-icon { width: 40px; height: 40px; border-radius: 10px; }
    .menu-hero__badge-icon svg { width: 20px; height: 20px; }
    .menu-hero__badge-text { font-size: 13px; }
    .menu-hero__star { width: 80px; height: 60px; right: 8px; left: auto; top: 12px; opacity: 0.3; }

    /* --- Page --- */
    .menu-page { padding-top: 40px; padding-bottom: 60px; }
    .menu-page__container { width: 100%; padding: 0 16px; box-sizing: border-box; }
    .menu-page__section-title { font-size: 24px; margin-bottom: 20px; }

    /* --- Offers Heading --- */
    .offers-heading { flex-direction: column; gap: 12px; margin-bottom: 20px; }
    .offers-heading__icon { width: 40px; height: 40px; border-radius: 10px; }
    .offers-heading__icon svg { width: 22px; height: 22px; }
    .offers-heading__line { height: 32px; }
    .offers-heading__text-main { font-size: 14px; }
    .menu-page__offers { margin-bottom: 40px; }

    /* --- Offers Grid --- */
    .offers-grid { grid-template-columns: 1fr; gap: 16px; }

    /* --- Offer Card --- */
    .offer-card { border-radius: 16px; }
    .offer-card:hover { transform: none; box-shadow: 0 2px 10px rgba(46,87,77,0.06); }
    .offer-card:hover .offer-card__image { transform: none; }
    .offer-card__body { padding: 16px; }
    .offer-card__price { font-size: 28px; }
    .offer-card__price-note { font-size: 12px; }
    .offer-card__title { font-size: 18px; margin: 0 0 6px; }
    .offer-card__count { font-size: 13px; margin-bottom: 8px; }
    .offer-card__count::before { width: 10px; height: 10px; }
    .offer-card__composition { font-size: 13px; margin-bottom: 8px; }
    .offer-card__details-item { padding: 6px 12px; font-size: 12px; }
    .offer-card__details-list--collapsed { max-height: 48px; }
    .offer-card__toggle { font-size: 13px; }
    .offer-card__btn { font-size: 14px; padding: 4px 4px 4px 20px; gap: 12px; width: 100%; justify-content: space-between; border-radius: 10px; }
    .offer-card__btn svg { width: 36px; height: 32px; }
    .offer-card__note { font-size: 11px; margin-top: 8px; }
    .offer-card__zigzag svg { height: 6px; }

    /* --- Layout --- */
    .menu-layout { display: flex !important; flex-direction: column !important; gap: 0 !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    .menu-layout__sidebar { position: static !important; width: 100% !important; margin-bottom: 16px; }
    .menu-layout__content { width: 100% !important; max-width: 100% !important; min-width: 0 !important; box-sizing: border-box !important; }

    /* --- Filter pills --- */
    .menu-filter {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 6px;
        gap: 6px;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 2px 12px rgba(46, 87, 77, 0.08);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        box-sizing: border-box;
    }
    .menu-filter::-webkit-scrollbar { display: none; }
    .menu-filter__heading { display: none; }
    .menu-filter__btn {
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 600;
        flex-shrink: 0;
        border-radius: 12px;
        border: none;
        background: transparent;
        color: #5a7b67;
        justify-content: center;
        white-space: nowrap;
        width: auto;
        transition: all 0.25s ease;
    }
    .menu-filter__btn--active {
        background: #2e574d;
        color: #fbf7eb;
        box-shadow: 0 2px 8px rgba(46, 87, 77, 0.25);
    }
    .menu-filter__btn-count { display: none; }

    /* --- Menu Grid --- */
    .menu-grid { grid-template-columns: 1fr !important; gap: 16px !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    .menu-page__items { width: 100% !important; }

    /* --- Menu Card --- */
    .menu-card { border-radius: 16px; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    .menu-card:hover { transform: none; box-shadow: 0 2px 10px rgba(46,87,77,0.06); }
    .menu-card:hover .menu-card__image { transform: none; }
    .menu-card__no-image { font-size: 13px; }
    .menu-card__no-image svg { width: 32px; height: 32px; }
    .menu-card__badge { padding: 5px 12px; font-size: 11px; top: 10px; left: 10px; border-radius: 10px; }
    .menu-card__body { padding: 14px; }
    .menu-card__title { font-size: 16px; margin: 0 0 4px; }
    .menu-card__meta { font-size: 13px; gap: 4px; margin-bottom: 10px; }
    .menu-card__bottom { padding-top: 10px; border-top: 1px solid rgba(90,123,103,0.15); }
    .menu-card__price { font-size: 22px; }
    .menu-card__price--request { font-size: 13px; }

    /* --- Modal --- */
    .menu-card__detail-modal { align-items: flex-end; padding: 0; }
    .menu-card__detail-inner { max-width: 100%; max-height: 85vh; border-radius: 20px 20px 0 0; padding-bottom: env(safe-area-inset-bottom, 0); }
    .menu-card__detail-inner::before { content: ''; display: block; width: 40px; height: 4px; background: rgba(46,87,77,0.2); border-radius: 2px; margin: 12px auto 0; }
    .menu-card__detail-close { width: 36px; height: 36px; font-size: 18px; top: 12px; right: 12px; }
    .menu-card__detail-title { font-size: 20px; padding: 16px 50px 0 16px; }
    .menu-card__detail-category { font-size: 12px; padding: 4px 16px 0; }
    .menu-card__detail-section { font-size: 14px; padding: 10px 16px 0; }
    .menu-card__detail-nutrition { gap: 8px; padding: 14px 16px; }
    .menu-card__detail-nutrition-item { padding: 10px 6px; border-radius: 8px; }
    .menu-card__detail-nutrition-val { font-size: 18px; }
    .menu-card__detail-nutrition-label { font-size: 10px; }
    .menu-card__detail-price { font-size: 24px; padding: 12px 16px 20px; }

    /* --- Show More Button --- */
    .menu-page__more-btn { padding: 12px 24px; font-size: 14px; width: 100%; justify-content: center; border-width: 1px; }
    .menu-page__more-btn svg { width: 18px; height: 18px; }

    /* --- Skeleton --- */
    .skeleton-line { height: 12px; border-radius: 6px; margin-bottom: 6px; }
    .skeleton-line--title { height: 16px; }
    .skeleton-line--meta { height: 12px; }
    .skeleton-line--price { height: 18px; }
}
