

/* Start:/local/templates/eco_26/components/bitrix/catalog/eco_complex/style.css?178005502717805*/


/* ==========================================================================
   Moved from /local/templates/eco_26/css/catalog.css
   Component scope: bitrix:catalog template "eco_complex".
   Catalog toolbar, sorting, premium category header, and SEO text controls belong to the complex catalog page.
   ========================================================================== */

/* ========================================= */
/* 1. TOOLBAR & SORTING                      */
/* ========================================= */

.catalog-toolbar {
    background-color: #ffffff; /* White background for contrast */
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    z-index: 100;
}

/* --- Sorting Dropdown (Seamless) --- */
#catalogSort {
    position: relative;
    display: inline-block;
}

#catalogSort .btn-sort {
    border: 1px solid transparent;
    background: transparent;
    font-family: var(--font-family-secondary);
    font-size: 0.95rem;
    color: var(--color-text-main);
    display: flex; align-items: center; gap: 8px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    z-index: 100;
    transition: background-color 0.1s, border-color 0.1s;
}

#catalogSort .btn-sort:hover { color: var(--color-secondary); }

/* Active State (Open) */
#catalogSort .dropdown-toggle.show {
    background-color: #ffffff;
    border-color: #f0f0f0;
    border-bottom-color: #ffffff;
    color: var(--color-secondary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1002;
}

/* Dropdown Menu */
#catalogSort .dropdown-menu {
    position: absolute; top: 100% !important; left: 0 !important;
    margin-top: -1px !important;
    border: 1px solid #f0f0f0 !important; border-top: none !important;
    border-radius: 0 8px 8px 8px !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    background-color: #fff !important;
    padding-top: 5px !important; padding-bottom: 8px !important;
    min-width: 100% !important; width: max-content;
    display: none; z-index: 1001;
}

#catalogSort .dropdown-menu.show {
    display: block !important;
    animation: fadeInStable 0.2s ease-out forwards;
}

@keyframes fadeInStable { from { opacity: 0; } to { opacity: 1; } }

#catalogSort .dropdown-item {
    font-size: 0.9rem !important; padding: 8px 20px !important;
    color: var(--color-text-main) !important; background: transparent !important;
    transition: color 0.2s ease;
}

#catalogSort .dropdown-item:hover {
    background-color: #f8f8f8 !important; color: var(--color-primary) !important;
}

#catalogSort .dropdown-item.active {
    background-color: var(--color-bg-light) !important;
    color: var(--color-secondary) !important;
    font-weight: 600 !important;
}

