/*Base*/
:root{
    --text-primary:#0D0E20;
    --text-secondary:#6D748B;
    --accent:#2D1B7F;
}
* {
  padding: 0;
  margin: 0;
  outline: none;
}
body{
    font-family: "Arial", sans-serif; 
    color: var(--text-primary);
}
a,a:hover{
    color: inherit;
    text-decoration: none;
}
.shop-category-list a:hover{
    color: var(--accent);
}
button{
    background: transparent;
    outline: none;
    border: none;
}
ul,li{
    list-style: none;
    margin-bottom: 0;
}
img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.form-control:focus{
    box-shadow: none;
}
button:focus{
    outline: none;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background : var(--text-secondary);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb {
  background : var(--accent);
  border-radius: 2px;
  /* box-shadow:  0 0 6px rgba(0, 0, 0, 0.5); */
} 
h1,.h1,.title-1{
    font-family: "Manrope", sans-serif; 
    color: var(--text-primary);
    font-weight: 500;
    font-size: 60px;
    line-height: 120%;
    margin-bottom: 0;
}
h2,.h2,.title-2{
    font-family: "Manrope", sans-serif; 
    color: var(--text-primary);
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 0;
}
h3,.h3,.title-3{
    font-family: "Manrope", sans-serif; 
    color: var(--text-primary);
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 0;
}
h4,.h4,.title-4{
    font-family: "Manrope", sans-serif; 
    color: var(--text-primary);
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 0;
}
h5,.h5,.title-5{
    font-family: "Manrope", sans-serif; 
    color: var(--text-primary);
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 0;
}
h6,.h6,.title-6{
    font-family: "Manrope", sans-serif; 
    color: var(--text-primary);
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 0;
}
.text-regular{
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
}
.text-bold{
    font-size: 18px;
    line-height: 130%;
    font-weight: 700;
}
.text-small{
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
}

.font-weight-600{
    font-weight: 600;
}
.primary{
    color: var(--text-primary);
}
.bg-primary{
    background: var(--text-primary);
}
.secondary{
    color: var(--text-secondary);
}
.bg-secondary{
    background: var(--text-secondary);
}
.accent{
    color: var(--accent);
}
.bg-accent{
    background: var(--accent);
}
.white{
    color: #fff;
}
.bg-white{
    background: #fff;
}
/* .swiper-slide{
    width: auto;
} */
.swiper-button-disabled{
    opacity: 0.5;
}
.arrow-left,.arrow-right,
.swiper-custom-button-next,.swiper-custom-button-prev{
    z-index: 1000;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(-50%);
}
.arrow-left::after,.swiper-custom-button-prev::after{
    content: url('/assets/images/icons/arrow_left_big.svg');
}
.arrow-right::after,.swiper-custom-button-next::after{
    content: url('/assets/images/icons/arrow_big.svg');
}
.swiper-custom-button-prev-inner::after{
    content: url('/assets/images/icons/arrow-left.svg');
}
.swiper-custom-button-next-inner::after{
    content: url('/assets/images/icons/arrow.svg');
}
.swiper-custom-button-prev-inner,.swiper-custom-button-next-inner{
    position: absolute;
    top: 50%;
}
.swiper-custom-button-prev-inner{
    cursor: pointer;
    left: 1%;
}
.swiper-custom-button-next-inner{
    cursor: pointer;
    right: 1%;
}
.arrow-left,
.swiper-custom-button-prev{
    cursor: pointer;
    left: -2%;
}
.arrow-right,
.swiper-custom-button-next{
    cursor: pointer;
    right: -2%;
}
.swiper{
    overflow: hidden;
}
.swiper-scrollbar-drag{
    background: var(--accent);
}
.swiper-wrapper{
    /* overflow: hidden; */
}
.page-link{
    border:none;
    border-radius: 0;
}
.page-link:hover{
    background: transparent;
    color: var(--accent);
}
.page-link:focus{
    box-shadow: none;
}
.page-item.active .page-link{
    background: transparent;
    color: var(--text-secondary);
}
.page-link{
    font-size: 18px;
    color: var(--text-secondary);
}
.page-item.disabled{
    opacity: 0.5;
}
.button{
    width: max-content;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 12px;
    line-height: 150%;
    font-size: 16px;
}
.button-accent{
    background: var(--accent);
    color: #fff;
}
.button-accent:hover{
    background: var(--text-primary);
    color: #fff;
}
.button-accent-o{
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}
.button-accent-o:hover{
    background: var(--accent);
    color: #fff;
}
.button-white{
    background: #fff;
    color: var(--text-primary);
}
.button-white-o{
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.button-white:hover,.button-white-o:hover{
    background: #fff;
    color: var(--accent);
}
@media only screen and (max-width: 1200px) {
    h1,.h1,.title-1{
        font-size: 48px;
    }
    h2,.h2,.title-2{
        font-size: 32px;
    }
    h3,.h3,.title-3{
        font-size: 24px;
    }
    h4,.h4,.title-4{
        font-size: 20px;
    }
    h5,.h5,.title-5{
        font-size: 18px;
    }
    h6,.h6,.title-6{
        font-size: 16px;
    }
}
@media only screen and (max-width: 991px) {
    h1,.h1,.title-1{
        font-size: 32px;
    }
    h2,.h2,.title-2{
        font-size: 24px;
    }
    h3,.h3,.title-3{
        font-size: 20px;
    }
    h4,.h4,.title-4{
        font-size: 18px;
    }
    h5,.h5,.title-5{
        font-size: 16px;
    }
    h6,.h6,.title-6{
        font-size: 16px;
    }
}
.vertical-margin{
    margin-bottom: 100px;
}
@media (max-width: 768px) {
    .vertical-margin{
        margin-bottom: 80px;
    }
}
@media only screen and (max-width: 576px) {
  .my-container {
    width: auto;
    margin: 0 auto;
    padding: 0 15px; } 
}
@media only screen and (min-width: 576px) {
  .my-container {
    margin: 0 auto;
    padding: 0 15px; } 
}
@media only screen and (min-width: 1200px) {
  .my-container {
    padding: 0 30px; } 
}
@media only screen and (min-width: 1600px) {
  .my-container {
    max-width: 1570px;
    padding: 0px; } 
}
@media only screen and (min-width: 1920px) {
    .my-container {
        max-width: 1600px;
    }
}
.form-control{
    border-radius: 12px;
    background: #F1EDED;
    border: none;
    padding: 12px 20px;
    color: var(--text-primary);
    min-height: 50px;
}
.form-control::placeholder {
   color: var(--text-primary);
    opacity: 1
}
.form-control:focus {
    border: 1px solid var(--accent);
}
@media (min-width: 768px) {
	.modal-dialog {
		max-width: 70vw;
		margin: 15vh auto;
	}
}
@media (min-width: 1600px) {
	.modal-dialog {
		max-width: 1200px;
	}
}
.modal-content{
    border-radius: 12px;
}
.modal-header{
    flex-direction: column;
    /* align-items: center;
    text-align: center; */
    gap: 8px;
    padding: 40px;
    border: none;
}
.modal-body{
    padding: 40px;
    padding-top: 0;
}
.modal-title{
    font-family: 'Involve';
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
}
.modal-descr{
    color: var(--color-text);
}
.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
    border: 0;
    border-radius: 0;
    opacity: 0.5;
}
.modal-header .btn-close {
    font-size: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    margin: 12px;
}
.content.seo{
    line-height: 150%;
    color: var(--text-primary);
}
.content.seo ul li{
    list-style-type: disc;
    margin-left: 1rem;
}
.content.seo ol li{
    list-style:decimal;
    margin-left: 1rem;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  /* display: inline-flex;
  align-items: center; */
  user-select: none;
}

.custom-checkbox + label::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #3c3c3c;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:checked + label::before {
  border-color: var(--accent);
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: rgba(0, 0, 255, 0.33);
}

