@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    position: relative;
    outline: none;
}

a {
    text-decoration: none;
    color: #FFF;
}

body {
    padding: 0;
    margin: 0;
}

.wrapper {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.header {
    background: #1b1e25;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.header-nav--list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.header-nav--list li {
    padding: 0 10px;
}

/* Скрываем мобильные элементы на десктопе */
.mobile-menu-buttons {
    display: none;
}

.mobile-menu-close {
    display: none;
}

.header-nav--burger {
    display: none;
}

.header-nav--list a {
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color .15s ease-out;
}

.header-nav--list a:hover {
    color: #FF5274;
}

.banner {
    background: #8a0d2d;
}

.banner-container {
    height: 600px;
    display: flex;
    align-items: center;
	z-index: 2;
}

/* .banner-content {
    padding-top: 70px;
} */

.banner-content--text {
    color: #FFF;
    font-weight: 300;
    font-size: 48px;
    text-transform: uppercase;
}

.cta-block .banner-content--text {
    text-transform: none;
}

.banner-content--text strong {
    font-weight: 400;
    font-size: 68px;
}

.banner-content--btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.banner-content--button {
    display: inline-block;
    border: 2px solid #FFF;
    border-radius: 26px;
    padding: 15px;
    text-decoration: none;
    font-size: 18px;
    color: #FFF;
    background: transparent;
    overflow: hidden;
    text-transform: uppercase;
    transition: background .2s ease-out, color .2s ease-out;
}

.banner-content--button::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    margin: auto;
    padding: 0;
    top:0;
    left:0;
    right:0;
    background: #FFF;
    bottom:0;
    border-radius: 50%;
    z-index: 1;
    transition:padding .5s ease-out;
}

.banner-content--button:hover::after {
    transform: scale(1.1);
    padding: 100%;
}

.banner-content--button span {
    z-index: 2;
}

.banner-content--button:hover {
    /* background: #FFF; */
    color: #8a0d2d;
}

/* Кнопка "Купить" в CTA блоке - такой же стиль как у других кнопок */
.cta-block .banner-content--button[href="#buy-product"] {
    background: transparent !important;
    border: 2px solid #FFF !important;
    box-shadow: none !important;
}

.cta-block .banner-content--button[href="#buy-product"]:hover {
    background: transparent !important;
    color: #8a0d2d !important;
    box-shadow: none !important;
    border-color: #FFF !important;
}

.cta-block .banner-content--button[href="#buy-product"]:hover::after {
    background: #FFF !important;
}

