/*
 * Каталог 2026 — новый дизайн страницы категории.
 * Все селекторы скоплены под .catalog2026 (класс на <main>),
 * чтобы не конфликтовать с глобальными стилями.
 *
 * Подключается только когда у категории включена галка «Шаблон 2026»
 * (admin/catalog_raz_edit.php → колонка catalog_raz.Catalog2026).
 *
 * Источник макета: redesign/catalog-4col.html
 */

.catalog2026 {
    --c26-accent: #FE5D26;
    --c26-text: #272F3D;
    --c26-muted: rgba(49, 45, 43, 0.5);
    --c26-bg: #F6F6F6;
    --c26-max: 1298px;
    font-family: "Inter", "PT Sans", sans-serif;
    color: var(--c26-text);
}

/* Серый фон страницы — только когда на ней есть .catalog2026.
   :has() для современных браузеров, .catalog2026-page (выставляется
   js/catalog2026.js) — фолбэк для остальных. Значение литералом —
   var(--c26-bg) определена ниже на .catalog2026, до body не дотянется. */
body:has(.catalog2026),
body.catalog2026-page {
    background-color: #F6F6F6;
}

.catalog2026,
.catalog2026 *:not(svg):not(path) {
    font-family: "Inter", "PT Sans", sans-serif !important;
}

/* === Скрытые блоки старого дизайна === */
.catalog2026 .cm-banner,
.catalog2026 .cm-categories,
.catalog2026 .video-widget,
.catalog2026 .cm-download__link {
    display: none;
}

/* === .top: H1 слева, top-links справа (видео и т.п.) === */
.catalog2026 .catalog2026-top {
    max-width: var(--c26-max);
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.catalog2026 .catalog2026-top .catalog-main-title {
    margin: 0;
    max-width: none;
}

.catalog2026 .catalog2026-top-links {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.catalog2026 .catalog2026-top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c26-accent);
    text-decoration: none !important;
    transition: color .15s ease;
}

.catalog2026 .catalog2026-top-link svg {
    display: block;
    flex-shrink: 0;
}

.catalog2026 .catalog2026-top-link span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--c26-accent);
}

.catalog2026 .catalog2026-top-link:hover,
.catalog2026 .catalog2026-top-link:hover span {
    color: #D95427;
}

@media screen and (max-width: 768px) {
    .catalog2026 { overflow-x: hidden; }
    /* Wrapper без горизонтальных margin — 16px даёт каждый ребёнок сам.
       Так не двоится, если H1 standalone (без wrapper'а) или внутри wrapper'а. */
    .catalog2026 .catalog2026-top {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin: 16px 0;
    }
    .catalog2026 .catalog2026-top > * {
        margin-left: 16px;
        margin-right: 16px;
    }
    /* H1 standalone (без wrapper'а) тоже получает 16px */
    .catalog2026 .catalog-main-title {
        margin-left: 16px;
        margin-right: 16px;
    }
    .catalog2026 .catalog2026-top-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .catalog2026 .breadcrumbs {
        margin: 16px 16px 12px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent 100%);
        -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent 100%);
    }
    .catalog2026 .breadcrumbs::-webkit-scrollbar { display: none; }
    .catalog2026 .breadcrumbs > * { flex-shrink: 0 !important; white-space: nowrap !important; }
    .catalog2026 .breadcrumbs .bread-item-last { white-space: nowrap; }
    /* На мобиле выпадашек подкатегорий нет — прячем шевроны и их dropdown */
    .catalog2026 .breadcrumbs .bread-item > svg,
    .catalog2026 .breadcrumbs .breadcrumbs-dropdown { display: none !important; }
    .catalog2026 .mobile-sidebar-links { display: none !important; }
}

/* === Кнопка «Фильтры» (мобильная) + попап с сайдбаром === */
.catalog2026 .c26-mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    border: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--c26-text);
    cursor: pointer;
}
.catalog2026 .c26-mobile-filter-btn:hover { color: var(--c26-accent); }

@media (max-width: 768px) {
    .catalog2026 .c26-mobile-filter-btn { display: inline-flex; }

    /* Сайдбар на мобайле — попап. По умолчанию display:none, open → block. */
    .catalog2026 .cm-catalog__sidebar-wrapper {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: 88vw !important;
        max-width: 360px !important;
        min-width: 0 !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 16px !important;
        background: #F6F6F6 !important;
        overflow-y: auto !important;
        z-index: 9999 !important;
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.18);
        transform: none !important;
    }
    /* theia inner-обёртка отключена на мобиле */
    .catalog2026 .cm-catalog__sidebar-wrapper .theiaStickySidebar {
        position: static !important;
        transform: none !important;
        width: auto !important;
        top: 0 !important;
        left: 0 !important;
        height: auto !important;
    }
    body.c26-filter-popup-open { overflow: hidden; }
    body.c26-filter-popup-open .catalog2026 .cm-catalog__sidebar-wrapper {
        display: block !important;
    }
    /* Backdrop */
    .catalog2026 .c26-filter-backdrop {
        position: fixed; inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }
    body.c26-filter-popup-open .catalog2026 .c26-filter-backdrop {
        opacity: 1;
        pointer-events: auto;
    }
    /* Сбрасываем верхний padding wrapper'а — шапка займёт его место и
       будет sticky от самого верха. */
    .catalog2026 .cm-catalog__sidebar-wrapper {
        padding-top: 0 !important;
    }
    /* Шапка попапа: «Фильтры» + крестик. Растягиваем на всю ширину wrapper'а
       (отрицательные margin'ы компенсируют padding по бокам). */
    .catalog2026 .cm-catalog__sidebar-wrapper .c26-popup-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        margin: 0 -16px 12px;
        padding: 16px;
        background: #F6F6F6;
        z-index: 100;
    }
    .catalog2026 .c26-popup-head-title {
        font-size: 20px;
        font-weight: 500;
        color: var(--c26-text);
    }
    .catalog2026 .c26-popup-close {
        background: none;
        border: 0;
        padding: 4px;
        cursor: pointer;
        line-height: 0;
    }
}
@media (min-width: 769px) {
    .catalog2026 .c26-popup-head,
    .catalog2026 .c26-filter-backdrop { display: none; }
}

/* === Заголовок категории + счётчик товаров (макет .catalog25 .top .title) === */
.catalog2026 .catalog-main-title {
    max-width: var(--c26-max);
    margin: 0 auto 32px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--c26-text) !important;
    font-family: inherit;
    text-align: left;
    text-transform: none;
}

/* плашка-счётчик через ::after, значение из data-count (выставляется JS) */
.catalog2026 .catalog-main-title[data-count]::after {
    content: attr(data-count);
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 93, 38, 0.16);
    color: var(--c26-accent);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    flex-shrink: 0;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .catalog2026 .catalog-main-title {
        font-size: 24px;
        line-height: 32px;
        margin: 0 16px 24px !important;
    }
    .catalog2026 .catalog2026-top .catalog-main-title {
        margin: 0 16px !important;
    }
}

/* === Сайдбар (макет .sidebar / .sidebar-box / .sidebar-cat-link) === */
.catalog2026 .cm-catalog__sidebar-wrapper {
    /* Smart sticky управляется через theia-sticky-sidebar (catalog2026.js).
       position: relative нужно — иначе flex-cell может схлопнуться. */
    position: relative;
    align-self: flex-start;
    max-width: 288px;
    min-width: 288px;
    flex-shrink: 0;
}

.catalog2026 .cm-catalog__sidebar {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    padding: 24px 0;
    margin-top: 10px;
    gap: 0;
}

.catalog2026 .cm-catalog .links-wrapper {
    margin-top: 0;
}

/* Первый item — «Каталог» как back-link */
.catalog2026 .cm-catalog__sidebar-item:first-child .cm-catalog__sidebar-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    /* padding-left=24 + margin-left=8 = 32 от края — ровно как у .cm-catalog__sidebar-link */
    padding: 5px 24px;
    margin: 0 8px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--c26-text);
    text-decoration: none !important;
    transition: background-color .15s ease, color .15s ease;
    background-color: transparent;
    height: auto;
    width: auto;
}