.custom-checkbox:not(:disabled):active + label::before {
  background-color: rgba(0, 0, 255, 0.66);
}

.custom-checkbox:focus + label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 255, 0.125);
}

.custom-checkbox:focus:not(:checked) + label::before {
  border-color: #c3c3c3;
}

.custom-checkbox:disabled + label::before {
  background-color: black;
}
label.policy a{
    text-decoration: underline;
}
/*breadcrumbs*/
.breadcrumps-section{
    padding-top: 100px;
}
.breadcrumps-section h1{
    margin-bottom: 40px;
}
.breadcrumbs-wrap{
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumbs-wrap li:not(:last-child){
    padding-right: 12px;
    position: relative;
}
.breadcrumbs-wrap li:not(:last-child)::after{
    content: '-';
    padding-left: 12px;
}
@media(max-width:768px){
    .breadcrumps-section{
        padding-top: 78px;
    }
    .breadcrumbs-wrap{
        padding: 30px 0;
    }
    .breadcrumps-section h1{
        margin-bottom: 30px;
    }
}
/*header*/
header{
    position: fixed;
    
    width: 100vw;
    z-index: 999;
}
.main-page-header.fixed{
    background: #fff;
}
.header-wrap{
    background: #fff;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-left{
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-right{
    display: flex;
    align-items: center;
    gap: 16px;
}
.open-menu-wrap{
    transition: 0.5s;
    transform: translateX(-150vw);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 40vw;
    height: 100vh;
}
.open-menu-wrap.opened{
    transform: translateX(0);
}
.product-colors-modal{
    height: 100vh;
}
.product-colors-modal .open-menu_box .open-menu_box-inner{
    height: calc(100vh - 70px);
    overflow-y: auto;
        padding-right: 1rem;
}
.open-menu_box-inner .related-thumb.active img{
    border-bottom: 2px solid #0D0E20
}
.open-menu_header{
    background: var(--text-primary);
    color: #fff;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    cursor: pointer;
}
.open-menu_header img{
    width: 20px;
    height: 20px;
}
.open-menu_header-2{
    padding: 20px 75px;
    background: #ffff;;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    
}
.open-menu_header-2 img{
    filter: invert(1);
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.open-menu_box{
    overflow-y: auto;
    height: 100%;
    padding: 75px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
}
.open-menu-wrap .logo{
    width: 40%;
    filter: contrast(50) brightness(0);
}
.header-social {
    display: flex;
    border-radius: 8px;
    border: 1px solid var(--text-secondary);
}
.header-social .social-item{
    /* width: 40px; */
    /* height: 40px; */
    padding: 12px;
}
/* .main-menu{
    width: 100%;
} */
.menu-item a,
.menu-item.current-menu-item > span,
.menu-item span.accent{
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-item a:hover{
    color: var(--accent);
}
.menu-reveal-sub {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.menu-reveal-sub.active{
    transform: rotate(90deg);
}
.sub-menu .menu-item a,
.sub-menu .menu-item span.accent{
    display: block;
    padding: 0 0 8px 16px;
}
.menu-item-has-children .sub-menu{
    display: none;
}
.menu-item-has-children .sub-menu.active{
    display: block;
}
.header_open-search,.header_open-menu{
    cursor: pointer;
}
.search-box{
    max-width: 100vw;
    position: fixed;
    padding: 40px 20vw;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.4s 
        ease-out, -webkit-transform 0.35s 
        cubic-bezier(0.46, 0.01, 0.32, 1);
    transition: opacity 0.4s 
        ease-out, -webkit-transform 0.35s 
        cubic-bezier(0.46, 0.01, 0.32, 1);
    -o-transition: transform 0.35s cubic-bezier(0.46, 0.01, 0.32, 1), opacity 0.4s ease-out;
    transition: transform 0.35s 
        cubic-bezier(0.46, 0.01, 0.32, 1), opacity 0.4s 
        ease-out;
    transition: transform 0.35s 
        cubic-bezier(0.46, 0.01, 0.32, 1), opacity 0.4s 
        ease-out, -webkit-transform 0.35s 
        cubic-bezier(0.46, 0.01, 0.32, 1);
    background: #fff;
}
.search-box.active {
    height: 400px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 999999;
}
.search-wrap-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.search-wrap-bg.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.close-search {
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 2;
}
.close-search img{
    filter: invert(1);
}
.search-box .input-group{
    border-bottom: 1px solid;
    display: flex;
    align-items: center;
}
.search-box .input-group input{
    border: none;
}
.search-box .input-group img{
    width: 36px;
    height: 36px;
}
@media(min-width:1200px){
    .main-page-header .header-right .header_open-menu{
        display: none;
    }

    .page-header .header-left .header_open-menu{
        display: none;
    }
    .header-social.mobile{
        display: none;
    }
    .header_open-contacts.mobile{
        display: none;
    }
}
@media(min-width:991px){
    .search-wrap {
        display: block;
    }
    .main-page-header .header-wrap{
        padding-right: 15px;
        width: 49%;
    }
    
    .main-page-header.fixed .header-wrap{
        width: 100%;
    }
}
@media(max-width:1200px){
    .main-page-header .header-right .header_open-menu{
        display: block;
    }
    .header-right .header_open-contacts,
    .header-left .header_open-menu{
        display: none;
    }
    .header-social.desktop{
        display: none;
    }
    .header-social.mobile{
        justify-content: center;
        width: 100%;
    }
    .header_open-contacts.mobile{
        border: 1px solid var(--text-secondary);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        width: 100%;
        gap: 24px;
    }
    .header_open-contacts.mobile img{
        width: 24px;
    }
    .open-menu_box{
        padding: 30px 15px;
        gap: 30px;
    }
    .open-menu_header-2{
        padding: 15px;
    }
    .open-menu-wrap{
        min-width: 550px;
    }
}
@media(max-width:768px){
    .open-menu-wrap{
        max-width: 100vw;
        width: 100%;
         min-width: unset;
    }
    .header-left .logo img{
        height: 40px;
    }
}
@media only screen and (max-width: 992px) {
    .search-wrap-bg {
        display: none;
    }
    .search-box{
        padding: 8px;
    }
    .search-box.active{
        height: 80px;
        display: flex;
        align-items: center;
        -webkit-box-shadow: 0px 9px 17px 1px rgba(45, 27, 127, 0.2);
        -moz-box-shadow: 0px 9px 17px 1px rgba(45, 27, 127, 0.2);
        box-shadow: 0px 9px 17px 1px rgba(45, 27, 127, 0.2);
    }
    .search-box .input-group{
        border: none;
        flex-direction: row-reverse;
    }
    .search-box form{
        padding-right: 60px;
    }
    .close-search{
        top: 28px;
    }
    .search-box .title-3{
        display: none;
    }
}
/*footer*/
footer{
    background: var(--text-primary);
}
.section-footer{
    padding: 40px 0;
}
.footer-title{
    margin-bottom: 16px;
}
.footer-list .list-item{
    margin-top: 12px;
}
.section-copyright{
    padding: 18px 0;
    border-top: 1px solid #fff;
}
.section-copyright-inner{
    opacity: 0.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-copyright-social{
    display: flex;
    align-items: center;
}
.section-copyright-social .footer-social{
    width: 40px;
    /* height: 40px; */
    padding: 12px;
}
.section-copyright-social .footer-social img{
    filter: contrast(0) brightness(200);
}
.contact-tab-header{
    width: 100%;
    overflow-x: scroll;
    display: flex;
    gap: 12px;
}
.contact-tab-body{
    display: none;
}
.contact-tab-body.active{
    display: block;
}
.contact-tab-nav{
    cursor: pointer;
    white-space: nowrap;
    opacity: 50%;
    margin-bottom: 2px;
}
.contact-tab-nav.active{
    opacity: 100%;
    font-weight: 700;
    border-bottom: 1px solid #FFFFFF80;
}
.contact-tab-body_item{
    margin-top: 12px;
    display: flex;
    gap: 8px;
}
.contact-tab-body_item svg{
    width: 24px;
}
.contact-tab-body_item-phones{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-tab-body_item-phones >div{
    display: inline-flex;
    gap: 8px;
}
.contact-tab-body_item-phones .section-copyright-social{
    display: inline-flex;
    gap: 8px;
}
.contact-tab-body_item-phones .section-copyright-social .footer-social{
    width: 24px;
    height: 24px;
}
@media(max-width:991px){
    .section-copyright-inner{
        flex-direction: column;
    }
}
@media(max-width:768px){
    .section-footer{
        padding: 30px 0;
    }
    .section-copyright{
        padding: 10px 0;
    }
}
@media(max-width:576px){
    .section-copyright-inner{
        align-items: start;
    }
}

/*Banner*/
.banner_item{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.banner_info{
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 95px;
}
.banner_img-mid{
    margin-top: 20px;
    height: 350px;
}
.banner_img-main{
    width: 50%;
    height: 980px;
}
.swiper-banner .swiper-custom-button-next{
    bottom: 20px;
    left: calc(16% + 50px);
    transform: none;
    top: unset;
    width: max-content;
}
.swiper-banner .swiper-custom-button-prev{
    bottom: 20px;
    left: calc(16% - 50px);
    transform: none;
    top: unset;
    width: max-content;
}
@media(max-width:1200px){
    .banner_img-main{
        height: 710px;
    }
    .banner_img-mid{
        margin-top: 0;
        height: 225px;
    }
    .banner_info{
        width: 45%;
        margin-bottom: 55px;
    }
    .swiper-banner .swiper-custom-button-next,.swiper-banner .swiper-custom-button-prev{
        bottom: 5px;
    }
    .swiper-banner .swiper-custom-button-next{
        left: calc(21% + 50px);
    }
    .swiper-banner .swiper-custom-button-prev{
        left: calc(21% - 50px);
    }
}
@media(max-width:991px){
    .section-banner{
        padding-top: 100px;
    }
    .banner_img-main{
        height: 550px;
    }
}
@media(max-width:768px){
    .banner_item{
        flex-direction: column;
        margin-bottom: 70px;
    }
    .banner_info,.banner_img-main{
        width: 100%;
    }
    .banner_info{
        gap: 12px;
        margin-bottom: 20px;
    }
    .banner_img-main{
        height: 450px;
    }
    .banner_img-mid{
        display: none;
    }
    .swiper-banner .swiper-custom-button-next, .swiper-banner .swiper-custom-button-prev{
        bottom: 10px;
    }
    .swiper-banner .swiper-custom-button-next{
        left: calc(50% + 25px);
    }
    .swiper-banner .swiper-custom-button-prev{
        left: calc(50% - 50px);
    }
}
@media (max-width: 567px) {
    .banner_img-main {
        height: 400px;
    }
}
/*About us*/
@media(max-width:991px){
    .section-about img{
        height: 70vw;
    }
}

/*Advantages*/
.advantage_item{
    display: flex;
    gap: 20px;
}
.advantage_item_img{
    width: 48px;
    height: 48px;
}
/*Catalog*/
.select-custom {
    position: relative;
    width: 260px;
    cursor: pointer;
}

.select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.select-dropdown.show {
    display: block;
}

.select-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s;
}

.select-option:hover {
    background: #f0f7ff;
}

.select-option.active {
    background: #e6f0ff;
    color: var(--accent);
    font-weight: 500;
}

.shop-sort-box{
    display: flex;
    justify-content: space-between;
}
.filters-title{
    margin-bottom: 12px;
}
.filter-widget-row{
    margin-bottom: 20px;
}
.filter-widget-row .widget-content{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.filter-widget-row .widget-content label{
    margin-bottom: 0;
}
.filter-open-btn{
    border: 1px solid var(--text-secondary);
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: 100%;
    gap: 24px;
}
.filter-menu{
    z-index: 99990;
}
@media(max-width:991px){
    .filter-open-btn{
        display: flex;
    }
    .filter-widget{
        display: none;
    }
}
@media(max-width:768px){
    .shop-sort-box{
       flex-direction: column;
    }
}
/*Product*/
.product-divider{
    width: 100%;
    height: 1px;
    background: var(--text-primary);
    margin: 40px 0;
}
.product-price{
    font-size: 30px;
    font-weight: 500;
    color: var(--accent);
}
.old-price{
    text-decoration: line-through;
}
.product-colors-wrap, .product-colors{
    display: flex;
    gap: 10px;
}
.product-colors .related-thumb.active{
   border-bottom: 2px solid #0D0E20
}
.product-colors .related-thumb img{
    width: 80px;
    height: 80px;
}
.product-colors-all-btn{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    font-size: 18px;
}
.product-tab-header{
    display: flex;
    gap: 60px;
}
.product-tab-nav{
    cursor: pointer;
    color: var(--text-secondary);
}
.product-tab-nav.active{
    color: var(--text-primary);
}
.product-tab-body{
    display: none;
}
.product-tab-body.active{
    display: block;
}
.product-page .button {
    width: 30%;
}
.shop-widget-title{
    margin-bottom: 20px;
}
.shop-category-list li{
    margin-top: 12px;
}
.product-card{
    height: 80%;
    /* margin-bottom: 70px; */
    position: relative;
}
.product-badges{
    z-index: 1;
    position: absolute;
    top: 10px;
    left: 10px;
}
.product-badge{
    background: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    margin-right: 4px;
}

.product-card_current-images-wrap, .product-card_current-images-wrap img{
    display: block;
    height: 100%;
}
.product-card-wrap{
    padding: 0 10px;
    margin-bottom: 140px;
}
.product-card-wrap .slick-track{
    height: 100%;
}
.product-card-info{

}
.product-card-info_category{
    margin-bottom: 8px;
}
.product-card-info_price span:nth-child(2){
    text-decoration: line-through;
}
.product-card-info-wrap {
    position: absolute;
    background: #fff;
    z-index: 2;
    width: 100%;
    top: 100%;
    border: 3px solid #fff;
    border-top: none;
}
.product-card:hover .product-card-info-wrap{
    border: 3px solid #f4f4f4;
    border-top: none;
}
.product-card_related-images-wrap {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    height: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    padding: 10px 36px;
}
.product-card:hover .product-card_related-images-wrap{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    height: inherit;
}

.product-card_related-images-slider{
    position: relative;
    opacity: 1;
    visibility: visible;
    padding: 10px 30px 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.product-card:hover .product-card_related-images-slider{
    display: block !important;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.product-card_related-images-wrap .related-thumb{
    cursor: pointer;
    border-bottom: 2px solid #fff;
}
.product-card_related-images-wrap .related-thumb:hover,
.product-card_related-images-wrap .related-thumb.choosen{
    border-bottom: 2px solid #6D748B
}
.product-card:hover .product-card-info{
    padding: 0 36px 20px;
}
  #productGallery .swiper {
    width: 100%;
    height: 100%;
  }

  #productGallery .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #productGallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Контейнер галереи */
  #productGallery .gallery-container {
    display: flex;
    flex-direction: row;
    height: 960px;
    gap: 10px;
  }

  /* Основной слайдер */
  #productGallery .mySwiper2 {
    flex: 1;
    height: 100%;
    width: 85%;
  }
   #productGallery .mySwiper2 .swiper-slide a{
    width: 100%;
    height: 100%;
  }

  /* Слайдер миниатюр (вертикальный) */
  #productGallery .mySwiper {
    /* height: max-content; */
    width: 15%;
    padding: 0;
  }

  #productGallery .mySwiper .swiper-slide {
    cursor: pointer;
  }

  #productGallery .mySwiper .swiper-wrapper {
    flex-direction: column;
  }

  #productGallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section_recommended .my-container{
    position: relative;
  }
 .section_recommended  .swiper-nav{
    width: 100%;
    position: absolute;
    top: 400px;
 }
  .section_recommended  .swiper-nav .swiper-custom-button-next{
    right: -4%;
 }
.swiper-related {
    padding-bottom: 300px;
}
.swiper-popular-products .swiper-scrollbar,
.swiper-related .swiper-scrollbar{
    display: none;
}
.swiper-popular-products .swiper-custom-button-next{
    bottom: 20px;
    left: calc(16% + 50px);
    transform: none;
    top: unset;
    width: max-content;
}
.swiper-popular-products .swiper-custom-button-prev{
    bottom: 20px;
    left: calc(16% - 25px);
    transform: none;
    top: unset;
    width: max-content;
}
.popular-products_item{
    position: relative;
    background: #F1EDED;
    display: flex;
    justify-content: space-between;
}
.popular-products_info{
    position: relative;
    padding: 80px 40px;
    width: 50%;
    gap: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.popular-products_info .title-1{
    width: 75%;
}
.popular-products_text{
    display: flex;
    flex-direction: column;
}
.popular-products_info .text-regular{
    position: absolute;
    text-align: right;
    width: 50%;
    right: 20px;
    bottom: 80px;
}
.popular-products_img-main{
    width: 50%;
    height: 800px;
}
.popular-products_img-mid{
    position: absolute;
    top: calc(50% - 150px);
    left: calc(50% - 150px);
    height: 300px;
    width: 300px;
}
.swiper-recommend .row{
    margin: 0;
}
#mse2_results{
    margin-bottom: 40px;
}
@media (max-width:1440px) {
    #productGallery .gallery-container {
        height: 700px;
    }
}
/* Адаптивность */
@media (max-width: 1200px) {
#productGallery .gallery-container {
    flex-direction: column-reverse;
    height: 840px;
}

#productGallery .mySwiper {
    width: 100%;
    height: 20%;
}

