

/* Start:/local/templates/izzi/components/bitrix/news.list/hero_banner/style.css?17688130895290*/
.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-banner__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-banner__slider .swiper-wrapper {
    height: 100%;
}

.hero-banner__slide {
    position: relative;
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

/* Стрелки навигации */
.hero-banner__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(23, 26, 27, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-banner__nav:hover {
    background-color: rgba(23, 26, 27, 0.8);
}

.hero-banner__nav svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.hero-banner__nav--prev {
    left: 20px;
}

.hero-banner__nav--next {
    right: 20px;
}

.hero-banner__nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

/* Пагинация */
.hero-banner__pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-banner__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 1;
    transition: background-color 0.3s;
    cursor: pointer;
}

.hero-banner__pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}

/* Фоновое видео */
.hero-banner__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner__bg-video--desktop {
    display: block;
}

.hero-banner__bg-video--mobile {
    display: none;
}

/* Кнопки управления видео */
.hero-banner__video-controls {
    position: absolute;
    bottom: 30px;
    right: 20px;
    z-index: 15;
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.hero-banner__video-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(23, 26, 27, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #fff;
}

.hero-banner__video-btn:hover {
    background-color: rgba(23, 26, 27, 0.8);
}

.hero-banner__video-icon {
    width: 20px;
    height: 20px;
}

/* Play/Pause состояния */
.hero-banner__video-btn--play[data-playing="true"] .hero-banner__video-icon--play {
    display: none;
}

.hero-banner__video-btn--play[data-playing="true"] .hero-banner__video-icon--pause {
    display: block;
}

.hero-banner__video-btn--play[data-playing="false"] .hero-banner__video-icon--play {
    display: block;
}

.hero-banner__video-btn--play[data-playing="false"] .hero-banner__video-icon--pause {
    display: none;
}

/* Mute/Unmute состояния */
.hero-banner__video-btn--mute[data-muted="true"] .hero-banner__video-icon--muted {
    display: block;
}

.hero-banner__video-btn--mute[data-muted="true"] .hero-banner__video-icon--unmuted {
    display: none;
}

.hero-banner__video-btn--mute[data-muted="false"] .hero-banner__video-icon--muted {
    display: none;
}

.hero-banner__video-btn--mute[data-muted="false"] .hero-banner__video-icon--unmuted {
    display: block;
}

/* Скрываем десктопную картинку когда есть видео */
.hero-banner__bg-image--hidden-desktop {
    display: none;
}

@media (max-width: 1023px) {
    /* На планшетах показываем картинку под видео для fallback */
    .hero-banner__bg-image--hidden-desktop {
        display: block;
    }
}

@media (max-width: 767px) {
    /* На мобильных скрываем десктопную картинку если есть видео */
    .hero-banner__bg-image--hidden-desktop {
        display: none;
    }

    /* Переключаем видео: скрываем desktop, показываем mobile */
    .hero-banner__bg-video--desktop {
        display: none;
    }

    .hero-banner__bg-video--mobile {
        display: block;
    }

    .hero-banner__nav {
        width: 40px;
        height: 40px;
    }

    .hero-banner__nav svg {
        width: 16px;
        height: 16px;
    }

    .hero-banner__nav--prev {
        left: 10px;
    }

    .hero-banner__nav--next {
        right: 10px;
    }

    .hero-banner__pagination {
        bottom: 20px;
    }

    .hero-banner__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .hero-banner__video-controls {
        bottom: 20px;
        right: 10px;
        gap: 8px;
    }

    .hero-banner__video-btn {
        width: 36px;
        height: 36px;
    }

    .hero-banner__video-icon {
        width: 16px;
        height: 16px;
    }

    .hero-banner__inner {
        display: flex;
        flex-direction: column;
    }

    .hero-banner__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding-bottom: 0 !important;
    }

    .hero-banner__btn {
        margin-top: auto !important;
        margin-bottom: 40px;
    }
}

/* End */


/* Start:/local/templates/izzi/components/bitrix/catalog.element/model/style.css?17703611548042*/
/**
 * Стили для шаблона catalog.element модели
 * Основные стили подключаются из HTML верстки (SCSS)
 * Здесь только дополнительные стили для Bitrix-специфики
 */

/* Видео модальное окно */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal__content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 1;
}

.video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.video-modal__close:hover {
    opacity: 1;
}

.video-modal__video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-modal__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Состояния кнопки корзины */
.product-card__button--loading {
    opacity: 0.7;
    pointer-events: none;
}

.product-card__button--success {
    background-color: #00a9a7 !important;
}

