[id^="shop-section-"],
[id^="archive-section-"] {
    scroll-margin-top:0; /* тут укажи высоту своей шапки */
}
/* Banner */

.shop-page-banner{
    position: relative;
    height: 20.833vw;      /* 400px при ширине ~1920px */
    background-color: #000;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.shop-page-banner__bg{
    position: absolute;
    inset: 0;
}
.shop-page-banner__bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}



.shop-page-banner__inner{
    position: relative;
    width: 84.17%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    padding-bottom: 2.604vw;
}


.shop-page-banner__title h1{
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    font-size: 1.667vw;
    margin: 0;
}
.shop-page-banner__img.mobile{
    display: none;
}

/* FAQ */
.shop-page-faq{
    border-top: 1px solid #D8D8D8;
    display: flex;
    justify-content: center;
    padding-top: 3.958vw;
    padding-bottom: 3.958vw;
}
.shop-page-faq-wrapper{
    width: 84.17%;
    display: flex;
    justify-content: space-between;
}
.shop-page-faq-text{
    width: 41.719vw;
    display: flex;
    flex-direction: column;
    gap: 1.667vw;
}
.shop-page-faq-text__content{
    color: #6B6B6B;
    font-size: 1.042vw;
    line-height: 130%;
    font-weight: 400;
}

.shop-page-faq-text__content strong{
    font-weight: 700;
    color: #191919;
}

.shop-page-faq-text__content a{
    text-decoration: underline;
}
.shop-page-faq-text__content ul,li,ol{
    margin-left: 1vw;
    margin-bottom: unset;
    padding-bottom: unset!important;
}

.shop-page-faq-posts{
    width: 27.5vw;
    display: flex;
    flex-direction: column;
    gap: 1.875vw;
}
.shop-page-faq-text__title,
.shop-page-faq-posts__title
{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.667vw;
    line-height: 100%;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 1.25vw;
}
.shop-page-faq-posts__title-link{
    font-size: 0.833vw;
    color: #4660FF;
    line-height: 1;
}
.shop-page-faq-posts__title-link svg{
    width: 0.833vw;
    height: 0.833vw;
}
.shop-page-faq-posts__title-link:hover{
    opacity: 0.7;
}
.shop-page-faq-posts__title-link:hover svg{
    opacity: 0.7;
}
.shop-page-faq-posts__content{
    display: flex;
    flex-direction: column;
    gap: 0.677vw;
}
.shop-page-faq-posts__item{
    display: flex;
    flex-direction: row;
    height: 7.292vw;
    overflow: hidden;
    gap: 6px;
    justify-content: space-between;
    align-items: center;
}
.shop-page-faq-posts__item-title{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.833vw;
    line-height: 130%;
    width: 11.979vw;
    cursor: pointer;
    color: #191919;
}
.shop-page-faq-posts__item-title:hover{
    opacity: 0.7;
}
.shop-page-faq-posts__thumb{
    height: 5.208vw;
    width: 9.375vw;
    border-radius: 0.417vw;
    transform: rotate(-15deg);
    margin-top: 1.5vw;
}
.shop-page-faq-posts__thumb-wrapper{
    display: flex;
    position: relative;
    padding-right: 32px;
}
.shop-page-faq-posts__thumb-button-wrapper{
    border-radius: 999px;
    background-color: #4660FF;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.875vw;
    height: 1.875vw;
    right:0;
    top:50%;
    transform: translate(-50%, -50%);
}
.shop-page-faq-posts__thumb-button{
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-page-faq-posts__thumb-button:hover img{
    opacity: 0.7 ;
}
/*accord*/

.shop-page-faq-text__accordions .cf-accordion__item:not(:first-child) {
    border-top: 0.052vw solid #D8D8D8;
}

.shop-page-faq-text__accordions .cf-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.833vw;
    width: 100%;
    padding: 0.833vw 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    margin: unset;
    transform: unset!important;
}

.shop-page-faq-text__accordions .cf-accordion__title {
    color: #191919;
    font-size: 1.667vw;
    line-height: 100%;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.shop-page-faq-text__accordions .cf-accordion__icon {
    flex: 0 0 auto;
    transform: rotate(0deg);
    transition: transform .25s ease;
}

.shop-page-faq-text__accordions .cf-accordion__item.is-open .cf-accordion__icon {
    /* стрелка поворачивается (под «раскрыто») */
    transform: rotate(90deg);
}

.shop-page-faq-text__accordions .cf-accordion__panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0; /* чтобы не прыгал при сворачивании */
    transition:
            max-height .3s ease,
            opacity .25s ease;
    will-change: max-height, opacity;
    color: #6B6B6B;
    font-size: 1.042vw;
    line-height: 130%;
    font-weight: 400;
    font-family: 'Inter', sans-serif;

}

.shop-page-faq-text__accordions .cf-accordion__item.is-open .cf-accordion__panel {
    opacity: 1;
    /* внутренний отступ, когда открыт */
    padding: 0.417vw 0 0.833vw;
}
.shop-page-faq-posts__content-slider{
    display: none;
}



/* shop grid */
.shop-container{
    background-color: rgba(246, 246, 246, 1);
}
.shop-section-wrapper {
    padding-top: 3.958vw;
    padding-bottom: 3.958vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3.958vw;
}
.shop-section{
    width: 84.17%;
}

.shop-section--archive {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .45s ease, opacity .3s ease;
    display: none;
}
.shop-section--archive.is-open { opacity: 1; }

.shop-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.875vw;
}
.shop-section__title {
    margin: 0;
    font-size: 1.667vw;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 100%;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.833vw;
}
.shop-grid__product{
    box-shadow: 0 0.208vw 0.417vw 0 rgba(0, 0, 0, 0.08);
    border-radius: 0.833vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.083vw 1.25vw 1.354vw 1.25vw;
    background-color: #FFFFFF;
}
.shop-grid__product.swiper-item{
    height: 100%;
}
.shop-grid__product__thumb{
    width: 17.917vw;
    height: 17.917vw;
    position: relative;
}
.shop-grid__product__thumb-main{
    display: block;
    transition: opacity .3s ease-in-out;
}
.shop-grid__product__thumb:hover .shop-grid__product__thumb-main{
    opacity: 0;
}