.banner-background {
    height: 600px;
    background-image: linear-gradient(to bottom, #dc1444 0%, #280111 100%);
    overflow: hidden;
    position: absolute;
    width: 100%;
}

/* Скрываем объекты на десктопе */
.banner-background--object {
    display: none;
}

.banner-background--girl {
    height: inherit;
    text-align: right;
    z-index: 2;
}

.banner-background--girl img {
    max-height: 100%;
    animation: animation-girl 15s ease-in-out alternate infinite;
}

.banner-background--circle {
    background-image: linear-gradient(to top, #d75c75 0%, #c31c32 100%);
    width: 1000px;
    height: 1200px;
    border-radius: 50%;
    top: -800px;
    right: -640px;
    position: absolute;
    z-index: 4;
    background-size: 200% 200%;
    animation: Animation 5s ease infinite;
}

@media screen and (max-width: 768px) {
    .banner-background--circle {
        display: none !important;
    }
    .banner-background--velum {
        display: none !important;
    }
    .banner-background--girl {
        display: none !important;
    }
    .banner-background--fcircle {
        display: none !important;
    }
    .banner-content {
        z-index: 100 !important;
        position: relative !important;
    }
    .banner-container {
        z-index: 100 !important;
        position: relative !important;
    }
}

.banner-background--velum {
    position:absolute;
    background-image: linear-gradient(to top, #7e182e 0%, #f92453 100%);
    background-repeat: no-repeat;
    -webkit-mask-image: url("../img/velum-2.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: right;
    mask-image: url("../img/velum-2.png");
    mask-repeat: no-repeat;
    mask-position: right;
    background-size: 150% 150%;
    width: 427px;
    height: inherit;
    right:0;
    top:0;
    z-index: 3; 
    animation: animation-velum 30s ease infinite;
}

.banner-background--waves {
    position:absolute;
    top:0;
    left:0;
    height: 210px;
    width: 100%;
    background: url("../img/wave-2.svg");
    background-repeat: repeat-x;
    background-size: 2500px;
    z-index: 1;
    opacity: .7;
    transition: .3s;
    animation: animation-waves 50s linear infinite;
}

.banner-background--fcircle {
    position: absolute;
    height:inherit;
    top:0;
    bottom:0;
    left: 100px;
}

.banner-background--fcircle img {
    max-height: 100%;
    transform: scale(1.5);
}

.header-company {
    display: flex;
}

.header-company img {
    height: 48px;
    max-height: 48px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

.header-logo {
    display: flex;
    flex-direction: column;
}

.header-logo img {
    width: 180px;
}

.header-logo--text {
    text-transform: uppercase;
    color: #FFF;
    font-weight: 300;
    display: block;
    margin-top: 8px;
    font-size: 12px;
	line-height: 10px;
}
 


@keyframes Animation { 
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}   
}

@keyframes animation-velum { 
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}

@keyframes animation-waves { 
    0%{background-position-x:0;}
    100%{background-position-x: 5000px;}
}

@keyframes animation-girl { 
    0%{transform: translateY(-10px) scale(1.1);}
    50%{transform: translateY(10px) scale(1.1);}
    100%{transform: translateY(-10px) scale(1.1);}
}


.content {
    padding: 50px 0 0;
    background: #FFF;
    border-radius: 30px;
    top: -30px;
    z-index:3;
}

.content-title {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 400;
}

.content-title.text-center {
    text-align: center;
}

.content-title sup {
    font-size: 24px;
}

.adventages-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    flex-direction: row;
    flex-wrap: wrap;
}

.adventages-item {
    display: flex;
    max-width: 50%;
    padding: 20px;
}

.adventages-item--img {
    font-size: 0;
    margin-right: 15px;
    padding-top: 10px;
}

.adventages-item--img img {
    width: 70px;
}

.minify .adventages-item--img {
	padding-left: 10px;
}

.minify .adventages-item--img img {
	width: 60px;
}

.adventages-item--content {
    display: flex;
    flex-direction: column;
}

.adventages-item--content-title {
    font-size: 35px;
    font-weight: 600;
	line-height: 38px;
}

.adventages-item--content-description {
    margin-top: 15px;
}

.online-video {
    display: flex;
    /* min-width: 500px; */
    height: 400px;
	max-width: 30%;
    background: url("../img/resaltys-products.png") no-repeat center center;
    background-size: cover;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    border-radius: 10px;
    overflow: hidden;
    /* border: 6px solid #414042; */
    /*box-shadow: 0 0 30px -5px rgba(0,0,0,.3), inset 0 0 15px 15px rgba(255, 255, 255, .1);*/
}

.online-video::after {
    content: "";
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
}

.adventages-btn {
    margin-top: 30px;
}

.adventages-btn a {
    display: inline-block;
    border: 2px solid #ee5c69;
    border-radius: 26px;
    padding: 10px 26px;
    text-decoration: none;
    font-size: 18px;
    color: #ee5c69;
    background: transparent;
    overflow: hidden;
    text-transform: uppercase;
    z-index: 2;
    transition: background .2s ease-out, color .2s ease-out;
}

.adventages-btn a::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    margin: auto;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    background: #ee5c69;
    bottom: 0;
    border-radius: 50%;
    z-index: 1;
    transition: padding .5s ease-out;
}

.adventages-btn a span {
    z-index: 2;
}

.adventages-btn a:hover::after {
    transform: scale(1.1);
    padding: 100%;
}

.adventages-btn a:hover {
    color: #FFF;
}

.video-row {
    display: flex;
    margin-top: 30px;
    align-items: center;
}

.video-row > div {
    flex-shrink: 1;
    flex: 1;
}

.online-video a {
    display: inline-block;
    border: 2px solid #FFF;
    border-radius: 26px;
    padding: 20px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #FFF;
    background: transparent;
    overflow: hidden;
    text-transform: uppercase;
    z-index: 2;
    transition: background .2s ease-out, color .2s ease-out;
}

.online-video a:hover {
    color: #000;
}

.online-video span {
    z-index: 2;
}

.online-video a::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    margin: auto;
    padding: 0;
    top:0;
    left:0;
    right:0;
    background: #FFF;
    bottom:0;
    border-radius: 50%;
    z-index: 1;
    transition:padding .5s ease-out;
}

.online-video a:hover::after {
    transform: scale(1.1);
    padding: 100%;
}

.technology-circle {
    border-radius: 50%;
    width:200px;
    height: 200px;
    border: 10px solid transparent;
    font-size: 0;
    overflow: hidden;
    background: #bee7fa;
}

.technology-circle.circle-1 {
    border-color: #e36c84;
}

.technology-circle.circle-2 {
    border-color: #ee5c69;
}

.technology-circle.circle-3 {
    border-color: #414042;
}

.technology-circle canvas {
    width:100%;
    height: 100%;
	border-radius: 50%;
}

.technology-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.technology-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    gap: 30px;
}

