

/* Start:/local/templates/puh/src/css/catalog.css?178815869110063*/
.catalog{
    padding-bottom: 80px;
}
.catalog__header{
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.catalog__product-info{
    display: flex;
    gap: 8px;
}
.catalog__product-name{
    font-size: 36px;
    line-height: 1;
    color: #1F1F1F;
    font-weight: 400;
}
.catalog__product-amount{
    font-size: 12px;
    line-height: 130%;
    color: #B3B3B3;
    align-self: flex-end;
}
.catalog__filters{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.catalog__filters-types{
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
    margin-right: -20px;
}
.catalog__filters-types::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.catalog__filters-button-type{
    flex: 0 0 auto;
    font-size: 12px;
    color: #1F1F1F;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: #F4F4F4;
    text-transform: none;
    transition: 0.3s;
    line-height: normal;
}
.catalog__filters-button-type.active{
    background-color: #5B5B5B;
    color: #fff;
}
.catalog__filters-button-type.active:hover{
    color: #000;
}
.catalog__filters-button-type:last-child{
   margin-right: 20px;
}
.catalog__filters-button-type:hover{
    background-color: #DBDBDB;
}
/* Теги Sotbit SEO (sotbit:seo.meta.tags) — одна строка со скроллом;
   все ссылки остаются в DOM (SEO), визуально часть за краем контейнера.
   Полоса прокрутки клипится через .catalog__seo-tags-clip (overflow:hidden). */
.catalog__seo-tags-wrapper{
    position: relative;
    margin: 20px 0 0;
}
.catalog__seo-tags-clip{
    overflow: hidden;
}
.catalog__seo-tags,
.catalog__filters-types.catalog__seo-tags{
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge legacy */
    margin: 0;
    margin-right: 0;
    padding-bottom: 28px;
    margin-bottom: -28px;
}
.catalog__seo-tags::-webkit-scrollbar,
.catalog__filters-types.catalog__seo-tags::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
    background: transparent;
}
.catalog__seo-tags .catalog__filters-button-type:last-child{
    margin-right: 8px;
}
.catalog__seo-tags-arrow{
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
    color: #1F1F1F;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.catalog__seo-tags-arrow:hover{
    background: #F4F4F4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.catalog__seo-tags-wrapper.is-scrollable .catalog__seo-tags{
    padding-left: 42px;
    padding-right: 42px;
}
.catalog__seo-tags-wrapper.is-scrollable .catalog__seo-tags-arrow{
    opacity: 1;
    pointer-events: auto;
}
.catalog__seo-tags-wrapper.is-scrollable .catalog__seo-tags-arrow.is-hidden{
    opacity: 0;
    pointer-events: none;
}
.catalog__seo-tags-arrow.left{
    left: 2px;
}
.catalog__seo-tags-arrow.right{
    right: 2px;
}
.catalog__seo-tags-arrow svg{
    display: block;
    width: 10px;
    height: 16px;
}
.catalog__filters-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.catalog__filters-left{
    display: flex;
    gap: 20px;
}

.input-mirror {
    position: absolute;
    visibility: hidden;
    white-space: pre;
    font: inherit;
    padding: 0;
    margin: 0;
}

.catalog__item-input__box{
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.2s;
}
.catalog__item-input__box svg{

    flex: 0 0 auto;
    transition: all 0.2s;
}
.catalog__item-input__box-name{
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    height: 17px;
    display: flex;
    align-items: center;
    color: #B3B3B3;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.catalog__item-input__box:hover .catalog__item-input__box-name {
    color: #5B5B5B;
}
.catalog__item-input__box:active .catalog__item-input__box-name  {
    color: #1F1F1F;
}
.catalog__item-input__box:focus .catalog__item-input__box-name {
    color: #1F1F1F;
}
.catalog__item-input__box:hover svg path {
    stroke: #5B5B5B;
}
.catalog__item-input__box:active svg path {
    stroke: #1F1F1F;
}
.catalog__item-input__box:focus svg path {
    stroke: #1F1F1F;
}


.selected-count {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-size: 10px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    text-align: center;
    line-height: 17px;

    flex: 0 0 auto;
}

.item-input__box-dropdown-price{
    max-width: 328px;
    background-color: #F4F4F4;
    padding: 26px 27px;
    width: unset;
}
.item-price-range-inputs{
    display: flex;
    gap: 50px;
}
.item-price-range-input{
    max-width: 70px;
    background-color: transparent;
    font-size: 16px;
    color: #1F1F1F;
}
.item-price-range-input::placeholder{
    font-size: 16px;
    color: #B3B3B3;
}
.item-price-range-label{
    font-size: 12px;
    line-height: 15px;
    color: #5B5B5B;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog__filters-right .item-input__box-dropdown{
    right: 0;
    left: unset;
}

.catalog-item-input__box-dropdown-list-item:hover:first-child{
    border-radius: 8px 8px 0 0 ;
}
.catalog-item-input__box-dropdown-list-item:hover:last-child{
    border-radius: 0 0 8px 8px ;
}
.catalog-item-input__box-dropdown-list-item.selected:first-child{
        border-radius: 8px 8px 0 0 ;
}
.catalog-item-input__box-dropdown-list-item.selected:last-child{
        border-radius: 0 0 8px 8px ;
}

.item-input__box-dropdown-list-item.disabled,
.catalog-item-input__box-dropdown-list-item.disabled {
    color: #DBDBDB;
    cursor: default;
    pointer-events: none;
}

.catalog-item-input__box-dropdown-list-item.disabled:hover {
    background-color: transparent;
}


.catalog__wrapper{
    display: flex;
    flex-direction: column;
}
.catalog__products{
    padding:20px 0 12px 0
}

.catalog__seo {
    margin-top: 40px;
    width: 100%;
}

.catalog__seo-body {
    position: relative;
    overflow: hidden;
    max-height: var(--catalog-seo-collapsed-height, 120px);
    transition: max-height 0.35s ease;
}

.catalog__seo.is-expanded .catalog__seo-body,
.catalog__seo--short .catalog__seo-body {
    max-height: none;
}

.catalog__seo:not(.is-expanded):not(.catalog__seo--short) .catalog__seo-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.catalog__seo-text {
    font-family: "Montserrat-Light", sans-serif;
    font-size: 16px;
    line-height: 140%;
    color: #5B5B5B;
    text-transform: none;
}

.catalog__seo-text h1,
.catalog__seo-text h2,
.catalog__seo-text h3,
.catalog__seo-text h4,
.catalog__seo-text h5,
.catalog__seo-text h6 {
    font-size: 24px;
    line-height: 140%;
    margin: 0 0 12px;
    font-weight: inherit;
}

.catalog__seo-text h1:last-child,
.catalog__seo-text h2:last-child,
.catalog__seo-text h3:last-child,
.catalog__seo-text h4:last-child,
.catalog__seo-text h5:last-child,
.catalog__seo-text h6:last-child {
    margin-bottom: 0;
}

.catalog__seo-text p {
    margin: 0 0 12px;
}

.catalog__seo-text p:last-child {
    margin-bottom: 0;
}

.catalog__seo-toggle {
    margin-top: 16px;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 14px;
    line-height: 140%;
    color: #B3B3B3;
    cursor: pointer;
    transition: color 0.3s;
    text-transform: none;
}

.catalog__seo-toggle:hover {
    color: #1F1F1F;
}

.catalog__seo.is-expanded .catalog__seo-toggle-more {
    display: none;
}

.catalog__seo:not(.is-expanded) .catalog__seo-toggle-less {
    display: none;
}


 @media screen and (max-width: 998px){

     .catalog__product-name{
         font-size: 20px;
     }
     .catalog__product-amount{
         font-size: 10px;
     }
     .catalog__filters{
         gap: 12px;
     }
     .catalog__filters-left{
         gap: 16px;
     }
     .catalog__filters-types{
         gap: 6px;
     }
     .catalog__filters-button-type{
         font-size: 10px;
         padding: 8px 12px;
     }
     .catalog__item-input__box{
         gap: 6px;
     }
     .catalog__item-input__box-name {
         font-size: 10px;
         text-transform: uppercase  ;
     }

    .selected-count{
        width: 14px;
        height: 14px;
        line-height: 14px;
    }
     .catalog__products{
         padding: 12px 0;
     }
     .catalog__seo {
         margin-top: 24px;
     }
     .catalog__seo-text {
         font-size: 16px;
     }
     .catalog__seo-text h1,
     .catalog__seo-text h2,
     .catalog__seo-text h3,
     .catalog__seo-text h4,
     .catalog__seo-text h5,
     .catalog__seo-text h6 {
         font-size: 24px;
     }
     .catalog__seo-toggle {
         font-size: 12px;
     }
     .close-icon{
         width: 7px;
         height: 7px;
     }
     .item-input__box-dropdown-price{
         padding: 10px 13px;
     }
     .item-price-range-inputs{
         flex-direction: column;

     }
     .item-price-range-label{
         font-size: 10px;
     }
     .item-price-range-input{
         font-size: 10px;
     }
     .item-price-range-input::placeholder{
         font-size: 10px;
     }

 }

@media screen and (max-width: 572px){
    .selected-count{
        margin-left: 0;
    }


}
/* End */


/* Start:/local/templates/puh/src/css/blog.css?17870589999959*/
.blog{
    padding: 20px 0 40px 0;
}

.blog__article-main{
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 60px;
}

.section-left-title{
    font-size: 36px;
}
.blog__title{
    margin-bottom: 20px;
}
.blog-articles__item-large{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 422px;
    max-height: 422px;
    height: 100%;
    gap: 50px;
}
.blog-articles__item-large .articles__img{
    justify-self: end;
    margin-left: 0;
}
.blog-articles__item-large .articles__img img{
    width: auto;
    height: 100%;
}
.blog-articles__item-large.articles__item:last-child::after{
    content: none;
}

.blog-articles__item-large .articles__img img{
    border-radius: 0;
}
.blog__articles{
    display: flex;
    flex-direction: column;
}
.blog__articles-filter{
    margin-bottom: 32px ;
}
.blog__filters-types .catalog__filters-button-type{
    text-transform: uppercase;
}
.blog__articles-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
}
.blog-articles__item:last-child::after{
    content: none;
}
.blog-articles__item{
    max-width: 690px;
    width: 100%;
}