.shop-grid__product__thumb:hover .shop-grid__product__thumb-hover{
    opacity: 1;
}
.shop-grid__product__thumb-main,
.shop-grid__product__thumb-hover {
    width: 100%;
    height: auto;
    object-fit: contain;/* вписывает без кропа */
    display: block;
}
.shop-grid__product__thumb-hover{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.shop-grid__product-badge{
    position: absolute;
    top: 0;
    width: 5.208vw;
    height: auto;
    transform: translate(0, -50%);
}


.shop-grid__product__title{
    text-align: center;
    padding-top: 0.833vw;
    padding-bottom: 1.042vw;
    line-height: 100%;
}
.shop-grid__product__title a{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.042vw;
    line-height: 130%;
    color: rgba(25, 25, 25, 1);
}

.shop-grid__product__title.archive{
    margin-top: unset;
}

.shop-archive-toggle__btn{
    padding: 1.198vw 1.458vw;
    background-color: white;
    color: rgba(25, 25, 25, 1);
    line-height: 105%;
    font-size: 0.729vw;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 0.208vw 0.417vw 0 rgba(0, 0, 0, 0.08);
    border-radius: 0.521vw;
    margin: unset;
    letter-spacing: unset;
}
.color-dots{
    display: flex;
    justify-content: center;
    align-items: center;
    height:0.825vw;
    margin-top: 0.313vw;
    gap: 0.417vw;
}
.color-dots.is-empty {
    visibility: hidden;
}
.product-cta{
    margin-top: auto;
}

.color-dot {
    width: 0.625vw;
    height: 0.625vw;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    /*border: 0.104vw solid rgba(0, 0, 0, 0.12);*/
    transition: transform 0.2s;
}

.color-dot[style*="background:#fff"],
.color-dot[style*="background: #fff"] {
    border: 0.104vw solid rgba(0,0,0,0.12);
}

.color-dot:hover {
    border:0.104vw solid black;
}
.shop-grid__product__body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.shop-grid__product__btn{
    margin: auto 0 0;
    padding: 0.625vw;
    background-color: rgba(246, 246, 246, 1);
    border-radius: 0.938vw;
}
.shop-grid__product__btn:hover {
    background-color: rgba(70, 96, 255, 1);
    color: white; /* сразу красим весь текст внутри */
}
.shop-grid__product__btn .grid__product__btn-price-wrapper,
.shop-grid__product__btn .grid__product__btn-price-wrapper .amount,
.shop-grid__product__btn .grid__product__btn-price-wrapper del,
.shop-grid__product__btn .grid__product__btn-price-wrapper ins,
.shop-grid__product__btn .grid__product__btn-price-wrapper bdi {
    line-height: 130%;
}

.shop-grid__product__btn:hover .amount,
.shop-grid__product__btn:hover .shop-grid__product__price-btn-success,
.shop-grid__product__btn:hover .screen-reader-text,
.shop-grid__product__btn:hover del,
.shop-grid__product__btn:hover ins,
.shop-grid__product__btn:hover .grid__product__btn-price-wrapper{
    color: white;
    text-decoration-color: white;
}

.shop-grid__product__btn .grid__product__btn-price-wrapper{
    color: black;
}

.shop-grid__product__btn:hover svg path {
    stroke: white; /* вместо fill */
}

.shop-grid__product__price-wrapper--main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.625vw;
}

.shop-grid__product__badge{
    font-size: 0.833vw;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 100%;
}
.product-meta{
    height: 0.833vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.99vw;
}

.shop-grid__product__btn-archive{
    color: #191919;
    opacity: 1.0;
    padding: 0.625vw;
    background-color: rgba(246, 246, 246, 1);
    border-radius: 0.938vw;
    text-align: center;
    margin: auto 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.313vw;
}

.shop-grid__product__btn-archive span{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.938vw;
    line-height: 130%;
}

.shop-grid__product__btn-archive svg{
    height: 0.938vw;
    width: 0.938vw;
}

.shop-grid__product__badge.new{
    color: rgba(27, 206, 102, 1);
}
.shop-grid__product__badge.sale{
    color: rgba(244, 143, 77, 1);
}
.grid__product__btn-price-wrapper del .amount{
    color: #999;
    opacity: 1.0;
    font-weight: 500;
    text-decoration: line-through;
    font-size: 0.625vw;
    line-height: 130%;
    text-decoration-thickness: 1px;
}
.shop-grid__product__price-btn-success{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.938vw;
    line-height: 130%;
    color: #191919;
}
.shop-grid__product__price-wrapper--success{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 0.625vw;
}

.grid__product__btn-price-wrapper ins .amount{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.938vw;
    line-height: 130%;
}
.shop-grid__product__btn svg{
    width: 0.938vw;
    height: 0.938vw;
}
.grid__product__btn-price-wrapper .amount{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.938vw;
    line-height: 130%;

}
.shop-grid__product__btn svg{
    stroke: rgba(25, 25, 25, 1);
}
.grid__product__btn-price-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin: unset;
}
.shop__desktop-sticky-menu{
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #D8D8D8;
    display: flex;
    justify-content: space-around;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 995;
}
.shop__desktop-sticky-menu.visible{
    transform: translateY(1px);
}
.telegram-button.toup{
    bottom: 4.771vw;
}
.shop__desktop-sticky-menu__inner{
    width: 84.17%;
    padding: 0.781vw 0 0.781vw 0;
    display: flex;
    flex-direction: row;
    gap: 2.083vw;
    overflow: auto;
}

.shop__desktop-sticky-menu__inner::-webkit-scrollbar {
    display: none;
}

.shop__desktop-sticky-menu__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.shop__desktop-sticky-menu__item.is-active{
    text-decoration: underline;
    text-decoration-color: #191919;
    text-decoration-thickness: 0.156vw;
    -webkit-text-decoration-skip: none;
    text-decoration-skip: none;
    text-underline-offset: 0.325vw;
}
.shop__desktop-sticky-menu__item-icon{
    width: 1.667vw;
    height: 1.667vw;
}
.shop__desktop-sticky-menu__item-title{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.833vw;
    line-height: 130%;
    color: #191919;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .shop-grid__product__price-wrapper--main{
        gap: 1vw;
    }
    .shop-page-banner__inner{
        width: 93%;
    }
    .shop-page-banner__title h1{
        font-size: 2.417vw;
    }
    .shop-section-wrapper{
        padding-top: 3.333vw;
        padding-bottom: 5.833vw;
        gap: 4.958vw;
    }
    .shop-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25vw;
    }

    .shop-section{
        width: 93%;
    }
    .shop-page-faq-wrapper{
        width: 93%;
    }
    .shop-section__head{
        margin-bottom: 2.75vw;
    }

    .shop-section__title{
        font-size: 2.417vw;
    }
    .shop-grid__product-badge{
        width: 7.333vw;
    }
    .shop-grid__product__badge{
        font-size: 1.25vw;
    }

    .shop-grid__product{
        border-radius: 2vw;
        box-shadow: 0 0.333vw 0.583vw 0 rgba(0, 0, 0, 0.08);
        padding: 3.083vw 1.833vw 2vw 1.833vw;
    }
    .shop-grid__product__thumb{
        width: 26.417vw;
        height: 26.417vw;
    }
    .color-dots{
        height:0.917vw;
        margin-top: 0.413vw;
        gap: 0.25vw;
    }

    .color-dot {
        width: 0.917vw;
        height: 0.917vw;
        margin-right: unset;
    }
    .product-meta{
        height: 1.25vw;
        margin-top: 1.417vw;
    }

    .shop-grid__product__title{
        padding-top: 1.25vw;
        padding-bottom: 1.583vw;
    }
    .shop-grid__product__title a{
        font-size: 1.5vw;
    }
    .shop-grid__product__btn{
        margin: auto 0 0;
        padding: 0.917vw;
        background-color: rgba(246, 246, 246, 1);
        border-radius: 1.333vw;
    }
    .shop-grid__product__btn-archive{
        margin: auto 0 0;
        padding: 0.917vw;
        border-radius: 1.333vw;
        gap: 0.5vw;
    }
    .shop-grid__product__btn-archive span{
        font-size: 1.417vw;
    }

    .shop-grid__product__btn-archive svg{
        height: 1.417vw;
        width: 1.417vw;
    }
    .shop-grid__product__btn svg{
        width: 1.417vw;
        height: 1.417vw;
    }
    .grid__product__btn-price-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.2vw;
    }
    .grid__product__btn-price-wrapper del .amount{
        font-size: 0.917vw;
    }
    .grid__product__btn-price-wrapper ins .amount{
        font-size: 1.417vw;
    }
    .grid__product__btn-price-wrapper .amount{
        font-size: 1.417vw;
    }
    .shop-grid__product__price-btn-success{
        font-size: 1.417vw;
    }

    .shop-archive-toggle__btn{
        font-size: 1.417vw;
        padding: 1.917vw 2.333vw;
        border-radius: 1.333vw;
    }

    .shop-page-faq-text__title,
    .shop-page-faq-posts__title{
        font-size: 2.5vw;
    }
    .cf-accordion__title{
        font-size: 2.5vw;
    }
    .cf-accordion__panel{
        font-size: 1.5vw;
    }

    .shop-page-faq-posts__title-link{
        font-size: 1.25vw;
    }

    .shop-page-faq-text__content{
        font-size: 1.5vw;
    }
    .shop-page-faq-posts__item-title{
        font-size: 1.25vw;
        width: 24vw;
    }
    .shop-page-faq-posts{
        width:34vw;
    }
    .shop__desktop-sticky-menu__inner{
        width: 93%;
        padding-top: 1.167vw;
        padding-bottom: 1.167vw;
        gap: 3.083vw;
        overflow: auto;
    }
    .shop__desktop-sticky-menu__item{
        gap: 0vw;
        justify-content: space-between;
    }
    .shop__desktop-sticky-menu__item-icon{
        width: 3.333vw;
        height: unset;
    }

    .shop__desktop-sticky-menu__item-icon img{
        -webkit-user-drag: none; /* Safari/Chrome */
        user-drag: none;         /* Стандарт */
        user-select: none;       /* Чтобы не выделялось */
        pointer-events: none;    /* Если вообще не нужна интеракция */
    }

    .shop__desktop-sticky-menu__item-title{
        font-size: 1.25vw;
        white-space: nowrap;
        text-align: center;
    }
    .shop__desktop-sticky-menu__item.is-active{
        text-decoration-thickness: 0.25vw;
        text-underline-offset: 0.7vw;
    }

    .telegram-button.toup{
        bottom: 7.8vw;
    }
}