.technology-btn {
    text-align: center;
}

.technology-title {
    text-transform: uppercase;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.technology-description {
    text-transform: uppercase;
    text-align: center;
}

.technology-content--title {
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .technology-content--title {
        margin-top: 20px !important;
        margin-bottom: 10px !important;
    }
    
    .technology-row {
        margin-bottom: 0 !important;
    }
    
    .technology-description {
        margin-bottom: 10px !important;
    }
}

.slicer-content--images {
    position: absolute;
    z-index: 1;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.slicer-content--images-item {
    width: 100%;
    height: 100%;
}

.slicer-content--images-item.slicer-3 {
    background: url("../img/slicer-3.png") center right no-repeat;
    background-size: cover;
}

.slicer-content--images-item.slicer-2 {
    background: url("../img/slicer-2.png") center right no-repeat;
    background-size: cover;
}

.slicer-content--images-item.slicer-1 {
    background: url("../img/slicer-1.png") center right no-repeat;
    background-size: cover;
}

.slicer-content--info {
    padding: 50px 0;
    z-index: 2;
    color: #FFF;
}

.slicer-content--info-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

.slicer-content--info-title sup {
    font-size: 26px;
}

.slicer-content--info-description {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 300;
}

.slicer-content {
    margin: 30px 0;
}

@media screen and (max-width: 768px) {
    .slicer-content {
        margin: 0;
    }
}

.products-item--img-face {
    position: absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    box-shadow: inset 0 0 20px 20px rgba(255, 255, 255, 1);
}

.products-item--description {
    z-index: 2;
    width: 68%;
}

.products-item--img-face {
    background: url("../img/face-3.png") right center no-repeat;
    background-size: contain;
}

.products-item--description-img img {
    max-width: 280px;
}

.products-fill {
    display: block;
    border: 1px solid #939598;
    background: transparent;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 3px;
}

.products-fill.filled {
    background: #939598;
}

.products-item--description-density {
    display: flex;
    font-size: 0;
    margin-left: 10px;
}

.products-item--description-line .flex-inline {
    display: flex;
    align-items: center;
}

.products-item--description-line span {
	display: flex;
	padding: 2px 0;
	align-items: center;
}

.products-item--description-line {
    font-weight: 600;
    margin: 20px 0;
}

.products-item--description-line ul {
    padding: 0;
    margin: 0;
	list-style: none;
}

.products-item--description-line li {
    padding: 2px 0 2px 15px;
    font-weight: 400;
}

.products-item--description-line li::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: calc(50% - 3px);
}

.products-item--description {
    padding: 15px 0;
}

.products-item--tooltips {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 31%;
}

.products-item--tooltip {
    position: absolute;
}

.tooltip {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.tooltip::after {
    content: "";
    position:absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.tooltip-resaltys-3 .tooltip {
    background: #414042;
}

.tooltip-resaltys-2 .tooltip {
    background: #ee5c69;
}

.tooltip-resaltys-1 .tooltip {
    background: #e36c84;
}



.tooltip-resaltys-3.item-1 /* СКУЛЫ */ {
    top: 44%;
    left: 90px;
}

.tooltip-resaltys-3.item-2 /* Медиальный щечный компартмент */ {
    top: 54%;
    left: 190px;
}

.tooltip-resaltys-3.item-3 /* Контур губ */ {
    top: 66%;
    right: 75px;
}

.tooltip-resaltys-3.item-4 /* Объем губ */ {
    top: 72%;
    right: 40px;
}

.tooltip-resaltys-3.item-5 /* Угол нижней челюсти */ {
    top: 74%;
    left: 100px;
}

.tooltip-resaltys-3.item-6 /* Губокраевые морщины */ {
    top: 80%;
    right: 88px;
}

.tooltip-resaltys-3.item-7 /* Подбородок */ {
    top: 91%;
    right: 50px;
}



.tooltip-resaltys-2.item-1 /* ВИСОК */ {
    top: 32%;
    left: 90px;
}

.tooltip-resaltys-2.item-2 /* НОСОСЛЕЗНАЯ БОРОЗДА */ {
    top: 52%;
    left: 190px;
}

.tooltip-resaltys-2.item-3 /* НОС */ {
    top: 54%;
    right: 38px;
}

.tooltip-resaltys-2.item-4 /* НОСОГУБНАЯ СКЛАДКА */ {
    top: 64%;
    right: 100px;
}

.tooltip-resaltys-2.item-5 /* ГУБЫ */ {
    top: 70%;
    right: 40px;
}

.tooltip-resaltys-2.item-6 /* Губокраевые морщины */ {
    top: 80%;
    right: 80px;
}



.tooltip-resaltys-1.item-1 /* ПЕРЕОРБИТАЛЬНАЯ ОБЛАСТЬ */ {
    top: 46%;
    left: 150px;
}

.tooltip-resaltys-1.item-2 /* МОЧКИ УШЕЙ */ {
    top: 58%;
    left: 80px;
}

.tooltip-resaltys-1.item-3 /* НОСОГУБНАЯ СКЛАДКА */ {
    top: 64%;
    right: 100px;
}

.tooltip-resaltys-1.item-4 /* ГУБЫ */ {
    top: 70%;
    right: 50px;
}

.tooltip-resaltys-1.item-5 /* Губокраевые морщины */ {
    top: 78%;
    right: 110px;
}




div[data-tippy-root] {
    text-align: center;
}

.tooltip-resaltys-3 .tooltip::after {
    animation: resaltys-3 4s ease infinite;
}

.tooltip-resaltys-2 .tooltip::after {
    animation: resaltys-2 4s ease infinite;
}

.tooltip-resaltys-1 .tooltip::after {
    animation: resaltys-1 4s ease infinite;
}

@keyframes resaltys-3 {
0% {
    box-shadow: 0 0 0 0 rgb(65, 64, 66, .5);
}
100% {
    box-shadow: 0 0 0 8px rgb(65, 64, 66, 0);
}
}

@keyframes resaltys-2 {
0% {
    box-shadow: 0 0 0 0 rgba(238, 92, 105, .5);
}
100% {
    box-shadow: 0 0 0 8px rgb(238, 92, 105, 0);
}
}

@keyframes resaltys-1 {
0% {
    box-shadow: 0 0 0 0 rgba(227, 108, 132, .5);
}
100% {
    box-shadow: 0 0 0 8px rgb(227, 108, 132, 0);
}
}

.after-before {
    margin-top: 50px;
}

.ab-subtitle {
    font-weight: 700;
    margin-top: 15px;
    font-size: 22px;
}

.ab-list {
    margin-top: 15px;
}

.ab-list ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 100px;
    padding-left: 20px;
}

.ab-list ul li::marker {
    color: #FF5274;
}

.ab-list ul li {
    font-size: 16px;
    padding: 3px 0;
}

.ab-list--description {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
}

.ab-text {
    margin-top: 15px;
    font-size: 16px;
}

.ab-text strong {
    font-weight: 700;
}

.ab-btn {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.ab-btn--img {
    font-size: 0;
    margin-right: 10px;
    z-index: 2;
}

.ab-btn--img svg {
    width: 26px;
    height: 26px; 
    fill: #FFF;
    transition: .15s ease-out;
}

.ab-btn a {
    display: flex;
    align-items: center;
    background: #e84258;
    border: 2px solid #e84258;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px 26px;
    border-radius: 26px;
    font-size: 24px;
    overflow: hidden;
    transition: background .15s ease-out;
}

.ab-btn a:hover .ab-btn--img svg {
    fill: #e84258;
}

.ab-btn span {
    z-index: 2;
}

.ab-btn a::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    margin: auto;
    padding: 0;
    top:0;
    left:0;
    right:0;
    background: #FFF;
    bottom:0;
    border-radius: 50%;
    z-index: 1;
    transition:padding .5s ease-out;
}

.ab-btn a:hover::after {
    transform: scale(1.1);
    padding: 100%;
}





.ab-btn a:hover {
    color: #e84258;
}

.footer {
    top: 0;
    background: #21242c;
    color: #FFF;
    padding: 30px 0;
}

.footer-title {
    font-weight: 400;
    font-size: 32px;
    text-transform: uppercase;
}

.footer-social--list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    margin: 30px -15px 0;
}

.footer-social--list li,
.footer-social--list a {
    font-size: 0;
}

.footer-social--list li {
    padding: 0 10px;
}

.footer-social--list a {
    display: block;
}

.footer-social--list img,
.footer-social--list svg {
    width: 46px;
    height: 46px;
    fill: #FFF;
    transition: fill .3s ease-out;
}

.footer-social--list a:hover img,
.footer-social--list a:hover svg {
    fill:#FF5274;
}

.footer-social-max {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 16px !important;
}

.footer-social-max-text {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color .3s ease-out;
}

.footer-social-max:hover .footer-social-max-text {
    color: #FF5274;
}

.footer-tel {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin: 30px 0;
	font-weight: 100;
}

.footer-addres {
	font-weight: 300;
	line-height: 1.6;
	margin-top: 5px;
	margin-bottom: 5px;
}

.footer-addres br {
	display: block;
	content: "";
	margin: 0;
	line-height: 1.4;
}

.footer-copyright {
	font-weight: 300;
	margin-top: 5px;
}

.footer-tel a {
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
    margin-right: 15px;
}

.products-arrows {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background: #ee5c69;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.products-arrows.arrow-left {
    left: -45px;
}

.products-arrows.arrow-right {
    right: -45px;
}

.products-arrows:hover {
    background: #c94a5a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.products-arrows i {
    color: #fff;
    font-size: 20px;
}

.products-arrows img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.products-arrows:hover img {
    transform: scale(1.1);
}

/* Скрываем стрелки на мобильных */
@media screen and (max-width: 768px) {
    .products-arrows {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.ab-slider {
    max-width: 100%;
    margin: 30px auto;
    position: relative;
    padding: 0 50px;
}

@media screen and (max-width: 768px) {
    .ab-slider {
        padding: 0;
    }
}

.ab-slider .slick-slide {
    padding: 0 10px;
}

.ab-slider .ab-item {
    margin: 0 5px;
}

.ab-slider .ab-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: grab;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
    touch-action: pan-y;
}

.ab-slider .ab-item img:active {
    cursor: grabbing;
}

.ab-slider .ab-item img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}


.ab-slider .products-arrows {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: #ee5c69 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.ab-slider .products-arrows.arrow-left {
    left: 10px !important;
}

.ab-slider .products-arrows.arrow-right {
    right: 10px !important;
}

.ab-slider .products-arrows:hover {
    background: #c94a5a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.ab-slider .products-arrows img {
    width: 24px !important;
    height: 24px !important;
    filter: brightness(0) invert(1) !important;
    transition: all 0.3s ease !important;
}

.ab-slider .products-arrows:hover img {
    transform: scale(1.1) !important;
}

@media screen and (max-width: 768px) {
    .ab-slider .products-arrows {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.ab-slider .products-arrows:hover {
    background: #c94a5a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.ab-slider .products-arrows:hover i {
    color: #fff !important;
}

.ab-slider .products-arrows.arrow-left {
    left: 10px !important;
}

.ab-slider .products-arrows.arrow-right {
    right: 10px !important;
}

.ab-slider .products-arrows img {
    width: 24px !important;
    height: 24px !important;
    filter: brightness(0) invert(1) !important;
    transition: all 0.3s ease !important;
}

.ab-slider .products-arrows:hover img {
    filter: brightness(0) invert(1) !important;
    transform: scale(1.1) !important;
}

.products {
    max-width: calc(100% - 90px);
    margin-left:auto;
    margin-right: auto;
    position: relative;
}

.products-item--container {
    position: relative;
}

/* Убеждаемся, что стрелки видны на десктопе */
/* Скрываем новый блок с кнопками на десктопе */
.banner-buttons-mobile {
    display: none !important;
}

@media screen and (min-width: 769px) {
    .products-arrows,
    .products .products-arrows {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .ab-slider .products-arrows,
    .ab-slider .products-arrows.arrow-left,
    .ab-slider .products-arrows.arrow-right {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .products {
        padding: 0 50px;
    }
}

@media screen and (max-width: 768px) {
    .products {
        max-width: 100%;
    }
}
}

.products .slick-list,
.ab-slider .slick-list {
    cursor: grab;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
}

.products .slick-list:active,
.ab-slider .slick-list:active {
    cursor: grabbing;
}

.products .slick-slide,
.ab-slider .slick-slide {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

/* Скрываем стандартные стрелки slick только на мобильных */
@media screen and (max-width: 768px) {
    .slick-prev,
    .slick-next {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* СТИЛИ ДЛЯ НОВЫХ МОБИЛЬНЫХ РАЗДЕЛОВ */
/* Раздел "О продукте" для мобильных */
.products-mobile {
    display: none;
    margin-top: 0;
    padding: 0;
    margin-bottom: 0;
}

.products-mobile .content-title {
    margin-top: 0;
    margin-bottom: 20px;
}

.product-mobile-item {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-mobile-header {
    text-align: center;
    margin-bottom: 30px;
}

.product-mobile-img {
    margin-bottom: 20px;
}

.product-mobile-img img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.product-mobile-title {
    font-size: 28px;
    font-weight: 700;
    color: #8a0d2d;
    text-transform: uppercase;
}

.product-mobile-content {
    margin-top: 25px;
}

.product-mobile-property {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.product-mobile-property:last-child {
    border-bottom: none;
}

.property-name {
    font-weight: 600;
    color: #333;
    flex: 0 0 50%;
}

.property-value {
    color: #666;
    text-align: right;
    flex: 1;
}

.product-mobile-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.product-mobile-section .section-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    color: #8a0d2d;
}

.product-mobile-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-mobile-section li {
    padding: 5px 0 5px 20px;
    position: relative;
    font-size: 14px;
    color: #666;
}

.product-mobile-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8a0d2d;
    font-weight: bold;
}

.product-mobile-section .no-marker li::before {
    display: none;
}

/* Навигация между продуктами для мобильных */
.product-mobile-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px 0;
}

.product-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ee5c69;
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-nav-btn:hover {
    background: #c94a5a;
    transform: scale(1.1);
}

.product-nav-btn:active {
    transform: scale(0.95);
}

.product-nav-dots {
    display: flex;
    gap: 10px;
}

.product-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-nav-dot.active {
    background: #ee5c69;
    transform: scale(1.2);
}

/* Раздел "До и после" для мобильных */
.after-before-mobile {
    display: none;
    margin-top: 50px;
    padding: 30px 0;
}

.ab-mobile-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.ab-mobile-item {
    display: none;
    width: 100%;
}

.ab-mobile-item.active {
    display: block;
}

.ab-mobile-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    cursor: pointer;
}

.ab-mobile-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.ab-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ee5c69;
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ab-nav-btn:hover {
    background: #c94a5a;
    transform: scale(1.1);
}

.ab-nav-btn:active {
    transform: scale(0.95);
}

.ab-nav-dots {
    display: flex;
    gap: 10px;
}

.ab-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-nav-dot.active {
    background: #ee5c69;
    transform: scale(1.2);
}

/* Показываем мобильные разделы только на мобильных устройствах */
@media screen and (max-width: 768px) {
    .products-mobile {
        display: block !important;
        margin-top: 0 !important;
        padding-top: 10px !important;
    }
    
    .after-before-mobile {
        display: block !important;
        margin-top: 20px !important;
        padding-top: 10px !important;
    }
    
    /* Скрываем десктопные разделы на мобильных */
    .products {
        display: none !important;
    }
    
    /* Скрываем старые метки свойств продуктов на мобильных */
    .products-item--description-line {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .products-item--description-text {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Скрываем метки свойств из старого мобильного раздела */
    .property-label,
    .products-properties-mobile {
        display: none !important;
        visibility: hidden !important;
    }
    
    .after-before {
        display: none !important;
    }
    
    /* Скрываем старый раздел "О продукте" (slicer-content) на мобильных */
    .slicer-content {
        display: none !important;
        visibility: hidden !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .slicer-row {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .slicer-content--images,
    .slicer-content--info,
    .slicer-content--info-title,
    .slicer-content--info-description {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Уменьшаем отступы у секции content */
    .content {
        padding-top: 10px !important;
    }
}

/* На десктопе скрываем мобильные разделы */
@media screen and (min-width: 769px) {
    .products-mobile {
        display: none !important;
    }
    
    .after-before-mobile {
        display: none !important;
    }
    
    /* Показываем десктопные разделы */
    .products {
        display: block !important;
    }
    
    .after-before {
        display: block !important;
    }
    
    /* Показываем стрелки на десктопе */
    .products-arrows,
    .products .products-arrows,
    .products-arrows.arrow-left,
    .products-arrows.arrow-right {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .ab-slider .products-arrows,
    .ab-slider .products-arrows.arrow-left,
    .ab-slider .products-arrows.arrow-right {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* Стили для слайдеров свойств продуктов */
.products-properties-mobile {
    margin-bottom: 20px;
}

.product-property-item {
    margin: 10px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.property-label {
    font-weight: 600;
    margin-right: 5px;
    min-width: 140px;
}

.product-property-slider {
    display: inline-block;
    width: auto;
    min-width: 100px;
    flex: 1;
    cursor: grab;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
}

.product-property-slider:active {
    cursor: grabbing;
}

.product-property-slide {
    display: inline-block;
    width: 100%;
    -webkit-user-select: none;
    user-select: none;
}

/* На десктопе скрываем контейнер со слайдерами свойств */
@media screen and (min-width: 769px) {
    .products-properties-mobile {
        display: none !important;
    }
}

/* На мобильных показываем как слайдеры */
@media screen and (max-width: 768px) {
    .products-properties-mobile {
        display: block !important;
    }
    
    .product-property-slider.slick-initialized .product-property-slide {
        display: block;
    }
    
    .product-property-slider.slick-initialized .product-property-slide:not(.slick-active) {
        display: none;
    }
    
    .product-property-item {
        font-size: 14px;
    }
    
    .property-label {
        min-width: auto;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .product-property-slider {
        width: 100%;
        min-width: 100%;
    }
}
    margin-right: auto;
}

/* Бургер-меню скрыто по умолчанию (для десктопа) */
.header-nav--burger {
    display: none; /* Показывается только в медиа-запросах для мобильных */
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    gap: 9px;
    cursor: pointer;
    z-index: 10001;
    width: auto;
    height: auto;
}

.slick-slide img {
    width: 100%;
}

.header-nav--burger span {
    display: block !important;
    border-radius: 2px;
    background: #FFF;
    width: 40px !important;
    height: 5px !important;
    opacity: 1 !important;
    transform: rotate(0deg) !important;
    transition: .3s ease-out;
    position: relative;
    visibility: visible !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.header-nav-container {
    display: flex;
    align-items: center;
}

.products-item--description-img {
    margin-bottom: 30px;
}

.header {
    top: 0;
    position: sticky;
    z-index: 6;
}

.header-nav.active .header-nav--burger span:nth-child(1) {
    transform: rotate(45deg);
    top: 13px;
    position: relative;
}

.header-nav.active .header-nav--burger span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.header-nav.active .header-nav--burger span:nth-child(3) {
    transform: rotate(-45deg);
    top: -13px;
    position: relative;
}

.adventages-description {
    line-height: 30px;
}

.videoteka-section {
    padding: 60px 0;
    text-align: center;
}

.videoteka-description {
    line-height: 30px;
    margin-top: 30px;
    font-size: 18px;
}

.cta-block {
    margin-top: 0;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #8a0d2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(138, 13, 45, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #a01035;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(138, 13, 45, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: #FFF;
}

.products-item--description-img img {
    max-width: 250px;
}

.br-mobile{
	display: none;
	
}

/* Lightbox стили */
.lightbox-image {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-full {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFF;
    z-index: 10002;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
        padding: 20px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-image-full {
        max-height: 85vh;
    }
}