.catalog2026 .cm-catalog__sidebar-item:first-child .cm-catalog__sidebar-head span {
    color: inherit;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

/* прячем иконку папки, оставляем только chevron-back */
.catalog2026 .cm-catalog__sidebar-item:first-child .cm-catalog__sidebar-head svg.icon {
    display: none;
}

/* Стрелка-влево позиционируется абсолютно, чтобы текст «Каталог» был на
   той же вертикали, что и пункты меню (.cm-catalog__sidebar-link). */
.catalog2026 .cm-catalog__sidebar-item:first-child .cm-catalog__sidebar-head svg.catalog_arr {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 10px;
    flex-shrink: 0;
    opacity: 1;
}

.catalog2026 .cm-catalog__sidebar-item:first-child .cm-catalog__sidebar-head svg.catalog_arr path {
    fill: rgba(49, 45, 43, 0.8);
}

.catalog2026 .cm-catalog__sidebar-item:first-child .cm-catalog__sidebar-head:hover {
    background-color: #FFEFEA;
    color: var(--c26-accent);
}

.catalog2026 .cm-catalog__sidebar-item:first-child .cm-catalog__sidebar-head:hover svg.catalog_arr path {
    fill: var(--c26-accent);
}

/* Текущая категория — плоский .sidebar-cat-link.active (оранжевый) */
.catalog2026 .cm-catalog__sidebar-head--current,
.catalog2026 .cm-catalog__sidebar-head--current-active {
    display: flex;
    align-items: center;
    margin: 0 8px;
    padding: 5px 24px;
    background: transparent !important;
    height: auto;
    width: auto;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--c26-accent) !important;
    text-decoration: none !important;
    cursor: default;
    gap: 0;
}

.catalog2026 .cm-catalog__sidebar-head--current span,
.catalog2026 .cm-catalog__sidebar-head--current-active span,
.catalog2026 .cm-catalog__sidebar-head--current .catalog_parent,
.catalog2026 .cm-catalog__sidebar-head--current-active .catalog_parent {
    font-weight: 500;
    color: var(--c26-accent) !important;
    font-size: 14px;
    line-height: 20px;
    padding: 0;
    border-bottom: none !important;
    display: inline;
}

/* Parent-категория (НЕ active) — родитель текущей. Стиль как у «Каталог»
   (.cm-catalog__sidebar-item:first-child): тёмный текст, back-chevron
   слева 6×10, hover оранжевый. */
.catalog2026 .cm-catalog__sidebar-head--current:not(.cm-catalog__sidebar-head--current-active) {
    position: relative;
    color: var(--c26-text) !important;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}
.catalog2026 .cm-catalog__sidebar-head--current:not(.cm-catalog__sidebar-head--current-active) .catalog_parent,
.catalog2026 .cm-catalog__sidebar-head--current:not(.cm-catalog__sidebar-head--current-active) span {
    color: var(--c26-text) !important;
}
/* Back-chevron слева, идентично «Каталог» */
.catalog2026 .cm-catalog__sidebar-head--current:not(.cm-catalog__sidebar-head--current-active) svg.catalog_arr {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 10px;
    flex-shrink: 0;
    opacity: 1;
}
.catalog2026 .cm-catalog__sidebar-head--current:not(.cm-catalog__sidebar-head--current-active) svg.catalog_arr path {
    fill: rgba(49, 45, 43, 0.8);
    transition: fill .15s ease;
}
.catalog2026 .cm-catalog__sidebar-head--current:not(.cm-catalog__sidebar-head--current-active):hover {
    background-color: #FFEFEA !important;
    color: var(--c26-accent) !important;
}
.catalog2026 .cm-catalog__sidebar-head--current:not(.cm-catalog__sidebar-head--current-active):hover .catalog_parent,
.catalog2026 .cm-catalog__sidebar-head--current:not(.cm-catalog__sidebar-head--current-active):hover span {
    color: var(--c26-accent) !important;
}
.catalog2026 .cm-catalog__sidebar-head--current:not(.cm-catalog__sidebar-head--current-active):hover svg.catalog_arr path {
    fill: var(--c26-accent);
}

/* Контейнер ссылок подкатегорий */
.catalog2026 .cm-catalog__sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Подкатегории — плоский плитка-лист */
.catalog2026 .cm-catalog__sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--c26-text);
    background: transparent;
    border-radius: 8px;
    margin: 0 8px;
    padding: 5px 24px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background-color .15s ease, color .15s ease;
}

.catalog2026 .cm-catalog__sidebar-link span {
    flex-grow: 1;
    color: inherit;
}

/* прячем шеврон-вправо у пунктов: в новом дизайне его нет */
.catalog2026 .cm-catalog__sidebar-link svg {
    display: none;
}

.catalog2026 .cm-catalog__sidebar-link:hover {
    background-color: #FFEFEA;
    color: var(--c26-accent);
}

.catalog2026 .cm-catalog__sidebar-link.active,
.catalog2026 .cm-catalog__sidebar-link:active {
    color: var(--c26-accent);
}

/* Скрытие подкатегорий за лимитом 6 пунктов — чисто CSS, чтобы не было мигания при рендере.
   nth-of-type считает только <a>, кнопка .catalog2026-show-more (button) не сдвигает счёт.
   .category__place-button («Площадки для мероприятий») всегда видим. */
.catalog2026 .cm-catalog__sidebar-links > a.cm-catalog__sidebar-link:nth-of-type(n+7):not(.category__place-button) {
    display: none;
}

.catalog2026 .cm-catalog__sidebar-links.catalog2026-expanded > a.cm-catalog__sidebar-link:nth-of-type(n+7):not(.category__place-button) {
    display: flex;
}

/* Кнопка «Показать всё / Свернуть» */
.catalog2026 .catalog2026-show-more {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 8px;
    padding: 5px 24px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--c26-muted);
    border-radius: 8px;
    transition: color .15s ease, background-color .15s ease;
}

.catalog2026 .catalog2026-show-more svg {
    flex-shrink: 0;
    transition: transform .15s ease;
}

.catalog2026 .cm-catalog__sidebar-links.catalog2026-expanded .catalog2026-show-more svg {
    transform: rotate(180deg);
}

.catalog2026 .catalog2026-show-more:hover {
    color: var(--c26-accent);
}

/* Кнопка-ссылка на «Площадки» под подкатегориями */
.catalog2026 .cm-catalog__sidebar .place-link,
.catalog2026 .cm-catalog__sidebar a[href*="ploshchadki"],
.catalog2026 .cm-catalog__sidebar a.category__place-button {
    position: relative;
    display: block;
    margin: 16px 8px 0;
    padding: 15px 24px 0 24px;
    color: var(--c26-accent);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none !important;
    border-radius: 8px;
    border-top: none; /* перебить легаси .category__place-button border-top */
}

/* Разделитель сверху — псевдо-элемент. Отступ 5px слева/справа от края
   белого бокса сайдбара (place-link уже 8px от края, значит pseudo торчит
   на -3px = 8-5). */
.catalog2026 .cm-catalog__sidebar .place-link::before,
.catalog2026 .cm-catalog__sidebar a[href*="ploshchadki"]::before,
.catalog2026 .cm-catalog__sidebar a.category__place-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    right: -3px;
    height: 1px;
    background: rgba(49, 45, 43, 0.08);
}

/* Hover — только цвет, без оранжевой плашки (чтобы отличалось от пунктов меню). */
.catalog2026 .cm-catalog__sidebar .place-link:hover,
.catalog2026 .cm-catalog__sidebar a[href*="ploshchadki"]:hover,
.catalog2026 .cm-catalog__sidebar a.category__place-button:hover {
    color: #d95427;
    background-color: transparent;
}

/* Скрываем текущую категорию (последний .bread-item с .bread-item-last)
   и сепаратор перед ней. */