@media (max-width: 800px) {

    .shop-grid__product__price-wrapper--main{
        gap: 1.5vw;
    }

    .shop-page-banner__inner{
        width: 95.5%;
    }

    .shop-page-banner__title h1{
        font-size: 3.75vw;
    }

    .shop-section-wrapper{
        padding-top: 5.125vw;
        padding-bottom: 8vw;
        gap: 4.958vw;
    }
    .shop-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25vw;

    }
    .shop-section{
        width: 95.5%;
    }
    .shop-page-faq-wrapper{
        width: 95.5%;
    }
    .shop-section__head{
        margin-bottom: 2.75vw;
    }

    .shop-section__title{
        font-size: 3.75vw;
    }
    /*tut*/
    .shop-grid__product-badge{
        width: 11.5vw;
    }

    .shop-grid__product__badge{
        font-size: 1.875vw;
    }

    .shop-grid__product{
        border-radius: 3vw;
        box-shadow: 0 0.5vw 1vw 0 rgba(0, 0, 0, 0.08);
        padding: 4.75vw 2.875vw 3.125vw 2.875vw;
    }

    .shop-grid__product__thumb{
        width: 41.25vw;
        height: 41.25vw;
    }

    .color-dots{
        height:1.375vw;
        margin-top: 0.413vw;
        gap: 0.5vw;
    }

    .color-dot {
        width: 1.375vw;
        height: 1.375vw;
        margin-right: unset;
    }

    .product-meta{
        height: 1.375vw;
        margin-top: 1.417vw;
    }

    .shop-grid__product__title{
        padding-top: 2vw;
        padding-bottom: 2.375vw;
    }

    .shop-grid__product__title a{
        font-size: 2.375vw;
    }

    .shop-grid__product__btn{
        margin: auto 0 0;
        padding: 1.375vw;
        background-color: rgba(246, 246, 246, 1);
        border-radius: 2.125vw;
        gap: 0.75vw;
    }

    .shop-grid__product__btn-archive{
        margin: auto 0 0;
        padding: 1.375vw;
        border-radius: 2.125vw;
        gap: 0.75vw;
    }

    .shop-grid__product__btn-archive span{
        font-size: 2.125vw;
    }

    .shop-grid__product__btn-archive svg{
        height: 2.125vw;
        width: 2.125vw;
    }

    .shop-grid__product__btn svg{
        width: 2.125vw;
        height: 2.125vw;
    }
    .grid__product__btn-price-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.2vw;
    }
    .grid__product__btn-price-wrapper del .amount{
        font-size: 1.375vw;
    }
    .grid__product__btn-price-wrapper ins .amount{
        font-size: 2.125vw;
    }
    .grid__product__btn-price-wrapper .amount{
        font-size: 2.125vw;
    }
    .shop-grid__product__price-btn-success{
        font-size: 2.125vw;
    }

    .shop-archive-toggle__btn{
        font-size: 2.125vw;
        padding: 2.317vw 3.833vw;
        border-radius: 1.825vw;
    }

    .shop-page-faq-text__title,
    .shop-page-faq-posts__title{
        font-size: 3.75vw;
    }

    .shop-page-faq-text__accordions .cf-accordion__header .cf-accordion__title{
        font-size: 3.75vw;
    }

    .shop-page-faq-text__accordions .cf-accordion__panel{
        font-size: 2.375vw;
    }

    .shop-page-faq-posts__title-link{
        font-size: 1.875vw;
    }

    .shop-page-faq-text__content{
        font-size: 2.375vw;
    }
    .shop-page-faq-posts__item-title{
        font-size: 1.875vw;
        width: 24vw;
    }
    .shop-page-faq-posts{
        width:34vw;
    }
    .shop-page-faq-wrapper{
        flex-direction: column;
        gap: 6.25vw;
    }
    .shop-page-faq-text{
        width: 100%;
    }
    .shop-page-faq-posts{
        width: 100%;
    }
    .shop-page-faq-posts__content{
        display: none;
    }

    .shop-page-faq-posts__content-slider{
        display: block;
    }
    .shop__desktop-sticky-menu__inner{
        width: 95.5%;
    }

    .shop__desktop-sticky-menu__inner{
        width: 95.5%;
        padding-top: 1.75vw;
        padding-bottom: 1.875vw;
        gap: 4.625vw;
        overflow: auto;
    }
    .shop__desktop-sticky-menu__item{
        gap: 1.375vw;
    }

    .shop__desktop-sticky-menu__item-icon{
        width: 5vw;
    }

    .shop__desktop-sticky-menu__item-icon img{
        -webkit-user-drag: none; /* Safari/Chrome */
        user-drag: none;         /* Стандарт */
        user-select: none;       /* Чтобы не выделялось */
        pointer-events: none;    /* Если вообще не нужна интеракция */
    }

    .shop__desktop-sticky-menu__item-title{
        font-size: 1.875vw;
        white-space: nowrap;
        text-align: center;
    }
    .shop__desktop-sticky-menu__item.is-active{
        text-decoration-thickness: 0.375vw;
        text-underline-offset: 1vw;
    }
    .telegram-button.toup{
        bottom: 10.8vw;
    }
}



