/* SETTINGS */
:root{
    --white: #fff;
    --color: #2D2E34;
    --red: #B71E1E;
    --orange: #FF563E;
    --white-blue: #C8E5FF;
    --grey:#B9BCC1;
    --green: #09A059;
    --pink: #E24EB6;
    --black: #000;
    --undertitle: #2B455D;
    --white-pink: #F0EFF9;
    --card-two: #E2E9FF;
    --footer: #292929;
}
*,
*::before,
*::after{
    box-sizing: border-box;
}
body,html{
    scroll-behavior: smooth;
    /* scrollbar-gutter: stable; */
    overflow-x: hidden;
}
body{
    min-width: 320px;
    background: #fff;
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 400;
    color: var(--color);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    cursor: default;
}
a{
    text-decoration: none;
    color: inherit;
}
img{
    display: block;
}
strong{
    font-weight: 700;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1;
}
button{
    background: none;
    outline: none;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border: none;
    cursor: pointer;
}   

.hidden{
    display: none;
}

.btn{
    position: relative;
    padding: 24px 20px;
    background-color: var(--orange);
    border-radius: 30px;
    color: var(--white);
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    display: block;
    max-width: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    transition: 0.2s ease all;
}
.btn:hover{
    background-color: var(--red);
}
.btn:active{
    top: 1px;
}

.btn-info{
    position: relative;
    border: 2px solid var(--orange);
    background-color: var(--white);
    border-radius: 30px;
    color: var(--orange);
    font-size: 18px;
    line-height: 24px;
    padding: 16px 15px 18px;
    text-align: center;
    display: block;
    max-width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 400;
    transition: 0.2s ease all;

}
.btn-info:before{
    transition: 0.2s ease all;
}
.btn-info:hover{
    background-color: var(--orange);
    color: var(--white);
}
.btn-info:hover:before{
    filter: brightness(0) invert(1);
}
.btn-info:active{
    top: 1px;
}

.btn-info.btn-back{
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    height: 70px;
    font-size: 18px;
}
.btn-info.btn-back::before{
    content: '';
    flex-shrink: 0;
    background: url(../images/strelka.svg);
    width: 12px;
    height: 20px;
    display: block;
    transform: rotate(180deg);
}

.btn-to-catalog{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    padding: 5px 0;
}
.btn-to-catalog:before{
    content: '';
    flex-shrink: 0;
    background: url(../images/strelka-black.svg) 50% 50% / cover no-repeat;
    width: 9px;
    height: 20px;
    display: block;
    transform: rotate(180deg);
}

button:disabled,
button.is-disabled {
  opacity: 0.6;               
  background-color: #e4e6eb; 
  color: #8a8d91;             
  cursor: not-allowed;        
  pointer-events: none;       
  box-shadow: none;
}

.title{
    font-size: 25px;
    text-transform: uppercase;
}

.list-type1 li{
    margin-bottom: 5px;
}
.list-type1 li:last-child{
    margin-bottom: 0;
}

.list-type2{
    list-style-type: unset;
    padding-left: 20px;
}
.list-type2 li:not(:last-child){
    margin-bottom: 5px;
}


.phone-input--error  { border-color: red !important; }
.phone-input--valid  { border-color: green !important; }
.phone-input__error-message { color: red; font-size: 12px; margin-top: -15px; text-align: center;}



/* STYLE */

.container{
    max-width: 1440px;
    padding: 0 10px;
    margin: 0 auto;
}

.header{
    padding: 0;
}
.header .container{
    position: relative;
}
.header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--white-blue);
    padding: 20px 0;
}
.contacts{
    display: flex;
    align-items: center;
    gap: 15px;
}
.contacts-item{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: 0.2s ease all;
}
.contacts-item .icon{
    padding: 8px;
    border-radius: 10px;
}
.contacts-item .icon.pink{
    background-color: var(--white-pink);
}
.contacts-item .icon.blue{
    background-color: var(--white-blue);
}
.contacts-item:hover{
    color: var(--orange);
}

.header-mobile{
    display: none;
}
.header-mobile-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-mobile-inner .backet{
    margin-left: auto;
    margin-right: 20px;
}
.header-mobile-inner .backet>img{
    width: 35px;
}
.header-mobile-inner .backet .basket-count{
    width: 20px;
    height: 20px;
    font-size: 11px;
}
.burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 30px;
}
.burger>div{
    background-color: #000;
    width: 100%;
    height: 3px;
    transition: 0.3s;
}
.burger::before,
.burger::after {
    content: "";
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.3s;
}
.burger::before {
    margin-bottom: 8px;
}
.burger::after {
    margin-top: 8px;
}

/* активное состояние */
.burger.active{
    background-color: transparent;
}
.burger.active>div{
    opacity: 0;
}
.burger.active::before{
    transform: rotate(45deg);
    top: 10px;
}
.burger.active::after{
    transform: rotate(-45deg);
    top: -10px;
}

.header__inner .btn{
    font-size: 16px;
    padding: 12px 20px;
    max-width: 240px;
}