.catalog2026 .breadcrumbs > .bread-item:last-child,
.catalog2026 .breadcrumbs > span:last-of-type {
    display: none;
}

/* === Хлебные крошки (макет .breadcrumbs25) === */
.catalog2026 .breadcrumbs {
    max-width: var(--c26-max);
    margin: 16px auto 24px;
    padding: 0;
    /* Mobile: горизонтальный scroll вместо переноса (паттерн WB/Ozon/Lamoda) */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
    overflow: visible;
    background: none;
    text-align: left;
}

/* линки и спаны — убираем подчёркивание из легаси */
.catalog2026 .breadcrumbs a,
.catalog2026 .breadcrumbs span {
    text-decoration: none !important;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.catalog2026 .breadcrumbs a {
    color: var(--c26-muted);
    display: inline-block;
    transition: color .15s ease;
}

.catalog2026 .breadcrumbs a:hover,
.catalog2026 .breadcrumbs a:hover span,
.catalog2026 .breadcrumbs .bread-item:hover > span,
.catalog2026 .breadcrumbs .bread-item:hover > span a,
.catalog2026 .breadcrumbs .bread-item:hover > span a span {
    color: var(--c26-accent) !important;
}

/* первый bread-item (Главная) — прячем иконку дома, показываем текст */
.catalog2026 .breadcrumbs > .bread-item:first-child a {
    padding: 0;
    display: inline-flex;
    align-items: center;
}

.catalog2026 .breadcrumbs > .bread-item:first-child a > svg {
    display: none;
}

.catalog2026 .breadcrumbs > .bread-item:first-child span[itemprop="name"] {
    display: inline-block !important;
    color: var(--c26-muted);
}

/* промежуточные span (.bread-item > span > a) — текст ссылки в нужный цвет */
.catalog2026 .breadcrumbs .bread-item a span[itemprop="name"] {
    color: inherit;
}

/* разделители ">" → CSS-кружок (без зависимости от глифа шрифта) */
.catalog2026 .breadcrumbs > span {
    font-size: 0 !important;
    line-height: 0;
    color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 16px;
}

.catalog2026 .breadcrumbs > span::before {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--c26-muted);
    display: block;
}

/* bread-item — flex-обёртка для текста + шеврона */
.catalog2026 .breadcrumbs .bread-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* шеврон рядом с пунктом, имеющим дропдаун (по умолчанию указывает вниз) */
.catalog2026 .breadcrumbs .bread-item > svg {
    transition: transform .15s ease;
    width: 8px;
    height: 4px;
    display: block;
    flex-shrink: 0;
    margin-top: 1px;
}

.catalog2026 .breadcrumbs .bread-item:hover > svg {
    transform: rotate(180deg);
}

.catalog2026 .breadcrumbs .bread-item > svg path {
    fill: var(--c26-muted);
    transition: fill .15s ease;
}

.catalog2026 .breadcrumbs .bread-item:hover > svg path {
    fill: var(--c26-accent);
}

/* выпадающий список (.breadcrumbs-dropdown) — панель */
.catalog2026 .breadcrumbs .breadcrumbs-dropdown {
    position: absolute;
    top: 24px;
    left: 0;
    padding: 8px;
    width: 220px;
    border-radius: 16px;
    border: 1px solid rgba(49, 45, 43, 0.05);
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.06);
    display: none;
    flex-direction: column;
    z-index: 10;
}

.catalog2026 .breadcrumbs .bread-item:hover .breadcrumbs-dropdown {
    display: flex;
}

.catalog2026 .breadcrumbs .breadcrumbs-dropdown a {
    padding: 6px;
    font-size: 12px;
    line-height: 16px;
    color: var(--c26-text);
    border-radius: 8px;
}

.catalog2026 .breadcrumbs .breadcrumbs-dropdown a:hover {
    background-color: rgba(49, 45, 43, 0.05);
    color: var(--c26-text);
}

/* последний пункт (current page) — тёмный, без шеврона и дропа */
.catalog2026 .breadcrumbs .bread-item-last {
    color: var(--c26-text) !important;
    pointer-events: none;
}

.catalog2026 .breadcrumbs .bread-item:last-child > svg,
.catalog2026 .breadcrumbs .bread-item:last-child .breadcrumbs-dropdown {
    display: none;
}

/* === Сортировка (порт из redesign .sort-head на наш .sort__head) === */
.catalog2026 .sort__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px 6px 14px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    cursor: pointer;
    transition: background-color .15s ease;
}

.catalog2026 .sort__head:hover {
    background-color: rgba(49, 45, 43, 0.05);
}

.catalog2026 .sort__head-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--c26-text);
}

.catalog2026 .sort__head svg {
    transition: transform .2s ease;
}

.catalog2026 .sort--open .sort__head svg {
    transform: rotate(180deg);
}

.catalog2026 .sort__drop {
    width: 220px;
    top: 36px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(49, 45, 43, 0.05);
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.06);
}

.catalog2026 .sort__drop-item {
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
}

.catalog2026 .sort__drop-item:hover {
    background: rgba(49, 45, 43, 0.05);
    color: var(--c26-text);
}

/* === Листинг карточек (порт из redesign/css/style.css .listing25-wrapper) === */
.catalog2026 .listing__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: dense;
    gap: 16px;
    max-width: var(--c26-max);
    margin: 0 auto;
}

@media (max-width: 991px) {
    .catalog2026 .listing__items {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

.catalog2026 .listing__items > .card {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    display: flex;
    flex-direction: column;
}

.catalog2026 .card-img-box {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding: 8px;
}

@media (max-width: 768px) {
    .catalog2026 .card-img-box {
        padding: 0;
        margin: 8px;
    }
}

.catalog2026 .hover-images-box {
    position: relative;
}

.catalog2026 .hover-images {
    position: relative;
    border: 1px solid rgba(49, 45, 43, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.catalog2026 .hover-gallery-img {
    display: none;
    width: 100%;
}

.catalog2026 .hover-gallery-img.active {
    display: block;
}

/* === Hover-галерея: невидимые «зоны» поверх картинки, по наведению — свап === */
.catalog2026 .hover-gallery {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 1;
    padding: 7px;
}

.catalog2026 .hover-gallery-item {
    flex-grow: 1;
    height: 100%;
}

.catalog2026 .hover-gallery-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    display: flex;
    gap: 6px;
    pointer-events: none;
}

.catalog2026 .hover-gallery-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(0.5px);
    transition: width .15s ease, background-color .15s ease;
}

.catalog2026 .hover-gallery-item-dot.active {
    width: 16px;
    border-radius: 100px;
    background-color: #fff;
}

@media (max-width: 768px) {
    .catalog2026 .hover-gallery,
    .catalog2026 .hover-gallery-dots {
        display: none;
    }
}

.catalog2026 .tags {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 4;
    display: flex;
    gap: 6px;
}

@media (max-width: 550px) {
    .catalog2026 .tags {
        top: 12px;
        left: 12px;
    }
}

.catalog2026 .tag {
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #fff;
    border-radius: 6px;
    background: #DC142F;
}

.catalog2026 .card-content {
    padding: 4px 16px 15px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 550px) {
    .catalog2026 .card-content {
        padding: 4px 12px 8px;
    }
}

.catalog2026 .card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.catalog2026 .card-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--c26-text);
    margin-bottom: 8px;
    /* 2 строки + многоточие; min-height резервирует место под 2 строки,
       чтобы все карточки были одинаковой высоты */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
}

@media (max-width: 550px) {
    .catalog2026 .card-title {
        font-size: 12px;
        line-height: 16px;
        min-height: 32px;
    }
}

/* Картинка в карточке — квадрат, чтобы все .card-img-box одинаковой высоты */
.catalog2026 .listing__items > .card .card-img-box {
    aspect-ratio: 1 / 1;
}
.catalog2026 .listing__items > .card .hover-images,
.catalog2026 .listing__items > .card .hover-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog2026 .card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* прижать цену к низу карточки независимо от длины названия */
}

