

/* Start:/local/components/dev/catalog/templates/.default/style.css?17774126983074*/
.collection_banner_grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px; /* Компенсируем padding у дочерних элементов */
    margin-bottom: 10px;
}

.collection_banner_grid > div {
    flex: 0 0 calc(50% - 20px); /* 50% ширины минус отступы */
    margin: 10px; /* Равномерные отступы со всех сторон */
    box-sizing: border-box;

}
.collection_banner_grid a img{
    transition: all .5s ease;
}
.collection_banner_grid a:hover img {
    transform: scale(0.95);
}

.collection_banner_grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.collection-picture img{
    transition: all .5s ease;
}
.collection-picture:hover img{
    transform: scale(0.95);
}
@media (max-width: 1290px) {
    .collection_banner_grid {
        margin: -1%; /* Компенсируем margin дочерних элементов */
        margin-bottom: 1%;
    }
    .collection_banner_grid > div {
        flex: 0 0 calc(50% - 2%); /* 50% ширины минус 2% margin с каждой стороны */
        margin: 1%; /* Отступы 1% со всех сторон (1% + 1% = 2% между элементами) */
        box-sizing: border-box;
    }

}
@media (max-width: 730px) {
    .collection_banner_grid > div{
        width: 100%;
        flex: 0 0 100%;
        padding-right: 10px;
    }
}

.collection-desc{
    text-align: center;
    margin:10px 15px;
}
.collection-desc p{
    margin-bottom: 10px;
}
.collection-desc .collection_h1{
    font-size: 24px;
    font-weight: bold;
}
.collection-desc .collection_bold{
    font-weight: bold;
}
.catalog-search-empty {
    width: 100%;
    max-width: 760px;
    margin: 40px auto 80px;
    text-align: center;
}
.catalog-search-empty__title {
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}
.catalog-search-empty__text {
    margin-bottom: 24px;
    font-size: 16px;
}
.catalog-search-empty__form {
    display: flex;
    width: 100%;
    border: 1px solid #d9d9d9;
}
.catalog-search-empty__input {
    flex: 1;
    min-width: 0;
    height: 58px;
    padding: 0 20px;
    border: 0;
    font-size: 18px;
}
.catalog-search-empty__button {
    min-width: 150px;
    height: 58px;
    border: 0;
    background: #1f1f1f;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}
@media (max-width: 540px) {
    .collection-desc .collection_h1 {
        font-size: 20px;
    }

    .collection-desc p {
        font-size: 14px;
    }
    .catalog-search-empty {
        margin: 24px auto 48px;
    }
    .catalog-search-empty__title {
        font-size: 24px;
    }
    .catalog-search-empty__form {
        display: block;
        border: 0;
    }
    .catalog-search-empty__input,
    .catalog-search-empty__button {
        width: 100%;
    }
    .catalog-search-empty__input {
        border: 1px solid #d9d9d9;
    }
}
/* End */


/* Start:/local/components/dev/catalog.detail/templates/2025/style.css?17775359768465*/
.cardRight .sliderBlockSliderPriceList li{
    margin-right: 15px;
}
.cardBlock__viewBtn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 5px;
    font: 500 13px/1 'Manrope', sans-serif;
    color: #141414;
    box-shadow: 0 4px 12px rgba(20, 20, 20, 0.14);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.cardBlock__viewBtn img {
    width: 15px;
    height: 15px;
    display: block;
}

.cardBlock__viewBtnText {
    display: block;
}

.cardRightYandex {
    margin-top: 21px;
    justify-content: space-between!important;
    align-items: center !important;
}

.cardRightYandex .art{
    font: normal normal 14px 'Manrope', sans-serif;
    color: #141414;
}
@media (max-width: 730px) {
    .b24-widget-button-inner-container {
        position: absolute!important;
        top: -193px!important;
        left: -22px!important;
    }
}
@media (max-width: 650px) {
    .footer {
        padding-bottom: 120px!important;
    }
}

/********************************/
/********************************/
/********************************/
/* Превью-блок внизу слева */
.video-preview {
    position:fixed;
    bottom:140px;
    left:20px;
    z-index: 1000;
    width: 120px;
    height: 210px;
    border: 3px solid #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius:8px;
    cursor:pointer;
    background-color:#f9f9f9;
    transition:transform 0.3s;
}
.video-preview:hover {
    border-color: #1B1B1B;
    transform:scale(1.1);
}
.video-preview video {
    width:100%;
    height:100%;
    object-fit:cover;
}
.video-preview .play-overlay {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:24px;
    color:white;
    opacity:0.7;
    pointer-events:none; /* Не мешает клику */
}
/* Крестик для закрытия превью - скрыт по умолчанию */
.video-preview .close-preview {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    background:rgba(0,0,0,0.6);
    width: 24px;
    height: 24px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.video-preview:hover .close-preview {
    background: #000;
}
@media (min-width: 651px) {
    .video-preview {
        display:none!important;
    }
}
/********************************/
/********************************/
/********************************/
.cardRightBottom .h3 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: normal;
}


/********************************/
/* Блок характеристик в попапе */
.popupPropBody {
    padding: 20px;
}

.popupPropBody .popupPropTitle {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
}

.popupPropList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popupPropItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 400;
    color: #141414;
}