/* LANG SWITCHER */
.lang-switcher{
    position: relative;
}
.lang-switcher__btn{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 500;
    color: inherit;
    cursor: pointer;
    padding: 6px 5px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
    background: none;
    border: none;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    line-height: 1;
}
.lang-switcher__btn:hover{
    color: var(--orange);
}
.lang-switcher__flag{
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
}
.lang-switcher__code{
    line-height: 1;
}
.lang-switcher__arrow{
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: currentColor;
}
.lang-switcher.active .lang-switcher__arrow{
    transform: rotate(180deg);
}
.lang-switcher__dropdown{
    position: absolute;
    top: calc(100% + 8px);
    right: 50%;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    z-index: 100;

    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateY(-6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.lang-switcher.active .lang-switcher__dropdown{
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}
.lang-switcher__item a{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.lang-switcher__item a:hover{
    background-color: #F0EFF9;
    color: var(--orange);
}
.lang-switcher__item--active a{
    color: var(--orange);
    font-weight: 600;
}
.lang-switcher__item img{
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
}
/* END LANG SWITCHER */

/* Footer lang switcher */
.footer .lang-switcher__btn{
    color: var(--white);
}
.footer .lang-switcher__dropdown{
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateX(50%) translateY(6px);
}
.footer .lang-switcher.active .lang-switcher__dropdown{
    transform: translateX(50%) translateY(0);
}
/* END Footer lang switcher */

.header-list{
    display: flex;
    gap: 30px;
    align-items: center;
}
.header-list > li{
    position: relative;
}

.header-list > li::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.header-list > li:hover::after{
    width: 100%;
}
.header-nav{
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.backet{
    display: flex;
    background-color: var(--white);
}
.basket-count{
    width: 25px;
    height: 25px;
    color: var(--white);
    background-color: var(--black);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    margin-left: -15px;
    margin-top: -10px;
}





.hero{
    background: url(../images/hero-bg2.png) calc(50% + 430px) 50% no-repeat,
    url(../images/hero-bg.jpg) 50% 50%;
    padding: 150px 0;
}
.main-title{
    font-size: 55px;
    line-height: 1.1em;
    max-width: 775px;
    margin-bottom: 70px;
}
.main-title>span{
    color: var(--pink);
}


.benefits{
    background-color: var(--white);
    max-width: 1440px;
    margin: -25px auto 20px;
    border-radius: 20px;
}
.benefits-inner{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 35px;
    padding: 35px 20px;
}
.benefits-item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.3em;
}

.shadow{
    box-shadow: 0 0 18px rgba(0, 123, 255, 0.2);
}



.banners{
    padding: 50px 0;
}
.banners-inner{
    display: flex;
    justify-content: space-between;
}
.banner-title{
    font-size: 25px;
    text-transform: uppercase;
    max-width: 230px;
    line-height: 1.3;
}
.banner-text{
    font-size: 16px;
    line-height: 1.4em;
    color: var(--undertitle);
    max-width: 230px;
}
.banner{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px;
    max-width: 660px;
    width: 100%;
    border-radius: 25px;
}
.banner .btn{
    margin-top: auto;
}
.banner1{
    background: var(--white-pink)
     url(../images/card1-bg.png) calc(50% + 130px) 50% no-repeat;
}
.banner2{
    background: var(--card-two)
     url(../images/card2-bg.png) calc(50% + 150px) 100% no-repeat;
}


.products{
    padding: 40px 0;
}
.products .title{
    text-align: center;
    margin-bottom: 30px;
}
.filter-prod{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

.filter-btn{
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 18px;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #bdbdbd;
    transition: all ease .3s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
}

.products-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex-wrap: wrap;
}
.product-item{
    border-radius: 25px;
    border: 1px solid #E2E9FF;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}
.product-item.prod-hidden{
    display: none;
}
.hit{
    position: absolute;
    padding: 15px;
    width: 75px;
    height: 75px;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--pink);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
}
.hit:before{
    content: '';
    width: 22px;
    height: 22px;
    background: url(../images/star.svg) 50% 50% / 100% no-repeat;
    display: block;
    margin: 0 auto;
    flex-shrink: 0;
}
.prod-img {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-info{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    height: 100%;
}
.product-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-name{
    font-size: 25px;
    line-height: 1.2em;
}
.product-price{
    min-width: 100px;
    text-align: center;
    padding: 12px 10px;
    background-color: #F6F7FD;
    color: var(--orange);
    font-weight: 600;
    font-size: 20px;
    margin-right: -20px;
}
.product-img{
    height: 320px;
    background-color: #F6F7FD;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;

    flex-shrink: 0;
}
.product-img>img{
    max-height: 100%;
    max-width: 100%;
    width: auto;
}
.product-description{
    font-size: 16px;
    line-height: 1.4em;
}
.product-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 20px;

    margin-top: auto;
}

.product-buttons .btn{
    max-width: 140px;
    padding: 18px 10px;
    font-size: 20px;
}





.banner3 .banner-title, 
.banner4 .banner-title{
    max-width: 460px;
}
.banner3 .banner-text, 
.banner4 .banner-text{
    max-width: 350px;
}
.banner3{
    background: var(--card-two)
     url(../images/card-doctor.png) calc(50% + 230px) 100% no-repeat;
}
.banner4{
    background: var(--white-pink)
     url(../images/bottle.png) calc(50% + 160px) 100% no-repeat;
}





.health-form{
    padding: 0 0 50px;
}
.health-form-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #FFF0FB;
    border-radius: 30px;
    padding: 30px;
}
.health-form-img{
    max-width: 220px;
    flex-shrink: 0;
}
.health-form-content{
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
}
.health-form-title{
    font-size: 25px;
    text-transform: uppercase;
}
.health-form-text strong{
    font-weight: 700;
    color: var(--color);
}
.health-form-note{
    font-size: 15px;
    line-height: 1.4em;
    color: var(--pink);
}
.health-form .btn{
    flex-shrink: 0;
    max-width: 280px;
}


@media(max-width:1439px){
    .health-form-img{
        max-width: 180px;
    }
    .health-form-content{
        max-width: 560px;
    }
}

@media(max-width:1199px){
    .health-form-inner{
    }
    .health-form-img{
        max-width: 150px;
    }
    .health-form-content{
        gap: 20px;
    }
    .health-form-title{
        font-size: 24px;
    }
    .health-form-text{
        font-size: 16px;
    }
    .health-form .btn{
        max-width: 220px;
        font-size: 18px;
        padding: 18px 15px;
    }
}

@media(max-width:1023px){
    .health-form-inner{
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .health-form-img{
        max-width: 160px;
    }
    .health-form-content{
        max-width: 100%;
    }
    .health-form .btn{
        max-width: 320px;
        width: 100%;
    }
}

@media(max-width:767px){
    .health-form{
        padding: 0 0 40px;
    }
    .health-form-inner{
        padding: 25px;
        gap: 20px;
    }
    .health-form-img{
        max-width: 140px;
    }
    .health-form-title{
        font-size: 22px;
    }
    .health-form-text{
        font-size: 16px;
    }
    .health-form-note{
        font-size: 14px;
    }
}

@media(max-width:480px){
    .health-form-inner{
        padding: 20px;
    }
    .health-form-img{
        max-width: 120px;
    }
    .health-form-title{
        font-size: 20px;
    }
}




.program-inner{
    display: flex;
    align-items: center;
    border-radius: 30px;
    overflow: hidden;
    background-color: var(--card-two);
}
.program-left{
    display: flex;
    flex-direction: column;
    gap: 30px;  
    padding: 40px;
}
.program-left .btn{
    max-width: 360px;
}

.program-img{
    max-width: 800px;
    border-radius: 30px;
}
.pink-list{
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
}


.sinergy{
    padding: 80px 0 0;
}
.sinergy-inner{
    display: flex;
    justify-content: space-between;
}
.sinergy .title{
    text-align: center;
    margin-bottom: 20px;
}
.sinergy-title{
    font-weight: 700;
}
.sinergy .undertitle{
    text-align: center;
    max-width: 100%;
    margin-bottom: 50px;
}
.sinergy-img{
    width: 214px;
    height: 214px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E2E9FF;
    border-radius: 50%;
    margin: 0 auto;
}
.sinergy-img>img{
    max-width: 100px;
}
.sinergy-item{
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 420px;
    text-align: center;
    line-height: 1.3;
    padding: 45px 30px;
    border-radius: 25px;

}






.reviews{
    padding: 80px 0 0;
}
.reviews .title{
    text-align: center;
    margin-bottom: 30px;
}

.review {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    line-height: 1.3;
    max-width: 350px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
.review>img{
    margin: 0 auto;
    max-width: 350px;
    width: 100%;
}
.rev-content{
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.rev-names{
    display: flex;
    gap: 15px;
    align-items: center;
    margin: -40px 0 0;
}

.rev-names>span{
    font-weight: 600;
    padding-top: 20px;
}
.rev-names>img{
    width: 80px;
    border-radius: 50%;
}

.rev-prod>span{
    color: var(--orange);
    font-weight: 700;
    cursor: pointer;
}

.reviews-inner{
    position: relative;
}

.swiper {
    padding: 20px 0;
    margin: 0 60px;
}
.swiper-slide{
    display: flex;
    justify-content: center;
}
.swiper-button-next,
.swiper-button-prev{
    padding: 30px;
    border-radius: 20px;
    color: var(--white);
    background-color: var(--orange);
}
.swiper-pagination {
    bottom: 0 !important;
}
.swiper-button-next:after, 
.swiper-button-prev:after{
    font-size: 28px;
}


.text_alert{
    background: var(--white-pink);
    padding: 15px;
    font-size: 15px;
    line-height: 1.4em;
    max-width: 800px;
    margin: 20px auto 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 2px dashed rgba(0, 0, 0, 0.20);
}


.about{
    padding: 80px 0;
}

.about-inner{
    display: flex;
    align-items: center;
    background-color: var(--card-two);
    border-radius: 30px;
}
.about-inner>img{
    max-width: 670px;
    border-radius: 30px 0 0 30px;
    flex-shrink: 0;
}

.about-right{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    border-radius: 0 30px 30px 0;
}







.footer{
    color: var(--white);
    background-color: var(--footer);
    padding: 40px 0;
}
.footer-left{
    width: 60%;
}
.footer-left>p{
    font-size: 16px;
    line-height: 1.3;
}
.footer-logo{
    margin-bottom: 30px;
}
.footer-inner{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.footer-right{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.policy{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
}
.policy>a:hover{
    text-decoration: underline;
}


/* START POPUP-FORM */
.popup-form{
    background: #fff;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 25px;
    margin: 40px auto ;
    position: relative;
}
.form-data{
    background-color: var(--card-two);
    padding: 50px;
    text-align: center;
    color: var(--color);
    border-radius: 25px 25px 0 0;
}
.form-data>h3{
    font-size: 30px;
    line-height: 1.3em;
    font-weight: 700;
    margin-bottom: 15px;
}
.form-data>p{
    font-size: 18px;
}


.form{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px 40px;
    border-radius: 0 0 25px 25px;
}
.input-form{
    max-width: 500px;
    width: 100%;
    display: block;
    margin: 0 auto;
    height: 75px;
    text-align: center;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background-color: var(--white-pink);
    border: 1px solid #D4D4D4;
    padding: 0 20px;
    font-size: 20px;
}
.form .btn{
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4em;
    color: var(--color);
    user-select: none;
}

.form-checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid var(--grey);
    border-radius: 4px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 0;
    flex-shrink: 0;
    position: relative;
}

.form-checkbox-label input[type="checkbox"]:checked {
    border-color: var(--orange);
    background-color: var(--orange);
}

.form-checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 1px;
}

.form-checkbox-label span {
    text-align: left;
}

.form-checkbox-label span a {
    color: var(--orange);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.form-checkbox-label span a:hover {
    color: var(--red);
    text-decoration: none;
}

.popup-form .close{
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: transparent;
}
 
/* END POPUP-FORM */



/* START POPUP-INFO */
.popup-info{
    max-width: 1400px;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 25px;
    margin: 40px auto;
    padding: 50px;
    position: relative;
}
.popup-info-wrapper{
    display: flex;
    gap: 40px;
}
.info-img{
    background-color: var(--white-pink);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.popup-info-left{
    width: 370px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.calculator{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}
.calculator>button{
    position: relative;
    display: block;
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
    padding: 5px 10px;
    min-width: 34px;
    text-align: center;
    background-color: transparent;
    transition: 0.2s ease all;
    border-radius: 5px;
}
.calculator>button:hover{
    background-color: var(--white-pink);
}
.calculator>button:active{
    top: 1px;
    background: var(--card-two);
}
.popup-count{
    padding: 8px 15px;
    background-color: var(--white-pink);
    border-radius: 4px;
    font-weight: 600;
    flex-shrink: 0;
}
.info-price{
    display: block;
    color: var(--orange);
    font-weight: 600;
    text-align: center;
    font-size: 26px;
}
.popup-info-left .btn,
.popup-info-left .btn-info{
    max-width: 100%;
}
.popup-info-left .btn-info{
    padding: 18px 15px 20px;
}

.note{
    font-size: 16px;
    text-align: center;
}
.popup-info-right{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.popup-info-right>h3{
    font-size: 24px;
}
.info-top-description h1,
.info-top-description h2,
.info-top-description h3,
.info-top-description h4,
.info-top-description h5,
.info-top-description h6,
.when-works h1,
.when-works h2,
.when-works h3,
.when-works h4,
.when-works h5,
.when-works h6,
.info-main-component h1,
.info-main-component h2,
.info-main-component h3,
.info-main-component h4,
.info-main-component h5,
.info-main-component h6,
.info-main-description h1,
.info-main-description h2,
.info-main-description h3,
.info-main-description h4,
.info-main-description h5,
.info-main-description h6{
    font-size: 24px;
    line-height: 1.3em;
}
.info-main-description sub{
    font-size: 0.8em;
    line-height: 1.3em;
}
.when-works{
    padding: 25px;
    background-color: var(--card-two);
    border-radius: 25px;
}


.info-main-component ul,
.compound-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.info-main-component li,
.compound-list>li{
    padding-left: 25px;
    position: relative;
}
.info-main-component li::before,
.compound-list>li::before{
    content: '';
    background: url(../images/strelka.svg);
    width: 12px;
    height: 20px;
    display: block;
    position: absolute;
    top: 2px;
    left: -0;
}

.info-top-description,
.when-works,
.info-main-description,
.info-main-component{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-top-description ul,
.when-works ul,
.info-main-description ul{
    list-style-type: unset;
    padding-left: 20px;
}
.info-top-description li:not(:last-child),
.when-works li:not(:last-child),
.info-main-description li:not(:last-child){
    margin-bottom: 5px;
}



.popup-info .close{
    position: absolute;
    background-color: transparent;
    top: 15px;
    right: 15px;
}

.popup-info-buttons{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
}
.btn.btn-health-plan{
    font-size: 18px;
    max-width: 600px;
    width: 100%;
}

/* END POPUP-INFO  */



/* START POPUP-basket */
.popup-basket{
    background: #fff;
    max-width: 1400px;
    width: 100%;
    margin: 40px auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 20px;
    position: relative;
}
.basket-inner{
    display: flex;
    gap: 40px;
    padding: 40px;
}
.basket-title{
    text-align: center;
    background-color: var(--card-two);
    border-radius: 20px;
    height: 160px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.basket-title>h3{
    font-size: 25px;
}
.basket-choice{
    width: 60%;
}
.choice-item{
    display: flex;
    gap: 35px;
    align-items: center;
    padding: 15px 15px 15px 0;
    border-bottom: 1px solid var(--grey);
}
.choice-title{
    width: 30%;
}
.choice-img{
    padding: 10px;
    border-radius: 10px;
    background-color: var(--white-pink);
    display: flex;
    justify-content: center;
    align-items: center;
}
.choice-img>img{
    max-width: 55px;
}
.choice-price{
    font-size: 22px;
    font-weight: 600;
    color: var(--orange);
    flex-shrink: 0;
}
.choice-btn-delete{
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
    width: 36px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease all;
    border-radius: 4px;
}
.choice-btn-delete:hover{
    background-color: var(--white-pink);
}
.choice-btn-delete:active{
    top: 1px;
    background-color: var(--card-two);
}

.basket-btns{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: start;
    gap: 25px;
    margin-top: 40px;
}

.basket-btns .btn-health-plan{
    max-width: 100%;
    width: 100%;
    padding: 18px 30px 20px;
}

.basket-summ{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 10px;
}
.summ{
    font-size: 26px;
    color: var(--orange);
    font-weight: 600;
    padding-left: 5px;
}

.basket-form{
    width: 40%;
}
.basket-form .popup-form{
    margin: 0 auto;
    padding: 0;
}
.basket-form .form-data{
    background-color: var(--white);
    padding: 30px 30px 0;
}
.basket-form .form-data>h3{
    font-size: 22px;
}
.basket-form .form-data>p{
    font-size: 16px;
}

.popup-basket .close{
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: var(--card-two);
}

.basket-empty{
    display: none;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    font-size: 18px;
    line-height: 1.2em;
    padding: 50px 10px 0;
}


.fixed-basket-btn{
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
    cursor: pointer;

    transition: all 0.3s ease;

    position: fixed;
    bottom: 10%;
    right: 5%;
    z-index: 1000;

    transform: scale(0.8);
    opacity: 0;
    visibility: hidden;
}
.fixed-basket-btn.active{
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    animation: idleSwing 4s ease-in-out infinite;
    animation-delay: 0.3s;
}
.fixed-basket-btn:before{
    content: '';
    width: 50px;
    height: 50px;
    background: url(../images/backet.svg) 50% 50% / cover no-repeat;
    display: block;
}
.fixed-basket-btn .basket-count{
    margin-top: -35px;
}
.fixed-basket-btn:hover {
    background: #F6F7FD;
    animation: idleSwingInfinite 0.4s ease-in-out infinite;
}
@keyframes idleSwing {
    0%, 85%, 100% {
        transform: rotate(0deg);
    }
    88% {
        transform: rotate(-5deg);
    }
    91% {
        transform: rotate(5deg);
    }
    94% {
        transform: rotate(-3deg);
    }
    97% {
        transform: rotate(3deg);
    }
}
@keyframes idleSwingInfinite {
    0% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
    100% {
        transform: rotate(-3deg);
    }
}



.popup-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;

    background: rgba(0,0,0,0.5);
    overflow-y: auto; 
    display: flex;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-container.active {
    opacity: 1;
    visibility: visible;
}
.popup-content{
    display: none;
    margin: auto !important;
}
.popup-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.policy-popup{
    max-width: 1400px;
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    font-size: 16px;
    line-height: 1.5em;
    position: relative;
}
.policy-popup h2,
.policy-popup h3,
.policy-popup p{
    color: #000 !important;
}

.policy-popup a{
    text-decoration: underline;
    font-weight: 500;
}
.policy-popup a:hover{
    color: var(--orange)
}

.policy-popup .privacy-title{
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 1.2em;
    padding: 0;
}
.policy-popup h2,
.policy-popup h3{
    padding-top: 20px;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.2em;
}
.policy-popup h2{
    font-size: 28px;
}
.policy-popup p{
    margin-bottom: 10px;
}
.policy-popup ul{
    margin-bottom: 10px;
}
.policy-popup *:last-child{
    margin-bottom: 0;
}
.policy-popup .close{
    position: absolute;
    top: 10px;
    right: 10px;
}



/* START POPUP-thanks */
.popup-thanks .close {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: var(--card-two);
}
.popup-thanks .form-data{
    border-radius: 25px;
}
/* END POPUP-thanks */




/* START popup-health */
.popup-health .close {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: var(--card-two);
}
.popup-health-content{
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 0 0 25px 25px;
}
.popup-health-info{
    max-width: 1200px;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.health-info-img{
    flex-shrink: 0;
    max-width: 180px;
}
.health-info-img img{
    display: block;
}
.health-info-text{
    line-height: 1.5em;
}

/* health-interactive-form */

.health-interactive-form {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Progress Bar */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 35px;
    padding: 0 20px;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.progress-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #E2E9FF;
    color: #8a8d91;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.progress-step.active .progress-num,
.progress-step.completed .progress-num {
    background-color: var(--orange);
    color: var(--white);
}
.progress-label {
    font-size: 13px;
    font-weight: 500;
    color: #8a8d91;
    text-align: center;
    transition: color 0.3s ease;
}
.progress-step.active .progress-label,
.progress-step.completed .progress-label {
    color: var(--orange);
    font-weight: 600;
}
.progress-line {
    width: 50px;
    height: 2px;
    background-color: #E2E9FF;
    margin: 0 8px;
    margin-bottom: 22px;
    transition: background-color 0.3s ease;
}
.progress-line.completed {
    background-color: var(--orange);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.4s ease forwards;
}
.form-step.active {
    display: block;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 20px;
}
.step-desc {
    font-size: 15px;
    line-height: 1.5em;
    color: var(--undertitle);
    margin-bottom: 25px;
    max-width: 100%;
}
.step-divider {
    border: none;
    height: 1px;
    background: #E2E9FF;
    margin: 30px 0;
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Form Group */
.health-interactive-form .form-group {
    margin-bottom: 20px;
    padding: 18px 20px;
    background: #F0EFF9;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.health-interactive-form .form-group:hover {
    border-color: #E2E9FF;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--color);
    margin-bottom: 12px;
    line-height: 1.4em;
}
.form-label .required {
    color: var(--orange);
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--color);
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--white);
    border: 2px solid #D4D4D4;
    transition: all 0.2s ease;
    user-select: none;
}
.radio-item:hover {
    border-color: var(--orange);
}
.radio-item input[type="radio"] {
    display: none;
}
.radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #B9BCC1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    transform: scale(0);
    transition: transform 0.2s ease;
}
.radio-item input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--orange);
}
.radio-item input[type="radio"]:checked ~ .radio-custom::after {
    transform: scale(1);
}
.radio-item:has(input[type="radio"]:checked) {
    border-color: var(--orange);
    background: #FFF0FB;
}

/* Toggle Input */
.input-toggle {
    margin-top: 12px !important;
    max-width: 100% !important;
    height: 50px !important;
    font-size: 16px !important;
    text-align: left !important;
    padding-left: 16px !important;
}

/* Input overrides inside health form */
.health-interactive-form .input-form {
    max-width: 100%;
    margin: 0;
    text-align: left;
    padding: 0 16px;
    background: #fff;
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #E2E9FF;
}
.form-nav .form-prev {
    max-width: 160px;
    width: 100%;
    margin: 0;
}
.form-nav .form-next,
.form-nav .form-submit {
    max-width: 280px;
    margin: 0;
}

.form-nav + .form-checkbox-label {
    margin-top: 15px;
}

/* health-form-steps inside popup */
.health-form-steps {
    padding-bottom: 10px;
}

/* Health Sections */
.health-section {
    margin-bottom: 35px;
}
.health-section:last-child {
    margin-bottom: 0;
}

/* Health Block (скрываемые блоки вопросов) */
.health-block {
    animation: fadeInUp 0.4s ease forwards;
}

/* Form Row 4 columns */
.form-row-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

/* Checkbox Group (выбор разделов) */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--color);
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--white);
    border: 2px solid #D4D4D4;
    transition: all 0.2s ease;
    user-select: none;
}
.check-item:hover {
    border-color: var(--orange);
}
.check-item input[type="checkbox"] {
    display: none;
}

.check-custom {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #B9BCC1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.check-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
    margin-top: -2px;
}
.check-item input[type="checkbox"]:checked ~ .check-custom {
    border-color: var(--orange);
    background-color: var(--orange);
}
.check-item input[type="checkbox"]:checked ~ .check-custom::after {
    transform: rotate(45deg) scale(1);
}
.check-item:has(input[type="checkbox"]:checked) {
    border-color: var(--orange);
    background: #FFF0FB;
}

/* «Выбрать всё» */
.check-item-all {
    font-weight: 600;
    border-style: dashed;
}

/* --- Responsive --- */

@media (max-width: 767px) {

    .popup-health-content{
        padding: 0 20px 20px 20px;
    }

    .popup-health-info{
        flex-direction: column;
    }

    .health-info-text{
        font-size: 16px;
        line-height: 1.4em;
        text-align: center;
    }

    .health-info-img{
        max-width: 120px;
        padding: 15px;
        background: var(--card-two);
        border-radius: 0 0 20px 20px;
        margin-top: -25px;
    }

    .form-progress {
        gap: 0;
        margin-bottom: 25px;
        padding: 0;
    }
    .progress-num {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    .progress-line {
        width: 25px;
        margin: 0 4px;
        margin-bottom: 22px;
    }
    .progress-label {
        font-size: 11px;
    }

    .step-title {
        font-size: 18px;
    }
    .step-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .form-row,
    .form-row-3,
    .form-row-4 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .checkbox-group {
        gap: 8px;
    }
    .check-item {
        font-size: 14px;
        padding: 8px 12px;
    }

    .health-interactive-form .form-group {
        padding: 14px 12px;
        margin-bottom: 12px;
    }
    .form-label {
        font-size: 14px;
    }

    .radio-group {
        gap: 8px;
    }
    .radio-item {
        font-size: 14px;
        padding: 8px 12px;
    }

    .form-nav {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 25px;
        padding-top: 20px;
    }
    .form-nav .form-prev {
        order: 2;
        max-width: 100%;
        width: 100%;
    }
    .form-nav .form-next,
    .form-nav .form-submit {
        order: 1;
        max-width: 100%;
        width: 100%;
    }

    .input-toggle {
        height: 44px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .progress-num {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .progress-line {
        width: 16px;
        margin: 0 2px;
        margin-bottom: 20px;
    }
    .progress-label {
        font-size: 10px;
    }

    .form-nav .btn-info {
        height: 52px;
        font-size: 16px;
    }
}

/* END popup-health */




@media(max-width:1439px){
    .container{
        max-width: 1200px;
    }
    .banners-inner{
        justify-content: center;
        gap: 40px;
    }
    .benefits{
        max-width: 1190px;
    }
    .products-wrapper{
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .product-img {
        height: 250px;
    }
    .program-img{
        max-width: 570px;
    }
    .sinergy-item{
        max-width: 370px;
    }
    .about-right .undertitle{
        font-size: 18px;
    }
    .about-right{
        gap: 20px;
        padding: 30px;
    }
    .basket-inner{
        gap: 30px;
    }
    .swiper{
        margin: 0 80px;
        padding-inline: 10px;
    }
}


@media(max-width:1199px){
    .container{
        max-width: 1024px;
    }
    .benefits{
        max-width: 1000px;
    }
    .benefits-inner{
        grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    }
    .product-img {
        height: 200px;
    }
    .product-info{
        gap: 12px;
    }
    .product-name{
        font-size: 20px;
    }
    .product-description{
        font-size: 15px;
    }
    .hit{
        top: 15px;
        left: 15px;
        width: 60px;
        height: 60px;
        padding: 0;
        font-size: 14px;
        line-height: 18px;
    }
    .hit:before{
        width: 15px;
        height: 15px;
    }
    .product-buttons{
        gap: 10px;
    }
    .product-buttons .btn{
        padding-block: 12px;
        font-size: 20px;
    }
    .product-buttons .btn-info{
        padding: 10px 15px 11px;
    }
    .program-left{
        gap: 25px;
        padding: 30px;
    }
    .program-img{
        max-width: 480px;
    }
    .sinergy-inner{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .sinergy-item{
        max-width: calc(50% - 10px);
    }
    .about-inner > img{
        max-width: 500px;
    }
    .about-right{
        padding: 30px;
    }
    .basket-inner{
        padding: 20px;
        gap: 20px;
    }
    .about-inner > img{
        border-radius: 30px;
    }
    .rev-names>span{
        font-size: 16px;
        line-height: 1.4em;
    }

}


@media(max-width:1023px){
    body{
        font-size: 17px;
        line-height: 1.4em;
    }
    .container{
        max-width: 768px;
    }
    .contacts-item{
        font-size: 15px;
    }
    .hero{
        padding: 80px 0;
        background: url(../images/hero-bg2.png) calc(50% + 380px) 50% no-repeat, url(../images/hero-bg.jpg) 50% 50%;
    }
    .main-title{
        font-size: 44px;
        line-height: 1.2em;
    }
    .benefits{
        max-width: 600px;
    }
    .benefits-inner{
        grid-template-columns: repeat(2, 1fr);
    }
    .products-wrapper{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .header-list{
        gap: 15px;
    }
    .filter-prod{
        gap: 12px;
    }
    .program-inner{
        flex-direction: column;
        padding-bottom: 30px;
    }
    .program-left{
        border-radius: 30px 30px 0 0 ;
    }
    .program-img{
        max-width: 100%;
    }
    .about-inner{
        flex-direction: column;
    }
    .about-inner > img{
        max-width: 100%;
        border-radius: 30px;
    }

    .hit{
        top: 10px;
        left: 10px;
        width: 50px;
        height: 50px;
        padding: 0;
        font-size: 12px;
        line-height: 16px;
    }
    .hit:before{
        width: 12px;
        height: 12px;
    }

    .sinergy-img{
        width: 120px;
        height: 120px;
    }
    .sinergy-img img{
        width: 60%;
    }

    .footer-inner{
        flex-direction: column;
        
    }
    .footer-left{
        width: 100%;
    }
    .footer-right{
        justify-content: center;
        align-items: center;
    }
    .banner3{
        background: var(--card-two) url(../images/card-doctor.png) calc(50% + 160px) 50% no-repeat;
    }
    .banner4{
        background: var(--white-pink) url(../images/bottle.png) calc(50% + 120px) 50% no-repeat;
    }
    .popup-info-wrapper{
        flex-direction: column;
    }
    .popup-info-left{
        width: 100%;
    }
    .popup-basket .close{
        top: 15px;
        right: 15px;
    }
    .popup-info-left .btn, 
    .popup-info-left .btn-info{
        max-width: 370px;
        width: 100%;
        margin: 0 auto;
    }
    .basket-inner{
        flex-direction: column;
        gap: 40px;
    }
    .basket-form,
    .basket-choice{
        width: 100%;
    }
    .calculator{
        gap: 8px;
    }
}


@media(max-width:767px){
    .btn{
        font-size: 20px;
        line-height: 24px;
        padding: 18px 15px;
    }
    .container{
        max-width: 480px;
    }
    .contacts{
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 10px;
    }
    .hero{
        padding: 40px 0 320px;
        background: url(../images/hero-bg-mob.png) 50% 100% / 600px no-repeat, url(../images/hero-bg.jpg) 50% 50% / cover repeat;
    }
    .main-title{
        font-size: 36px;
        line-height: 1.3em;
        margin-bottom: 40px;
    }
    .banners-inner{
        flex-direction: column;
    }
    .header{
        padding: 15px 0;
    }
    .header-nav{
        flex-direction: column;
        gap: 25px;
        padding-top: 0;
    }
    .benefits{
        max-width: 500px;
    }
    .benefits-inner{
        gap: 20px;
        padding-inline: 0;
    }
    .benefits-item{
        font-size: 16px;
        line-height: 1.4em;
    }
    .benefits-item>img{
        width: 50px;
    }
    .logo{
        display: none;
    }
    .header-nav .backet{
        display: none;
    }
    .header-list{
        flex-direction: column;
        text-align: center;
        gap: 0;
        width: 100%;
    }
    .header-list li{
        width: 80%;
        text-align: center;
        border-bottom: 2px solid var(--white-blue);
    }
    .header-list li:last-child{
        border: none;
    }
    .header-list li a{
        display: block;
        width: 100%;
        padding: 10px 0;
    }
    .header-toggle{
        background: #fff;
        width: 100%;
        left: 0;
        padding: 15px 15px;
        z-index: 1005;
        position: absolute;
        top: -30px;
        opacity: 0;
        transition: all ease-in-out .3s;
        visibility: hidden;
        box-shadow: 0 4px 4px 0 rgba(0,0,0,0.2);
        border-radius: 0 0 12px 12px;
    }
    .header-toggle.visible{
        top: calc(100% + 15px);
        opacity: 1;
        visibility: visible;
    }
    .header-mobile{
        display: block;
    }
    .about-inner{
        gap: 10px;
    }

    .filter-prod{
        margin-bottom: 30px;
        gap: 10px;
    }

    .products-wrapper{
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .product-info{
        padding: 10px;
        gap: 15px;
    }
    .product-price{
        margin-right: -10px;
        min-width: 80px;
        font-size: 18px;
        padding-block: 7px;
    }
    .product-name{
        font-size: 18px;
    }
    .product-buttons{
        gap: 10px;
    }
    .product-buttons .btn{
        font-size: 18px;
        padding-block: 12px;
    }
    .btn-info{
        font-size: 16px;
        padding: 10px 15px 12px;
    }
    .btn-info.btn-back{
        height: 56px;
    }

    .program-inner{
        padding-bottom: 0;
    }

    .banners{
        padding-top: 20px;
    }
    .banners-inner{
        gap: 20px
    }

    .sinergy{
        padding-top: 60px;
    }
    .sinergy .undertitle{
        margin-bottom: 30px;
    }
    .sinergy-item{
        max-width: 100%;
        padding: 20px;
    }

    .about{
        padding: 50px 0;
    }

    .reviews{
        padding-top: 60px;
    }
    .reviews .title{
        margin-bottom: 15px;
    }
    
    .about-right{
        padding: 20px;
    }

    .policy{
        flex-direction: column;
        text-align: center;
    }
    .header__inner{
        flex-direction: column;
        align-items: center;
        gap: 15px;
        border: none;
    }
    .header-mobile .lang-switcher__dropdown{
        right: 50%;
        left: auto;
    }


    .choice-img > img{
        width: 30px;
    }
    .choice-item{
        gap: 10px;
    }
    .choice-title{
        font-size: 16px;
    }
    .choice-item .choice-price{
        font-size: 18px;
    }
    .choice-item .popup-count{
        font-size: 14px;
    }

    .swiper{
        margin: 0 50px;
    }
    .swiper-button-next,
    .swiper-button-prev{
        width: 40px;
        height: 40px;
        border-radius: 10px;
        padding: 15px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size: 18px;
    }

    .popup-info{
        padding: 50px 30px 30px;
    }
    .popup-info-left .btn-info {
        padding: 14px 15px 16px;
    }
    .popup-info-left{
        gap: 15px;
    }
    .popup-info-right{
        gap: 20px;
    }

    .fixed-basket-btn{
        width: 80px;
        height: 80px;
    }
    .fixed-basket-btn:before{
        width: 32px;
        height: 32px;
    }

}




@media(max-width:480px){
    .popup-container{
        padding: 10px;
    }
    .main-title{
        font-size: 32px;
    }
    .benefits{
        max-width: 340px;
    }
    .benefits-inner {
        grid-template-columns: repeat(1, 1fr);
        padding: 15px 10px;
    }
    .benefits-item{
        max-width: 100%;
        margin-right: auto;
    }
    .program-left{
        padding: 25px;
    }
    .title{
        font-size: 20px;
    }
    .pink-list{
        font-size: 16px;
    }
    .sinergy-img{
        width: 160px;
        height: 160px;
    }
    .sinergy-item{
        padding: 25px;
    }
    .rev-content>p{
        font-size: 16px;
        line-height: 1.4em;
    }
    .about-right{
        padding: 15px;
    }
    .about{
        padding: 40px 0;
    }
    .footer-right .contacts{
        flex-direction: column;
        align-items: start;
    }
    .form-data{
        padding: 30px;
    }
    .form-data > h3{
        font-size: 25px;
    }
    .form-data > p{
        font-size: 16px;
    }
    .form{
        gap: 15px;
        padding: 30px;
    }
    .popup-form .close{
        right: 10px;
        top: 10px;
    }
    .popup-info-right{
        padding: 0;
    }
    .compound-list > li::before{
        left: -6px;
    }
    .choice-item .choice-price{
        font-size: 14px;
    }
    .choice-img{
        padding: 5px;
    }
    .choice-img > img{
        width: 25px;
    }
    .choice-item .popup-count{
        padding: 4px;
    }
    .choice-title{
        font-size: 14px;
    }
    .summ{
        font-size: 18px;
    }
    .basket-inner{
        padding: 10px;
    }
    .basket-summ .btn-info{
        padding: 10px;
    }
    .input-form{
        font-size: 16px;
        height: 55px;
    }
    .choice-item .calculator > button{
        padding: 2px 4px;
        min-width: 22px;
    }
    .popup-info{
        padding: 50px 15px 25px;
    }
    .compound-list{
        padding: 10px;
    }
    .basket-form .popup-form{
        margin: 0 auto;
    }
    .filter-btn{
        font-size: 16px;
    }
    .products{
        padding: 20px 0;
    }
    .product-img{
        height: 180px;
    }
    .product-name{
        font-size: 18px;
    }
    .product-description{
        font-size: 14px;
    }
    .choice-item .popup-count{
        font-size: 11px;
    }
    .calculator > button{
        font-size: 18px;
    }
    .basket-summ{
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
        gap: 20px;
    }
    .basket-summ .btn-info{
        order: 2;
    }
    .btn.btn-health-plan{
        font-size: 16px;
    }
}



@media(max-width:380px){
    .choice-title{
        font-size: 11px;
    }
}

/* COOKIE BANNER */
.cookie-banner{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.visible{
    transform: translateY(0);
}
.cookie-banner-content{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-banner-content p{
    font-size: 16px;
    line-height: 1.4;
    color: var(--color);
    margin: 0;
}
.cookie-banner-buttons{
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner-buttons .btn{
    padding: 14px 24px;
    font-size: 16px;
    max-width: none;
    width: auto;
    white-space: nowrap;
}
.cookie-banner-buttons .cookie-decline{
    background: var(--grey);
}
.cookie-banner-buttons .cookie-decline:hover{
    background: #a0a4a9;
}

@media(max-width:768px){
    .cookie-banner-content{
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cookie-banner-buttons{
        width: 100%;
    }
    .cookie-banner-buttons .btn{
        flex: 1;
        padding: 12px 16px;
        font-size: 14px;
    }
}
@media(max-width:480px){
    .cookie-banner{
        padding: 15px;
    }
    .cookie-banner-content p{
        font-size: 14px;
    }
}

/* ==============================================
   TDS Country Selector
   ============================================== */
.tds {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    overflow-y: auto;
    padding: 40px 20px;
}

.tds__inner {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tds__logo {
    display: block;
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.tds__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color);
    margin-bottom: 40px;
    text-align: center;
}

.tds__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tds__btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px 24px;
    background: #F0EFF9;
    border-radius: 16px;
    border: 2px solid transparent;
    text-decoration: none;
    color: var(--color);
    transition: border-color 0.2s ease, background-color 0.2s ease, top 0.1s ease;
    cursor: pointer;
}

.tds__btn:hover {
    border-color: var(--orange);
    background: #FFF5F3;
}

.tds__btn:active {
    top: 2px;
}

.tds__flag {
    display: block;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    flex-shrink: 0;
}

.tds__code {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--color);
}

.tds__name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--undertitle);
    text-align: center;
}

@media (max-width: 768px) {
    .tds__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tds__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .tds__logo {
        max-width: 200px;
        margin-bottom: 30px;
    }

    .tds__btn {
        padding: 22px 12px 20px;
        gap: 10px;
        border-radius: 14px;
    }

    .tds__code {
        font-size: 18px;
    }

    .tds__name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tds {
        padding: 30px 16px;
    }

    .tds__grid {
        gap: 10px;
    }

    .tds__title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .tds__logo {
        max-width: 170px;
        margin-bottom: 24px;
    }

    .tds__btn {
        padding: 18px 10px 16px;
        gap: 8px;
        border-radius: 12px;
    }

    .tds__code {
        font-size: 16px;
    }

    .tds__name {
        font-size: 12px;
    }
}
