:root {
    --prime: #FF4CD8;
    --sec: #3CBEFF;
    --blue: #E5F6FF;
    --silver: rgba(32, 32, 32, 0.03);
    --black: #202020;

}

.pad,
.mob {
    display: none;
}

img {
    max-width: 100%
}

a {
    text-decoration: none;
    transition: 0.5s;
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: inherit;

}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin-bottom: 0;
}

/*ANIMATE*/

[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

/* Анимации появления */
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Up */
[data-animate="fade-up"].animated {
    transform: translateY(0);
}

/* Fade Left */
[data-animate="fade-left"] {
    transform: translateX(100px);
}
[data-animate="fade-left"].animated {
    transform: translateX(0);
}

/* Fade Right */
[data-animate="fade-right"] {
    transform: translateX(-100px);
}
[data-animate="fade-right"].animated {
    transform: translateX(0);
}

/* Zoom In */
[data-animate="zoom-in"] {
    transform: scale(0.8);
}
[data-animate="zoom-in"].animated {
    transform: scale(1);
}

/* Flip */
[data-animate="flip"] {
    transform: perspective(1000px) rotateX(90deg);
}
[data-animate="flip"].animated {
    transform: perspective(1000px) rotateX(0);
}

/* Bounce */
[data-animate="bounce"] {
    transform: translateY(100px);
}
[data-animate="bounce"].animated {
    transform: translateY(0);
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
}

/* Custom delay and duration */
[data-animate] {
    transition-duration: var(--duration, 800ms);
    transition-delay: var(--delay, 0ms);
}

body {
    font-family: 'TT Commons';
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    overflow-x: hidden;
    color: var(--black);
    line-height: 1.3;
}



section {
    padding: 96px 0;
    position: relative
}

section.bg {
    margin: 60px 0
}

h1 {
    text-transform: none;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: 32px;
}


/*FLEX*/

.fl {
    display: flex;
}

.fw {
    flex-wrap: wrap;
}

.jsb {
    justify-content: space-between;
}

.jc {
    justify-content: center;
}

.jfe {
    justify-content: flex-end;
}

.jsa {
    justify-content: space-around;
}

.ac {
    align-items: center
}

.afe {
    align-items: flex-end
}

.tc {
    text-align: center;
}

.cw {
    color: white
}

.cb {
    color: black;
}

.fl-column {
    flex-direction: column;
}


.container-fluid {
    padding: 0 30px;

}

main {
    position: relative;
    background: white;
    z-index: 9
}




/*BUTTON*/


.but a,
.but button {
    background: var(--prime);
    color: #fff;
    padding: 12px 32px 10px 32px;
    border-radius: 0;
    color: white;
    font-weight: 500;
    font-size: 24px;
    border: 1px solid transparent;
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    height: 56px;
    cursor: pointer;
}


.but img {
    margin-left: 8px;
}

.but a:hover,
.but button:hover {
    background: #7f34ff;
    color: #fff;
    border: 1px solid #7f34ff;
}

.more a {
    color: var(--prime);
    text-decoration: none;
    cursor: pointer;
}

.more a:hover {
    color: #FF02C8
}

/*TITLE TOP*/

.title-top {
    justify-content: space-between;
    margin-bottom: 60px;
}

.title-top .subtitle {
    text-transform: lowercase;
    color: var(--sec);
    font-size: 30px;
    font-weight: 500;
    white-space: nowrap;
    padding-right: 50px;
}

.title-top .text {
    font-size: 40px;
    line-height: 100%;
    font-weight: 500;
    max-width: 704px;
}

.title-top .subtitle a {
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    color: initial;
    display: block;
}

.title-top .subtitle a:hover {
    filter: brightness(1.2)
}

.title-top .subtitle img {
    margin-left: 8px;
    margin-bottom: 0;
}


/*HEADER*/


header {
    padding: 16px 0 19px;
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
}

.inner header {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}

header .header-bottom {
    border-top: 1px solid #eee;
    padding-top: 18px;
    margin-top: 18px;
}

header .phone {
    font-size: 20px;
    margin-right: 16px;
}

header .email {
    font-size: 20px;
    margin-right: 32px;
}

header .callback {
    font-size: 20px;
    margin-right: 32px;
    display: flex;
    line-height: 1;
    align-items: center;
    color: var(--prime);
    padding: 0;
}

header .callback img {
    margin-right: 8px;
}

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

header .links a {
    margin-right: 8px;
}

header .links a:last-child {
    margin-right: 0px;
}

header .header-bottom nav ul {
    margin: 0 -16px;
    display: flex;
}

header .header-bottom nav li a {
    font-size: 19px;
}
header .header-bottom nav li a:hover {
    color:var(--prime);
   
}


@media (max-width:1690px) {
    header .header-bottom nav li a {
        font-size: 17px;
    }
}

header .header-bottom nav li {
    padding: 0 16px;
}

header .header-bottom .icons {
    display: flex;
    margin: 0 -6px;
    align-items: center;
}

header .header-bottom .icons div {
    padding: 0 6px;
}

header .links img {
    width: 32px;
}



/*PROMO*/

.promo {
    background: url(../img/promo.jpg) no-repeat center bottom/cover;
    color: white;
    padding-bottom: 0;
    background-attachment: fixed;
}

.promo .container {
    position: relative;
}

.promo .ag1 {
    position: absolute;
    z-index: 99;
    transform: translateZ(0);
    right: 10%;
    top: 30px;
}

.promo .ag2 {
    position: absolute;
    z-index: 99;
    transform: translateZ(0);
    left:0;
    top:12%
}

.promo .ag3 {
    position: absolute;
    z-index: 99;
    transform: translateZ(0);
    left:0;
    top:55%
}

.promo .ag4 {
    position: absolute;
    z-index: 99;
    mix-blend-mode: screen;
    transform: translateZ(0);
    left:0;
    top:55%
}

.promo .ag5 {
    position: absolute;
    z-index: 99;
    transform: translateZ(0);
    right:-140px;
    top:25%
}

.promo {
    background: url(../img/promo.jpg) no-repeat center bottom/cover;
    color: white;
    padding-bottom: 0;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.parallax-element {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.promo .img.desc {
    position: relative;
    z-index: 1;
}


.promo .container {
    position: relative;
}


.promo .title {
    font-weight: 600;
    text-align: center;
    font-size: 3.95vmax;
    margin-bottom: 16px;
    position: relative;
    line-height: 0.8;
}

.promo p {
    text-align: center;
    font-size: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.promo .but {
    text-align: center;
    margin-top: 32px;
}

.promo .img {
    text-align: center;
    position: relative;
}




/*CATS*/


.cats {}

.inner .breadcrumbs + section {
    padding: 10px 0 100px
}

.cats .item a {
    background: url(../img/cat-bg.jpg) no-repeat center bottom/cover;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    min-height: 486px;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
}

.cats .item a:hover {
    background: url(../img/cat-bg2.jpg) no-repeat center bottom/cover;
    transition: background 0.3s ease;
}

.cats .item span {
    display: block;
    font-size: 40px;
    font-weight: 500;
    color: white;
}

.cats .item img {
    height: 300px;
    width: auto;
    display: block;
    max-width: max-content;
    text-align: center;
    margin: 0 auto;
}

.cats .item {
    margin-bottom: 24px;
}

.cats .title-top .text {
    max-width: 808px;
}


/*ABOUT*/

.about {
    background: var(--blue);

}

.about .hi {
    position: relative;
    margin-top: -188px;
    margin-left: 200px;
    animation: float 3s ease-in-out infinite;
}


@keyframes float {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-5px) rotate(-2deg);
    }

    75% {
        transform: translateX(5px) rotate(2deg);
    }
}

.about .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        "div1 div1 div2"
        "div1 div1 div3";
    gap: 12px;
    margin-bottom: 40px;

}

.about .grid .div1 {
    grid-area: div1;
}


.about .grid .div2 {
    grid-area: div2;

}

.about .grid .div3 {
    grid-area: div3;

}

.about .grid img {
    border-radius: 20px;
    width: 100%;
}

.about .pre {
    padding: 80px 0
}

.about .pre .fl .item {
    flex-basis: 25%;
    text-align: center;
}

.about .pre .fl .item img {
    text-align: center;
    margin-bottom: 24px;

}

.about .pre .fl .item p {
    text-align: center;
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    padding: 0 50px;

}


.about .video {
    position: relative;
    border-radius: 20px;
}

.about video {
    border-radius: 20px;
    display: block;
    width: 100%;
    object-fit: cover;
}

.about .video .play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.about .video .play:hover {
    opacity: 0.8;
    transition: 0.5s;
    cursor: pointer;
}


.about .video .play.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/*DISTRIBUTE*/


.dist {}

.dist .item {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 20px;
    height: 128px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dist .col-lg-3 {
    padding: 8px;
}

.dist .row {
    margin: 0 -8px;
}


/*REVIEWS*/

.reviews {
    background: var(--blue);
}

.reviews .title-top {
    position: relative;
    margin-bottom: 80px;
}

.reviews .hi2 {
    position: relative;
    bottom: -90px;
    z-index: 99;
    margin-left: -250px;
    animation: float2 3s ease-in-out infinite;
}




.swiper.mySwiper {
  overflow: visible;
  padding: 0 20px; /* Отступы для мобильных устройств */
  margin: 0 -20px; /* Компенсируем padding для выхода за края */
}

.swiper.mySwiper .swiper-wrapper {
  align-items: stretch; /* Чтобы слайды были одинаковой высоты */
}

.swiper.mySwiper .swiper-slide {
  height: auto; /* Для растягивания на всю высоту wrapper */
}

/* Для десктопных разрешений */
@media (min-width: 1024px) {
  .swiper.mySwiper {
    padding: 0 calc((100vw - 1024px) / 2 + 20px) 0 20px;
    margin: 0 calc((100vw - 1024px) / 2 * -1) 0 -20px;
  }
}

/* Дополнительные медиа-запросы для других breakpoints */
@media (min-width: 768px) and (max-width: 1023px) {
  .swiper.mySwiper {
    padding: 0 calc((100vw - 768px) / 2 + 20px) 0 20px;
    margin: 0 calc((100vw - 768px) / 2 * -1) 0 -20px;
  }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-5px) translateY(-20px) rotate(-5deg);
    }

    75% {
        transform: translateX(5px) translateY(10px) rotate(-3deg);
    }
}