.catalog2026 .card-row .price {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: var(--c26-accent);
}

@media (max-width: 550px) {
    .catalog2026 .card-row .price {
        font-size: 12px;
        line-height: 16px;
    }
}

/* === Промо-баннер (card-promo-row) — full-row внутри 4-кол грида ===
   Grid 1fr/1fr: картинка слева 50%, текст справа 50%. Если картинки нет,
   правая половина с текстом остаётся на месте, левая просто пустая. */
.catalog2026 .listing__items > .card-promo-row {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-radius: 16px;
    background: #FF8728;
    overflow: hidden;
    position: relative;
    text-decoration: none !important;
    transition: 0.2s;
    min-height: 110px;
}

.catalog2026 .listing__items > .card-promo-row > img {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    justify-self: start;
    transition: 0.2s;
}

.catalog2026 .listing__items > .card-promo-row:hover img {
    transform: scale(1.02);
}

.catalog2026 .listing__items > .card-promo-row .mobile-img {
    display: none;
}

@media (max-width: 768px) {
    .catalog2026 .listing__items > .card-promo-row {
        min-height: 112px;
    }
    .catalog2026 .listing__items > .card-promo-row > img {
        max-width: 250px;
    }
    .catalog2026 .listing__items > .card-promo-row .desk-img {
        display: none;
    }
    .catalog2026 .listing__items > .card-promo-row .mobile-img {
        display: block;
        max-width: 138px;
    }
}

.catalog2026 .listing__items > .card-promo-row .content {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    padding: 0 16px 0 0;
    max-width: none;
}

@media (max-width: 550px) {
    .catalog2026 .listing__items > .card-promo-row .content {
        position: relative;
        z-index: 1;
        max-width: 200px;
    }
}

.catalog2026 .listing__items > .card-promo-row .title {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    font-weight: 500;
    text-align: left;
    margin-bottom: 12px;
}

.catalog2026 .listing__items > .card-promo-row .title span {
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .catalog2026 .listing__items > .card-promo-row .title {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 0;
    }
}

.catalog2026 .listing__items > .card-promo-row .text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* === Пагинация + «Показать ещё» (порт redesign .pagination / .pagination-btn-more) === */
/* .navigation-block в шаблоне — родитель «Показать ещё» и .listing__pagination.
   Делаем его флекс-рядом: show-more слева, пагинация справа. */
.catalog2026 .navigation-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 32px;
    max-width: var(--c26-max);
    margin: 0 auto;
}
@media (max-width: 768px) {
    .catalog2026 .navigation-block {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.catalog2026 .listing__pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 0;
    background: transparent;
}

.catalog2026 a.listing__pagination-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--c26-text);
    text-decoration: none !important;
    opacity: 1; /* перебить легаси opacity: 0.6 */
    transition: background-color .15s ease, color .15s ease;
}

.catalog2026 a.listing__pagination-link:hover {
    background-color: var(--c26-accent);
    color: #fff;
}

.catalog2026 a.listing__pagination-link.pagination-link--active {
    background-color: var(--c26-accent);
    color: #fff;
    pointer-events: none;
}

.catalog2026 a.listing__pagination-link.arrow svg {
    width: 14px;
    height: 14px;
}

.catalog2026 a.listing__pagination-link.arrow svg path {
    fill-opacity: 1;
    fill: var(--c26-text);
    transition: fill .15s ease;
}

.catalog2026 a.listing__pagination-link.arrow:hover svg path {
    fill: #fff;
}

/* «Показать ещё» — белая пилюля 10/20 с тенью, hover оранжевый.
   Тип `a.` в селекторе — чтобы перебить легаси .cm-catalog .listing__pagination a (0,2,1). */
.catalog2026 a.show-more-btn,
.catalog2026 a.listing__btn.show-more-btn,
.catalog2026 a.orange-link.show-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 32px auto 0;
    padding: 10px 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--c26-text);
    opacity: 1; /* перебить легаси opacity: 0.6 */
    text-decoration: none !important;
    transition: background-color .15s ease, color .15s ease;
}

.catalog2026 a.show-more-btn:hover,
.catalog2026 a.listing__btn.show-more-btn:hover,
.catalog2026 a.orange-link.show-more-btn:hover {
    background-color: var(--c26-accent);
    color: #fff;
    opacity: 1;
}

/* В .navigation-block (Catalog2026) — без верхнего auto-margin, чтобы flex-родитель раскладывал */
.catalog2026 .navigation-block a.show-more-btn,
.catalog2026 .navigation-block a.listing__btn.show-more-btn,
.catalog2026 .navigation-block a.orange-link.show-more-btn {
    margin: 0;
}

/* === Блок заявки (.request .request-no-padding) — порт из redesign/css/style.css === */
.catalog2026 .request {
    padding: 48px 0;
    max-width: var(--c26-max);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .catalog2026 .request {
        padding: 24px 0;
    }
}

.catalog2026 .request .inner {
    border-radius: 32px;
    background-color: var(--c26-accent);
    background-image: url(/images/upload/request-bg.svg);
    background-position: center;
    background-size: cover;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    padding: 48px;
    gap: 20px;
}

@media (max-width: 768px) {
    .catalog2026 .request .inner {
        flex-direction: column;
        padding: 24px;
        border-radius: 24px;
    }
}

.catalog2026 .request .content {
    max-width: 460px;
    width: 100%;
}

.catalog2026 .request .title {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: #fff;
    margin-bottom: 24px;
    text-align: left;
}

@media (max-width: 550px) {
    .catalog2026 .request .title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }
}

.catalog2026 .request .text {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 550px) {
    .catalog2026 .request .text {
        font-size: 14px;
        line-height: 20px;
    }
}

.catalog2026 .request .form {
    max-width: 517px;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    /* Всегда flex-column — для нормального состояния стек инпутов сверху,
       для success — переключим justify-content в правиле ниже. */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Сообщение об успехе ($('form').css('fontSize','30px') в add.js):
   font-size 20px + центрировать по вертикали и горизонтали. */
.catalog2026 .request .form[style*="font-size"] {
    font-size: 20px !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.catalog2026 .request .row {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
}

/* 2 поля (имя/телефон) — равные по ширине, в одну строку на десктопе */
.catalog2026 .request .row .inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

@media (max-width: 768px) {
    .catalog2026 .request .row .inputs {
        display: flex !important;
        flex-direction: column;
    }
}

.catalog2026 .request input {
    width: 100%;
    display: block;
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.16);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    outline: none;
}

.catalog2026 .request input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Чекбокс согласия */
.catalog2026 .request .label {
    display: flex;
    align-items: start;
    gap: 8px;
    cursor: pointer;
}

.catalog2026 .request .label input {
    display: none;
    width: auto;
    padding: 0;
    background: none;
    border: none;
}

.catalog2026 .request .label input:checked + .checkbox svg {
    transform: scale(1.1);
}

.catalog2026 .request .label .checkbox {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.16);
    width: 20px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog2026 .request .label .checkbox svg {
    margin-left: 2px;
    transition: transform .2s ease;
    transform: scale(1.1); /* по дефолту чекбокс checked в нашем PHP */
}

.catalog2026 .request .label .label-text {
    color: #fff;
    user-select: none;
    margin: 0;
}

@media (max-width: 768px) {
    .catalog2026 .request .label .label-text {
        font-size: 14px;
    }
}

/* Сабмит — белая пилюля */
.catalog2026 .request .btn-submit {
    padding: 14px 20px;
    max-width: 184px;
    width: 100%;
    border-radius: 999px;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--c26-accent);
    cursor: pointer;
    margin-top: 24px;
    transition: background-color .15s ease;
}

.catalog2026 .request .btn-submit:hover {
    background-color: #F4F4F4;
}

@media (max-width: 768px) {
    .catalog2026 .request .btn-submit {
        max-width: initial;
        width: 100%;
    }
}