#productGallery .mySwiper2 {
    width: 100%;
    height: 80%;
}

#productGallery .mySwiper .swiper-wrapper {
    flex-direction: row;
}

#productGallery .mySwiper .swiper-slide {
    padding: 0 4px;
    width: 25%;
    height: 100% !important;
    }
}
@media(max-width:1660px){
    .swiper-related .swiper-scrollbar{
        display: block;
    }
    .swiper-related + .swiper-nav{
        display: none;
    }
}
@media(max-width:991px){
.swiper-popular-products .swiper-scrollbar{
    display: block;
}
.swiper-popular-products .swiper-nav{
    display: none;
}
.swiper-related {
    padding-bottom: 20px;
}
.swiper-popular-products .swiper-wrapper{
    margin-bottom: 40px;
}
.popular-products_item{
    flex-direction: column;
}
.popular-products_info,
.popular-products_img-main{
    width: 100%;
}
.popular-products_info .title-1 {
    width: 100%;
}
.popular-products_img-main{
    height: 540px;
}
.popular-products_info{
    padding: 20px 15px 140px;
    gap: 20px;
}
.popular-products_text{
    flex-direction: column-reverse;
    gap: 20px;
}
.popular-products_item .text-regular{
    position: static;
    text-align: left;
    width: 100%;
}
.popular-products_img-mid{
    width: 240px;
    height: 240px;
    top: unset;
    bottom: calc(540px - 120px);
    left: calc(50% - 120px);
}
.shop-widget-title{
    display: none;
}
.shop-category-list li{
    margin-top: 0px;
}
.shop-category-list li a{
    white-space: nowrap;
}
.shop-category-list{
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    overflow-x: scroll;
    overflow-y: unset;
}
.product-divider{
    margin: 30px;
}
.product-tab-header{
    margin-top: 60px;
    gap: 20px;
    flex-wrap: wrap;
}
.product-page .button {
    width: 100%;
}
.product-colors-wrap{
    flex-direction: column;
}
.product-colors-all-btn{
    flex-direction: row;
    width: max-content;
    height: max-content;
}
.product-card_current-images-wrap, .product-card_current-images-wrap img{
    height: 45vw;
}
 .section_recommended  .product-card_current-images-wrap, .section_recommended .product-card_current-images-wrap img {
    height: 100%;
}
.product-card-wrap{
    margin-bottom: 30px;
}
.product-card-info-wrap{
    position: static;
}
.product-card_related-images-wrap{
    transform: scale(1);
    height: 100%;
}
.product-card .slick-track{
    height: 100%;
}
.product-card{
    height: 100%;
}
.product-card-info{
    padding: 0 36px 20px;
}
}
@media (max-width: 768px) {
    #productGallery .gallery-container {
      flex-direction: column-reverse;
      height: 100vw;
    }

    .popular-products_img-main{
        height: 440px;
    }
    .popular-products_info{
        padding: 20px 15px 120px;
        gap: 20px;
    }
    .popular-products_img-mid{
        width: 200px;
        height: 200px;
        top: unset;
        bottom: calc(440px - 100px);
        left: calc(50% - 100px);
    }
}
@media (max-width: 768px) {
    .product-card_current-images-wrap, .product-card_current-images-wrap img {
        height: 90vw;
    }
   
}
@media(max-width:576px){
    .product-colors .related-thumb img{
        width: 100%;
        height: 100%;
    }
    
    .popular-products_img-main{
        height: 340px;
    }
    .popular-products_info{
        padding: 20px 15px 100px;
        gap: 20px;
    }
    .popular-products_img-mid{
        width: 160px;
        height: 160px;
        top: unset;
        bottom: calc(340px - 80px);
        left: calc(50% - 80px);
    }
}
/*Collections*/
.collections-grid,.catalog-grid{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-auto-rows: 1fr;
    align-items: stretch;
    height: 800px;
}
.swiper-collections .swiper-wrapper{
    margin-bottom: 40px;
}
.collections-grid  .card,
.swiper-collections .card,
.catalog-grid .card{
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end; 

}
.collections-grid .card-bg,
.swiper-collections .card-bg,
.catalog-grid .card-bg{
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.6s 
        cubic-bezier(.2, .9, .2, 1), filter 0.6s;
    will-change: transform;
    z-index: 0;
}
.collections-grid  .card:hover .card-bg,
.swiper-collections  .card:hover .card-bg,
.catalog-grid .card:hover .card-bg{
    transform: scale(1.2);
}
.collections-grid .card-bg::before,
.swiper-collections .card-bg::before,
.catalog-grid .card-bg::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 0;
}
.collections-grid .card-left,
.catalog-grid .card-left{
    grid-row: span 2;
    min-height: 520px;
}
.collections-grid .card-right-top,
.catalog-grid .card-right-top{
    min-height: 260px;
}
.collections-grid .right-bottom,
.catalog-grid .right-bottom{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.catalog-grid .right-bottom-split{
    display: grid; grid-template-rows: 1fr 1fr; 
}
.collections-grid .card-right-bottom,
.catalog-grid .card-right-bottom{
    min-height: 200px;
}

.collections-grid .card-content,
.swiper-collections .card-content,
.catalog-grid .card-content{
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    height: 100%;
    width: 100%;
}
.swiper-collections{
    display: none;
}

@media(max-width:1200px){
    .catalog-grid{
        height: max-content;
    }
    .catalog-grid,
    .catalog-grid .right-bottom,
    .catalog-grid .right-bottom-split{
        display: block;
    }
    .collections-grid .card-left,
    .catalog-grid .card-left,
    .collections-grid .card-right-top,
    .catalog-grid .card-right-top,
    .collections-grid .card-right-bottom,
    .catalog-grid .card-right-bottom{
        min-height: unset;
    }
    .catalog-grid .card{
        height: 25vh;
    }
    .catalog-grid .card-content{
        padding: 15px;
    }
}
@media (max-width: 991px){
    .collections-grid{ display: none; }
    .swiper-collections{ display: block; }
    .swiper-collections .card{
        min-height: 400px;
        justify-content: center;
    }
}

.collection_categories{
    height: max-content;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}
.collection_items .collection_card{
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}
.collection_items .collection_card:nth-child(odd){
   flex-direction: row;
}
.collection_items .collection_card:nth-child(even){
   flex-direction: row-reverse;
}
.collection_card .collection_card-big_img{
    width: 100%;
    height: 60vw;
    max-height: 900px;
}
.collection_card .collection_card-img{
    width: 45%;
    height: auto;
}
.collection_card .collection_card-info_inner{
    display: flex;
    align-items: center;
    gap: 20px;
}
.collection_items .collection_card:nth-child(odd) .collection_card-info_inner{
   flex-direction: row;
}
.collection_items .collection_card:nth-child(even) .collection_card-info_inner{
   flex-direction: row-reverse;
}
.collection_card .collection_card-title{
    margin-bottom: 60px;
}
.collection_card .collection_card-text a{
    margin-top: 30px;
    transition: 0.3s;
}
.collection_card .collection_card-text a svg{
    transition: 0.3s;
}
.collection_card .collection_card-text a:hover svg{
    transform: translateX(15px);
}
.collection_card .collection_card-text a:hover svg path{
    stroke: var(--text-primary);
}

.img_text_right img,
.img_text_center .big_img,
.img_text_center .small_img,
.img_text_right_2imgs .big_img,
.img_text_left_2imgs .big_img,
.img_text_left_img .big_img,
.img_text_right_img .big_img{
    height: 70vh;
    max-height: 850px;
}
.img_text_center_grid .big_img{
    height: 80vh;
    max-height: 910px;
}
.imgs2_imgs2 .big_img{
    object-position: center;
    height: 35vh;
    max-height: 450px;
}
.imgs2_imgs2 .small_img,
.img2-col img,
.img_text_right_img .small_img,
.img_text_left_img .small_img{
    object-position: center;
    height: 30vh;
    max-height: 400px;
}
.img_text_center .big_img{
    object-position: left;
}
.img_text_center .small_img{
    object-position: right;
}
.imgs_3 .imgs_3_wrap:nth-of-type(1) img{
    object-position: left;
}
.imgs_3 .imgs_3_wrap:nth-of-type(2) img{
    object-position: right;
}
.imgs_3 .imgs_3_wrap:nth-of-type(3) img{
    object-position: center;
}
.img_text_center_grid .images_grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap:20px;
    width: 60%;
}
.img2-col{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}
/* .img2-col img{
    height: 20vh;
} */
@media(max-width:992px){
    .img_text_right img,
    .img_text_center .big_img,
    .imgs_3 .imgs_3_wrap:nth-of-type(3) img,
    .img_text_right_2imgs .big_img,
    .img_text_left_2imgs .big_img,
    .img_text_left_img .big_img,
    .img_text_right_img .big_img{
        height: 50vh;
        object-position: center;
    }
    .img_text_center_grid .big_img{
        height: 55vh;
        object-position: center;
    }
    .img_text_center .small_img,
    .imgs_3 .imgs_3_wrap:nth-of-type(1) img,
    .imgs_3 .imgs_3_wrap:nth-of-type(2) img,
    .img_text_right_img .small_img,
    .img_text_left_img .small_img{
        height: 25vh;
        object-position: center;
    }
    .img_text_center_grid .images_grid{
        grid-gap:10px;
        width: 100%;
    }
    .img2-col{
        flex-direction: row;
    }
    .img2-col img {
        max-width: 50%;
    }
}
@media(max-width:567px){
    .img_text_right img,
    .img_text_center .big_img,
    .imgs_3 .imgs_3_wrap:nth-of-type(3) img,
    .img_text_right_2imgs .big_img,
    .img_text_left_2imgs .big_img,
    .img_text_left_img .big_img,
    .img_text_right_img .big_img{
        height: 30vh;
    }
    .img_text_center_grid .big_img{
        height: 35vh;
        object-position: center;
    }
    .img_text_center .small_img,
    .imgs_3 .imgs_3_wrap:nth-of-type(1) img,
    .imgs_3 .imgs_3_wrap:nth-of-type(2) img,
    .img_text_right_img .small_img,
    .img_text_left_img .small_img{
        height: 20vh;
    }
}
@media(max-width:1200px){
    .collection_categories{
        gap: 20px;
        margin-bottom: 20px;
        overflow-x: scroll;
        overflow-y: unset;
        width: 100%;
    }
    .collection_items .collection_card{
        margin-bottom: 80px;
    }
    .collection_card .collection_card-info_wrap{
        padding: 30px 30px 0 30px;
    }
    .collection_items .collection_card:nth-child(odd) .collection_card-info_inner,
    .collection_items .collection_card:nth-child(even) .collection_card-info_inner{
        flex-direction: column;
    }
    .collection_card .collection_card-title{
        text-align: center;
        margin-bottom: 20px;
    }
    .collection_card .collection_card-text a{
        margin-top: 20px;
    }
    .collection_card .collection_card-img{
        width: 70%;
    }
    .collection_card .collection_card-big_img{
        height: 90vw;
    }
        
}
/*Blog*/
.section_blog .my-container{
    position: relative;
}
.swiper-blog{
    position: relative;
    width: 100%;
}