.reviews .item {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
}

.reviews .swiper {
    overflow: visible
}

.reviews .rev-header {
    display: flex;
    align-items: center;
}

.reviews .rev-header .text {
    margin-left: 16px;
}

.reviews .name {
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
}

.reviews .dol {
    color: rgba(32, 32, 32, 0.5);
    font-size: 16px;
}

.reviews .rev-text {
    margin-top: 40px;
    font-size: 20px;
    line-height: 130%;
}

.reviews .rev-text .more {
    color: var(--prime);
    margin-top: 16px;
}

.reviews .rev-text {
    height: 200px;
    overflow: hidden;
    position: relative;
    transition: height 0.3s ease;
    font-size:18px
}
.reviews .rev-text p {
    margin-bottom:10px;
    line-height:1.2
}
.reviews .rev-text.expanded {
    height: auto;
}

.reviews .more {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, white 70%);
    padding-top: 40px;
    text-align: center;
}

.reviews .rev-text.expanded .more {
    position: static;
    background: none;
    padding-top: 15px;
}


/*NEWS*/

.news {}

.news .item {

}

.news .item img {
    border-radius: 20px;
    display: block;
    margin-bottom: 24px;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
     object-fit: cover; 
}

.news .item:hover img {
    transition:0.5s;
    transform:scale(1.15);
    overflow:hidden;
    object-fit:cover;
    

}

