
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}
body.lock {
    overflow: hidden;
}
/*Классы для заголовков*/
.h6, .h5, .h4, .h3, .h2, .h1 {
    margin: 0;
	font-family: 'Open Sans', sans-serif;
    line-height: 121%;
}
.h1 {
    font-size: 46px;
    font-weight: 600;
}
.h2 {
    font-size: 32px;
    font-weight: 500;
}
.h3 {
    font-weight: 600;
    font-size: 24px;
}
.h4 {
    font-size: 18px;
    font-weight: 500;
}
p {
    margin: 0;
}
.text {
    font-size: 15px;
    line-height: 138%;
}
ol,
ul {
  padding: 0;
  margin: 0;
}
li {
    list-style-type: none;
}
a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    outline: none;
}
input,
textarea {
    border: none;
    outline: none;
    font-family: inherit;
    margin: 0;
}
textarea {
    resize: none;
    padding: 13px;
    height: auto;
    border: 1px solid #F2F2F2;
    border-radius: 18px;
    min-height: 108px;
    transition: .3s;
    font-size: 15px;
    color: #222222;
}
textarea:focus {
    border-color: #222222;
}

.btn {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
    position: relative;
    z-index: 1;
    font-family: "Open Sans", sans-serif;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(90deg, #FFEA00 0%, #FFD500 52.89%, #FFED94 100%);
    opacity: 0;
    transition: opacity .3s;
}
.btn-yellow {
    position: relative;
    z-index: 0;
    background-color: #FFD400;
    color: #222222;
    box-shadow: 0px 4px 21px 0px #FFF15B80;
}
.btn-outline {
    border: 1px solid #222222;
    padding: 13px 23px;
}
.btn-outline::before {
    content: none;
}
.btn-black {
    background-color: #222222;
    color: #FFFFFF;
}

.btn-small {
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 900px;
    box-shadow: none;
}
.btn-small.outline {
    padding: 7px 12px;
}





.fg {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fg__text {
    font-size: 12px;
    color: rgba(34, 34, 34, 0.8);
}
.fg__text span {
    color: rgba(255, 56, 60, 0.8);
}


.input {
	background-color: #FFFFFF;
    border-radius: 900px;
    border: 1px solid #F2F2F2;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
    height: 47px;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
}
.fg._error .input {
    border-color: #FF383C;
}
.input:focus-within {
    border-color: #222222;
}
.input input {
    background-color: transparent;
    color: #222222;
    font-size: 15px;
    transition: .3s;
    border: none;
    outline: none;
    width: 100%;
}
.input input:focus::placeholder {
    opacity: 0;
}
.fg._error .input input {
    color: #FF383C;
}
.input svg {
    width: 24px;
    height: auto;
    flex-shrink: 0;
    opacity: 0.3;
    transition: .3s;
}
.input:focus-within svg {
    opacity: 1;
}
.input svg path {
    transition: .3s;
}
.fg._error .input svg path {
    stroke: #FF383C;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.checkbox-label input {
    display: none;
}
.checkbox {
    width: 22px;
    aspect-ratio: 1;
    border-radius: 4px;
    border: 1px solid #F2F2F2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.checkbox::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjY2NjUgNC4wODMyNUw1LjgzMzE3IDkuOTE2NTlMMi45MTY1IDYuOTk5OTIiIHN0cm9rZT0iIzIyMjIyMiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0;
    opacity: 0;
    transition: .3s;
}
.checkbox-label input:checked ~ .checkbox {
    border-color: #FFD400;
    background-color: #FFD400;
}
.checkbox-label input:checked ~ .checkbox::after {
    opacity: 1;
}

.checkbox__text {
    color: rgba(34, 34, 34, 0.8);
    font-size: 14px;
}
.checkbox__text a {
    text-decoration: underline;
}
.main {
	display: flex;
	flex-direction: column;
	min-height: calc(100 * var(--vh));
    overflow: hidden;
}
.container {
    max-width: 1340px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.d-none {
    display: none!important;
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    padding-top: 18px;
    padding-bottom: 19px;
    border-bottom: 1px solid #F2F2F2;
    z-index: 9;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header-logo {
    width: 106px;
    height: 56px;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-left_wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-catalog_icon {
    width: 18px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.header-catalog_icon span,
.header-catalog_icon span::before,
.header-catalog_icon span::after {
    width: 100%;
    height: 2px;
    background-color: #222222;
    border-radius: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.header-catalog_icon span {
    position: relative;
}
.header-catalog_icon span::before,
.header-catalog_icon span::after {
    content: '';
    position: absolute;
}
.header-catalog_icon span::before {
    top: -5px;
    -webkit-transition: top .2s .2s, -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
    transition: top .2s .2s, -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
    -o-transition: top .2s .2s,-o-transform .2s cubic-bezier(.23,1,.32,1);
    -moz-transition: top .2s .2s,transform .2s cubic-bezier(.23,1,.32,1),-moz-transform .2s cubic-bezier(.23,1,.32,1);
    transition: top .2s .2s, transform .2s cubic-bezier(.23, 1, .32, 1);
    transition: top .2s .2s, transform .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s cubic-bezier(.23, 1, .32, 1), -moz-transform .2s cubic-bezier(.23, 1, .32, 1), -o-transform .2s cubic-bezier(.23, 1, .32, 1);
}
.header-catalog_icon span::after {
    bottom: -5px;
    -webkit-transition: bottom .2s .2s, -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
    transition: bottom .2s .2s, -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
    -o-transition: bottom .2s .2s,-o-transform .2s cubic-bezier(.23,1,.32,1);
    -moz-transition: bottom .2s .2s,transform .2s cubic-bezier(.23,1,.32,1),-moz-transform .2s cubic-bezier(.23,1,.32,1);
    transition: bottom .2s .2s, transform .2s cubic-bezier(.23, 1, .32, 1);
    transition: bottom .2s .2s, transform .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s cubic-bezier(.23, 1, .32, 1), -moz-transform .2s cubic-bezier(.23, 1, .32, 1), -o-transform .2s cubic-bezier(.23, 1, .32, 1);
}
.header-catalog.active span {
    background-color: transparent;
}
.header-catalog.active span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top .2s, -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
    transition: top .2s, -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
    -o-transition: top .2s,-o-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    -moz-transition: top .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-moz-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: top .2s, transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
    transition: top .2s, transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -moz-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -o-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
}
.header-catalog.active span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: bottom .2s, -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
    transition: bottom .2s, -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
    -o-transition: bottom .2s,-o-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    -moz-transition: bottom .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-moz-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: bottom .2s, transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
    transition: bottom .2s, transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -moz-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -o-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
}
.header-search {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    border: 1px solid #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    cursor: pointer;
}
.header-search.active {
    border-color: #222222;
}
.header-mob_inner {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-menu {
    display: flex;
    align-items: center;
    gap: 17px;
    background-color: #F2F2F2;
    border-radius: 900px;
    padding: 13px 24px;
}
.header-menu li {
    display: flex;
    align-items: center;
    gap: 17px;
}
.header-menu li::after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 1px;
    height: 13px;
    background-color: #222222;
    opacity: 0.3;
}
.header-menu li:last-child::after {
    content: none;
}
.header-menu li a {
    font-size: 15px;
    line-height: 138%;
    color: #222222;
}
.header-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.megamenu {
    position: absolute;
    top: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .3s, transform .3s, visibility .3s;
    height: calc(100vh - 93px);
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #F2F2F2;
    overflow: hidden;
    overflow-y: auto;
}
.megamenu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.megamenu-inner {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0px 2px 8px 2px rgba(34, 60, 80, 0.12);
}
.megamenu-list {
    max-width: 260px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.megamenu-list li  {
    display: flex;
    align-items: center;
}
.megamenu-list li a {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    color: #222222;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
}
.megamenu-list li a span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #222222;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.megamenu-list li.active a span {
    background-color: #FFD400;
    border-color: #FFD400;
}
.megamenu-items {
    padding-left: 16px;
    border-left: 2px solid #F2F2F2;
    flex-grow: 1;
}
.megamenu-item {
    display: none;
}
.megamenu-item.active {
    display: block;
}
.megamenu-item_back {
    align-items: center;
    gap: 14px;
    cursor: pointer;
    margin-bottom: 16px;
}
.megamenu-item_back span {
    width: 25px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.megamenu-item_back p {
    color: #222222;
    font-size: 20px;
    font-weight: 700;
}
.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 23px;
    grid-row-gap: 10px;
}
.product-min {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #F2F2F2;
    border-radius: 20px;
    padding: 11px 20px 11px 11px;
}
.product-min_l {
    display: flex;
    align-items: center;
    gap: 16px;
}
.product-min__pic {
    width: 88px;
    aspect-ratio: 1;
    flex-shrink: 0;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}
.product-min__pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-min_info {
    max-width: 185px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.product-min__attr {
    color: rgba(34, 34, 34, 0.5);
    font-weight: 700;
}
.product-min__cat {
    color: rgba(34, 34, 34, 0.8);
}
.product-min__title {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
    min-height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.megamenu-item__btn {
    width: 100%;
    margin-top: 23px;
}

.header-search_wrapper {
    position: absolute;
    top: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .3s, transform .3s, visibility .3s;
    height: calc(100vh - 93px);
    overflow: hidden;
    overflow-y: auto;
    border-top: 1px solid #F2F2F2;
}
.header-search_wrapper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.header-search_block {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 2px 8px 2px rgba(34, 60, 80, 0.12);
}
.search-form {
    width: 100%;
}
.search-form span {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: pointer;
    transition: .3s;
}
.search-form.filled span {
    opacity: 0.3;
    visibility: visible;
    pointer-events: auto;
}
.header-search_box {
    display: none;
    margin-top: 20px;
    padding-top: 29px;
    border-top: 1px solid #F2F2F2;
}
.header-search_box.active {
    display: block;
}
.header-search_count {
    color: rgba(34, 34, 34, 0.45);
}
.header-search_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    max-height: 516px;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #222222 #F2F2F2;
    width: calc(100% + 22px);
    padding-right: 22px;
    margin-top: 14px;
}
.header-search_grid::-webkit-scrollbar {
    width: 6px;
}
.header-search_grid::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}
.header-search_grid::-webkit-scrollbar-track {
    background-color: #F2F2F2;
    border-radius: 900px;
}
.header-search_grid::-webkit-scrollbar-thumb {
    background-color: #222222;
    border-radius: 900px;
}
.header-search__empty {
    margin-top: 14px;
    max-width: 400px;
    color: #222222;
    font-size: 14px;
}
.header-search_btns {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(34, 34, 34, 0.6);
    width: 100%;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s, visibility .3s;
}
.popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* .popup-callback {
    min-height: 700px;
} */
.popup-inner {
    padding: 53px 50px;
    background-color: #FFFFFF;
    border-radius: 35px;
    position: relative;
}
.popup-callback .popup-inner {
    max-width: 521px;
    width: 100%;
}
.popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.popup__title {
    text-align: center;
    color: #222222;
    font-size: 18px;
    font-weight: 600;
}
.popup__text {
    text-align: center;
    color: rgba(34, 34, 34, 0.6);
    margin-top: 10px;
}
.popup-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-bottom {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}
.form-bottom .checkbox-label {
    max-width: 370px;
}
.form__btn {
    width: 100%;
}



.m-page {
	flex-grow: 1;
    padding-top: 94px;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.52);
}
.swiper-slide * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.slider-arrow svg path {
    transition: .3s;
}
.swiper-pagination {
    position: static;
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    row-gap: 4px;
    flex-wrap: wrap;
}
.swiper-pagination-bullet {
    margin: 0!important;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(34, 34, 34, 0.2);
    background-color: transparent;
    border-radius: 50%;
    opacity: 1;
    transition: .3s;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #222222;
    background-color: #222222;
}

.marquee {
    height: 40px;
    overflow: hidden;
    margin-top: 30px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}
.marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}
.marquee__img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    display: block;
    pointer-events: none;
}
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


.product-cart {
    padding: 15px 14px;
    display: flex;
    flex-direction: column;
    border: 1px solid #F2F2F2;
    border-radius: 20px;
}
.product-cart:hover {
    border-color: #222222;
}
.product-cart__pic {
    background-color: #F2F2F2;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    aspect-ratio: 296 / 255;
}
.product-cart__pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-cart_bottom {
    padding: 18px 7px;
}
.product-cart_row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.product-cart__cat {
    color: rgba(34, 34, 34, 0.8);
    font-size: 14px;
}
.product-cart__attr {
    color: rgba(34, 34, 34, 0.5);
    font-weight: 700;
    font-size: 14px;
}
.product-cart__title {
    min-height: 58px;
    color: #222222;
    font-size: 24px;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 8px;
}
.product-cart__btn {
    margin-top: 10px;
}
.product-cart:hover .product-cart__btn {
    background-color: #222222;
    color: #FFFFFF;
}





.footer {
    position: relative;
    background-color: #222222;
    border-radius: 50px 50px 0 0;
    padding-top: 90px;
}
.footer-logo {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}
.footer-logo img {
    width: 183px;
    height: 97px;
    object-fit: contain;
    display: block;
}
.footer-top {
    position: relative;
    z-index: 1;
}
.footer-top__bg {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.footer-col__title {
    color: rgba(255, 255, 255, .4);
    font-size: 15px;
}
.footer-soc {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 21px;
    margin-top: 17px;
}
.footer-soc__item {
    display: flex;
    transition: .3s;
}
.footer-soc__item:hover {
    opacity: .8;
}
.footer-soc__item img {
    height: 28px;
    width: auto;
    display: block;
}
.footer-contacts__mail {
    display: block;
    color: #FFD400;
    font-size: 24px;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 13px;
    transition: .3s;
}
.footer-contacts__mail:hover {
    opacity: .8;
}
.footer-contacts__phone {
    display: block;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 45px;
}
.footer-contacts__address {
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
}
.footer-nav__list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-nav__list a {
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
    line-height: 138%;
    transition: .3s;
}
.footer-nav__list a:hover,
.footer-nav__list a.active {
    color: #FFD400;
}
.footer-brand {
    width: 577px;
    flex-shrink: 0;
}
.footer-brand__tag {
    width: 145px;
    height: auto;
    display: block;
}
.footer-brand__text {
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    margin-top: 12px;
}
.footer-subscribe__title {
    color: #FFFFFF;
    font-size: 18px;
    margin-top: 38px;
    font-weight: 500;
}
.footer-form {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-form__row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-form .fg {
    flex-grow: 1;
    min-width: 0;
}
.footer-form .input {
    background-color: #FFFFFF;
    border-color: rgba(255, 255, 255, .15);
}
.footer-form .input svg path {
    stroke: #222222;
}
.footer-form .input:focus-within {
    border-color: #FFD400;
}
.footer-form__btn {
    flex-shrink: 0;
    white-space: nowrap;
}
.footer-form .checkbox {
    border-color: rgba(255, 255, 255, .2);
}
.footer-form .checkbox__text {
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
}
.footer-form .checkbox__text a {
    color: rgba(255, 255, 255, .8);
}
.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #292929;
    padding: 18px 0;
}
.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom__copy {
    color: #FFFFFF;
    font-size: 14px;
}
.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer-bottom__links a {
    color: rgba(255, 255, 255, .4);
    font-size: 14px;
    text-decoration: underline;
}
.footer-bottom__links a:hover {
    color: #FFFFFF;
}


@media (max-width: 1380px) {
    .container {
        max-width: 1064px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .btn {
        padding: 11px 18px;
        font-size: 14px;
    }


    .header-row {
        gap: 20px;
    }
    .header-menu,
    .header-menu li {
        gap: 10px;
    }
    .header-menu {
        padding: 10px 16px;
    }
    .header-menu li a {
        font-size: 14px;
    }
    .header-left {
        gap: 16px;
    }

    .megamenu-grid .product-min__btn {
        display: none;
    }


    .footer-grid {
        gap: 20px;
    }
    .footer-brand {
        width: 365px;
    }
}

@media (max-width: 1024px) {
    .h1 {
        font-size: 36px;
    }
    .h2 {
        font-size: 28px;
    }
    .d-none_tablet {
        display: none!important;
    }
    .d-block_tablet {
        display: block!important;
    }
    .d-flex_tablet {
        display: flex!important;
    }

    .header-mob {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        box-shadow: 0px 2px 8px 2px rgba(34, 60, 80, 0.12);
        padding: 20px 16px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .3s, transform .3s, visibility .3s;
        height: calc(100vh - 93px);
    }
    .header-mob.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .header-mob_inner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        background-color: #FFFFFF;
        border-radius: 20px;
        padding: 30px;
    }
    .header-menu {
        flex-direction: column;
        align-items: stretch;
        background-color: transparent;
        padding: 0;
        gap: 12px;
    }
    .header-menu li::after {
        content: none;
    }
    .header-menu li a {
        padding: 7px;
        width: 100%;
        border-radius: 900px;
        border: 1px solid #F2F2F2;
        text-align: center;
    }
    .header-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .header-left {
        width: 100%;
        justify-content: space-between;
    }
    .burger__icon {
        display: none;
    }
    .burger.active .burger__text {
        display: none;
    }
    .burger.active .burger__icon {
        display: block;
    }
    .header-catalog_icon {
        width: 15px;
    }
    .header-catalog_icon span::before {
        top: -4px;
    }
    .header-catalog_icon span::after {
        bottom: -4px;
    }
    .header-search {
        width: 39px;
        height: 39px;
    }
    .header-search_grid {
        grid-template-columns: 1fr;
        grid-gap: 8px;
    }

    .megamenu-inner {
        flex-direction: column;
    }
    .megamenu-items {
        display: none;
        width: 100%;
        padding-left: 0;
        border-left: none;
        margin-top: 16px;
    }
    .megamenu-items.active {
        display: block;
    }
    .megamenu-list {
        width: 100%;
        max-width: 100%;
    }
    .megamenu-list li a {
        padding: 7px 16px;
        border: 1px solid #F2F2F2;
        border-radius: 900px;
    }
    .megamenu-list li a span {
        background-color: #FFD400;
        border-color: #FFD400;
    }
    
    .overlay {
        background-color: rgba(34, 34, 34, 0.5);
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px 24px;
    }
    .footer-contacts,
    .footer-nav {
        width: calc(50% - 12px);
    }
    .footer-brand {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .megamenu {
        padding: 0;
    }
    .megamenu .container {
        padding: 0;
    }
    .megamenu-inner {
        padding: 30px 12px;
        border-radius: 0 0 12px 12px;
        box-shadow: unset;
    }
    .megamenu-items {
        margin-top: 0;
    }
    .megamenu-grid {
        grid-template-columns: 1fr;
        grid-gap: 8px;
    }
    .megamenu-list {
        gap: 8px;
    }
    .megamenu-list li a {
        padding: 7px 15px;
        font-size: 14px;
    }
    .megamenu-list li a span {
        width: 25px;
        height: 25px;
    }
    .megamenu-list li a span img {
        width: 100%;
        height: auto;
    }

    .footer {
        border-radius: 24px 24px 0 0;
        padding-top: 48px;
    }
    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }
    .footer-contacts,
    .footer-nav,
    .footer-brand {
        width: 100%;
    }
    .footer-form__row {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-bottom {
        margin-top: 40px;
    }
    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .h1 {
        font-size: 24px;
    }
    .h2 {
        font-size: 20px;
    }
    .h3 {
        font-weight: 600;
        font-size: 14px;
    }
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .fg {
        gap: 6px;
    }
    .btn {
        padding: 9px 16px;
        font-size: 12px;
        gap: 7px;
    }
    .btn.btn-outline {
        padding: 8px 15px;
    }
    .btn-small {
        padding: 6px 10px;
        font-size: 10px;
    }
    .btn-small.btn-outline {
        padding: 5px 9px;
    }
    .fg__text {
        font-size: 9px;
    }
    .input {
        height: 38px;
        padding: 9px 11px;
        gap: 8px;
    }
    .input>img {
        width: 18px;
        height: auto;
    }
    .input svg {
        width: 18px;
        height: auto;
    }
    .input input {
        font-size: 12px;
    }
    textarea {
        font-size: 12px;
        border-radius: 12px;
        padding: 13px 11px;
        min-height: 96px;
    }
    .text {
        font-size: 12px;
    }
    .checkbox {
        width: 18px;
    }
    .checkbox__text {
        font-size: 10px;
    }



    .header {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .header-logo {
        width: 74px;
        height: 39px;
    }
    .header-catalog_icon span,
    .header-catalog_icon span::before,
    .header-catalog_icon span::after {
        height: 1px;
    }
    .header-catalog_icon span {
        width: 12px;
    }
    .header-catalog_icon span::before {
        top: -3px;
    }
    .header-catalog_icon span::after {
        bottom: -3px;
    }
    .header-search {
        width: 36px;
        height: 36px;
        order: -1;
    }
    .header-search img {
        width: 16px;
        height: auto;
    }
    .header-search_wrapper {
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        overflow-y: hidden;
        height: calc((calc(100 * var(--vh))) - 71px);
        max-height: unset;
    }
    .header-search_wrapper .container {
        padding: 0;
    }
    .header-search_block {
        padding: 0;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 12px;
        padding-right: 12px;
        background-color: #FFFFFF;
        border-radius: 0;
        box-shadow: unset;
        border-radius: 0 0 12px 12px;
    }
    .header-search_box {
        padding-top: 15px;
        margin-top: 15px;
    }
    .header-search__empty {
        margin-top: 16px;
        font-size: 10px;
        max-width: 290px;
    }
    .header-search_grid {
        width: calc(100% + 7px);
        padding-right: 7px;
        max-height: calc(calc(100 * var(--vh)) - 204px);
        padding-bottom: 15px;
    }
    .header-search_count {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .product-min {
        padding: 9px;
        border-radius: 12px;
    }
    .product-min_l {
        gap: 21px;
        align-items: flex-start;
    }
    .product-min__pic {
        width: 70px;
    }
    .product-min__btn {
        display: none;
    }
    .product-min_info {
        gap: 3px;
    }
    .product-min__attr {
        font-size: 13px;
    }
    .product-min__title {
        font-size: 14px;
        min-height: 34px;
    }
    
    .megamenu {
        height: calc(calc(100 * var(--vh)) - 71px);
    }
    .megamenu-inner {
        max-height: calc(calc(100 * var(--vh)) - 71px);
        overflow: hidden;
        overflow-y: auto;
    }
    .megamenu-item__btn {
        margin-top: 16px;
    }

    .header-mob {
        padding: 0;
        height: calc(calc(100 * var(--vh)) - 71px);
    }
    .header-mob_inner {
        padding: 30px 12px;
        border-radius: 0 0 12px 12px;
        max-height: calc(calc(100 * var(--vh)) - 71px);
        gap: 16px;
    }
    .header-menu {
        gap: 8px;
    }
    .header-menu li a {
        font-size: 12px;
    }

    .popup-inner {
        padding: 24px 26px;
        border-radius: 12px;
        max-width: calc(100% - 24px)!important;
    }
    .popup__title {
        font-size: 14px;
    }
    .popup__text {
        margin-top: 8px;
    }
    .popup-form {
        margin-top: 10px;
        gap: 12px;
    }
    .popup__close {
        width: 22px;
        height: auto;
        top: 10px;
        right: 10px;
    }


    .form-bottom {
        gap: 16px;
    }
    .form-bottom .checkbox-label {
        max-width: 275px;
    }

    .m-page {
        padding-top: 72px;
    }

    .slider-arrow {
        background-color: #FFFFFF;
    }
    .slider-arrow svg path {
        fill: #222222;
    }

    .d-none_mobile {
        display: none!important;
    }
    .d-block_mobile {
        display: block!important;
    }
    .d-flex_mobile {
        display: flex!important;
    }

    .footer {
        padding-top: 78px;
        border-radius: 12px 12px 0 0;
    }
    .footer-logo img {
        width: 125px;
        height: 66px;
    }
    .footer-top__bg {
        display: none;
    }
    .footer-mob {
        flex-direction: column;
    }
    .footer-mob__row {
        display: flex;
        justify-content: space-between;
        gap: 16px;
    }
    .footer-mob .footer-nav__list {
        margin-top: 0;
        gap: 10px;
    }
    .footer-mob .footer-nav__list a {
        font-size: 12px;
    }
    .footer-mob__brand {
        max-width: 165px;
    }
    .footer-brand__text {
        font-size: 10px;
    }
    .footer-mob__brand .footer-brand__tag {
        width: 100px;
    }
    .footer-mob__brand .footer-soc {
        margin-top: 37px;
        margin-bottom: 0;
        gap: 12px;
    }
    .footer-divider {
        height: 1px;
        background-color: #292929;
        margin: 32px 0;
    }
    .footer-mob__subscribe .footer-subscribe__title {
        margin-top: 0;
        font-size: 14px;
    }
    .footer-form {
        margin-top: 20px;
        gap: 12px;
    }
    .footer-form .checkbox-label {
        margin-top: 4px;
    }
    .footer-mob__contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-mob__contacts .footer-contacts__phone,
    .footer-mob__contacts .footer-contacts__mail {
        font-size: 21px;
    }
    .footer-mob__contacts .footer-contacts__phone {
        margin-bottom: 21px;
    }
    .footer-col__title {
        font-size: 12px;
        margin-bottom: 14px;
    }
    .footer-contacts__address {
        font-size: 10px;
    }
    .footer-bottom {
        margin-top: 32px;
        padding-top: 32px;
    }
    .footer-bottom__inner {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .footer-bottom__copy,
    .footer-bottom__links a {
        font-size: 10px;
    }
    .footer-bottom__links {
        flex-direction: column;
        gap: 10px;
    }


    .product-cart {
        border-radius: 12px;
        padding: 9px;
    }
    .product-cart__pic {
        border-radius: 16px;
    }
    .product-cart_bottom {
        padding: 0;
        margin-top: 12px;
    }
    .product-cart_row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    .product-cart__title {
        margin-top: 3px;
        font-size: 14px;
        min-height: 34px;
    }
    
}

/* Hover-эффекты только для десктопа (в моб. версии убраны) */
@media (min-width: 1025px) {
    .btn:hover::before {
        opacity: 1;
    }
    .btn-outline:hover {
        background-color: #222222;
        color: #FFFFFF;
    }
    .btn-black:hover {
        background-color: transparent;
        color: #222222;
    }
    .checkbox-label:hover .checkbox {
        border-color: #FFD400;
    }
    .checkbox__text a:hover {
        color: #FFD400;
    }
    .header-search:hover {
        border-color: #222222;
    }
    .header-menu li a:hover {
        opacity: 0.3;
    }
    .megamenu-list li a:hover span {
        background-color: #FFD400;
        border-color: #FFD400;
    }
    .product-min:hover {
        border-color: #222222;
    }
    .product-min:hover .product-min__btn {
        background-color: #222222;
        color: #FFFFFF;
    }
    .search-form span:hover {
        opacity: 1;
    }
    .popup__close:hover {
        opacity: 1;
    }
    .slider-arrow:hover {
        background-color: #FFFFFF;
    }
    .slider-arrow:hover svg path {
        fill: #222222;
    }
}

.breadcrumbs__wrapper {
    margin: 50px 0 40px;
}
.breadcrumbs {
    display: flex;
    gap: 12px;
    align-items: center;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.breadcrumbs li:not(:first-child)::before {
    content: "";
    background: url(../img/icons/breadcr-arrow.svg) center / contain no-repeat;
    display: inline-block;
    width: 7px;
    height: 12px;
    cursor: default;
    flex-shrink: 0;
}
.breadcrumbs li a {
    white-space: nowrap;
    font-weight: 400;
    font-size: 14px;
    color: #222;
    opacity: 0.5;
}
.breadcrumbs li:last-child {
    pointer-events: none;
}
.breadcrumbs li:last-child a {
    opacity: 1;
}
.breadcrumbs li:last-child a {
    max-width: 344px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 560px) {
    .breadcrumbs__wrapper {
        margin: 20px 0;
    }
    .breadcrumbs {
        gap: 8px;
    }
    .breadcrumbs li {
        gap: 8px;
    }
    .breadcrumbs li:not(:first-child)::before {
        width: 6px;
        height: 10px;
    }
    .breadcrumbs li a {
        font-size: 10px;
    }
    .breadcrumbs li:last-child a {
        max-width: auto;
    }
    .breadcrumbs {
		min-width: 0;
	}
	.breadcrumbs li {
		flex-shrink: 0;
	}

	.breadcrumbs li:last-child {
		flex: 1;
		min-width: 0;
	}

	.breadcrumbs li:last-child a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
}