.swiper-blog .swiper-scrollbar{
    display: none;
}
.blog-card_wrap{
    padding: 0 10px 0;
}
.blog-card{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.blog-card_img-wrap{
    max-height: 450px;
    height: 50vh;
}
.blog-card_img-wrap a,
.blog-card_img-wrap img{
    display: block;
    height: 100%;
    width: 100%;
}
.blog-card_date{
    display: flex;
    align-items: center;
    gap: 4px;
}
@media(min-width:1200px){
    .swiper-custom-button-prev-blog{
        left: 15px;
    }
    .swiper-custom-button-next-blog{
        right: -15px;
    }
}
@media(min-width:1600px){
    .swiper-custom-button-prev-blog{
        left: -25px;
    }
    .swiper-custom-button-next-blog{
        right: -50px;
    }
}

@media(max-width:1200px){
    .swiper-blog .swiper-wrapper{
        margin-bottom: 40px;
    }
    .swiper-blog .swiper-scrollbar{
        display: block;
    }
    .section_blog .swiper-nav{
        display: none;
    }
}
/*Контакты*/
.section_contacts .contact-tab-header{
    gap: 30px;
    overflow: unset;
    margin-bottom: 1rem;
}
@media(max-width:567px){
    .section_contacts .contact-tab-header{
        overflow-x: scroll;
    }
}

.product-name{
    color: var(--text-secondary);
    text-decoration: underline;
}
.cookie-modal{
    z-index: 10;
    position: fixed;
    bottom: 20px;
    width: 100%;
}
.cookie-modal-inner{
    display: flex;
    gap: 20px;
    align-items: center;
    background: #FFFFFFE5;
    border-radius: 4px;
    padding: 20px;
}
.cookie-modal-inner .buttons{
    display: flex;
    gap: 20px;
}
.cookie-modal-inner a{
    text-decoration: underline;
}
@media(max-width:991px){
    .cookie-modal-inner{
        flex-direction: column;
    }
}
@media(max-width:400px){
    .cookie-modal-inner{
        gap: 8px;
    }
    .cookie-modal-inner .buttons{
        flex-direction: column;
        gap: 8px;
    }
}
.to-top {
	position: fixed;
	bottom: 5vh;
	right: 5vw;
	transform: scale(0);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	font-size: 1.5625rem;
	border-radius: 50%;
	box-shadow: 0px 34px 40px rgba(18, 75, 64, 0.06);
	opacity: 0;
	background: var(--accent);
	color: #fff;
	will-change: transform;
	z-index: 10;
	cursor: pointer;
	transition: .2s;
}

.to-top::after {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: '';
	background: var(--accent);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.2s ease-in-out;
}

.to-top.show {
	transform: scale(1);
	opacity: 1;
	transition: all 0.2s, transform 0.2s cubic-bezier(0.5, 0, 1, 2);
}

.to-top.active::after, .to-top:hover::after {
	transform: scale(1);
}
.to-top::before {
    width: 32px;
    height: 32px;
    content: url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20stroke%3D%22%23ffffff%22%3E%3Cg%20id%3D%22SVGRepo_bgCarrier%22%20stroke-width%3D%220%22%3E%3C%2Fg%3E%3Cg%20id%3D%22SVGRepo_tracerCarrier%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fg%3E%3Cg%20id%3D%22SVGRepo_iconCarrier%22%3E%3Cpath%20d%3D%22M6%2015L12%209L18%2015%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E);
}
.about_anchors{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.brand_el{
    display: none;
    align-items: center;
    gap: 12px;
}
.brand_el img{
    width: 30%;
}
.brand_el.active{
    display: flex;
}
.brand_tab_el{
    cursor: pointer;
    line-height: 1.25;
    height: 60px;
    padding-right: 4px;
    font-size: 20px;
    margin-bottom: 8px;
    border-right: 2px solid #b0b0b0;
}
.brand_tab_el.active{
    font-weight: 600;
    border-right: 3px solid var(--accent);
}
@media(max-width:1200px){
    .brand_tabs{
        display: flex;
        width: 100%;
        gap: 30px;
        overflow-x: scroll;
        margin-bottom: 24px;
    }
    .brand_tab_el{  
        white-space: nowrap;
        width: 100%;
        border-bottom: 2px solid #b0b0b0;
        border-right: none;
        height: auto;
        padding-right: 0;
    }
    .brand_tab_el.active{
        border-bottom: 2px solid var(--accent);
        border-right: none;
    }
}
.partner-tab-header{
    flex-wrap: wrap;
    justify-content: center;
    row-gap:12px;
}