/* === Блок «Успешные кейсы» (.cases25) — порт из redesign/css/style.css === */
.catalog2026 .cases25 {
    padding: 48px 0;
    overflow: hidden;
    max-width: var(--c26-max);
    margin: 0 auto;
}

.catalog2026 .cases25 .top {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.catalog2026 .cases25 .title {
    font-size: 32px;
    font-weight: 500;
    color: var(--c26-text);
    text-align: left;
    margin: 0;
}

.catalog2026 .cases25 .link-more {
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    background-color: #fff;
    color: var(--c26-text);
    text-decoration: none !important;
    transition: 0.25s;
}

.catalog2026 .cases25 .link-more:hover {
    background-color: var(--c26-accent);
    color: #fff;
}

.catalog2026 .cases25 .inner {
    display: flex;
    gap: 16px;
}

.catalog2026 .cases25 .inner-mobile {
    display: none;
}

.catalog2026 .cases25 img {
    width: 100%;
    display: block;
}

.catalog2026 .cases25 .img-box img {
    border-radius: 12px;
}

.catalog2026 .cases25 .big-item {
    max-width: 592px;
    flex-grow: 1;
    border-radius: 16px;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    background-color: #fff;
    position: relative;
    text-decoration: none !important;
    color: var(--c26-text);
}

.catalog2026 .cases25 .big-item .img-box {
    padding: 8px;
    border-radius: 16px;
    overflow: hidden;
}

.catalog2026 .cases25 .big-item .content {
    padding: 8px 24px 24px;
}

.catalog2026 .cases25 .big-item:hover .hover-icon {
    top: 24px;
    right: 24px;
    opacity: 1;
}

.catalog2026 .cases25 .big-item .hover-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    position: absolute;
    top: -20px;
    right: -20px;
    opacity: 0;
}

.catalog2026 .cases25 .item-title,
.catalog2026 .cases25 .small-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--c26-text);
}

.catalog2026 .cases25 .item-title {
    margin-bottom: 16px;
}

.catalog2026 .cases25 .tags {
    /* перебить .catalog2026 .tags (position: absolute для карточек листинга) */
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.catalog2026 .cases25 .tag {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    background-color: rgba(49, 45, 43, 0.05);
    border-radius: 999px;
    padding: 4px 10px;
    color: var(--c26-text);
}

.catalog2026 .cases25 .items {
    max-width: 592px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalog2026 .cases25 .item {
    border-radius: 16px;
    background-color: #fff;
    display: flex;
    gap: 16px;
    padding: 8px;
    position: relative;
    text-decoration: none !important;
    color: var(--c26-text);
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
}

.catalog2026 .cases25 .item:hover .hover-icon {
    top: 12px;
    right: 12px;
    opacity: 1;
}

.catalog2026 .cases25 .item .hover-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    position: absolute;
    top: -20px;
    right: -20px;
    opacity: 0;
}

.catalog2026 .cases25 .item .img-box {
    max-width: 227px;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.catalog2026 .cases25 .item .content {
    max-width: 332px;
    padding: 8px 0;
}

.catalog2026 .cases25 .small-title {
    margin-bottom: 28px;
}

.catalog2026 .cases25 .link-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .catalog2026 .cases25 { padding: 24px 0; }
    .catalog2026 .cases25 .link-more { display: none; }
    .catalog2026 .cases25 .link-mobile {
        display: block !important;
        max-width: 170px;
        margin: 24px auto 0;
        text-align: center;
    }
    .catalog2026 .cases25 .inner { display: none; }
    .catalog2026 .cases25 .inner-mobile { display: block; }
    .catalog2026 .cases25 .top { margin-bottom: 24px; }
    .catalog2026 .cases25 .title { font-size: 24px; line-height: 32px; }
    .catalog2026 .cases25 .content { padding: 4px 16px 16px; }

    /* Карточки одной высоты: тянем slide + .big-item до высоты самого
       высокого slide'а (порт из batut.css 6657-6668). */
    .catalog2026 .cases25 .inner-mobile .swiper-wrapper {
        align-items: stretch;
    }
    .catalog2026 .cases25 .inner-mobile .swiper-slide {
        height: auto;
    }
    .catalog2026 .cases25 .inner-mobile .swiper-slide > .big-item,
    .catalog2026 .cases25 .inner-mobile .swiper-slide > .item {
        height: 100%;
    }
    /* Ава 185 одинаковая, object-fit cover (порт из batut.css 6672-6689). */
    .catalog2026 .cases25 .inner-mobile .big-item .img-box,
    .catalog2026 .cases25 .inner-mobile .item .img-box {
        flex-grow: 0 !important;
        max-width: none !important;
        width: 100% !important;
        height: 185px !important;
        min-height: 185px !important;
        padding: 0 !important;
    }
    .catalog2026 .cases25 .inner-mobile .big-item .img-box img,
    .catalog2026 .cases25 .inner-mobile .item .img-box img {
        display: block !important;
        width: 100% !important;
        height: 185px !important;
        object-fit: cover !important;
    }

    /* Пагинация — dynamic-bullets (5 точек, scale 0.33/0.66/1).
       Один-в-один из 116 (batut.css 1304-1313 + 1336-1348).
       НЕ переопределяем width/position — Swiper сам ставит инлайн width
       по числу видимых буллетов и position:absolute для центровки. */
    .catalog2026 .cases25 .slider-pagination {
        display: block !important;
        margin: 0 auto !important;
        transform: none !important;
    }
    .catalog2026 .cases25 .slider-pagination .swiper-pagination-bullet,
    .catalog2026 .cases25 .slider-pagination span {
        opacity: 1 !important;
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background-color: rgba(49, 45, 43, 0.2) !important;
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px) !important;
    }
    .catalog2026 .cases25 .slider-pagination .swiper-pagination-bullet-active {
        background-color: #312D2B !important;
    }
}

/* ===== questions25 (FAQ) =========================================== */
.catalog2026 .questions25 {
    padding: 48px 0;
}
.catalog2026 .questions25 .container {
    max-width: var(--c26-max);
    margin: 0 auto;
    padding: 0 16px;
}
.catalog2026 .questions25 .title {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--c26-text);
}
.catalog2026 .questions25 .items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.catalog2026 .questions25 .item {
    padding: 24px;
    border-radius: 16px;
    background: #FFF;
    cursor: pointer;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
}
.catalog2026 .questions25 .item:hover .drop-head svg path {
    stroke-opacity: 1;
}
.catalog2026 .questions25 .drop-head {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.2s;
}
.catalog2026 .questions25 .drop-head span {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--c26-text);
}
.catalog2026 .questions25 .drop-head svg {
    display: block;
    flex-shrink: 0;
    transition: 0.2s;
}
.catalog2026 .questions25 .drop-head svg path {
    transition: 0.2s;
}
.catalog2026 .questions25 .drop-content {
    transition: 0.2s;
    line-height: 24px;
    color: var(--c26-text);
    height: 0;
    overflow: hidden;
}
.catalog2026 .questions25 .text--open .drop-head {
    margin-bottom: 16px;
}
.catalog2026 .questions25 .text--open .drop-head svg {
    transform: rotate(180deg);
}
.catalog2026 .questions25 .text--open .drop-head svg path {
    stroke-opacity: 1;
}

@media (max-width: 768px) {
    .catalog2026 .questions25 { padding: 24px 0; }
    .catalog2026 .questions25 .title { font-size: 24px; line-height: 32px; margin-bottom: 16px; }
    .catalog2026 .questions25 .item { padding: 16px; border-radius: 12px; }
    .catalog2026 .questions25 .drop-head span { font-size: 16px; line-height: 22px; }
}

/* ===== clients25 (marquee «Наши клиенты») ============================ */
.catalog2026 .clients25 { padding: 48px 0; margin-bottom: 30px; overflow: hidden; }
.catalog2026 .clients25 .container {
    max-width: var(--c26-max);
    margin: 0 auto;
    padding: 0 16px;
}
.catalog2026 .clients25 .title {
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: var(--c26-text);
    text-align: left;
}
.catalog2026 .clients25 .items { overflow: hidden; }
.catalog2026 .clients25 .sub-items {
    display: flex;
    gap: 16px;
    animation: c26-clients-move 30s linear infinite;
    width: max-content;
}
.catalog2026 .clients25 .item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    max-width: 288px;
    min-width: 288px;
    flex-grow: 1;
    height: 144px;
    padding: 16px;
}
.catalog2026 .clients25 .item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes c26-clients-move {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); }
}