/* --- Filter Toggle Button --- */
.filter-toggle-btn {
    font-family: var(--font-family-secondary);
    font-weight: 600;
    border: 1px solid #e0e0e0;
    color: var(--color-text-main);
    border-radius: 6px;
    padding: 8px 18px;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

.filter-toggle-btn:hover {
    border-color: var(--color-secondary); color: var(--color-secondary);
    background: transparent;
}

.filter-toggle-btn[aria-expanded="true"] {
    background-color: var(--color-primary); color: #fff;
    border-color: var(--color-primary);
}

.filter-badge {
    display: block; width: 6px; height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

/* ========================================= */
/* 6. SEO TEXT BLOCK                         */
/* ========================================= */

/* --- Стили для текстового блока в каталоге --- */

/* --- Стили для текстового блока в каталоге (Masha VIP Edition) --- */

.catalog-middle-text {
    max-width: 100%;
    margin-top: 1rem;
    margin-bottom: 3.5rem; /* Хорошо отбиваем текст от идущих ниже карточек товаров */
}

.catalog-middle-text .text-content-wrapper {
    /* 1. Классический шрифт */
    font-family: var(--font-family-base);

    /* 2. Делаем размер чуть крупнее и плавнее (clamp спасет на разных экранах) */
    font-size: clamp(1.1rem, 1.2vw, 1.25rem);

    /* 3. Цвет приглушаем, чтобы не бил по глазам жестким контрастом */
    color: var(--color-text-main);
    opacity: 0.85;

    /* 4. Даем тексту дышать! line-height 1.4 — это мало для премиума */
    line-height: 1.75;

    /* 5. Идеальная длина строки для чтения */
    /* max-width: 900px; */

    /* 6. Добавляем изящную акцентную линию слева */
    padding-left: 1.8rem;
    border-left: 2px solid var(--color-secondary);
}

/* 7. Премиальная фишка: Классическая Буквица для первого символа текста */
.catalog-middle-text .text-content-wrapper::first-letter {
    float: left;
    font-size: 3.6em;
    color: var(--color-primary); /* Берем цвет главного заголовка */
    line-height: 0.8;
    padding-right: 0.15em;
    padding-top: 0.05em;
    font-weight: 600;
}
/* Оформляем заголовки внутри текста, чтобы они выделялись */
.catalog-middle-text .text-content-wrapper h2,
.catalog-middle-text .text-content-wrapper h3 {
    font-family: var(--font-family-base);
    color: var(--color-primary); /* Твой фирменный зеленый */
    font-weight: var(--font-weight-medium);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center; /* Заголовки по центру смотрятся премиально */
}

.catalog-middle-text .text-content-wrapper h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Адаптивный размер */
}

/* Буквица (первая буква большая) - если хочешь совсем "дорого-богато" */
/* Раскомментируй, если нравится эффект */
/*
.text-content-wrapper > p:first-child::first-letter {
    float: left;
    font-size: 3.5rem;
    line-height: 0.8;
    padding-right: 10px;
    padding-top: 5px;
    color: var(--color-secondary);
    font-family: var(--font-family-base);
}
*/

/* Списки внутри текста */
.catalog-middle-text .text-content-wrapper ul {
    list-style: none; /* Убираем стандартные точки */
    padding-left: 1.5rem;
}

.catalog-middle-text .text-content-wrapper ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.catalog-middle-text .text-content-wrapper ul li::before {
    /* Делаем красивые золотые буллеты вместо точек */
    content: "—";
    color: var(--color-secondary); /* Твой золотой */
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

/* Ссылки внутри текста */
.catalog-middle-text .text-content-wrapper a {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-secondary-accent-light);
    transition: all 0.3s ease;
}

.catalog-middle-text .text-content-wrapper a:hover {
    color: var(--color-secondary);
    border-color: transparent;
}


/* --- Стили для блока SEO текста с "читать дальше" --- */
.seo-section-wrapper {
    margin-top: 60px; margin-bottom: 40px; padding-top: 40px;
    border-top: 1px solid rgba(185, 153, 97, 0.2);
}

.seo-text-container {
    position: relative; overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.seo-text-container.collapsed { max-height: 120px; }

.seo-content, .seo-content p {
    font-family: var(--font-family-secondary);
    color: var(--color-text-muted); text-align: justify;
}

.seo-content a { color: var(--color-text-muted); text-decoration: underline; }

@media (min-width: 992px) {
    .seo-content { column-count: 2; column-gap: 60px; }
}

.seo-content h1, .seo-content h2, .seo-content h3 {
    font-family: var(--font-family-base); color: var(--color-primary);
    margin-top: 0; font-size: 1.5rem; margin-bottom: 1rem;
    break-inside: avoid-column;
}

.seo-fade-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 80px;
    pointer-events: none; opacity: 0; transition: opacity 0.4s;
    background: linear-gradient(to bottom, rgba(243, 240, 235, 0), #f3f0eb);
}

.seo-text-container.collapsed .seo-fade-overlay { opacity: 1; }

/* Read More Button */
.btn-seo-premium {
    display: inline-flex; align-items: center; gap: 10px;
    background-color: transparent; border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    font-family: var(--font-family-secondary);
    font-size: 0.8rem; font-weight: 100; text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 30px; border-radius: 4px;
    transition: all 0.3s ease; cursor: pointer; margin-top: 20px;
}

.btn-seo-premium i {
    font-size: 0.9rem; transition: transform 0.3s; color: var(--color-secondary);
}

.btn-seo-premium:hover {
    background-color: var(--color-secondary); color: #fff;
    border-color: var(--color-header-text);
    box-shadow: 0 5px 15px rgba(185, 153, 97, 0.2);
    transform: translateY(-2px);
}

.btn-seo-premium:hover i { color: #fff; transform: translateY(2px); }
.btn-seo-premium.expanded i { transform: rotate(180deg); }

/* ========================================= */
/* PREMIUM CATEGORY HEADER (Сделано Машей 😘) */
/* ========================================= */

.premium-category-header {
    position: relative;
    padding: 60px 40px 80px;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--color-primary); /* Подстраховка */
}

.premium-category-header .breadcrumb-item a,
.premium-category-header .breadcrumb-item.active,
.premium-category-header .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.premium-category-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.4) !important;
}