.product-card__button--error {
    background-color: #ef6150 !important;
}

.product-card__button--disabled {
    background-color: #9a9a9a !important;
    cursor: not-allowed;
}

/* Плейсхолдер для отсутствующего изображения */
.product-card__no-image {
    display: block;
    width: 100%;
    padding-bottom: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* Блокировка скролла при открытом модальном окне */
body.modal-open {
    overflow: hidden;
}

/* Исправление products-grid - картинка должна ужиматься по высоте карточек */
.products-grid__inner {
    display: grid;
    align-items: start;
}

.products-grid__image {
    position: relative;
    height: 100%;
    min-height: 0;
}

.products-grid__image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.products-grid__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-block__title {
    font-size: clamp(1.375rem, 1.336rem + .16vw, 1.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.22 !important;
}

.text-block__description {
    font-size: clamp(.75rem, .711rem + .16vw, .875rem) !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
}

@media (max-width: 1023px) {
    .products-grid__image {
        position: relative;
        height: auto;
        aspect-ratio: 674 / 928;
    }

    .products-grid__image picture {
        position: static;
    }
}

/* Hero Banner Slider */
.catalog-element .hero-banner {
    --header-height: 111px; /* Высота шапки desktop */
    position: relative;
    overflow: hidden;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    background: none;
}

.catalog-element .hero-banner__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.catalog-element .hero-banner__slider .swiper-wrapper {
    height: 100%;
}

.catalog-element .hero-banner__slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

/* Фоновые изображения слайда */
.catalog-element .hero-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.catalog-element .hero-banner__bg-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.catalog-element .hero-banner__bg-image--mobile {
    display: none;
}

/* Фоновое видео слайда */
.catalog-element .hero-banner__bg-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.catalog-element .hero-banner__bg-video--mobile {
    display: none;
}

/* Кнопка воспроизведения видео */
.catalog-element .hero-banner__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.catalog-element .hero-banner__play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.catalog-element .hero-banner__play-button svg {
    display: block;
}

/* Стрелки навигации */
.catalog-element .hero-banner__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(23, 26, 27, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.catalog-element .hero-banner__nav:hover {
    background-color: rgba(23, 26, 27, 0.8);
}

.catalog-element .hero-banner__nav svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.catalog-element .hero-banner__nav--prev {
    left: 20px;
}

.catalog-element .hero-banner__nav--next {
    right: 20px;
}

.catalog-element .hero-banner__nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

/* Пагинация */
.catalog-element .hero-banner__pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.catalog-element .hero-banner__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 1;
    transition: background-color 0.3s;
    cursor: pointer;
}

.catalog-element .hero-banner__pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}

@media (max-width: 1023px) {
    .catalog-element .hero-banner {
        --header-height: 60px; /* Высота шапки mobile/tablet */
        height: auto;
    }

    .catalog-element .hero-banner__slide {
        height: auto;
    }

    .catalog-element .hero-banner__bg {
        position: relative;
        height: auto;
    }

    .catalog-element .hero-banner__bg-image {
        height: auto;
        max-height: calc(100vh - 60px);
        max-height: calc(100dvh - 60px);
        object-fit: contain;
        object-position: center top;
    }

    .catalog-element .hero-banner__bg-image--desktop {
        display: none;
    }

    .catalog-element .hero-banner__bg-image--mobile {
        display: block;
    }

    .catalog-element .hero-banner__bg-video {
        height: auto;
        max-height: calc(100vh - 60px);
        max-height: calc(100dvh - 60px);
        object-fit: contain;
        object-position: center top;
    }

    .catalog-element .hero-banner__bg-video--desktop {
        display: none;
    }

    .catalog-element .hero-banner__bg-video--mobile {
        display: block;
    }

    .catalog-element .hero-banner__nav {
        width: 40px;
        height: 40px;
    }

    .catalog-element .hero-banner__nav svg {
        width: 16px;
        height: 16px;
    }

    .catalog-element .hero-banner__nav--prev {
        left: 10px;
    }

    .catalog-element .hero-banner__nav--next {
        right: 10px;
    }

    .catalog-element .hero-banner__pagination {
        bottom: 20px;
    }

    .catalog-element .hero-banner__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .catalog-element .hero-banner__play-button svg {
        width: 50px;
        height: 50px;
    }
}

/* End */
/* /local/templates/izzi/components/bitrix/news.list/hero_banner/style.css?17688130895290 */
/* /local/templates/izzi/components/bitrix/catalog.element/model/style.css?17703611548042 */