@media (max-width: 400px) {

    .color-dots{
        height:1.5vw;
        margin-top: 0.413vw;
        gap: 0.5vw;

    }

    .color-dot {
        width: 1.795vw;
        height: 1.795vw;
        margin-right: unset;
    }

    .shop-grid__product__price-wrapper--main{
        gap: 2vw;
    }

    .shop__desktop-sticky-menu{
        display: none;
    }
    .shop-page-banner__inner{
        padding-bottom: 4.75vw;
        width: 91.795vw;
    }
    .shop-page-banner__title h1{
        font-size: 3vw;
        letter-spacing: 1px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        line-height: 100%;
    }
    .shop-page-banner__img.mobile{
        display: block;
    }
    .shop-page-banner__img.desktop{
        display: none;
    }
    .shop-page-banner{
        height: 35.25vw;
    }
    .shop-page-banner__bg img{
        height: auto;
    }
    /*accord*/
    .shop-page-faq{
        padding-top: 13.333vw;
        padding-bottom: 13.333vw;
    }
    .shop-page-faq-wrapper{
        flex-direction: column;
        width: 91.795vw;
        gap: 13.333vw;
    }
    .shop-page-faq-text, .shop-page-faq-posts{
        width: 100%;
        gap: 8.205vw;
    }
    .shop-page-faq-text__title{
        font-size: 6.154vw;
        font-weight:600;
    }
    .shop-page-faq-posts__title{
        font-size: 6.154vw;
        font-weight:600;
        gap: 3.333vw;
    }
    .shop-page-faq-posts__title .shop-page-faq-posts__title-link{
        font-size: 3.077vw;
        line-height: 100%;
        font-weight: 600;
    }
    .shop-page-faq-posts__title-link svg{
        width: 2.077vw;
        height: 2.077vw;
    }
    .shop-page-faq-text__content{
        font-size: 4.103vw;
        font-weight: 300;
        line-height: 100%;
    }
    .shop-page-faq-text__content strong{
        font-weight: 700;
    }

    .shop-page-faq-text__content ul,li,ol{
        margin-left: 4vw;
    }

    .cf-accordion__title{
        font-size: 6.154vw!important;
    }
    .shop-page-faq-text__accordions{
        gap: 7.949vw;
        display: flex;
        flex-direction: column;
    }
    .shop-page-faq-text__accordions .cf-accordion__header{
        padding-bottom: 5.923vw!important;
        padding-top: 1.538vw!important;
    }
    .shop-page-faq-posts__content{
        display: none;
    }
    .shop-page-faq-text__accordions .cf-accordion__item:not(:first-child) {
        border-top: unset;
    }
    .shop-page-faq-text__accordions .cf-accordion__item {
        border-bottom: 0.052vw solid #D8D8D8;
    }
    .shop-faq-swiper-title{
        line-height: 130%;
        font-weight: 600;
        font-size: 4.103vw;
        color: #000000;
    }
    .shop-page-faq-posts__content-slider{
        display: block;
    }
    .shop-faq-swiper-slide__img-wrapper{
        padding: 6.1vw;
        position: relative;
    }
    .shop-faq-swiper-slide__img-button{
        width: 9.231vw;
        height: 9.231vw;
        background-color: #4660FF;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right:10%;
        top:50%;
        transform: translate(-50%, -50%);
        border-radius: 100%;
    }
    .shop-faq-swiper-slide__img{
        transform: rotate(-15deg);
        border-radius: 2.051vw;
        width: 46.154vw;
        height: 25.641vw;
    }
    .mobile-header{
        position: unset;
        background-color: white;
        z-index: 99999!important;
        border-bottom: unset!important;
    }
    .mobile-header img{
        filter: brightness(0%);
    }

    .elementor-element-ab627b7 svg path {
        fill: #000 !important;
    }
    .elementor-element-ab627b7 .elementor-button-icon-qty{
        background: black!important;
        color: white!important;
    }

    /* 2) Аккаунт — красим fill */
    .elementor-element-2e1becc4 a.elementor-icon svg path {
        fill: #000 !important;
    }

    /* 3) Поиск — только stroke, центр прозрачный */
    .elementor-element-62507a84 a.elementor-icon svg path[stroke] {
        stroke: #000 !important;
    }
    .elementor-element-62507a84 a.elementor-icon svg path[fill] {
        fill: none !important;
    }

    /* shop-grid */
    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 2.5vw;
    }

    .shop-section{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        scroll-margin-top: 65px;
    }
    .shop-section__head{
        width: 91.795vw;
        margin-bottom: 6vw;
    }
    .shop-grid__product{
        padding: 4vw 3vw 3vw 3vw;
        border-radius: 3vw;
    }
    .shop-grid__product-badge{
        width: 17vw;
    }
    .shop-grid__product__thumb{
        width: 41.75vw;
        height: 41.75vw;
    }
    .shop-section__title{
        font-size: 5vw;
        font-weight: 600;
    }
    .grid__product__btn-price-wrapper del{
        text-decoration: none;
        line-height: unset!important;
    }
    .grid__product__btn-price-wrapper ins{
        line-height: unset!important;
    }

    .grid__product__btn-price-wrapper del .amount{
        font-size: 2.5vw;
        color:white;
    }
    .grid__product__btn-price-wrapper ins .amount{
        font-size: 3vw;
    }
    .grid__product__btn-price-wrapper .amount{
        font-size: 3vw;
    }
    .grid__product__btn-price-wrapper .btn-success{
        font-size: 3vw;
    }
    .shop-grid__product__btn{
        border-radius: 3vw;
        padding: 2vw 2.5vw;
        line-height: 100%;
    }
    .shop-grid__product__btn-archive{
        border-radius: 3vw;
        padding: 2vw 2.5vw;
        line-height: 100%;
        gap: 1.5vw;
    }
    .shop-grid__product__btn-archive span{
        font-size: 3vw;
    }

    .shop-grid__product__btn-archive svg{
        height: 3vw;
        width: 3vw;
    }

    .shop-grid__product__btn span {
        font-size: 3vw;
    }

    .shop-grid__product__btn svg {
        height: 3vw;
        width: 3vw;
    }
    .shop-grid__product__price-spinner circle {
        stroke: white;
    }
    .shop-grid__product__badge{
        font-size: 2.5vw;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
        line-height: 130%;
        padding-top: 3vw;
    }
    .shop-grid__product__title{
        text-align: center;
        padding-top: 2vw;
    }
    .shop-grid__product__title a{
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 3.25vw;
        line-height: 130%!important;
        color: rgba(25, 25, 25, 1);
    }

    .shop-grid__product__btn{
        background-color: rgba(70, 96, 255, 1);
    }

    .shop-grid__product__btn .amount,
    .shop-grid__product__btn .shop-grid__product__price-btn-success,
    .shop-grid__product__btn .screen-reader-text,
    .shop-grid__product__btn del,
    .shop-grid__product__btn ins,
    .shop-grid__product__btn .grid__product__btn-price-wrapper{
        color: white;
        text-decoration-color: white;
    }

    .shop-grid__product__btn svg path {
        stroke: white; /* вместо fill */
    }

    .shop-section-wrapper{
        gap:13vw;
    }
    .shop-archive-toggle{
        padding: 2vw 2.5vw;
    }
    .shop-archive-toggle__btn{
        font-size: 4.154vw;
        font-weight: 600;
        border-radius: 3vw;
        line-height: 100%;
        padding: 5vw 3vw;
    }

    .header-mobile-sticky{
        transition: unset!important;
    }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.pp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-modal {
    background: #fff;
    border-radius: 1.042vw;
    width: 56.25vw;
    padding: 1.771vw;
    position: relative;
}
.pp-close {
    position: absolute;
    top: -3%;
    right: -2.5%;
    font-size: 2vw;
    border: none;
    background: none;
    cursor: pointer;
    color: black;
    margin: unset;
}
.pp-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pp-loader .spinner {
    width: 4vw;
    height: 4vw;
    border: 0.333vw solid rgba(0,0,0,0.1);
    border-top-color: #1e73b7;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.pp-content {
    display: flex;
    gap: 1.354vw;
    flex-direction: row;
    justify-content: space-between;

}
.pp-gallery {
    flex: 1;
    width: 26.146vw;
    height: 26.146vw;
}
.pp-gallery img {
    width: 100%;
}
.pp-variation-group{
    display: flex;
    flex-direction: column;
    gap: 0.573vw;
}
.pp-variation-title{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 105%;
    font-size: 0.729vw;
}
.pp-variation-options{
    display: flex;
    flex-direction: row;
    gap: 0.26vw;
    flex-wrap: wrap;
}
.pp-variation-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.76vw;
    min-width: 2.76vw;
    border-radius: 11px;
    border:1px solid #191919;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 105%;
    font-size: 0.677vw;
    margin: unset;
}
.pp-variation-btn.selected{
    border-color: #4660FF;
}
.pp-variation-btn-color{
    margin: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.563vw;
    height: 1.563vw;
    padding: unset;
}
.pp-variation-btn-color.selected{
    border:2px solid #4660FF;
    border-radius: 100%;
}
.pp-color-dot{
    width: 1.198vw;
    height: 1.198vw;
    border-radius: 100%;
    box-shadow: 0 0.052vw 0.052vw #00000052 inset;
}
.pp-add .grid__product__btn-price-wrapper{
    color: #fff!important;
}
.pp-badge{
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 4.583vw;
}
.pp-gallery .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.26vw;
    bottom: 0.4vw !important;
}
.pp-gallery .swiper-pagination-bullet {
    width: 0.26vw;
    height: 0.26vw;
    border-radius: 50%;
    background: #D8D8D8;
    opacity: 1;
    transition: all 0.3s ease;
}
/* Активный буллет */
.pp-gallery .swiper-pagination-bullet-active {
    width: 1.458vw;
    height: 0.26vw;
    border-radius: 999px; /* делает капсулу */
    background: #D8D8D8;
}
.pp-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 25.156vw;
    gap: 1.406vw;
    /*height: 37.5vw;*/
}
.pp-title{
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 115%;
    font-size: 1.875vw;
    margin: unset;
}
.pp-variations {
    display: flex;
    flex-direction: column;
    gap: 1.823vw;
}
.pp-variations button{
    color: black;
}