.news .item a {
   position:relative;
    overflow:hidden;
    max-width:100%;
     display: block;
    max-height:337px;
    border-radius: 20px;
}

.news .news-info {
    margin-bottom: 10px;
    margin-top: 20px;
}

.news .news-info a {
    border-radius:0
}

.news .cat {
    color: rgba(32, 32, 32, 0.5);
    font-size: 16px;
}

.news .date {
    color: rgba(32, 32, 32, 0.5);
}

.news .subtitle a {
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    display: flex;
    text-transform: none;
    align-items: center;
    margin-top: 13px;
}

.news .subtitle a:hover {
    color:var(--prime)
}

/*PART*/

.part {
    background: var(--blue);
}

.part .hi3 {
    position: relative;
    top: 30px;
    animation: gentleFloat 5s ease-in-out infinite;
}

@keyframes gentleFloat {

    0%,
    100% {
        transform:
            translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform:
            translate(-2px, -3px) rotate(-0.5deg) scale(1.01);
    }

    50% {
        transform:
            translate(0, -5px) rotate(0deg) scale(1.02);
    }

    75% {
        transform:
            translate(2px, -3px) rotate(0.5deg) scale(1.01);
    }
}

@keyframes balloonFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    33% {
        transform: translateY(-3px) translateX(-4px) rotate(-1deg);
    }

    66% {
        transform: translateY(2px) translateX(4px) rotate(1deg);
    }
}