.popupPropItem:last-child {
    border-bottom: none;
}
.popupPropItem__value {
    text-align: right;
    color: #141414;
}

.popupPropItem__value a {
    color: #141414;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.popupPropItem__value a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Скролл для блока характеристик на маленьких экранах */
@media (max-width: 767px) {
    .popupPropBody {
        max-height: calc(100% - 45px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }
    
    .popupPropBody::-webkit-scrollbar {
        width: 4px;
    }
    
    .popupPropBody::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .popupPropBody::-webkit-scrollbar-thumb {
        background: #e5e5e5;
        border-radius: 2px;
    }
    
    .popupPropBody::-webkit-scrollbar-thumb:hover {
        background: #d0d0d0;
    }
}










/***************************/
.cardLinks {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.5;
}

.cardLinksItem {
    border-bottom: 1px solid #808080;
}

.cardLinksItem:last-child {
    border-bottom: none;
}

.cardLinksLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    color: #141414;
    text-decoration: none;
    transition: opacity 0.2s ease;
}


.cardLinksTitle {
    font-weight: 400;
}
.cardLinksTitle h2{
    font-size: 16px;
    font-weight: normal;
}

.cardLinksArrow {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.cardLinksArrow::before,
.cardLinksArrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 1px;
    background-color: #141414;
    transform-origin: right center;
}

.cardLinksArrow::before {
    transform: translateY(-50%) rotate(-45deg);
}

.cardLinksArrow::after {
    transform: translateY(-50%) rotate(45deg);
}


.cardLinksTextCollapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cardLinksToggle {
    margin-top: 12px;
    display: inline-block;
    cursor: pointer;
    color: #141414;
    text-decoration: underline;
    font-size: 14px;
    text-underline-offset: 2px;
}

.cardLinksToggle:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .cardLinks {
        margin-top: 24px;
    }

    .cardLinksLink {
        padding: 12px 0;
    }
}

/* Общие стили для слайдера размеров */
.sliderSize {
    margin-bottom: 60px;
    position: relative;
}
/*
.sliderSize > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.sliderSize > div img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
*/
.sliderSize  .sliderSizeText{
    text-align: center;
    margin: 40px 0px;
}
.sliderSize img{
    margin: 0 auto;
}
/* Стили для стрелок навигации слайдера */
.sliderSize .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sliderSize .slick-arrow:hover {
    background: #fff;
    border-color: #141414;
}

.sliderSize .slick-arrow svg {
    width: 20px;
    height: 20px;
}

.sliderSize .slick-prev {
    left: 10px;
}

.sliderSize .slick-next {
    right: 10px;
}

.sliderSize .slick-arrow.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Стили для точек навигации слайдера */
.sliderSize .slick-dots {
    position: absolute;
    width: 100%;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.sliderSize .slick-dots li {
    display: inline-block;
    margin: 0 5px !important;
    opacity:1!important;
    height: 1px !important;
}

.sliderSize .slick-dots li button {
    display: block;
    width: 30px;
    height: 1px;
    cursor: pointer;
    color: transparent;
    border: 0px;
    outline: 0px;
}

.sliderSize .slick-dots li button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 1px;
    background: #808080;
}

.sliderSize .slick-dots li.slick-active button:before {
    background: #141414;
}

@media (max-width: 767px) {
    .sliderSize > div {
        padding: 15px;
    }
}
/* End */


/* Start:/local/components/dev/catalog.list/templates/slider/style.css?1777013846898*/
.newsItems .swiper-slide{
    flex-shrink: unset;
    display: none;
}
.newsItems .swiper-slide:nth-child(1),
.newsItems .swiper-slide:nth-child(2),
.newsItems .swiper-slide:nth-child(3),
.newsItems .swiper-slide:nth-child(4){
    display: block;
    width: calc(25% - 20px);
    margin: 0px 10px;

}
.newsItems .swiper-initialized .swiper-slide{
    flex-shrink: 0;
    display: block;
    width: auto;
    margin: 0px;
}

.newsItems__title-link{
    color: inherit;
    text-decoration: none;
}

.newsItems__title-link:hover{
    text-decoration: underline!important;
}

@media (max-width: 590px){
    .newsItems .swiper-slide:nth-child(1),
    .newsItems .swiper-slide:nth-child(2),
    .newsItems .swiper-slide:nth-child(3),
    .newsItems .swiper-slide:nth-child(4){
        display: block;
        width: calc(25% - 6px);
        margin: 0px 3px;
    }
}
/* End */
/* /local/components/dev/catalog/templates/.default/style.css?17774126983074 */
/* /local/components/dev/catalog.detail/templates/2025/style.css?17775359768465 */
/* /local/components/dev/catalog.list/templates/slider/style.css?1777013846898 */