.pp-price {
    font-weight: 500;
    color: #191919;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.667vw;
}
.pp-price .price{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.667vw;
}
.pp-price del .amount{
    font-size: 0.894vw;
    color: gray;
}

.pp-price .amount{
    font-size: 1.094vw;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 105%;
    color: #191919;
}



.pp-chips{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.26vw;
}

.pp-chip{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.26vw;
    border-radius: 0.573vw;
    font-family: 'Inter', sans-serif;
    font-size: 0.677vw;
    font-weight: 500;
    padding: 0.26vw 0.365vw;
    line-height: 100%;
}
.pp-title-chips{
    display: flex;
    flex-direction: column;
    gap: 0.833vw;
}

.pp-chip img{
    width: 0.99vw;
    height: 0.99vw;
}

.pp-chip.black{
    background: #000;
    color: white;
}
.pp-chip.black img{
    filter: brightness(0) invert(1);
}
.pp-chip:not(.black){
    background: #F7F7F7;
    color: #191919;
}
.pp-actions-wrapper{
    display: flex;
    flex-direction: column;
    gap: 0.677vw;
}
.pp-add-btn__wrapper{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.729vw;
    height: 3.125vw;
}
.pp-add .spinner-one{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0.781vw;
}
.pp-add .btn-success{
    color: white;
    font-size: 0.729vw;
    font-weight: 600;
    line-height: 105%;
}

.pp-add {
    background: #4660FF;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 0.573vw;
    cursor: pointer;
    margin: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.781vw;
    min-width: 9.896vw;
}
.custom-counter{
    border: 0.064vw solid #4660FF;
    border-radius: 0.573vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.504vw;
    padding: 0 0.885vw;
}
.custom-counter #custom-count{
    background: none;
    border: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.833vw;

}
.custom-counter button {
    background: none;
    border: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.833vw;
    cursor: pointer;
    color:rgba(25, 25, 25, 1);
    padding: 0;
    margin: 0;
}

@media (max-width: 1200px) {
    .pp-modal {
        border-radius: 1.5vw;
        width: 80vw;
        padding: 2.333vw;
    }
    .pp-close {
        top: -3%;
        right: -2.5%;
        font-size: 3.083vw;
    }

    .pp-loader .spinner {
        width: 5vw;
        height: 5vw;
        border: 0.633vw solid rgba(0,0,0,0.1);
        border-top-color: #1e73b7;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    /*.pp-content {*/
    /*    gap: 1.354vw;*/
    /*}*/

    .pp-gallery {
        flex: 1;
        width: 37.167vw;
        height: 37.167vw;
    }
    .pp-gallery img {
        width: 100%;
    }

    .pp-variation-group{
        gap: 0.833vw;
    }

    .pp-variation-title{
        font-size: 1vw;
    }

    .pp-variation-options{
        gap: 0.417vw;
    }

    .pp-variation-btn{
        height: 3.917vw;
        min-width: 3.917vw;
        border-radius: 0.833vw;
        border:0.083vw solid #191919;
        font-size: 1vw;
    }

    .pp-variation-btn-color{
        width: 2.4vw;
        height: 2.3vw;
    }

    .pp-variation-btn-color.selected{
        border:0.167vw solid #4660FF;
    }

    .pp-color-dot{
        width: 1.667vw;
        height: 1.667vw;
        box-shadow: 0 0.083vw 0.083vw #00000052 inset;
    }

    .pp-badge{
        width: 6.5vw;
    }

    .pp-gallery .swiper-pagination {
        gap: 0.233vw!important;
        bottom: 1.917vw!important;
    }

    .pp-gallery .swiper-pagination-bullet {
        width: 0.417vw;
        height: 0.417vw;
    }

    /* Активный буллет */
    .pp-gallery .swiper-pagination-bullet-active {
        width: 2.083vw;
        height: 0.417vw;
        border-radius: 0.833vw; /* делает капсулу */
    }

    .pp-info {
        width: 35.75vw;
        gap: 2.083vw;
    }

    .pp-title{
        font-size: 2.667vw;
    }

    .pp-variations {
        gap: 2.667vw;
    }

    .pp-price {
        font-size: 1.5vw;
    }


    .pp-price del .amount{
        font-size: 1.2vw;
        color: gray;
    }

    .pp-price .amount{
        font-size: 1.5vw;
    }

    .pp-chips{
        gap: 0.417vw;
    }


    .pp-chip{
        font-size: 0.833vw;
        gap: 0.417vw;
        border-radius: 0.833vw;
        padding: 0.333vw 0.5vw;

    }
    .pp-chip img{
        width: 1.417vw;
        height: 1.417vw;
    }

    .pp-title-chips{
        gap: 1.167vw;
    }

    .pp-actions-wrapper{
        gap: 1vw;
    }

    .pp-add-btn__wrapper{
        gap: 1vw;
        height: 4.417vw;
    }

    .pp-add .spinner-one{
        width: 1.083vw;
    }

    .pp-add .btn-success{
        font-size: 1.083vw;
    }

    .pp-add {
        border-radius: 0.833vw;
        font-size: 1.083vw;
    }

    .custom-counter{
        border: 0.117vw solid #4660FF;
        border-radius: 0.833vw;
        gap: 0.504vw;
        padding: 0 1.667vw;
    }
    .custom-counter #custom-count{
        font-size: 0.833vw;
    }
    .custom-counter button {
        font-size: 0.833vw;
    }
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
}

.category-slider-wrapper {
    position: relative;
    width: 100%;
}
.category-swiper {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 1.042vw;
}
.custom-swiper-button-next,
.custom-swiper-button-prev{
    width: 1.667vw;
    height: 1.667vw;
    background: #E8E8E8 !important;
    top: 50%;
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.custom-swiper-button-prev{
    left:1.406vw;
}
.custom-swiper-button-prev svg,
.custom-swiper-button-next svg{
    height: 0.833vw;
    width: 0.833vw;
}
.custom-swiper-button-next{
    right:1.406vw;
}
.swiper-button-disabled{
    opacity: 0.7;
}

.category-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* картинка тянется */
.category-swiper .slide-bg {
    position: absolute;
    inset: 0;
}
.category-swiper .slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* растянуть до низа */
}

/* затемнение, если нужно */
.category-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.2));
}

/* текст поверх */
.category-swiper .slide-content {
    position: absolute;
    top: 3.698vw;
    left: 0;
    width: 100%;
    padding: 0 1.25vw;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.719vw;
}

/* стили текста */
.category-swiper .slide-subtitle {
    font-size: 0.833vw;
    font-weight: 600;
    line-height: 130%;
    font-family: 'Inter', sans-serif;
}