.part .item {
    border-radius: 20px;
    padding: 32px;
    background: white;
    height: 100%;
    transition:0.5s;
}
.part .item a {
    transition:none;
}
.part .item.delivery {
    padding: 32px 0 0 32px;
}

.part .item:hover {
    background:#7f34ff;
    color:white;
}

.part .item.delivery .img {
    text-align: right;
    border-radius: 20px;
}

.part .item.delivery .img img {
    border-radius: 0 0 20px 0;
}

.part .item.delivery .arr {
    margin-right: 32px;
}

.part .item .title {
    font-size: 40px;
    line-height: 100%;
    font-weight: 500;
    max-width: 80%;
}

.part .item .text {
    margin-top: 16px;
    font-size: 20px;
    max-width: 480px;
}

.part .item.sotr .img {
    margin-top: 106px;
}


/*VAC*/

.vac .item {
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #eee;
    transition:0.5s;
}

.vac .item:hover {
    background: #7f34ff;
    border-color: #7f34ff;
    color:white
}

.vac .item a {
    transition:none;
}

.vac .item .fl {
    justify-content: space-between
}

.vac .item .arr {
    min-width: 40px;
}

.vac .item .title {
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
    min-height: 90px;
    max-width: 68%;
}

.vac .item .text {
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.02em;
    margin-top: 8px;
}


/*CONTACTS*/

.contacts {}

.contacts .map {
    background: var(--silver);
    padding: 32px;
    border-radius: 20px;
    flex-basis: 65%;
}

.contacts .form {
    background: var(--silver);
    padding: 32px;
    border-radius: 20px;
    flex-basis: 35%;
    margin-left: 26px;
}

.contacts .title {
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
    margin-bottom: 24px;
}

.contacts iframe {
    border-radius: 10px;
}