@media (max-width: 768px) {
    .catalog2026 .clients25 { padding: 24px 0; }
    .catalog2026 .clients25 .title { font-size: 24px; line-height: 32px; margin-bottom: 24px; }
    .catalog2026 .clients25 .item { max-width: 200px; min-width: 200px; height: 100px; }
}

/* ===== sidebar-box (фильтры) ========================================== */
.catalog2026 .sidebar-box-filters {
    margin-top: 16px;
    padding: 20px 16px;
    background: #FFF;
    border-radius: 16px;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
}
.catalog2026 .sidebar-box-filters .side-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--c26-text);
    margin-bottom: 16px;
}
.catalog2026 .sidebar-box-filters .sidebar-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--c26-text);
    margin: 12px 0 12px;
}
.catalog2026 .price-filter-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.catalog2026 .price-filter .slider-container {
    position: relative;
    height: 4px;
    background: rgba(49, 45, 43, 0.1);
    border-radius: 2px;
}
.catalog2026 .price-filter .slider-track {
    position: absolute;
    inset: 0;
    border-radius: 2px;
}
.catalog2026 .price-filter .slider-range {
    position: absolute;
    height: 100%;
    background: var(--c26-accent);
    border-radius: 2px;
}
.catalog2026 .price-filter input[type="range"] {
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    width: 100%;
    height: 18px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    z-index: 2;
}
.catalog2026 .price-filter input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--c26-accent);
    border: 2px solid #FFF;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.catalog2026 .price-filter input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--c26-accent);
    border: 2px solid #FFF;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.catalog2026 .price-filter input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
}
.catalog2026 .price-filter .input-group {
    display: flex;
    gap: 8px;
}
.catalog2026 .price-filter .input-wrapper {
    flex: 1;
}
.catalog2026 .price-filter input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid rgba(49, 45, 43, 0.15);
    border-radius: 8px;
    font-size: 14px;
    color: var(--c26-text);
    -moz-appearance: textfield;
}
.catalog2026 .price-filter input[type="number"]::-webkit-outer-spin-button,
.catalog2026 .price-filter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.catalog2026 .color-filter-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.catalog2026 .color-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--c26-text);
    line-height: 20px;
}
.catalog2026 .color-label .color-input { display: none; }
.catalog2026 .color-label .color-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(49, 45, 43, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.15s;
}
.catalog2026 .color-label .color-checkbox svg { opacity: 0; transition: 0.15s; }
.catalog2026 .color-label .color-input:checked + .color-checkbox {
    background: var(--c26-accent);
    border-color: var(--c26-accent);
}
.catalog2026 .color-label .color-input:checked + .color-checkbox svg { opacity: 1; }
.catalog2026 .color-label .color-label-main {
    flex: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
}
.catalog2026 .color-label .color-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.catalog2026 .color-label .color-count {
    color: rgba(49, 45, 43, 0.5);
    font-size: 13px;
    flex-shrink: 0;
}
.catalog2026 .color-label .color-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(49, 45, 43, 0.15);
    flex-shrink: 0;
}
.catalog2026 .color-label.c26-color-hidden { display: none; }
.catalog2026 .color-filter .c26-color-more {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 0;
    padding: 4px 0;
    color: rgba(49, 45, 43, 0.5);
    font-size: 13px;
    cursor: pointer;
}
.catalog2026 .color-filter .c26-color-more:hover { color: var(--c26-text); }
.catalog2026 .color-filter .c26-color-more svg { transition: 0.2s; }
.catalog2026 .color-filter .c26-color-more.is-open svg { transform: rotate(180deg); }

/* active filters chips — одна inline-строка [chips...] [Сбросить] */
.catalog2026 .c26-active-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.catalog2026 .filters-current {
    display: contents;
}
.catalog2026 .current-filter-label {
    padding: 6px 10px 6px 14px;
    border-radius: 8px;
    background: rgba(49, 45, 43, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.catalog2026 .current-filter-label span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--c26-text);
}
.catalog2026 .current-filter-label:hover { background: rgba(49, 45, 43, 0.1); }
.catalog2026 .current-filter-close { flex-shrink: 0; }
.catalog2026 .reset-filters {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: rgba(49, 45, 43, 0.5);
    background: none;
    border: 0;
    padding: 6px 8px;
    cursor: pointer;
}
.catalog2026 .reset-filters:hover { color: var(--c26-accent); }

/* param-filter — кастомные параметры из mytable_catalog_filters */
.catalog2026 .param-filter { margin-top: 16px; }
.catalog2026 .param-range-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.catalog2026 .param-range-inner .slider-container {
    position: relative;
    height: 4px;
    background: rgba(49, 45, 43, 0.1);
    border-radius: 2px;
}
.catalog2026 .param-range-inner .slider-track {
    position: absolute; inset: 0; border-radius: 2px;
}
.catalog2026 .param-range-inner .slider-range {
    position: absolute; height: 100%; background: var(--c26-accent); border-radius: 2px;
}
.catalog2026 .param-range-inner input[type="range"] {
    position: absolute;
    top: -7px; left: 0; right: 0;
    width: 100%; height: 18px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none; appearance: none;
    margin: 0; z-index: 2;
}
.catalog2026 .param-range-inner input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none; appearance: none;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--c26-accent);
    border: 2px solid #FFF;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.catalog2026 .param-range-inner input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--c26-accent);
    border: 2px solid #FFF;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.catalog2026 .param-range-inner .input-group {
    display: flex; gap: 8px;
}
.catalog2026 .param-range-inner .input-wrapper { flex: 1; }
.catalog2026 .param-range-inner input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid rgba(49, 45, 43, 0.15);
    border-radius: 8px;
    font-size: 14px;
    color: var(--c26-text);
    -moz-appearance: textfield;
}
.catalog2026 .param-range-inner input[type="number"]::-webkit-outer-spin-button,
.catalog2026 .param-range-inner input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;
}
.catalog2026 .param-filter-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.catalog2026 .param-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--c26-text);
    line-height: 20px;
}
.catalog2026 .param-label .c26-param-input { display: none; }
.catalog2026 .param-label .param-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(49, 45, 43, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.15s;
}
.catalog2026 .param-label .param-checkbox svg { opacity: 0; transition: 0.15s; }
.catalog2026 .param-label .c26-param-input:checked + .param-checkbox {
    background: var(--c26-accent);
    border-color: var(--c26-accent);
}
.catalog2026 .param-label .c26-param-input:checked + .param-checkbox svg { opacity: 1; }
.catalog2026 .param-label .param-label-main {
    flex: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
}
.catalog2026 .param-label .param-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.catalog2026 .param-label .param-count {
    color: rgba(49, 45, 43, 0.5);
    font-size: 13px;
    flex-shrink: 0;
}
.catalog2026 .param-label.c26-param-hidden { display: none; }
.catalog2026 .param-filter .c26-param-more {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 0;
    padding: 4px 0;
    color: rgba(49, 45, 43, 0.5);
    font-size: 13px;
    cursor: pointer;
}
.catalog2026 .param-filter .c26-param-more:hover { color: var(--c26-text); }
.catalog2026 .param-filter .c26-param-more svg { transition: 0.2s; }
.catalog2026 .param-filter .c26-param-more.is-open svg { transform: rotate(180deg); }

.catalog2026 .c26-filter-reset {
    margin-top: 16px;
    background: none;
    border: 0;
    padding: 8px 0;
    color: var(--c26-accent);
    font-size: 14px;
    cursor: pointer;
}
.catalog2026 .c26-filter-reset:hover { text-decoration: underline; }