.category-swiper .slide-title {
    font-size: 1.25vw;
    font-weight: 400;
    line-height: 130%;
    font-family: 'Inter', sans-serif;
}

/* пагинация сверху */
.category-swiper .swiper-pagination {
    position: absolute;
    top: 0 !important;
    left: 0;
    width: 100%;
    display: flex;
    gap: 0.208vw;
    padding: 1.25vw 1.458vw 0;
    max-height: 0.313vw;
    z-index: 5;
}

.category-swiper .swiper-pagination-bullet {
    flex: 1;
    height: 0.208vw;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-swiper .swiper-pagination-bullet-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #fff;
    transition: width linear;
}

.category-swiper .story-close{
    display: none;
}

@media (max-width: 1200px) {
    .category-swiper {
        border-radius: 1.917vw;
    }
    .category-swiper .slide-content {
        top: 4.25vw;
        padding: 0 2.167vw;
    }
    .category-swiper .slide-content .slide-texts{
        display: flex;
        flex-direction: column;
        gap: 2.083vw;
    }

    /* стили текста */
    .category-swiper .slide-subtitle {
        font-size: 1.25vw;
    }

    .category-swiper .slide-title {
        font-size: 1.833vw;
    }

    /* пагинация сверху */
    .category-swiper .swiper-pagination {
        position: absolute;
        top: 0 !important;
        padding: 1.833vw 2.167vw 0;
        max-height: 3vw;
        z-index: 5;
    }

    .category-swiper .swiper-pagination-bullet {
        height: 0.333vw;
        border-radius: 1.5vw;
        margin:0.333vw!important;
    }
    .custom-swiper-button-next,
    .custom-swiper-button-prev{
        width: 2.5vw;
        height: 2.5vw;
    }

    .custom-swiper-button-prev{
        left:2.083vw;
    }
    .custom-swiper-button-prev svg,
    .custom-swiper-button-next svg{
        height: 1.25vw;
        width: 1.25vw;
    }
    .custom-swiper-button-next{
        right:2.083vw;
    }
}

@media (max-width: 800px) {
    .category-swiper {
        border-radius: 3vw;
    }
    .category-swiper .slide-content {
        top: 6.625vw;
        padding: 0 3.375vw;

    }
    .category-swiper .slide-content .slide-texts{
        display: flex;
        flex-direction: column;
        gap: 3.375vw;
    }

    /* стили текста */
    .category-swiper .slide-subtitle {
        font-size: 1.875vw;
    }

    .category-swiper .slide-title {
        font-size: 2.875vw;
    }

    /* пагинация сверху */
    .category-swiper .swiper-pagination {
        position: absolute;
        top: 0 !important;
        padding: 2.875vw 3.375vw 0;
        max-height: 3vw;
        z-index: 5;
    }

    .category-swiper .swiper-pagination-bullet {
        height: 0.5vw;
        border-radius: 2.375vw;
        margin:0.5vw!important;
    }

    .category-swiper.is-fullscreen{
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh;
        border-radius: 0 !important;
        background: #000;
        z-index: 99999;
    }

    .category-swiper.is-fullscreen .swiper-slide{
        border-radius: 0 !important;
    }

    .category-swiper.is-fullscreen .story-close {
        display: block;
        position: absolute;
        top: 10vw;
        right: 5vw;
        font-size: 12vw;
        z-index: 1122;
        color: white;
        font-weight: 100;
    }
    .category-swiper.is-fullscreen .slide-content{
        top: 16vw;
        padding: 0 6.25vw;
    }

    .category-swiper.is-fullscreen .slide-content .slide-texts{
        display: flex;
        flex-direction: column;
        gap: 7.5vw;
    }

    /* стили текста */
    .category-swiper.is-fullscreen .slide-subtitle {
        font-size: 3.75vw;
        font-weight: 600;
    }
    .category-swiper.is-fullscreen .custom-swiper-button-next,
    .category-swiper.is-fullscreen .custom-swiper-button-prev
    {
        width: 20%;
        height: 80%;
        background: transparent!important;
        top: 10%;
        border-radius: unset;
    }

    .category-swiper.is-fullscreen .slide-title {
        font-size: 5.25vw;
        font-weight: 400;
    }

    /* пагинация сверху */
    .category-swiper.is-fullscreen .swiper-pagination {
        position: absolute;
        top: 0 !important;
        padding: 3vw 2.75vw 0;
        max-height: 5vw;
        z-index: 5;
    }

    .category-swiper.is-fullscreen .swiper-pagination-bullet {
        height: 1vw;
        border-radius: 4.5vw;
        margin:1vw!important;
    }

    .category-swiper .swiper-pagination-bullet {
        height: 0.333vw;
        border-radius: 1.5vw;
        margin:0.333vw!important;
    }
    .custom-swiper-button-next,
    .custom-swiper-button-prev{
        width: 3.875vw;
        height: 3.875vw;
    }

    .custom-swiper-button-prev{
        left:3.25vw;
    }
    .custom-swiper-button-prev svg,
    .custom-swiper-button-next svg{
        height: 2vw;
        width: 2vw;
    }
    .custom-swiper-button-next{
        right:3.25vw;
    }
}

@media (max-width: 400px) {
    .category-swiper{
        border-radius: 3vw;
    }
    .category-swiper .slide-content {
        top: 8vw;
        padding: 0 5vw;

    }
    .category-swiper .slide-content .slide-texts{
        display: flex;
        flex-direction: column;
        gap: 3.5vw;
    }



    /* стили текста */
    .category-swiper .slide-subtitle {
        font-size: 2vw;
    }

    .category-swiper .slide-title {
        font-size: 3vw;
    }

    /* пагинация сверху */
    .category-swiper .swiper-pagination {
        position: absolute;
        top: 0 !important;
        padding: 2.25vw 5vw 0;
        max-height: 5vw;
        z-index: 5;
    }

    .category-swiper .swiper-pagination-bullet {
        height: 0.5vw;
        border-radius: 7.5vw;
        margin:0.5vw!important;
    }
    .category-swiper.is-fullscreen{
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh;
        border-radius: 0 !important;
        background: #000;
        z-index: 9999;
    }

    .category-swiper.is-fullscreen .swiper-slide{
        border-radius: 0 !important;
    }

    .category-swiper.is-fullscreen .story-close {
        display: block;
        position: absolute;
        top: 10vw;
        right: 5vw;
        font-size: 12vw;
        z-index: 1122;
        color: white;
        font-weight: 100;
    }
    .category-swiper.is-fullscreen .slide-content{
        top: 16vw;
        padding: 0 6.25vw;
    }

    .category-swiper.is-fullscreen .slide-content .slide-texts{
        display: flex;
        flex-direction: column;
        gap: 7.5vw;
    }

    /* стили текста */
    .category-swiper.is-fullscreen .slide-subtitle {
        font-size: 3.75vw;
        font-weight: 600;
    }

    .category-swiper.is-fullscreen .slide-title {
        font-size: 5.25vw;
        font-weight: 400;
    }

    /* пагинация сверху */
    .category-swiper.is-fullscreen .swiper-pagination {
        position: absolute;
        top: 0 !important;
        padding: 3vw 2.75vw 0;
        max-height: 5vw;
        z-index: 5;
    }

    .category-swiper.is-fullscreen .swiper-pagination-bullet {
        height: 1vw;
        border-radius: 4.5vw;
        margin:1vw!important;
    }

    .custom-swiper-button-next,
    .custom-swiper-button-prev{
        width: 20%;
        height: 80%;
        background: transparent!important;
        top: 10%;
        border-radius: unset;
    }

    .custom-swiper-button-prev{
        left:0;
    }
    .custom-swiper-button-prev svg,
    .custom-swiper-button-next svg{
        display:none;
    }
    .custom-swiper-button-next{
        right:0;
    }
    .swiper-button-disabled{
        opacity: unset;
    }
}