@media screen and (min-width: 999px) {
    .blog-articles__item .articles__img img{
        height: 100%;
        width: auto;
    }
}


@media screen and (max-width: 998px){
    .section-left-title{
        font-size: 20px;
    }
    .blog__title{
        margin-bottom: 8px;
    }
    .blog__article-main{
        margin-bottom: 40px;
    }

    /* Не column-reverse: на части Android Chrome abspos (плашка/дата) считает bottom от высоты картинки */
    .blog .articles__item {
        width: 100%;
        min-height: unset;
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
    }
    .blog__articles-list .blog-articles__item > .articles__img {
        order: -1;
    }

    .blog-articles__item-large{
        grid-template-rows: minmax(0, 287px);
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-height: none;
        height: auto;
    }
    .blog .articles__info,
    .blog-articles__item-large .articles__info{
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "name date"
            "desc desc"
            "teg .";
        align-items: start;
        column-gap: 12px;
        padding: 15px 19px 0 19px;
        position: relative;
    }
    .blog-articles__item-large .articles__info{
        padding: 42px 21px 0 21px;
    }
    .blog .articles__name {
        grid-area: name;
        max-width: none;
        margin-bottom: 7px;
        line-height: 1.2;
    }
    .blog .articles__desc {
        grid-area: desc;
        max-width: none;
    }
    .blog-articles__item-large .articles__name, .blog-articles__item-large .articles__desc{
        max-width: unset;
    }
    .blog .articles__date,
    .blog-articles__item-large .articles__date{
        grid-area: date;
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        white-space: nowrap;
        justify-self: end;
        line-height: 1.2;
    }
    .blog .articles__teg,
    .blog-articles__item-large .articles__teg{
        grid-area: teg;
        position: static;
        left: auto;
        bottom: auto;
        justify-self: start;
        width: max-content;
        margin-top: 8px;
        margin-left: 11px;
    }
    .blog-articles__item-large .articles__img,
    .blog-articles__item-large .articles__img-large {
        height: 100%;
        min-height: 0;
        overflow: hidden;
        position: relative;
    }
    .blog-articles__item-large .articles__img picture,
    .blog-articles__item-large .articles__img-large picture {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
    }
    .blog-articles__item-large .articles__img img,
    .blog-articles__item-large .articles__img-large picture img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center;
    }

    .blog__articles-list{
        margin-bottom: 20px;
    }

    /* Список статей блога: портрет 3:4 */
    .blog__articles-list .blog-articles__item{
        max-width: 100%;
    }
    .blog__articles-list .blog-articles__item .articles__img{
        margin-left: unset;
    }
    .blog__articles-list .blog-articles__img{
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        max-height: none;
        aspect-ratio: 3 / 4;
        display: block;
        border-radius: 8px 8px 0 0;
    }
    .blog__articles-list .blog-articles__img::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--blur-bg);;
        background-size: cover;
        background-position: center;
        filter: blur(10px);
        z-index: 1;
        opacity: 0.7;
    }
    .blog__articles-list .blog-articles__img picture {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: block;
        width: 100%;
        height: 100%;
    }
    .blog__articles-list .blog-articles__item .articles__img picture img,
    .blog__articles-list .blog-articles__img picture img{
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
    }
}