form .title + p {
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.contacts form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

form .title {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
    margin-bottom: 24px;
}

.modal .form .title {
    margin-bottom: 10px;
}

form button {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.25;
    padding: 12px 29px 9px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.modal fieldset {
    margin-top: 40px;
}

.form-group input,
.form-group textarea {
    padding-bottom: 16px;
    border: none;
    width: 100%;
    display: block;
    background: none;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    transition: all 0.3s ease;
    padding-top: 10px;
    color: initial;
    padding-bottom: 3px;
}

.agree {
    color: rgba(32, 32, 32, 0.5);
    font-size: 12px;
    margin-top: 24px;
}

.agree a {
    text-decoration: underline;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    padding: 0;
}



.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -11px;
    font-size: 12px;
}

input[type="file"] {
    display: none;
}

.file-attach {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 0;
    border: none;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.file-attach:has(.remove-file) img {
    filter: grayscale(1);
}

.file-attach:hover {
    border-color: #007bff;
}

.file-attach img {
    margin-right: 10px;
}

.file-attach span {
    color: #3CBEFF;
}

.file-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.file-name [has=".remove-file"] {
    color: black;
}

.remove-file {
    cursor: pointer;
    margin-left: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    background: url(../img/close.svg) no-repeat center center;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
}







/*FOOTER*/


footer {
    background: #7f34ff;
    padding: 100px 0;
    color: white;
    margin-top: 0;
}

footer .col1 {
    flex-basis: 40%;
}

footer .col2 {
    flex-basis: 60%;
    padding-left: 150px;
}



footer ul {
    column-count: 2;
    column-gap: 40px;
}

footer ul li {
    list-style: none;
    margin-bottom: 12px;
}

footer ul li a {
    font-weight: 400;
    font-size: 20px;
}

footer ul li a:hover {
    color:var(--prime)
}

footer .col3 p {
    font-size: 20px;
    max-width: 335px;
}

footer .col3 .soc {
    display: flex;
    margin-top: 10px;
}

footer .col3 .soc a + a {
    margin-left: 15px
}

footer .bottom {
    border-top: 1px solid #8e8e8e;
    margin-top: 40px;
    padding-top: 40px;
}

footer .bottom .copy {
    font-size: 16px;
}

footer .links {
    display: flex;
    color: rgba(255, 255, 255, 0.5);
}

footer .links a + a {
    margin-left: 24px;
    color: rgba(255, 255, 255, 0.5);
}

/*CALLBACK* MODAL */

.callback {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
}

.callback .title {
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
    text-align: left;
}

.callback .buts {
    margin-top: 40px;
    text-align: center;
}

.callback .buts .but a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

#ex1 {
    max-width: 392px;
}

.callback .buts .but {
    margin-bottom: 16px;
}


.callback .buts .but:last-child {
    margin-bottom: 0;
}

.callback .buts .but.tg a {
    background: #29a9ea;
}

.callback .buts .but.wh a {
    background: #25d366;
}


.callback .buts .but img {
    margin: 0 12px 0 0;
    position: relative;
    top: -2px;
}


.breadcrumbs {
    margin-top: 32px;
}

.breadcrumbs ul {
    display: flex;
}

.breadcrumbs ul li {
    font-size: 15px;
}

.breadcrumbs ul li a {
    color: silver;
}

.breadcrumbs ul li a:after {
    content: '/';
    color: silver;
    padding: 0 10px;
}




/*CATALOG*/


.catalog {}

.catalog .bg-header {
    background-size: cover;
    color: white;
    border-radius: 20px;
    text-align: center;
    height: 170px;
    flex-wrap: wrap;
    padding: 50px 0;
}

.catalog .bg-header h2 {
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.catalog .bg-header p {
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    margin-top: 16px;
    display: block;
    flex-basis: 100%;
    text-transform: uppercase;
}

.options {
    padding: 40px 0 24px 0;
}

.options .filter {
    display: flex;
    align-items: center;
}

.options .item {
    margin-right: 10px;
    border-radius: 10px;
    padding: 10px 12px 8px 12px;
    background: rgba(32, 32, 32, 0.03);
    display: flex;
    align-items: center;
    height: 40px;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.options .all.item {}

.options .item span {
    display: block;
    line-height: 1;
}

.options .item img {
    margin-left: 10px;
    position: relative;
    top: -2px;
}

.options .all.item img {
    padding: 0 10px;
    margin-left: 0;
}

.options .all.item .count {
    width: 24px;
    height: 24px;
    background: var(--prime);
    border-radius: 50%;
    font-size: 16px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
}

.options .item.active {
    background: rgba(255, 76, 216, 0.15);
}

.options .item ul {
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.2s;
    transition-delay: 0.15s;
    position: absolute;
    z-index: 9;
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    top: 48px;
    left: 0;
    min-width: 380px;
}

.options .item:hover img {
    transform: rotate(180deg);
    transition: 0.5s;
}

.options .item:hover ul {
    opacity: 1;
    visibility: visible;
}

.options ul li label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.options ul li:last-child label {
    margin-bottom: 0
}

.options label input {
    display: none;
}

.options label em {
    border-radius: 4px;
    border: 1px solid #eee;
    width: 20px;
    margin-right: 12px;
    position: relative;
    top: -1px;
    height: 20px;
    position: relative;
    display: inline-flex;
}

.options label input[type="checkbox"]:checked + em {
    background: var(--prime) url(../img/check.svg) no-repeat center;

}

.options .total {
    color: rgba(32, 32, 32, 0.5);
    font-size: 20px;
    line-height: 130%;
    font-weight: 400;
    padding: 0 24px;
}

.options .total p {
    padding: 24px 0 0 0;
    border-top: 1px solid #eee;
}

.options .total .buts {
    margin-top: 16px;
}

.options .total .but {
    width: 50%
}

.options .total .but button {
    background: var(--prime);
    width: 100%;
    text-align: center;
    display: block;
}


.options .total .but button.reset {
    background: rgba(32, 32, 32, 0.1);
    margin-left: 10px;
    color: initial;
    text-align: center;
    display: block;
}


.allfilters {
    padding: 0 0 24px 0;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    background: white;
    position: fixed;
    transform: translateX(5000px);
    z-index: 999;
    top: 0;
    right: 0;
    height: 100%;
    transition: 0.7s;
    overflow-y: auto;
    min-width: 532px;
}

.allfilters.active {
    transform: translateX(0px);
}

.overlay {
    background: #00000099;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.allfilters .title {
    font-size: 40px;
    line-height: 100%;
    font-weight: 500;
    padding-bottom: 0;
}

.allfilter .close {
    cursor: pointer;
}

.allfilters .filter-block {
    padding: 24px;
    border-top: 1px solid #eee;
}

.allfilters .filter-top .fl {
    padding: 15px 24px
}

.allfilters .subtitle {
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
    margin-bottom: 16px;
}

.catalog .grids {
    display: flex;

}

.catalog .grids div {
    opacity: 0.5;
    cursor: pointer;
}

.catalog .grids .active,
.catalog .grids div:hover {
    opacity: 1;
    transition: 0.5s;
}

.catalog .grids .grid1 {
    margin-right: 20px;
}

.catalog .options {
    margin-bottom: 40px;
}

.catalog .row .item {
    margin-bottom: 30px
}

.catalog .item .img {
    background: rgba(32, 32, 32, 0.03);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.catalog .item:hover .img img {
     transform:scale(1.15)
}

.catalog .item:hover .img {
    background:#ffffff;
    transition:0.5s;
}

.catalog .item .img img {
   transition:0.5s;
}

.catalog .item .addfav {
    position: absolute;
    right: 24px;
    top: 24px;
}

.catalog .item .subtitle {
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    margin-top: 16px;
}

.catalog .item .sku {
    color: rgba(32, 32, 32, 0.5);
    font-size: 16px;
    margin-top: 10px;
}

.addmore {
    margin-top: 0;
    background: rgba(32, 32, 32, 0.1);
    border-radius: 10px;
    padding: 15px 32px 12px 32px;
    text-align: center;
    width: 213px;
    margin: 30px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    cursor: pointer;
    transition: 0.5s;
}

.addmore:hover {
    background: rgba(32, 32, 32, 0.15);
}

.overlay {
    display: none;
}


/*PROD CARD*/

.specs-list {
    width: 300px;
    margin-top: 30px;
}

.spec-item {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    align-items: flex-end;
}

dt {
    color: #666;
    padding-right: 12px;
    background: white;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 400;
}

dd {
    color: initial;
    margin-left: auto;
    padding-left: 12px;
    background: white;
    position: relative;
    z-index: 2;
    text-align: right;
    flex-shrink: 0;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
}

dd.av {
    color: #3FC656;
}

.spec-dots {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 1px;
    border-bottom: 2px dotted #666;
    z-index: 1;
}

.gallery .main-image {
    background: rgba(32, 32, 32, 0.03);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.gallery .main-image .swiper-slide img {
    border-radius: 20px;
}

.gallery .GalleryThumbs {
    position: relative;
    padding: 0 10px;
}

.gallery .swiper-button-prev {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    background: white;
    z-index: 99;
    position: absolute;
    left: -10px;
    top: 42%;
}

.gallery .swiper-button-next {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    background: white;
    z-index: 99;
    position: absolute;
    right: -10px;
    top: 45%;
}

.gallery .main-image .addfav {
    position: absolute;
    right: 32px;
    top: 32px;
}

.gallery .GalleryThumbs .swiper-slide {
    background: #f9f9f9;
    cursor: pointer
}

.gallery .GalleryThumbs .swiper-slide img {
    border-radius: 20px;
    border: 2px solid #eee;
}

.gallery .swiper-slide.swiper-slide-active.swiper-slide-thumb-active img {
    border: 2px solid var(--prime);
}

.gallery .swiper-slide.swiper-slide-thumb-active img {
    border: 2px solid var(--prime);
}

.prod .intro {
    font-size: 20px;
    margin-top: 20px;
}

.prod .icons {
    margin-bottom: 40px;
}

.prod .icons .item a {
    color: var(--prime);
    font-size: 16px;
}

.prod .icons .item + .item {
    margin-left: 24px;
}

.prod .icons .item + .item a {
    color: #3CBEFF;
}

.prod .icons .item img {
    margin-right: 10px;
}

.prod .addtocart .but button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
    text-align: center;
}

.prod .addtocart .but button img {
    margin-left: 10px;
}


.prod .col-lg-6 {
    padding-right: 64px;
}

.prod .col-lg-6 + .col-lg-6 {
    padding-left: 64px;
}

.catalog .swiper-nav {
    display: flex;
    align-items: center;
}

.catalog .swiper-nav div {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
}

.catalog .swiper-nav div + div {
    margin-left: 10px;
}

.inner .breadcrumbs + .prod {
    padding-top: 30px;
}

.prod h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1;
}

.mySwiperYooSee {
    margin-top: 30px;
}


/*NEWS*/

.text-page {
    padding: 30px 0 100px !important;
}

.text-page .meta {
    margin-bottom: 16px;
}

.text-page .meta .status {
    color: rgba(32, 32, 32, 0.5);
    text-transform: lowercase;
}

.text-page .meta .date {
    color: rgba(32, 32, 32, 0.5);
}

.text-page img {
    width: 500px;
    border-radius: 20px;
    margin-bottom: 20px;
}


.text-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    margin-top: 0;
    line-height: 1;
}

.text-page p {
    margin-bottom: 15px;
    font-size: 16px;
}

.text-page .back-to a {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}

.text-page .back-to {
    margin-top: 40px;
}

.text-page .back-to img {
    width: auto;
    margin-bottom: 0;
    margin-right: 15px;
}

.text-page .last-news {}

.text-page .last-news h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.text-page .last-news .meta {
    margin-bottom: 8px;
}

.text-page .last-news .title {
    font-size: 20px;
    line-height: 1;
    font-weight: 500;

}

.text-page .last-news .item {
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.text-page .last-news .item:last-child {
    border: none;
}

.text-page .col-lg-9 {
    padding-right: 64px;
}

.text-page .col-lg-3 {
    padding-left: 64px;
}


/*CONTACTS PAGE*/

.contacts .item {
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.contacts .item img {
    margin-right: 14px;
}

.contacts .row {
    margin-bottom: 40px;
}

/*JOB*/

.intro-job {
    margin-bottom: 24px;
}

.intro-job p {
    margin-bottom: 10px;
}

.more-job {
    border-top: 1px solid #eee;
    padding-top: 24px;
    margin-top: 24px;
}

.more-job h2 {
    font-size: 30px;
    margin-bottom: 16px;
    font-size: 30px;
}

.more-job ul + h2 {
    margin-top: 24px;
}

.more-job ul {
    margin-left: 15px
}

.more-job ul li {
    list-style: disc;
    margin-bottom: 7px;
}

.modal .form-job {
    background: white;
    border-radius: 20px;
    padding: 24px;
}


/*SEARCH MODAL*/

.search {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* Оверлей поиска */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Контейнер с контентом */
.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Шапка с логотипом и крестиком */
.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.search-close {
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
    position: absolute;
    right: -50px;
    top: 15px;
}

.search-close:hover {
    transform: rotate(90deg);
}


.search-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.search-field-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    min-width: 800px;
}

.search-input {
    width: 100%;
    padding: 20px 0px 10px 0px;
    border: none;
    border-bottom: 1px solid silver;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s ease;
    display: block;
}

.search-input:focus {
    border-color: #007bff;
}

.search-submit {
    position: absolute;
    right: 0px;
    top: 10px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    padding: 0;
    opacity: 0.6;
}

.search-submit:hover {
    background: #0056b3;
}

.search-results {
    background: white;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 32px 32px 18px  32px;
    border-radius: 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-results .item {
    margin-bottom: 14px;
}

.search-results .item .img {
    background: rgba(32, 32, 32, 0.03);
    border-radius: 20px;
    padding: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.search-results .item .img img {
    width:48px;
}

.search-results .item .title a {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.search-results .item .sku {
    color: rgba(32, 32, 32, 0.5);
}