.premium-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05); /* Легкий запас под анимацию если захочешь */
}

.premium-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Используем твой фирменный градиент из карточек товаров */
    background: linear-gradient(135deg, rgba(35, 57, 47, 0.95) 0%, rgba(20, 45, 35, 0.85) 50%, rgba(96, 138, 123, 0.9) 100%);
    z-index: 1;
}

.premium-title {
    font-family: var(--font-family-base, "EB Garamond", serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.premium-subtitle {
    font-family: var(--font-family-secondary);
    color: var(--color-secondary); /* Твой золотой */
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(185, 153, 97, 0.15); /* Полупрозрачный золотой */
    border: 1px solid rgba(185, 153, 97, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.5rem;
}

.premium-features span {
    font-family: var(--font-family-secondary);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .premium-category-header {
        padding: 40px 20px;
        border-radius: 5px; /* На мобилках лучше без скруглений по краям экрана */
    }
    .premium-features {
        flex-direction: column;
        gap: 20px !important;
    }
}

/* ========================================= */
/* 1. БАЗА ДЛЯ УНИВЕРСАЛЬНОГО БЛОКА SEO      */
/* ========================================= */

.seo-text-container {
    position: relative;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Сворачивается всегда (стандартный блок в подвале) */
.seo-text-container.collapse-always.collapsed {
    max-height: 120px;
}

/* Сворачивается ТОЛЬКО НА МОБИЛЬНЫХ (на десктопе развернут всегда) */
.seo-text-container.collapse-mobile.collapsed {
    max-height: none;
}

/* Прячем кнопку на десктопе для блока "только мобильные" */
@media (min-width: 769px) {
    .seo-section-wrapper.mobile-only-wrapper .btn-seo-premium {
        display: none !important;
    }
}

/* ========================================= */
/* 2. АДАПТАЦИЯ ДЛЯ ТЕМНОЙ ШАПКИ (PREMIUM)   */
/* ========================================= */

.premium-description .seo-section-wrapper {
    margin: 0;
    padding: 0;
    border-top: none;
}

.premium-description .seo-content,
.premium-description .seo-content p {
    color: inherit;
    font-family: var(--font-family-base);
    text-align: left;
    font-size: var(--text-size-fluid);
    line-height: 1.2;
}

/* МАГИЯ АЛЬФА-МАСКИ: градиентное растворение на обрезающем контейнере */
.premium-description .seo-text-container.collapsed {
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.premium-description .seo-text-container:not(.collapsed) {
    -webkit-mask-image: none;
    mask-image: none;
}

.premium-description .btn-seo-premium {
    margin-top: 5px;
    padding: 5px 0px;
    border: none;
    background: transparent;
    color: var(--color-secondary); /* Золотой цвет */
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.9rem;
    font-weight: 400;
    box-shadow: none;
}

/* МАША: Жестко глушим Bootstrap-овский фокус, чтобы не залипала белым */
.premium-description .btn-seo-premium:focus,
.premium-description .btn-seo-premium:active,
.premium-description .btn-seo-premium:focus-visible {
    color: var(--color-secondary) !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Белеет ТОЛЬКО когда мышка реально наведена */
.premium-description .btn-seo-premium:hover {
    background: transparent !important;
    color: #ffffff !important;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.premium-description .btn-seo-premium:hover i {
    transform: translateY(2px);
    color: #ffffff !important;
}

/* ========================================= */
/* 3. КОМПАКТНОСТЬ ШАПКИ НА МОБИЛКАХ (<768px)*/
/* ========================================= */

@media (max-width: 768px) {

    /* Текст в свернутом виде занимает 0 пикселей (полностью скрыт) */
    .premium-description .seo-text-container.collapsed {
        max-height: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Уменьшаем отступы самой шапки */
    .premium-category-header {
        padding: 20px 15px 25px !important;
    }

    /* Уплотняем заголовки */
    .premium-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }

    .premium-subtitle {
        font-size: 0.85rem !important;
        margin-top: 5px !important;
    }

    /* Уменьшаем отступы SEO-блока */
    .premium-description {
        margin-top: 10px !important;
    }

    .premium-description .btn-seo-premium {
        margin-top: 5px !important;
        padding: 0 !important;
        font-size: 0.85rem !important;
    }

    /* Ужимаем иконки преимуществ */
    .premium-category-header .premium-features {
        margin-top: 15px !important;
        gap: 12px !important;
    }

    .premium-category-header .feature-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }

    .premium-category-header .feature-item span {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .premium-category-header .feature-item small {
        font-size: 0.75rem;
    }
}

/* ========================================= */
/* МАША: ОДНА СТРОКА В ШАПКЕ НА ДЕСКТОПЕ     */
/* ========================================= */

@media (min-width: 769px) {
    .premium-description .seo-text-container.collapsed {
        /* Ровно одна строка (учитывая наш line-height: 1.6) */
        max-height: 0.1rem !important;

        /* Сдвигаем маску прозрачности, чтобы она съедала только самый-самый низ букв,
           иначе строка будет нечитаемой */
        -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    }
}

/* End */


/* Start:/local/templates/eco_26/components/bitrix/catalog.section.list/eco_subsections/style.css?17800550278933*/


/* ==========================================================================
   Moved from /local/templates/eco_26/css/catalog.css
   Component scope: catalog.section.list section-card templates.
   Category tile/card rules live with the section-list components that render .section-card markup.
   ========================================================================== */

/* ========================================= */
/* 5. CATEGORY CARDS (MAGAZINE STYLE)        */
/* ========================================= */

.section-card {
    display: flex; flex-direction: column; height: 100%;
    background-color: #fff; border-radius: 8px; overflow: hidden;
    text-decoration: none; position: relative;
    border: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(185, 153, 97, 0.3);
}

.section-card__img-container {
    position: relative; width: 100%; height: auto;
    background-color: #fff; padding: 0 !important; margin: 0 !important;
    overflow: hidden; display: block;
}

.section-card__img-container img {
    width: 100%; height: auto; display: block; object-fit: cover;
    transition: transform 0.6s ease;
}

.section-card:hover .section-card__img-container img { transform: scale(1.05); }

.section-card__img-container::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.2) 100%);
    opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}

.section-card:hover .section-card__img-container::after { opacity: 1; }

.section-card__title {
    padding: 18px 20px; background-color: #fff; text-align: center;
    border-top: 1px solid #f0f0f0; flex-grow: 1;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-family-base);
    font-size: 1.25rem; font-weight: 500; color: var(--color-text-main);
    line-height: 1.2; transition: color 0.3s ease;
}

.section-card:hover .section-card__title { color: var(--color-secondary); }

@media (max-width: 768px) {
    .section-card__img-container { height: auto; }
    .section-card__title { font-size: 1.2rem; padding: 10px; }
}

@media (min-width: 1500px) {
    .section-card__title { font-size: 1.5rem; padding: 24px 20px; }
}

/* ==========================================================================
   Moved from /local/templates/eco_26/css/catalog.css
   Component scope: bitrix:catalog.section.list template "eco_subsections".
   Middle category text uses .catalog-middle-text and is rendered by this component.
   ========================================================================== */

/* ========================================= */
/* 6. SEO TEXT BLOCK                         */
/* ========================================= */

/* --- Стили для текстового блока в каталоге --- */

/* --- Стили для текстового блока в каталоге (Masha VIP Edition) --- */

.catalog-middle-text {
    max-width: 100%;
    margin-top: 1rem;
    margin-bottom: 3.5rem; /* Хорошо отбиваем текст от идущих ниже карточек товаров */
}

.catalog-middle-text .text-content-wrapper {
    /* 1. Классический шрифт */
    font-family: var(--font-family-base);

    /* 2. Делаем размер чуть крупнее и плавнее (clamp спасет на разных экранах) */
    font-size: clamp(1.1rem, 1.2vw, 1.25rem);

    /* 3. Цвет приглушаем, чтобы не бил по глазам жестким контрастом */
    color: var(--color-text-main);
    opacity: 0.85;

    /* 4. Даем тексту дышать! line-height 1.4 — это мало для премиума */
    line-height: 1.75;

    /* 5. Идеальная длина строки для чтения */
    /* max-width: 900px; */

    /* 6. Добавляем изящную акцентную линию слева */
    padding-left: 1.8rem;
    border-left: 2px solid var(--color-secondary);
}

/* 7. Премиальная фишка: Классическая Буквица для первого символа текста */
.catalog-middle-text .text-content-wrapper::first-letter {
    float: left;
    font-size: 3.6em;
    color: var(--color-primary); /* Берем цвет главного заголовка */
    line-height: 0.8;
    padding-right: 0.15em;
    padding-top: 0.05em;
    font-weight: 600;
}
/* Оформляем заголовки внутри текста, чтобы они выделялись */
.catalog-middle-text .text-content-wrapper h2,
.catalog-middle-text .text-content-wrapper h3 {
    font-family: var(--font-family-base);
    color: var(--color-primary); /* Твой фирменный зеленый */
    font-weight: var(--font-weight-medium);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center; /* Заголовки по центру смотрятся премиально */
}

.catalog-middle-text .text-content-wrapper h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Адаптивный размер */
}

/* Буквица (первая буква большая) - если хочешь совсем "дорого-богато" */
/* Раскомментируй, если нравится эффект */
/*
.text-content-wrapper > p:first-child::first-letter {
    float: left;
    font-size: 3.5rem;
    line-height: 0.8;
    padding-right: 10px;
    padding-top: 5px;
    color: var(--color-secondary);
    font-family: var(--font-family-base);
}
*/

/* Списки внутри текста */
.catalog-middle-text .text-content-wrapper ul {
    list-style: none; /* Убираем стандартные точки */
    padding-left: 1.5rem;
}

.catalog-middle-text .text-content-wrapper ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.catalog-middle-text .text-content-wrapper ul li::before {
    /* Делаем красивые золотые буллеты вместо точек */
    content: "—";
    color: var(--color-secondary); /* Твой золотой */
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

/* Ссылки внутри текста */
.catalog-middle-text .text-content-wrapper a {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-secondary-accent-light);
    transition: all 0.3s ease;
}

.catalog-middle-text .text-content-wrapper a:hover {
    color: var(--color-secondary);
    border-color: transparent;
}


/* --- Стили для блока SEO текста с "читать дальше" --- */
.seo-section-wrapper {
    margin-top: 60px; margin-bottom: 40px; padding-top: 40px;
    border-top: 1px solid rgba(185, 153, 97, 0.2);
}

.seo-text-container {
    position: relative; overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.seo-text-container.collapsed { max-height: 120px; }

.seo-content, .seo-content p {
    font-family: var(--font-family-secondary);
    color: var(--color-text-muted); text-align: justify;
}

.seo-content a { color: var(--color-text-muted); text-decoration: underline; }

@media (min-width: 992px) {
    .seo-content { column-count: 2; column-gap: 60px; }
}

.seo-content h1, .seo-content h2, .seo-content h3 {
    font-family: var(--font-family-base); color: var(--color-primary);
    margin-top: 0; font-size: 1.5rem; margin-bottom: 1rem;
    break-inside: avoid-column;
}

.seo-fade-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 80px;
    pointer-events: none; opacity: 0; transition: opacity 0.4s;
    background: linear-gradient(to bottom, rgba(243, 240, 235, 0), #f3f0eb);
}

.seo-text-container.collapsed .seo-fade-overlay { opacity: 1; }

/* Read More Button */
.btn-seo-premium {
    display: inline-flex; align-items: center; gap: 10px;
    background-color: transparent; border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    font-family: var(--font-family-secondary);
    font-size: 0.8rem; font-weight: 100; text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 30px; border-radius: 4px;
    transition: all 0.3s ease; cursor: pointer; margin-top: 20px;
}

.btn-seo-premium i {
    font-size: 0.9rem; transition: transform 0.3s; color: var(--color-secondary);
}

.btn-seo-premium:hover {
    background-color: var(--color-secondary); color: #fff;
    border-color: var(--color-header-text);
    box-shadow: 0 5px 15px rgba(185, 153, 97, 0.2);
    transform: translateY(-2px);
}

.btn-seo-premium:hover i { color: #fff; transform: translateY(2px); }
.btn-seo-premium.expanded i { transform: rotate(180deg); }

/* End */


/* Start:/local/templates/eco_26/components/bitrix/catalog.section/section_block/style.css?1776855489241*/
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* End */
/* /local/templates/eco_26/components/bitrix/catalog/eco_complex/style.css?178005502717805 */
/* /local/templates/eco_26/components/bitrix/catalog.section.list/eco_subsections/style.css?17800550278933 */
/* /local/templates/eco_26/components/bitrix/catalog.section/section_block/style.css?1776855489241 */