@media screen and (max-width: 830px){
    .blog__articles-list{
        grid-template-columns: 1fr;
        justify-content: center;
    }
    .blog-articles__item-large .articles__img{
        max-width: none;
    }
}

@media screen and (max-width: 572px){
    .blog-articles__item-large{
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: unset;
        gap: 0;
    }
    .blog-articles__item-large > .articles__img,
    .blog-articles__item-large > .articles__img-large {
        order: -1;
    }
    .blog .blog__article-main .articles__img-large,
    .blog .articles__img-large{
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        max-height: none;
        aspect-ratio: 3 / 4;
        display: block;
        border-radius: 8px 8px 0 0;
    }
    .blog .articles__img-large::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--blur-bg);
        background-size: cover;
        background-position: center;
        filter: blur(10px);
        z-index: 1;
        opacity: 0.7;
    }
    .blog .articles__img-large picture {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: block;
        width: 100%;
        height: 100%;
    }
    .blog-articles__item-large .articles__img{
        max-width: unset;
    }
    .blog-articles__item-large .articles__img img,
    .blog .articles__img-large picture img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center;
    }
    .blog-articles__item-large .articles__info{
        padding: 15px 19px 0 20px;
    }
}

@media screen and (max-width: 376px){
    .blog__articles-list .blog-articles__img::before{
        content: none ;
    }
    .blog .blog__article-main .articles__img-large::before,
    .blog .articles__img-large::before{
        content: none;
    }
}