.catalog2026 .listing__items.c26-loading {
    opacity: 0.45;
    transition: opacity 0.2s;
    pointer-events: none;
}

/* bot-banner — оставляем только в футере (футер вне .catalog2026 main) */
.catalog2026 .bot-banner { display: none; }

/* ===== reviews25 ====================================================== */
.catalog2026 .reviews25 { margin: 0; padding: 48px 0; overflow: hidden; }
.catalog2026 .reviews25 .container {
    max-width: var(--c26-max);
    margin: 0 auto;
    padding: 0 16px;
}
.catalog2026 .reviews25 .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.catalog2026 .reviews25 .title {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: var(--c26-text);
}
.catalog2026 .reviews25 .user {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFEFEA;
    flex-shrink: 0;
}
.catalog2026 .reviews25 .slider {
    margin-bottom: 32px;
}
.catalog2026 .reviews25 .swiper-slide {
    background: #FFF;
    padding: 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    max-width: 600px;
    box-sizing: border-box;
    height: auto;
    cursor: pointer;
}
.catalog2026 .reviews25 .text {
    font-size: 16px;
    line-height: 24px;
    color: var(--c26-text);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.catalog2026 .reviews25 .info {
    display: flex;
    gap: 16px;
    align-items: center;
}
.catalog2026 .reviews25 .info span {
    font-size: 16px;
    font-weight: 500;
    color: var(--c26-text);
}
.catalog2026 .reviews25 .slider-controls {
    width: 100%;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.catalog2026 .reviews25 .slider-prev,
.catalog2026 .reviews25 .slider-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(49, 45, 43, 0.05);
    cursor: pointer;
    flex-shrink: 0;
}
.catalog2026 .reviews25 .pagination {
    display: flex;
    width: fit-content;
    gap: 8px;
    padding: 20px 24px;
    border-radius: 999px;
    background: rgba(49, 45, 43, 0.05);
}
.catalog2026 .reviews25 .pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    opacity: 1;
    background: rgba(49, 45, 43, 0.2);
    border-radius: 50%;
}
.catalog2026 .reviews25 .pagination .swiper-pagination-bullet-active {
    background: var(--c26-text);
}

/* попап с фуллтекстом отзыва */
.catalog2026 .bf-review25-popup,
.bf-review25-popup {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.bf-review25-popup[hidden] { display: none; }
.bf-review25-popup__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.bf-review25-popup__box {
    position: relative; background: #FFF; border-radius: 16px;
    max-width: 640px; width: 100%; max-height: 80vh; overflow: auto;
    padding: 32px 28px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.bf-review25-popup__close {
    position: absolute; top: 8px; right: 12px;
    background: none; border: 0;
    font-size: 32px; line-height: 1; cursor: pointer; color: #888;
}
.bf-review25-popup__close:hover { color: #312D2B; }
.bf-review25-popup__name { font-weight: 600; margin-bottom: 12px; color: #FE5D26; font-size: 16px; }
.bf-review25-popup__text { font-size: 15px; line-height: 22px; color: #312D2B; white-space: pre-wrap; }

@media (max-width: 768px) {
    .catalog2026 .reviews25 { padding: 24px 0; }
    .catalog2026 .reviews25 .title { font-size: 24px; line-height: 32px; }
    .catalog2026 .reviews25 .top { margin-bottom: 20px; }
    .catalog2026 .reviews25 .swiper-slide { padding: 20px; border-radius: 16px; }

    /* Стрелок prev/next на мобиле нет (как в 116 batut.css 6764-6766). */
    .catalog2026 .reviews25 .slider-prev,
    .catalog2026 .reviews25 .slider-next {
        display: none !important;
    }
    /* Пагинация — dynamic-bullets (5 точек, scale 0.33/0.66/1).
       Один-в-один из 116. Pill-фона нет на мобиле. */
    .catalog2026 .reviews25 .pagination {
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        transform: none !important;
    }
    .catalog2026 .reviews25 .pagination .swiper-pagination-bullet,
    .catalog2026 .reviews25 .pagination span {
        opacity: 1 !important;
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background-color: rgba(49, 45, 43, 0.2) !important;
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px) !important;
    }
    .catalog2026 .reviews25 .pagination .swiper-pagination-bullet-active {
        background-color: #312D2B !important;
    }
}

/* ===== catalog-popular25 ============================================== */
.catalog2026 .catalog-popular25 { padding: 48px 0; }
.catalog2026 .catalog-popular25 .container {
    max-width: var(--c26-max);
    margin: 0 auto;
    padding: 0 16px;
}
.catalog2026 .catalog-popular25 .title {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--c26-text);
    text-align: left;
}
.catalog2026 .catalog-popular25 .slider-mobile .swiper-wrapper,
.catalog2026 .catalog-popular25 .inner1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.catalog2026 .catalog-popular25 .inner1 .card {
    text-align: center;
}
.catalog2026 .catalog-popular25 .inner1 .card img {
    width: 100%;
    max-width: 240px;
    margin: 24px auto 0;
    display: block;
    aspect-ratio: 480 / 204;
    object-fit: cover;
    border-radius: 12px;
}
.catalog2026 .catalog-popular25 .inner1 .card span {
    padding: 8px 32px 24px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.catalog2026 .catalog-popular25 .card {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    border: 1px solid transparent;
    text-decoration: none !important;
    color: var(--c26-text);
    display: block;
}
.catalog2026 .catalog-popular25 .card:hover {
    border: 1px solid var(--c26-accent);
    box-shadow: 0 0 0 2px rgba(254, 93, 38, 0.16);
}
.catalog2026 .catalog-popular25 .card-one { padding: 24px; }
.catalog2026 .catalog-popular25 .card-one:hover {
    border: 1px solid transparent !important;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08) !important;
}
.catalog2026 .catalog-popular25 .icon {
    margin-bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #FFEFEA;
    display: flex;
    align-items: center;
    justify-content: center;
}
.catalog2026 .catalog-popular25 .card .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    padding: 0;
}
.catalog2026 .catalog-popular25 .card-one .text-one {
    color: rgba(49, 45, 43, 0.5);
}
.catalog2026 .catalog-popular25 .card .accent-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 50px;
    color: var(--c26-text);
}
.catalog2026 .catalog-popular25 .slider-pagination {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}
.catalog2026 .catalog-popular25 .slider-pagination .swiper-pagination-bullet {
    background: rgba(49, 45, 43, 0.2);
    opacity: 1;
}
.catalog2026 .catalog-popular25 .slider-pagination .swiper-pagination-bullet-active {
    background: var(--c26-accent);
}

@media (max-width: 1268px) {
    .catalog2026 .catalog-popular25 .slider-mobile .swiper-wrapper,
    .catalog2026 .catalog-popular25 .inner1 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .catalog2026 .catalog-popular25 { padding: 24px 0; }
    .catalog2026 .catalog-popular25 .title { font-size: 24px; line-height: 32px; margin-bottom: 20px; }
    .catalog2026 .catalog-popular25 .slider-mobile .swiper-wrapper {
        display: flex;
        gap: 0;
    }
    /* На мобиле .inner1 — нативный snap-слайдер (без Swiper). */
    .catalog2026 .catalog-popular25 .inner1 {
        display: flex !important;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 16px;
        padding: 0 16px 4px;
        margin: 0 -16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .catalog2026 .catalog-popular25 .inner1::-webkit-scrollbar { display: none; }
    .catalog2026 .catalog-popular25 .inner1 .card {
        flex: 0 0 65%;
        scroll-snap-align: start;
    }
    .catalog2026 .catalog-popular25 .card .accent-title { margin-bottom: 24px; }
    .catalog2026 .catalog-popular25 .slider-pagination { display: none !important; }
}

/* ===== order-info25 =================================================== */
.catalog2026 .order-info25 {
    padding: 48px 0;
    --accent: var(--c26-accent);
}
.catalog2026 .order-info25 .container {
    max-width: var(--c26-max);
    margin: 0 auto;
    padding: 0 16px;
}
.catalog2026 .order-info25 .column-mobile { display: none; }
.catalog2026 .order-info25 .title {
    margin-bottom: 32px;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: var(--c26-text);
}
.catalog2026 .order-info25 .inner {
    display: flex;
    gap: 32px;
    justify-content: center;
}
.catalog2026 .order-info25 .column {
    max-width: 384px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.catalog2026 .order-info25 .column-left {
    gap: 116px;
    transition: 0.7s ease-in;
    transform: translateX(50%);
    opacity: 0;
}
.catalog2026 .order-info25 .column-right {
    padding-top: 115px;
    gap: 116px;
    transition: 0.7s ease-in;
    transform: translateX(-50%);
    opacity: 0;
}
.catalog2026 .order-info25 .item {
    display: flex;
    gap: 16px;
    padding-top: 16px;
}
.catalog2026 .order-info25 .item .number {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    flex-grow: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: var(--c26-accent);
}
.catalog2026 .order-info25 .item .content {
    padding-top: 8px;
    max-width: 320px;
}
.catalog2026 .order-info25 .item-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 12px;
    color: var(--c26-text);
}
.catalog2026 .order-info25 .text {
    font-size: 16px;
    line-height: 24px;
    color: rgba(49, 45, 43, 0.5);
}
.catalog2026 .order-info25 .lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 16px;
    min-width: 16px;
    gap: 8px;
    padding-top: 30px;
    opacity: 0;
    transition: 0.6s ease;
}
.catalog2026 .order-info25 .lines.show { opacity: 1; }
.catalog2026 .order-info25 .lines .circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(49, 45, 43, 0.1);
}
.catalog2026 .order-info25 .lines .line {
    width: 2px;
    height: 84px;
    background-color: rgba(49, 45, 43, 0.1);
}
.catalog2026 .order-info25 .lines .line span {
    display: block;
    background-color: var(--c26-accent);
    height: 0;
    width: 100%;
    transition: 0.6s ease;
}
.catalog2026 .order-info25 .lines-item { transition: 0.4s; }
.catalog2026 .order-info25 .lines-item.show.circle { background-color: var(--c26-accent) !important; }
.catalog2026 .order-info25 .lines-item.show span { height: 84px !important; }
.catalog2026 .order-info25.animate .column-left { transform: translateX(0); opacity: 1; }
.catalog2026 .order-info25.animate .column-right { transform: translateX(0); opacity: 1; }