.category-swiper,
.category-swiper * {
    -webkit-user-select: none; /* iOS/Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
    user-select: none;         /* Современные браузеры */
}

/* Запрещаем long-tap меню на картинках */
.category-swiper img {
    -webkit-touch-callout: none; /* iOS Safari */
    pointer-events: none;        /* отключаем клики/тапы по самим картинкам */
}

.category-swiper .slide-texts{
    display: flex;
    flex-direction: column;
    gap: 1.719vw;
}
/*mobile cats*/
.shop-page-mobile-cats{
    display: none;
}

@media (max-width: 400px) {
    .shop-page-mobile-cats{
        display: flex;
    }
}

/*filters btn*/
.shop__desktop-sticky-menu__item__filter-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625vw;
}
.shop__desktop-sticky-menu__item__filter-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.365vw 0.781vw;
    border-radius: 3.229vw;
    background: #EEEEEE;
    margin: 0;
}
.shop__desktop-sticky-menu__item__filter-btn.selected{
    background: #4660FF;
}
.shop__desktop-sticky-menu__item__filter-btn.selected .shop__desktop-sticky-menu__item__filter-btn-content span{
    color: white;
}

.shop__desktop-sticky-menu__item__filter-btn.selected svg{
    filter: brightness(0) invert(1);
}

.shop__desktop-sticky-menu__item__filter-btn svg{
    height: 1.542vw;
    width: 1.542vw;
}

.shop__desktop-sticky-menu__item__filter-btn .shop__desktop-sticky-menu__item__filter-btn-content span{
    font-family: 'Inter', sans-serif;
    font-size: 0.833vw;
    font-weight: 600;
    line-height: 130%;
    color: #191919;
}

.shop__desktop-sticky-menu__item__filter-btn .shop__desktop-sticky-menu__item__filter-btn-content svg{
    height: 1.042vw;
    width: 1.042vw;
}

.shop__desktop-sticky-menu__item__filter-btn-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.521vw;
}

@media (max-width: 1200px) {
    .shop__desktop-sticky-menu__item__filter-wrapper{
        gap: 0.583vw;
    }
    .shop__desktop-sticky-menu__item__filter-btn {
        padding: 0.583vw 1.25vw;
        border-radius: 5.167vw;
    }

    .shop__desktop-sticky-menu__item__filter-btn svg{
        height: 2.333vw;
        width: 2.333vw;
    }

    .shop__desktop-sticky-menu__item__filter-btn .shop__desktop-sticky-menu__item__filter-btn-content span{
        font-size: 1.333vw;
    }

    .shop__desktop-sticky-menu__item__filter-btn .shop__desktop-sticky-menu__item__filter-btn-content svg{
        height: 1.667vw;
        width: 1.667vw;
    }

    .shop__desktop-sticky-menu__item__filter-btn-content{
        gap: 0.917vw;
    }
}

@media (max-width: 800px) {
    .shop__desktop-sticky-menu__item__filter-wrapper{
        gap: 1.5vw;
    }
    .shop__desktop-sticky-menu__item__filter-btn {
        padding: 0.875vw 1.875vw;
        border-radius: 7.75vw;
    }

    .shop__desktop-sticky-menu__item__filter-btn svg{
        height: 3.5vw;
        width: 3.5vw;
    }

    .shop__desktop-sticky-menu__item__filter-btn .shop__desktop-sticky-menu__item__filter-btn-content span{
        font-size: 2vw;
    }

    .shop__desktop-sticky-menu__item__filter-btn .shop__desktop-sticky-menu__item__filter-btn-content svg{
        height: 2.5vw;
        width: 2.5vw;
    }

    .shop__desktop-sticky-menu__item__filter-btn-content{
        gap: 1.375vw;
    }
}

/*filter popups*/

.filter-popup {
    position: fixed;
    bottom: 100px;
    left: 0;
    transform: translateY(350%);
    background: #fff;
    width: 24.271vw;
    padding: 1.667vw 2.865vw;
    border-radius: 1.042vw;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0.104vw 1.042vw 0 #0000001A;
    gap: 2.396vw;
    z-index: 999;
    transition: transform .25s ease;
}
.filter-popup.visible{
    transform: translateY(0%);
}

.filter-popup__close-button{
    position: absolute;
    top: 1vw;
    right: 1vw;
    margin: 0;
    padding: 0;
}
.filter-popup__content{
    display: flex;
    flex-direction: column;
    gap: 1.875vw;
}
.filter-popup__header{
    display: flex;
    flex-direction: column;
    gap: 0.833vw;
}

.filter-popup__title{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 100%;
    font-size: 1.667vw;
}
.filter-popup__question{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 124%;
    font-size: 0.729vw;
    display: flex;
    align-items: center;
    color: #4660FF;
    cursor: pointer;
}
.filter-popup__question-mobile{
    display: none;
    font-family: 'Inter', sans-serif;
}
.filter-popup__question:hover
{
    color: #4660FF;
    opacity: 0.8;
}
.filter-popup__question svg{
    padding-bottom: 2px;
}
.filter-popup__actions{
    height: 3.021vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.417vw;
}
.filter-popup__actions-btn{
    margin: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 105%;
    font-size: 0.833vw;
    border-radius: 0.625vw;
    background: #EBEBEB;
    color: #191919;
    width: 9.063vw;
    font-weight: 500;
}

.filter-popup__actions-apply{
    background: #4660FF;
    color: white;
}
.filter-popup.category .filter-popup__grid{

}
.filter-popup__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.521vw;
}

.filter-popup__grid-item{
    display: flex;
    background: #F6F6F6;
    border-radius: 0.625vw;
    padding: 0.781vw;
    border: 0.104vw solid transparent;
    flex-direction: column;
    height: 4.792vw;
}

.filter-popup__grid-item.selected{
    border: 0.104vw solid #4660FF;
}

.filter-popup__grid-item svg{
    margin-top: auto;
    height: 1.458vw;
    width: 1.458vw;
    align-self: end;
}

.filter-popup__grid-item span{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.625vw;
    line-height: 100%;
    color: #191919;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+ */
    user-select: none;         /* стандарт */
}
.filter-popup__grid-item span:hover{
    color: #191919;
}

.filter-popup-mobile-line{
    display: none;
}

@media (max-width: 1200px) {
    .filter-popup {
        width: 38.833vw;
        padding: 4.167vw 4.583vw;
        border-radius: 1.667vw;
        box-shadow: 0 0.167vw 1.667vw 0 #0000001A;
        gap: 1.417vw;
    }

    .filter-popup__close-button{
        position: absolute;
        top: 1vw;
        right: 1vw;
        margin: 0;
        padding: 0;
    }
    .filter-popup__close-button svg{
        height:2.667vw;
        width: 2.667vw;
    }


    .filter-popup__content{
        gap: 3vw;
    }

    .filter-popup__header{
        gap: 1.333vw;
    }

    .filter-popup__title{
        font-size: 2.667vw;
    }

    .filter-popup__question{
        font-size: 1.167vw;
    }

    .filter-popup__question svg{
        padding-bottom: 2px;
        width: 1.333vw;
        height: 1.333vw;
    }

    .filter-popup__actions{
        height: 4.833vw;
        gap: 0.667vw;
    }
    .filter-popup__actions-btn{
        font-size: 1.333vw;
        border-radius: 1vw;
        flex-grow: 1;
    }

    .filter-popup__grid{
        gap: 0.833vw;
    }

    .filter-popup__grid-item{
        border-radius: 1vw;
        padding: 1.25vw;
        border: 0.167vw solid transparent;
        height: 7.667vw;
    }

    .filter-popup__grid-item.selected{
        border: 0.167vw solid #4660FF;
    }

    .filter-popup__grid-item svg{
        margin-top: auto;
        height: 2.333vw;
        width: 2.333vw;
    }

    .filter-popup__grid-item span{
        font-size: 1vw;
    }
}