/* Главная: слайдер «БУДЬ В КУРСЕ» — портрет 3:4 (blog.css подключается через news.php) */
@media screen and (max-width: 998px) {
    .articles__list .blog-articles__item {
        flex-direction: column;
        justify-content: flex-start;
        min-height: unset;
        height: auto;
    }
    .articles__list .blog-articles__item > .articles__img {
        order: -1;
    }
    .articles__list .blog-articles__img {
        position: relative;
        height: auto;
        max-height: none;
        aspect-ratio: 3 / 4;
    }
    .articles__list .blog-articles__img picture {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
    }
    .articles__list .blog-articles__item .articles__img picture img,
    .articles__list .blog-articles__item .articles__img img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center;
    }
    .articles__list .blog-articles__item .articles__info {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "name date"
            "desc desc"
            "teg .";
        align-items: start;
        column-gap: 12px;
        padding: 15px 19px 0 19px;
        position: relative;
    }
    .articles__list .blog-articles__item .articles__name {
        grid-area: name;
        max-width: none;
        margin-bottom: 7px;
        line-height: 1.2;
    }
    .articles__list .blog-articles__item .articles__desc {
        grid-area: desc;
        max-width: none;
    }
    .articles__list .blog-articles__item .articles__date {
        grid-area: date;
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        white-space: nowrap;
        justify-self: end;
        line-height: 1.2;
    }
    .articles__list .blog-articles__item .articles__teg {
        grid-area: teg;
        position: static;
        left: auto;
        bottom: auto;
        justify-self: start;
        width: max-content;
        margin-top: 8px;
        margin-left: 11px;
    }
}

.blog__pagination{
    grid-column: 1 / -1;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    text-transform: none;
}
.blog__pagination .button-more{
    min-width: 200px;
}

/* End */
/* /local/templates/puh/src/css/catalog.css?178815869110063 */
/* /local/templates/puh/src/css/blog.css?17870589999959 */