@media (max-width: 768px) {
    .catalog2026 .order-info25 { padding: 24px 0; }
    .catalog2026 .order-info25 .title { font-size: 24px; line-height: 32px; margin-bottom: 24px; text-align: start; }
    .catalog2026 .order-info25 .inner { gap: 24px; }
    .catalog2026 .order-info25 .lines { order: -1; }
    .catalog2026 .order-info25 .column { display: none; }
    .catalog2026 .order-info25 .column-mobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .catalog2026 .order-info25 .item-title { font-size: 20px; line-height: 25px; margin-bottom: 12px; }
    .catalog2026 .order-info25 .lines .line { height: 117px; }
    .catalog2026 .order-info25 .lines-item.show span { height: 117px !important; }
    .catalog2026 .order-info25 .text { height: 72px; }
}

/* ===== price-info ===================================================== */
.catalog2026 .price-info { padding: 48px 0; }
.catalog2026 .price-info .container {
    max-width: var(--c26-max);
    margin: 0 auto;
    padding: 0 16px;
}
.catalog2026 .price-info .inner {
    padding: 40px;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
    display: grid;
    grid-template-columns: 1fr 270px 270px;
    gap: 12px;
}
.catalog2026 .price-info .content .title {
    max-width: 431px;
    color: var(--c26-text);
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 24px;
}
.catalog2026 .price-info .content p {
    max-width: 431px;
    color: var(--c26-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.catalog2026 .price-info .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.catalog2026 .price-info .box .top {
    padding: 8px 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 73px;
    position: relative;
    z-index: 2;
}
.catalog2026 .price-info .box .top span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.catalog2026 .price-info .box1 { background: var(--c26-accent); }
.catalog2026 .price-info .box1 p {
    position: relative;
    z-index: 2;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.catalog2026 .price-info .box1 .top { background: #FFEFEA; }
.catalog2026 .price-info .box1 .top span { color: var(--c26-accent); }
.catalog2026 .price-info .box1 .bg {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.catalog2026 .price-info .box2 { background: rgba(49, 45, 43, 0.05); }
.catalog2026 .price-info .box2 .top { background: #FFF; }
.catalog2026 .price-info .box2 .top span { color: var(--c26-text); }
.catalog2026 .price-info .box2 ul {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}
.catalog2026 .price-info .box2 ul li {
    list-style-type: disc;
    color: var(--c26-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 768px) {
    .catalog2026 .price-info { padding: 24px 0; margin-top: -48px; }
    .catalog2026 .price-info .inner { display: flex; flex-direction: column; padding: 16px; }
    .catalog2026 .price-info .content .title { font-size: 24px; line-height: 32px; }
    .catalog2026 .price-info .content p { font-size: 14px; line-height: 20px; margin-bottom: 12px; }
    .catalog2026 .price-info .box .top { margin-bottom: 24px; }
}

/* ===== seo-block25 (SEO-блок с картинкой и «Раскрыть») =============== */
.catalog2026 .seo-block25 {
    padding: 48px 0;
}
.catalog2026 .seo-block25 .container {
    max-width: var(--c26-max);
    margin: 0 auto;
    padding: 0 16px;
}
.catalog2026 .seo-block25 .inner {
    display: flex;
    gap: 48px;
    position: relative;
    align-items: flex-start;
}
.catalog2026 .seo-block25 .content {
    max-width: 576px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--c26-text);
}
.catalog2026 .seo-block25 .img-box {
    max-width: 576px;
    overflow: hidden;
    border-radius: 16px;
    position: sticky;
    top: 115px;
}
.catalog2026 .seo-block25 .img-box img {
    width: 100%;
    display: block;
}
.catalog2026 .seo-block25 .textbox {
    transition: 0.3s;
    height: 341px;
    overflow: hidden;
}
.catalog2026 .seo-block25 .textbox.active {
    height: auto;
}
.catalog2026 .seo-block25 .textbox p {
    margin-bottom: 24px;
}
.catalog2026 .seo-block25 .textbox p:last-child {
    margin-bottom: 0;
}
.catalog2026 .seo-block25 .textbox h2,
.catalog2026 .seo-block25 .textbox .title {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 24px;
    color: var(--c26-text);
}
.catalog2026 .seo-block25 .textbox ul {
    margin-left: 20px;
    margin-bottom: 24px;
}
.catalog2026 .seo-block25 .textbox ul li {
    list-style-type: disc;
}
.catalog2026 .seo-block25 .btn-more {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 24px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.catalog2026 .seo-block25 .btn-more span {
    color: rgba(49, 45, 43, 0.5);
    font-size: 16px;
}
.catalog2026 .seo-block25 .btn-more.active svg {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .catalog2026 .seo-block25 { padding: 24px 0; }
    .catalog2026 .seo-block25 .inner {
        flex-direction: column-reverse;
        gap: 24px;
    }
    .catalog2026 .seo-block25 .img-box {
        position: static;
        max-width: 100%;
    }
    .catalog2026 .seo-block25 .content {
        max-width: 100%;
    }
    .catalog2026 .seo-block25 .textbox h2,
    .catalog2026 .seo-block25 .textbox .title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 16px;
    }
    .catalog2026 .seo-block25 .textbox p { margin-bottom: 16px; }
    /* На мобиле — раскрытый текст, без collapse: 341px от десктопа
       тут смысла не имеет (узкая колонка, текст переносится). Кнопка
       "Показать ещё" не нужна — убираем. */
    .catalog2026 .seo-block25 .textbox {
        height: auto !important;
    }
    .catalog2026 .seo-block25 .btn-more { display: none !important; }
}