@media (max-width: 800px) {
    .filter-popup-mobile-line{
        display: flex;
        width: 15.25vw;
        height: 5.65vw;
        top: 3.125vw;
        position: absolute;
        touch-action: none;
        align-self: center;
        justify-content: center;
    }
    .filter-popup-mobile-line-rect{
        width: 10.25vw;
        height: 1.65vw;
        border-radius: 5vw;
        background: rgba(216, 216, 216, 1);
        align-self: center;
    }

    .filter-popup {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 150%);
        width: 100%;
        padding: 8.25vw 4.125vw 5.5vw 4.125vw;
        height: 68%;
        border-radius: 5.125vw 5.125vw 0 0;
        box-shadow: unset;
        justify-content: space-between;
        top:unset;
        gap: 2.396vw;
        transition: transform .55s ease;
        display: flex;
    }

    .filter-popup.visible{
        transform: translate(-50%, 0%);
    }
    .filter-popup__close-button{
        display: none;
    }
    .filter-popup__close-button svg{
        display: none;
    }
    .filter-popup__content{
        gap: 5.125vw;
    }

    .filter-popup__title{
        font-size: 5.125vw;
        font-weight: 600;
    }
    .filter-popup__question{
        display: none;
    }
    .filter-popup__question-mobile{
        display: flex;
    }

    .filter-popup__question-mobile span{
        font-size: 3.625vw;
        color: #4660FF;
    }
    .filter-popup__question-mobile span{
        margin-top: 2px;
    }


    .filter-popup__actions{
        height: 14.75vw;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 2vw;
    }
    .filter-popup__actions-btn{
        margin: 0;
        font-size: 3.5vw;
        border-radius: 3vw;
        flex-grow: 1;
    }

    .filter-popup__grid{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5vw;
        overflow-y: auto;
    }

    .filter-popup__grid-item{
        border-radius: 3vw;
        padding: 3.75vw;
        border: 0.5vw solid transparent;
        height: 23vw;
    }
    .filter-popup.category .filter-popup__grid-item{
        position: relative;
    }
    .filter-popup.category .filter-popup__grid-item img{
        bottom: 1vw;
        right: 1vw;
        height: 60%;
    }
    .filter-popup.category .filter-popup__content{
        height: 100%;
    }
    .filter-popup.category .filter-popup__grid-item.has-image{
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
    }

    .filter-popup__grid-item.selected{
        border: 0.5vw solid #4660FF;
    }

    .filter-popup__grid-item svg{
        margin-top: auto;
        height: 7vw;
        width: 7vw;
        align-self: end;
    }

    .filter-popup__grid-item span{
        font-size: 3vw;
        z-index: 1;
    }
}

@media (max-width: 400px) {
    .filter-popup-mobile-line{
        display: flex;
        height: 4vw;
        width: 17.25vw;
        position: absolute;
        top: 3vw;
        align-self: center;
        touch-action: none;
        justify-content: center;
    }
    .filter-popup-mobile-line-rect{
        width: 10vw;
        height: 1.25vw;
        border-radius: 3vw;
        background: rgba(216, 216, 216, 1);
        align-self: center;
    }

    .filter-popup {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 150%);
        width: 100%;
        padding: 8vw 4.25vw 5.25vw 4.25vw;
        height: 66.33%;
        border-radius: 5vw 5vw 0 0;
        box-shadow: unset;
        justify-content: space-between;
        top:unset;
        gap: 2.396vw;
        transition: transform .55s ease;
        display: flex;
    }
    .filter-popup.category{
        height: 85.33%;
    }
    .filter-popup.visible{
        transform: translate(-50%, 0%);
    }
    .filter-popup__close-button{
        display: none;
    }
    .filter-popup__close-button svg{
        display: none;
    }
    .filter-popup__content{
        gap: 5vw;
    }

    .filter-popup__title{
        font-size: 5vw;
    }
    .filter-popup__question{
        display: none;
    }
    .filter-popup__question-mobile{
        display: flex;
    }
    .filter-popup__question-mobile span{
        font-size: 3.5vw;
        color: #4660FF;
    }
    .filter-popup__question-mobile span{
        margin-top: 2px;
    }



    .filter-popup__actions{
        height: 14.5vw;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 2vw;
    }
    .filter-popup__actions-btn{
        margin: 0;
        font-size: 3.5vw;
        border-radius: 3vw;
        flex-grow: 1;
    }

    .filter-popup__grid{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5vw;
        overflow-y: auto;
    }

    .filter-popup__grid-item{
        border-radius: 3vw;
        padding: 3.75vw;
        border: 0.5vw solid transparent;
        height: 23vw;
    }
    .filter-popup.category .filter-popup__grid-item{
        position: relative;
    }
    .filter-popup.category .filter-popup__grid-item img{
        bottom: 1vw;
        right: 1vw;
        height: 60%;
    }
    .filter-popup.category .filter-popup__content{
        height: 100%;
    }
    .filter-popup.category .filter-popup__grid-item.has-image{
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
    }

    .filter-popup__grid-item.selected{
        border: 0.5vw solid #4660FF;
    }

    .filter-popup__grid-item svg{
        margin-top: auto;
        height: 7vw;
        width: 7vw;
        align-self: end;
    }

    .filter-popup__grid-item span{
        font-size: 3vw;
        z-index: 1;
    }
}
/*empty filter*/
.shop-empty-global{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.833vw;
}
@media (max-width: 400px) {
    .shop-empty-global{
        gap: 5vw;
    }
    .shop-empty-global span{
        text-align: center;
        padding: 0 4vw;
    }
}
/* mobile filter */
.shop-page-mobile-cats__item__filter-btn{
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 999px;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 2vw;
    padding: 1vw 2.5vw;
    text-decoration: none;
    color: inherit;
    margin: 0;
    background: #EEEEEE;
}
.shop-page-mobile-cats__item__filter-btn.selected{

    background: #4660FF;
}
.shop-page-mobile-cats__item__filter-btn.selected .shop-page-mobile-cats__item__filter-btn-content span{
    color: white;
}

.shop-page-mobile-cats__item__filter-btn.selected svg path{
    stroke: white;
}

.shop-page-mobile-cats__item__filter-btn-content{
    font-size: 3vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 130%;
    color: #191919;
}

.shop-page-mobile-cats {
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.shop-page-mobile-cats__scroller{
    display: flex;
    gap: 4px;
    width: 100%;
    justify-content: center;
    padding: 2.5vw 2vw 2.5vw 2vw;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-bottom: 1px solid rgba(216, 216, 216, 1);
}

.shop-page-mobile-cats__scroller::-webkit-scrollbar { display: none; }

.shop-page-mobile-cats__item__filter-btn.is-active{
    background: #f3f4f6;
}

/* когда фиксируется: анимируем именно SCROLLER */
.shop-page-mobile-cats.is-fixed .shop-page-mobile-cats__scroller{
    position: fixed;
    top: 15vw;          /* высота шапки */
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 0.5vw 1.25vw rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform .3s ease; /* плавность только в fixed-состоянии */
}


@media (max-width: 800px){
    .filter-backdrop{
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease;
        z-index: 1000;          /* ниже попапа */
    }

    /* показываем бэкдроп */
    .filter-backdrop.visible{
        opacity: 1;
        visibility: visible;
    }

    /* сам попап должен быть выше бэкдропа */
    .filter-popup{
        position: fixed;        /* если не fixed — сделайте fixed */
        z-index: 1001;
    }

    html.no-scroll, body.no-scroll{
        overflow: hidden;
        height: 100%;
    }

}

/*Поиск*/