@font-face {
    font-family: Manrope;
    src: url(../fonts/Manrope-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Manrope;
    src: url(../fonts/Manrope-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: Manrope;
    src: url(../fonts/Manrope-Bold.ttf);
    font-weight: 700;
}

* {
    padding: 0;
    margin: 0;
}

a {
    color: inherit; /* Наследовать цвет от родителя */
    text-decoration: none; /* Убрать подчеркивание */
}

/* Для всего текста отключаем автоматическое распознавание */
body {
    -webkit-touch-callout: none; /* Отключить контекстное меню для распознанного текста */
    -webkit-user-select: none; /* Отключить выделение */
}

.container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    height: 85px;
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-loc {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-loc::before {
    content: '';
    display: flex;
    background-image: url(../img/header/loc.svg);
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
}

.header-loc-row {
    flex-direction: column;
    display: flex;
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header-loc-link {
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.header-logo {
    width: 203px;
    height: 70px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.header-logo img {
    width: 100%;
	height: 100%;
    object-fit: contain;
}

.header-add {
    display: flex;
    gap: 20px;
}

.header-burger {
    display: none;
}

.header-add a {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    position: relative;
    transition: 0.3s;
}

.header-add-cart_active::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
    right: 0;
    top: 0;
}

.header-nav {
    background-color: #000;
    height: 52px;
    margin-bottom: 40px;
}

.header-nav .container {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-nav-link {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    position: relative;
    display: flex;
    gap: 4px;
    align-items: center;
    cursor: pointer;
}

.header-nav-link::before {
    content: '';
    width: 100%;
    background-color: #fff;
    height: 1px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -2px;
    opacity: 0;
    transition: 0.3s;
}

.header-nav-link:hover::before {
    opacity: 1;
}

.header-nav-link_drop::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../img/header/arrow.svg);
    background-size: 100% 100%;
}

.header-nav-link_drop_close::after {
    transform: rotate(180deg);
}

.header-nav-link_drop-menu {
    position: absolute;
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    background: #FFF;
    top: 52px;
    right: 0;
    left: 0;
    margin: 0 20px;
    box-sizing: border-box;
    padding: 30px;
    z-index: 4;
    height: 505px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 25px;
}

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

.header-nav-link_drop-menu_hid {
    display: none;
}

.header-nav-link_drop-menu-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 327px;
}

.header-nav-link_drop-menu-block a {
    position: relative;
    width: fit-content;
}

.header-nav-link_drop-menu-block a::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -2px;
    opacity: 0;
    transition: 0.3s;
}

.header-nav-link_drop-menu-block a:hover::before {
    opacity: 1;
}

.header-nav-link_drop-menu-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    margin-bottom: 5px;
}

.header-nav-link_drop-menu-link {
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.main .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-banner {
    width: 100%;
    height: 600px;
    background-image: url(../img/main/banner.png);
    position: relative;
}

.slick-list {
    height: 100%;
}

.slick-track {
    height: 100%;
}

.slick-slide {
    height: 100%;
}

.main-banner-row {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-banner-block {
    max-width: 477px;
}

.main-banner-title {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px; /* 110% */
    margin-bottom: 20px;
}

.main-banner-text {
    color: var(--White-80, #CCC);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.main-banner-btn {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 260px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--White-100, #FFF);
    text-decoration: none;
    margin-top: 60px;
    border: 1px solid #000;
    box-sizing: border-box;
    transition: 0.3s;
}

.main-banner-btn:hover {
    color: #FFF;
    background-color: #000;
    border: 1px solid #fff;
}

.main-banner-prod {
    width: 400px;
    height: 400px;
}

.main-banner-prod img {
    width: 100%;
    height: 100%;
}

.slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    font-size: 0;
    background-image: url(../img/main/banner-arrow.svg);
    background-size: 100% 100%;
    background-color: transparent;
    border: 0;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;
}

.slick-prev {
    left: 0;
}

.slick-prev:hover {
    transform: scale(1.3);
}

.slick-next {
    right: 0;
    transform: rotate(180deg);
}

.slick-next:hover {
    transform: rotate(180deg) scale(1.3);
}

.slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: auto;
    display: flex;
    list-style: none;
    width: fit-content;
    gap: 12px;
}

.slick-dots li {
    font-size: 0;

}

.slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.slick-dots .slick-active button {
    background-color: #fff;
}

.main-top-row {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.main-top {
    width: calc(50% - 10px);
    background-color: #000;
    height: 359px;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
}

.main-top-pic {
    position: absolute;
    top: 40px;
    left: 40px;
}



.main-top-pic_sdek img {
    width: 100%;
}

.main-top-title {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin-top: auto;
    margin-bottom: 16px;
}

.main-top-title_sdek {
    max-width: 310px;
}

.main-top-title_doc {
    max-width: 430px;
}

.main-top-text {
    color: var(--White-80, #CCC);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 427px;
}

.main-top-add {
    gap: 8px;
    display: flex;
	flex-wrap: wrap;
}

.main-top-add-link {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid var(--White-80, #CCC);
    padding: 10px 16px;
    transition: 0.3s;
}

.main-top-add-link:hover {
    border: 1px solid #000;
    background-color: #FFF;
    color: #000;
}

.main-cat {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.main-cat_3 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.main-cat_3 .main-cat-item {
    width: calc(100% / 3 - 13.4px);
    background-color: #000;
    padding: 30px 25px;
    box-sizing: border-box;
    height: 429px;
}

.main-cat-item {
    position: relative;
    overflow: hidden;
}
/*
.main-cat_3 .main-cat-item::after {
    content: '';
    width: 327px;
    height: 293px;
    background-image: url(../img/main/circ.svg);
    position: absolute;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
}*/

.main-cat-title {
    color: #FFF;
    font-family: Manrope;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px; /* 120% */
    padding: 0;
    margin-bottom: 8px;
    height: auto;
    position: relative;
    z-index: 2;
}

.main-cat-link {
    color: #FFF;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    position: relative;
    display: flex;
    gap: 4px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.main-cat-link::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../img/main/row_arrow.svg);
    background-size: 100% 100%;
    margin-top: 1px;
    transition: 0.3s;
}

.main-cat-link:hover::after {
    transform: scale(1.5);
    margin-left: 5px;
}

.main-cat-pic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
}

.main-cat_3 .main-cat-pic {
    width: 327px;
}

.main-cat-pic img {
    width: 100%;
}

.main-cat_2 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.main-cat_2 .main-cat-item {
    width: calc(100% / 2 - 10px);
    background-color: #000;
    padding: 30px 25px;
    box-sizing: border-box;
    height: 429px;
}

.main-cat_2 .main-cat-item::after {
    content: '';
    width: 488px;
    height: 342px;
    background-image: url(../img/main/circ2.svg);
    position: absolute;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
}

.main-cat_2 .main-cat-pic {
    width: 426px;
}

.main-cat_4 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.main-cat_4 .main-cat-item {
    width: calc(100% / 4 - 15px);
    background-color: #000;
    padding: 30px 25px;
    box-sizing: border-box;
    height: 429px;
}

.main-cat_4 .main-cat-item::after {
    content: '';
    width: 260px;
    height: 293px;
    background-image: url(../img/main/circ3.svg);
    position: absolute;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
}

.main-cat_4 .main-cat-pic {
    width: 299px;
}

.main-vid {
    background: var(--Black-100, #000);
    position: relative;
    padding-top: 50px;
    padding-bottom: 40px;
    padding-left: 50px;
    padding-right: 50px;
}

.main-vid-title {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin-bottom: 40px;
}

.main-vid-item {
    /* width: 272px; */
    height: 483px !important;
    border-radius: 20px;
}

.main-vid-slider {
    /* max-width: 90%; */
    position: unset;
    margin-bottom: 50px;
}

.main-vid-slider .slick-slide {
    margin: 0 8px;  /* Add some spacing between slides */
}

.main-vid-item {
    position: relative;
}

.main-vid-item iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.main-vid-item iframe video {
    width: 100%;
    height: 100%;
}

.main-vid-item img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: 20px;
}

.main-vid-btn {
    width: 80px;
    height: 80px;
    background-image: url(../img/main/vid_btn.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;
}

.main-vid-btn:hover {
    transform: scale(1.3);
}

.main-vid-link {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: var(--White-100, #FFF);
    width: 260px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 auto;
    transition: 0.3s;
    border: 1px solid #000;
}

.main-vid-link:hover {
    color: #FFF;
    background-color: #000;
    border: 1px solid #fff;
}

.main-review {
    padding: 50px;
    box-sizing: border-box;
    background-color: #000;
}

.main-review-title {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    max-width: 417px;
    margin-bottom: 16px;
}

.main-review-link {
    color: var(--White-80, #CCC);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.main-review-row {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.main-review-item {
    width: calc(100% / 2 - 10px);
    border: 1px solid var(--White-100, #FFF);
    padding: 30px;
    box-sizing: border-box;
    position: relative;
}

.main-review-single {
    width: calc(100% / 2 - 10px);
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    padding: 20px;
    box-sizing: border-box;
}
.main-review-author {
    display: flex;
    gap: 15px;
    align-items: center;
}
.main-review-author-pic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.main-review-author-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.main-review-author-name {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.main-review-author-date {
    color: var(--Black-40, #999);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.main-review-rating {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.main-review-rating-star {
    display: flex;
    gap: 2px;
}
.main-review-rating-star-item {
    width: 24px;
    height: 24px;
}
.main-review-rating-star-item img {
    width: 100%;
    height: 100%;
}
.main-review-rating-num {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.main-review-text {
    color: #000;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 15px;
}

.main-review-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main-review-block::after {
    content: '';
    width: 222px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-top: 16px;
    margin-bottom: 24px;
}

.main-review-block-title {
    color: #FFF;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.main-review-rate {
    display: flex;
    align-items: center;
}

.main-review-rate-star {
    color: #FFF;
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    gap: 5px;
    align-items: center;
}

.main-review-rate-star::before {
    content: '';
    width: 19px;
    height: 19px;
    background-image: url(../img/main/star.svg);
    background-size: 100% 100%;
    display: flex;
}

.main-review-rate-star::after {
    content: '';
    width: 2px;
    height: 17px;
    background: var(--White-100, #FFF);
    display: flex;
    margin-left: 7px;
}

.main-review-rate-num {
    color: #FFF;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-left: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.main-review-add {
    display: flex;
    flex-direction: column;
}

.main-review-add div {
    color: #FFF;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.main-review-logo {
    position: absolute;
    right: 30px;
    top: 30px;
}

.main-zxc {
    display: flex;
    gap: 20px;
}

.main-zxc-block {
    width: calc(100% / 2 - 10px);
    background-color: #000;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.main-zxc-title {
    color: #FFF;
    text-align: center;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin-bottom: 12px;
    max-height: 100px;
    height: 100%;
}

.main-zxc-slider {
    max-width: 589px;
	width: 100%;
    margin-top: 30px;
}

.main-zxc-slider .slick-prev {
    left: -40px;
}

.main-zxc-slider .slick-next {
    right: -40px;
}

.main-zxc-slider-block {
    display: flex !important;
    flex-direction: row;
	flex-wrap: wrap;
    align-items: center;
	opacity: 0;
	transition: 0.3s;
}

.main-zxc-slider .slick-active {
	opacity: 1;
}

.main-zxc-slider-block img {
    width: 100%;
	height: 500px;
	margin-bottom: 20px;
	object-fit: cover;
}

.main-zxc-slider-title {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 289px;
}

.main-zxc-slider-btn {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 200px;
    height: 52px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transition: 0.3s;
    border: 1px solid #000;
	margin-left: auto;
}

.main-zxc-slider-btn:hover {
    color: #FFF;
    background-color: #000;
    border: 1px solid #fff;
}

.main-brief {
    padding: 30px 20px 20px 40px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    height: 505px;
}

.main-brief::after {
    content: '';
    width: 523px;
    height: 523px;
    border-radius: 523px;
    border: 1px solid var(--White-100, #FFF);
    opacity: 0.3;
    position: absolute;
    right: 188px;
    bottom: -200px;
}

.main-brief-block {
    max-width: 481px;
    margin-top: 20px;
}

.main-brief-title {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin-bottom: 20px;
}

.main-brief-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.main-brief-text p {
    color: var(--White-80, #CCC);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.main-brief-btn {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 267px;
    height: 52px;
    background: var(--White-100, #FFF);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-top: 50px;
    border: 1px solid #000;
    transition: 0.3s;
}

.main-brief-btn:hover {
    color: #FFF;
    background-color: #000;
    border: 1px solid #fff;
}

.main-brief-pic {
    position: relative;
    z-index: 1;
}

.main-del {
    padding: 30px 40px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    height: 505px;
    box-sizing: border-box;
}

.main-del-pic {
    height: 100%;
    max-width: 495px;
}

.footer {
    background: var(--Black-100, #000);
    padding-top: 70px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-link {
    position: relative;
    width: fit-content;
}

.footer-col-link::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -2px;
    opacity: 0;
    transition: 0.3s;
}

.footer-col-link:hover::after {
    opacity: 1;
}

.footer-col-hglt {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    margin-bottom: 9px;
}

.footer-col-link {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
	cursor: pointer;
}

.footer-add {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-add-tel {
    color: var(--White-100, #FFF);
    text-align: right;
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    position: relative;
    width: fit-content;
    margin-left: auto;
}

.footer-add-tel::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -2px;
    opacity: 0;
    transition: 0.3s;
}

.footer-add-tel:hover::after {
    opacity: 1;
}

.footer-add-adr {
    color: var(--White-100, #FFF);
    text-align: right;
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 262px;
}

.footer-add-soc {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.footer-add-soc-link {
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

.footer-add-soc-link:hover {
    transform: scale(1.3);
}

.footer-add-soc-link img {
    width: 100%;
    height: 100%;
}

.footer-bot {
    height: 102px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 80px;
}

.footer-bot .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    color: var(--White-80, #CCC);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer-bot-row {
    display: flex;
    gap: 20px;
}

.catalog {
    margin-top: 60px;
}

.catalog-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.catalog-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
}

.catalog-sort {

}

.catalog-top-filter {
    display: none;
}

.catalog-row {
    display: flex;
    gap: 30px;
    margin-bottom: 150px;
}

.catalog-filter {
    max-width: 335px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalog-filter-block {
    width: 100%;
    height: fit-content;
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 16px;
    max-height: 30px;
    overflow: hidden;
    transition: 0.3s;
}

.catalog-filter-block_open {
    max-height: 100%;
}

.catalog-filter-block-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding-bottom: 16px;
}

.catalog-filter-block-title::after {
    content: '';
    width: 30px;
    height: 30px;
    background-image: url(../img/catalog/filter_arrow.svg);
    background-size: 100% 100%;
    transform: rotate(180deg);
    transition: 0.3s;
}

.catalog-filter-block_open .catalog-filter-block-title::after {
    transform: rotate(0);
}

.catalog-filter-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 1.5px;
    padding-left: 1px;
}

.catalog-filter-list label {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    gap: 12px;
}

.catalog-filter-list label input {
    width: 22px;
    height: 22px;
    position: relative;
	-webkit-appearance: none; /* Убираем дефолтный стиль */
    appearance: none; /* Универсальное свойство для всех браузеров */
}

.catalog-filter-list label input::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../img/catalog/check.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -1px;
    margin: auto;
    background-color: transparent;
    z-index: 2;
}

.catalog-filter-list label input:checked::before {
    background-image: url(../img/catalog/check_active.svg);
    content: '';
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -1px;
    margin: auto;
    background-color: transparent;
    z-index: 2;
}

.catalog-filter-price {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.catalog-filter-price-input {
    width: calc(100% / 2 - 8.5px);
    color: #000;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    outline: none;
    padding: 15px 16px;
    border: 2px solid var(--Black-Stroke, #E7E7E7);
    background: var(--White-100, #FFF);
    box-sizing: border-box;
}

.catalog-content {
    width: 100%;
}

.catalog-content-row {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 40px;
}

.catalog-item {
    width: calc(100% / 3 - 13.4px);
    max-height: 504px;
    transition: 0.3s;
}

.catalog-item-photo {
    /* height: 34vw; */
    height: 400px;
    position: relative;
}

.catalog-item-photo_prev-btn {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 100px;
    border: 1px solid var(--White-100, #FFF);
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(10px);
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 183px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
}

.catalog-item-photo:hover .catalog-item-photo_prev-btn {
    opacity: 1;
}

.catalog-item-photo_dis {
    position: absolute;
    right: 16px;
    top: 16px;
    border-radius: 50%;
    background: var(--Green-100, #59BFB6);
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.catalog-item-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-item-cnt {
    padding: 20px 15px;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    overflow: hidden;
    transition: 0.3s;
    margin-top: -4px;
}

.catalog-item-name {
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    max-height: 70px;
    height: 100%;
    position: relative;
}

.catalog-item-name:hover {
    text-decoration: underline;
}

.catalog-item-price {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 10px;
}

.catalog-item-bot {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    opacity: 0;
    transition: 0.3s;
}

.catalog-item-cart {
    width: calc(100% / 2 - 6px);
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border: 1px solid var(--Black-100, #000);
    text-decoration: none;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: 0.3s;
}

.catalog-item-click {
    width: calc(100% / 2 - 6px);
    color: #fff;
    background-color: #000;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border: 1px solid var(--Black-100, #000);
    text-decoration: none;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: 0.3s;
}

.catalog-item:hover .catalog-item-cnt{
    border: 1px solid #E7E7E7;
    background: #FFF;
}

.catalog-item:hover .catalog-item-bot {
    opacity: 1;
}

.catalog-content-bot {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-content-show {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 15px;
}

.catalog-content-pag {
    display: flex;
}

.catalog-content-pag-prev {
    width: 42px;
    height: 42px;
    background-image: url(../img/catalog/pag_arrow.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center center;
    transition: 0.3s;
}

.catalog-content-pag-prev:hover {
    background-color: #000;
    background-image: url(../img/catalog/pag_arrow_active.svg);
    background-size: 20px 20px;
}

.catalog-content-pag-next {
    width: 42px;
    height: 42px;
    background-image: url(../img/catalog/pag_arrow.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(180deg);
    transition: 0.3s;
}

.catalog-content-pag-next:hover {
    background-color: #000;
    background-image: url(../img/catalog/pag_arrow_active.svg);
    background-size: 20px 20px;
}

.catalog-content-pag-num {
    width: 42px;
    height: 42px;
    color: var(--Black-100, #000);
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.catalog-content-pag-num:hover {
    background-color: #000;
    color: #fff;
}

.catalog-content-pag-num_active {
    background-color: #000;
    color: #fff;
}

.catalog-vid {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.catalog-vid .main-vid-item {
    width: calc(100% / 2 - 10px);
    border-radius: 20px;
    height: 450px;
}

.catalog-vid .main-vid-item iframe {
    border-radius: 20px;
}

.catalog-vid .main-vid-item video {
    width: 100%;
    height: 100%;
}

.custom-select {
    position: relative;
}

.catalog-sort .custom-select {
    width: 223px;
}

.catalog-content-show-sort .custom-select {
    width: 84px;
}

/* Стиль для кнопки */
.select-button {
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    cursor: pointer;
    width: 100%;
    height: 51px;
    box-sizing: border-box;
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 8px;
}

.select-button::after {
    content: '';
    width: 17px;
    height: 17px;
    background-image: url(../img/catalog/sort.svg);
    background-size: 100% 100%;
    display: flex;
    transform: rotate(180deg);
    margin-top: 2px;
    transition: 0.3s;
}

.active .select-button::after {
    transform: rotate(0deg);
}

/* Контейнер для опций (выпадающий список) */
.select-options {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1;
    margin-top: 6px;
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    background: #FFF;
}

/* Стили для каждой опции */
.select-options div {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px 16px;
    box-sizing: border-box;
    transition: 0.3s;
}

.select-options a {
	color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
	text-decoration: none;
}


.catalog-content-show-sort .select-options div {
    display: flex;
    justify-content: center;
    text-align: center;
}

.select-options div:hover {
    background-color: #F6F6F6;
}

/* Показать опции при открытии */
.custom-select.active .select-options {
    display: block;
}

.card {
	overflow: hidden;
}

.card-top {
    margin-bottom: 30px;
}

.card-back {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.card-back::before {
    content: '';
    width: 23px;
    height: 23px;
    background-image: url(../img/card/back.svg);
    background-size: 100% 100%;
}

.card-row {
    display: flex;
    gap: 40px;
}

.card-slider {
    max-width: 710px;
    width: 100%;
    height: 681px;
    display: flex;
    gap: 20px;
}

.card-slider-side {
    display: flex;
    max-width: 102px;
    min-width: 102px;
    width: 100%;
}

.card-slider-side .slick-list {
    height: 100% !important;
	overflow: scroll;
-webkit-overflow-scrolling: touch; /* Плавный скроллинг для iOS */
}

.card-slider-side .slick-list::-webkit-scrollbar {
    display: none;
}

.card-slider-side .slick-track {
    gap: 0;
	height: fit-content !important;
	transform: none !important;
}

.card-slider-side-item {
    // max-width: 102px;
    width: 100%;
    // min-height: 118px !important;
    border: 1px solid transparent;
    transition: 0.3s;
    margin: 4px 0;
	border: 1px solid transparent;
	box-sizing: border-box;
}

.card-slider-side .slick-current {
    border: 1px solid #000 !important;
    box-sizing: border-box;
}

.card-slider-side-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.card-slider-main {
    display: flex;
    width: 100%;
    max-width: 588px;
}

.card-slider-main-item {
    width: 100%;
    height: 100%;
}

.card-slider-main-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    width: 100%;
}

.card-content-block {
    max-width: 420px;
}

.card-title {
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 133.333% */
    margin-bottom: 16px;
}

.card-price {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.card-price-new {
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
}

.card-price-og {
    color: var(--Black-40, #999);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
}

.card-price-og::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #999;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.card-bot {
    display: flex;
    gap: 12px;
    /* flex-wrap: wrap; */
}

.card-bot-cart {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 220px;
    padding: 15px 10px;
    background: var(--Black-100, #000);
    box-sizing: border-box;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--Black-100, #000);
    transition: 0.3s;
}

.card-bot-cart:hover {
    background-color: #fff;
    color: #000;
}

.card-bot-what {
    width: 220px;
    padding: 15px 10px;
    border: 1px solid var(--Black-100, #000);
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
    box-sizing: border-box;
}

.card-bot-what:hover {
    background-color: #000;
    color: #fff;
}

.card-garanty {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    background: var(--Bg-Grey, #F6F6F6);
    padding: 30px;
    padding-right: 61px;
    box-sizing: border-box;
    max-width: 568px;
    margin-top: 20px;
}

.card-char {
    margin-top: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--Black-Stroke, #E7E7E7);
    margin-bottom: 40px;
}

.card-char-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

.card-char-row {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 20px;
    max-height: 281px;
    overflow: hidden;
    transition: 0.3s;
}

.card-char-row_open {
    max-height: 500px;
}

.card-char-row-item {
    gap: 20px;
    display: flex;
}

.card-char-row-item_title {
    color: var(--Black-40, #999);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    max-width: 204px;
    width: 100%;
}

.card-char-row-item_text {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.card-char-all {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.card-char-all::after {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(../img/card/drop.svg);
    background-size: 100% 100%;
    transition: 0.3s;
}

.card-char-all_open::after {
    transform: rotate(180deg);
}

.card-desc {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--Black-Stroke, #E7E7E7);
    margin-bottom: 40px;
}

.card-desc-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

.card-desc-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
	color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.catalog-preview-cont .card-desc-text {
    max-height: 281px;
    overflow: scroll;
    width: 100%;
}

.catalog-preview-cont .card-desc-text::-webkit-scrollbar {
    width: 5px; /* Ширина вертикального скроллбара */
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}

.catalog-preview-cont .desc-text::-webkit-scrollbar-track {
    background: #f1f1f1; /* Цвет фона скроллбара */
    border-radius: 10px; /* Закругленные углы */
}

.catalog-preview-cont .card-desc-text::-webkit-scrollbar-thumb {
    background: #000; /* Цвет ползунка */
    border-radius: 10px; /* Закругленные углы */
}

.catalog-preview-cont .card-desc-text::-webkit-scrollbar-thumb:hover {
    background: #555; /* Цвет при наведении */
}


.card-desc-text p {
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.card-video {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--Black-Stroke, #E7E7E7);
    margin-bottom: 40px;
}

.card-video-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

.card-video-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card-video-row .main-vid-item {
    width: 100%;
    border-radius: 20px;
    max-width: 272px;
}

.card-video-row .main-vid-item iframe {
    border-radius: 20px;
}

.card-app-print {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 220px;
    padding: 15px 10px;
    background: var(--Black-100, #000);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    border: 1px solid var(--Black-100, #000);
    transition: 0.3s;
    margin-bottom: 30px;
}

.card-app-print:hover {
    color: #000;
    background-color: #fff;
}

.card-app-print::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../img/card/print.svg);
    background-size: 100% 100%;
    transition: 0.3s;
}

.card-app-print:hover::before {
    background-image: url(../img/card/print_hov.svg);
}

.card-add-post {
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 30px;
    max-width: 488px;
}

.card-add-text {
    max-width: 520px;
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card-add-text ul {
    margin-top: 20px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-add-text ul li {
    display: flex;
    gap: 8px;
}

.card-add-text ul li::before {
    content: '';
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    background-image: url(../img/card/gal.svg);
    background-size: 100% 100%;
}

.card-also {
    margin-top: 150px;
    padding-bottom: 100px;
    margin-bottom: 50px;
}

.card-also-title {
    color: #000;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
}

.card-also-slider {
    margin-top: 40px;
}

.card-also-slider .slick-track {
    margin: 0;
}

.card-also-slider .slick-list {
    overflow: visible;
} 

.card-also-slider .catalog-item {
    margin: 0 10px;
}

.catalog-item-preview {
    position: fixed;
    z-index: 8;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
    background: rgba(0, 0, 0, 0.50);
}

.catalog-item-preview-a {
    max-width: 1200px;
    height: 708px;
    background-color: #fff;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.catalog-item-preview_active {
    display: block;
}

.catalog-item-preview-head {
    height: 100px;
    border-bottom: 1px solid #E7E7E7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.catalog-item-preview-title {
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 133.333% */
}

.catalog-item-preview-close {
    width: 40px;
    height: 40px;
    background-image: url(../img/catalog/preview_close.svg);
    background-size: 100% 100%;
    cursor: pointer;
}

.catalog-preview-body {
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    gap: 24px;
}

.catalog-item-preview .card-slider {
    max-width: 557px;
    height: 527px;
    gap: 12px;
}

.catalog-item-preview .card-slider-main {
    max-width: 455px;
}

.catalog-item-preview .card-slider-side {
    max-width: 90px;
    min-width: 90px;
}

.catalog-item-preview  .card-slider-side-item {
    max-width: 90px;
	 width: 100px; /* Фиксированная ширина */
    // height: 100px !important; /* Фиксированная высота */
    box-sizing: border-box;
	flex: 0 0 auto;
}

.catalog-preview-cont {
    width: 100%;
    position: relative;
}

.catalog-preview-cont-nav {
    display: flex;
    gap: 30px;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.catalog-preview-cont-nav-btn {
    color: var(--Black-40, #999);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}

.catalog-preview-cont-nav-btn::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: transparent;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.catalog-preview-cont-nav-btn_active {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
}

.catalog-preview-cont-nav-btn_active::after {
    background-color: #000;
}

.catalog-preview-cont-block {
    display: none;
}

.catalog-preview-cont-block_active {
    display: flex;
}

.catalog-preview-cont .card-char-row {
    width: 100%;
    overflow-y: scroll;
	overflow-x: hidden;
    max-height: 281px;
	position: relative;
}

.catalog-preview-cont .card-char-row::-webkit-scrollbar {
    width: 5px; /* Ширина вертикального скроллбара */
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}

.catalog-preview-cont .card-char-row::-webkit-scrollbar-track {
    background: #f1f1f1; /* Цвет фона скроллбара */
    border-radius: 10px; /* Закругленные углы */
}

.catalog-preview-cont .card-char-row::-webkit-scrollbar-thumb {
    background: #000; /* Цвет ползунка */
    border-radius: 10px; /* Закругленные углы */
}

.catalog-preview-cont .card-char-row::-webkit-scrollbar-thumb:hover {
    background: #555; /* Цвет при наведении */
}

.catalog-preview-cont-bot {
    position: absolute;
    bottom: 0;
    border-top: 1px solid #E7E7E7;
    padding-top: 34px;
}

.cart {
    margin-top: 60px;
}

.cart-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
}

.cart-text {
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 477px;
}

.cart-row {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 150px;
}

.cart-side {
    padding: 30px;
    box-sizing: border-box;
    max-width: 467px;
    width: 100%;
    background: var(--Black-100, #000);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.cart-side-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 25px;
}

.cart-side-title {
    color: #FFF;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.cart-side-num {
    color: #FFF;
    font-family: Manrope;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px; /* 120% */
}

.cart-side-bot {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-side-ofor {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 100%;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--White-100, #FFF);
    background: var(--White-100, #FFF);
    text-decoration: none;
    transition: 0.3s;
}

.cart-side-ofor:hover {
    border: 1px solid var(--White-100, #FFF);
    background: #000;
    color: #fff;
}

.cart-side-cart {
    color: #fff;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 100%;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--White-100, #FFF);
    background: #000;
    text-decoration: none;
    transition: 0.3s;
}

.cart-side-cart:hover {
    background: #fff;
    color: #000;
}

.cart-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cart-main-item {
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    padding: 20px;
    padding-bottom: 30px;
    padding-right: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
}

.cart-main-item-pic {
    min-width: 151px;
    max-width: 151px;
    height: 151px;
}

.cart-main-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-main-item-cont {
    width: 100%;
}

.cart-main-item-cont-title {
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.cart-main-item-cont-text {
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-main-item-cont-price {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #E7E7E7;
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cart-main-close {
    width: 30px;
    height: 30px;
    background-image: url(../img/cart/close.svg);
    background-size: 100% 100%;
    position: absolute;
    right: 20px;
    top: 20px;
}

.cart-empty {
    margin-top: 150px;
    margin-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-empty-title {
    color: #000;
    font-family: Manrope;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px; /* 120% */
    margin-bottom: 16px;
    text-align: center;
}

.cart-empty-text {
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.cart-empty-btn {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 220px;
    height: 52px;
    background: var(--Black-100, #000);
    text-decoration: none;
    border: 1px solid #000;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.cart-empty-btn:hover {
    color: #000;
    background-color: #fff;
}

.card-side-top {
    color: #FFF;
    font-family: Manrope;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px; /* 120% */
    padding-bottom: 25px;
    border-bottom: 1px solid #363636;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.order {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.order-block {
    border-top: 1px solid #E7E7E7;
    border-bottom: 1px solid #E7E7E7;
    padding: 60px 0;
}

.order-block-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.order-block-switch {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.order-block-switch-item {
    width: calc(100% / 2 - 10px);
	height: 132px;
}

.order-block-switch-item-btn {
    border: 1px solid #E7E7E7;
    background: var(--White-100, #FFF);
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    gap: 12px;
    position: relative;
    width: 100%;
    transition: 0.3s;
    cursor: pointer;
	height: 100%;
}

input:checked ~ .order-block-switch-item-btn {
    border: 1px solid var(--Black-100, #000);
}

.order-block-switch-item input {
    display: none;
}

.order-block-switch-item-btn::before {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    box-sizing: border-box;
    display: flex;
    border-radius: 50%;
    background-image: url(../img/cart/radio.svg);
    transition: 0.3s;
}

input:checked ~ .order-block-switch-item-btn::before {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    box-sizing: border-box;
    display: flex;
    border-radius: 50%;
    background-image: url(../img/cart/radio_active.svg);
    transition: 0.3s;
}

.order-block-switch-item-cnt {
    display: flex;
    flex-direction: column;
}

.order-block-switch-item-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 12px;
}

.order-block-switch-item-text {
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 277px;
}

.order-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.order-form-input {
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    background: var(--White-100, #FFF);
    width: calc(100% / 2 - 10px);
    box-sizing: border-box;
    padding: 15px 16px;
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    outline: 0;
    transition: 0.3s;
}

.order-form-input:focus, .order-form-input:hover {
    border: 1px solid var(--Black-100, #000);
}

.order-form-text {
    width: 100%;
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    background: var(--White-100, #FFF);
    height: 140px;
    resize: none;
    padding: 18px 16px;
    box-sizing: border-box;
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    outline: 0;
    transition: 0.3s;
}

.order-form-text:focus, .order-form-text:hover {
    border: 1px solid var(--Black-100, #000);
}

.order-bot {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 60px;
    max-width: 407px;
}

.order-bot-confirm {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: var(--Black-100, #000);
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #000;
    transition: 0.3s;
}

.order-bot-confirm:hover {
    color: #000;
    background-color: #fff;
}

.order-bot-back {
    color: #000;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: #fff;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #000;
    transition: 0.3s;
}

.order-bot-back:hover {
    color: #fff;
    background-color: #000;
}

.suc {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.50);
    display: none;
}

.suc_active {
    display: flex;
}

.suc-block {
    max-width: 467px;
    width: 100%;
    padding: 30px;
    padding-top: 40px;
    padding-bottom: 20px;
    box-sizing: border-box;
    background: var(--White-100, #FFF);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.suc-block img {
    width: 90px;
    height: 90px;
}

.suc-title {
    color: var(--Black-100, #000);
    text-align: center;
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
}

.suc-text {
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.suc-btn {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    width: 100%;
    height: 52px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-top: 41px;
}

.added {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.50);
    display: none;
	z-index: 8 !important;
}

.added_active {
    display: flex;
}

.added-block {
    background: var(--White-100, #FFF);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    max-width: 710px;
    padding: 30px;
    padding-top: 0;
    box-sizing: border-box;
}

.added-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
}

.added-pic {
    min-width: 200px;
    max-width: 200px;
    height: 200px;
}

.added-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.added-info {
    max-width: 345px;
}

.added-info-name {
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.added-info-price {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.added-item-preview-head {
    height: 100px;
    border-bottom: 1px solid #E7E7E7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.added-item-preview-title {
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 133.333% */
}

.added-item-preview-close {
    width: 40px;
    height: 40px;
    background-image: url(../img/catalog/preview_close.svg);
    background-size: 100% 100%;
    cursor: pointer;
}

.auth_pop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.50);
    display: none;
	z-index: 5;
}

.auth_active {
    display: flex !important;
}

.pop_block{
    background: var(--White-100, #FFF);
    padding: 25px;
    box-sizing: border-box;
    max-width: 467px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: fit-content;
}

.auth-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.auth-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.pop_close {
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    background-image: url(../img/catalog/preview_close.svg);
    background-size: 100% 100%;
    cursor: pointer;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form input {
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    background: var(--White-100, #FFF);
    outline: 0;
    padding: 15px 16px;
    height: 60px;
    width: 100%;
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    box-sizing: border-box;
    transition: 0.3s;
}

.auth-form input:hover, .auth-form input:active {
    border: 1px solid #000;
}

.auth-form-fgt {
    color: #000;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: fit-content;
    margin-left: auto;
    text-decoration: none;
}

.auth-form-fgt:hover {
    text-decoration: underline;
}

.auth-form input[type=submit] {
    background: var(--Black-100, #000);
    height: 52px;
    width: 100%;
    padding: 15px 10px;
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border: 1px solid #000;
    transition: 0.3s;
    margin-top: 5px;
}

.auth-form input[type=submit]:hover {
    background-color: #fff;
    color: #000;
}

.auth-add {
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 12px;
}

.auth-add a {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: underline;
}

.auth-bot {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E7E7E7;
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.auth-bot a {
    color: #000;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.auth-bot a:hover {
    text-decoration: underline;
}

.reg_code-send {
    display: flex;
    justify-content: space-between;
    color: var(--Black-40, #999);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}

.reg_code-send a {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.reg_code-send a:hover {
    text-decoration: underline;
}

.reg_suc-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reg_suc-pic {
    width: 90px;
    height: 90px;
}

.reg_suc-title {
    color: var(--Black-100, #000);
    text-align: center;
    margin-top: 20px;
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.reg_suc-text {
    color: var(--Black-60, #666);
    text-align: center;
    margin-top: 5px;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.ref_suc-ok {
    background: var(--Black-100, #000);
    padding: 15px 10px;
    height: 52px;
    width: 100%;
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 41px;
    text-decoration: none;
    border: 1px solid #000;
    transition: 0.3s;
}

.ref_suc-ok:hover {
    background-color: #fff;
    color: #000;
}

.pass_sent-head {
    align-items: flex-start;
}

.pass_sent-head .auth-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.pass_sent-head .auth-title span {
    font-weight: 700;
}

.profile {
    margin-top: 20px;
}

.profile-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
}

.profile-nav {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.profile-nav-item {
    color: var(--Black-40, #999);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}

.profile-nav-item::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: transparent;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -12px;
    transition: 0.3s;
}

.profile-nav-item_active, .profile-nav-item:hover {
    color: var(--Black-100, #000);
}

.profile-nav-item:hover::after, .profile-nav-item_active::after {
    background-color: #000;
}

.profile-block {
    margin-bottom: 150px;
    display: none !important;
}

.profile-block_active {
    display: block !important;
}

.profile-info {
    display: flex;
    gap: 40px;
    margin-top: 74px;
}

.profile-info-block {
    width: calc(100% / 2 - 10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-info-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.profile-info .order-form-input {
    width: 100%;
}

.profile-info_half {
    display: flex;
    gap: 12px;
}

.profile-info_half .order-form-input  {
    width: calc(50% - 6px);
}

.profile-info .order-form-text {
    height: 55px;
    padding: 15px 16px;
}

.profile-info-bot {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.profile-info-save {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: var(--Black-100, #000);
    padding: 15px 10px;
    box-sizing: border-box;
    text-decoration: none;
    border: 1px solid #000;
    transition: 0.3s;
}

.profile-info-save:hover {
    background-color: #fff;
    color: #000;
}

.profile-info-logout {
    color: #000;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: #fff;
    width: 223px;
    padding: 15px 10px;
    box-sizing: border-box;
    text-decoration: none;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.profile-info-logout:hover {
    background-color: #000;
    color: #fff;
}

.profile-order-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 54px;
}

.profile-order {
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    background: var(--White-100, #FFF);
    padding: 30px;
    padding-top: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-order-head {
    height: 102px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E7E7E7;
}

.profile-order-head-name {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.profile-order-head-status {
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
}

.profile-order-head-status_ready {
    background: var(--Green-100, #59BFB6);
    color: var(--White-100, #FFF);
}

.profile-order-head-status_recieved {
    background: var(--Black-100, #000);
    color: var(--White-100, #FFF);
}

.profile-order-head-status_process {
    background: var(--Bg-Grey, #F6F6F6);
    color: var(--Black-100, #000);
}

.profile-order-head-status_canseled {
    background: #E47676;
    color: var(--White-100, #FFF);
}

.profile-order-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding-bottom: 30px;
    border-bottom: 1px solid #E7E7E7;
}

.profile-order-info li {
    color: #000;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    gap: 40px;
}

.profile-order-info li span {
    color: var(--Black-40, #999);
    max-width: 160px;
    width: 100%;
}

.profile-order-good-show {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.profile-order-good-show::after {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(../img/card/drop.svg);
    background-size: 100% 100%;
    transition: 0.3s;
    margin-top: 3px;
    transition: 0.3s;
}

.profile-order-good_open .profile-order-good-show::after {
    transform: rotate(180deg);
}

.profile-order-good-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    margin-top: 0;
}

.profile-order-good_open .profile-order-good-row {
    max-height: 2000px;
    margin-top: 30px;
}

.profile-order-good-row .cart-main-item {
    width: calc(100% / 2 - 10px);
}

.profile-order-good-row .cart-main-item .cart-main-close {
    display: none;
}

.about-banner {
    margin-bottom: 100px;
}

.about-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-banner-block {
    max-width: 588px;
    width: 100%;
}

.about-banner-pic {
    width: 707px;
    height: 640px;
}

.about-banner-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-banner-title {
    color: #000;
    font-family: Manrope;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px; /* 110% */
    margin-bottom: 20px;
    max-width: 710px;
}

.about-banner-text {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about-banner-bot {
    margin-top: 0;
    display: flex;
    gap: 20px;
}

.about-banner-order {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: var(--Black-100, #000);
    width: 223px;
    height: 52px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    box-sizing: border-box;
    transition: 0.3s;
}

.about-banner-order:hover {
    color: #000;
    background-color: #fff;
}

.about-banner-contact {
    color: #000;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: #fff;
    width: 223px;
    height: 52px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    box-sizing: border-box;
    transition: 0.3s;
}

.about-banner-contact:hover {
    color: #fff;
    background-color: #000;
}

.about-adv {
    background: var(--Black-100, #000);
    padding: 150px 0;
}

.about-adv-title {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
}

.about-adv-row {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-adv-item {
    width: calc(100% / 3 - 13.4px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-sizing: border-box;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-adv-item-pic {
    width: 50px;
    height: 50px;
}

.about-adv-item-pic img {
    width: 100%;
    height: 100%;
}

.about-adv-item-text {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.about-review {
    background-color: #fff;
    padding: 150px 0;
}

.about-review .main-review-title {
    color: #000;
    font-size: 50px;
    max-width: 840px;
}

.about-review .main-review-item {
    border: 1px solid var(--White-100, #FFF);
    background: #000;
}

.about-review .main-review-link {
    color: #999;
}

.about-banner-cst {
    margin-bottom: 150px;
}

.about-banner-cst .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-banner-cst-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.about-banner-cst-cont {
    max-width: 705px;
}

.about-banner-cst-vid {
    height: 500px;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.about-banner-cst-vid .main-vid-item {
    width: 100%;
    height: 100% !important;
    border-radius: 0;
    overflow: hidden;
}

.about-banner-cst-vid .main-vid-item img {
    border-radius: 0;
}

.about-banner-cst-vid .main-vid-item iframe {
    border-radius: 0;
}
.about-asd {
    margin-bottom: 160px;
}
.about-asd-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки одинаковой ширины */
    grid-auto-rows: 100px; /* Высота каждой строки по умолчанию */
    gap: 10px; /* Отступы между элементами */
    margin-top: 40px;
}
.about-asd-item:nth-child(1) {
    grid-row: span 3;
}
.about-asd-item:nth-child(2) {
    grid-row: span 5;
}
.about-asd-item:nth-child(3) {
    grid-row: span 4;
}
.about-asd-item:nth-child(4) {
    grid-row: span 5;
}
.about-asd-item:nth-child(5) {
    grid-row: span 3;
}
.about-asd-item:nth-child(6) {
    grid-row: span 4;
}
.about-asd-item:nth-child(7) {
    grid-row: span 5;
}
.about-asd-item:nth-child(8) {
    grid-row: span 4;
}
.about-asd-item:nth-child(9) {
    grid-row: span 3;
}
.about-asd-item:nth-child(9n+1),
.about-asd-item:nth-child(9n+5),
.about-asd-item:nth-child(9n+9) {
    grid-row: span 3;
}

.about-asd-item:nth-child(9n+2),
.about-asd-item:nth-child(9n+4),
.about-asd-item:nth-child(9n+7) {
    grid-row: span 5;
}

.about-asd-item:nth-child(9n+3),
.about-asd-item:nth-child(9n+6),
.about-asd-item:nth-child(9n+8) {
    grid-row: span 4;
}

.about-asd-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-review .main-review-rate-star::after {
	background-color: #000;
}

.about-review .main-review-block::after {
	background-color: #000;
}

.delivery {
    margin-top: 60px;
}

.delivery-title {
    color: #000;
    font-family: Manrope;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px; /* 110% */
}

.delivery-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 150px;
}

.delivery-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.delivery-item:nth-child(even) {
    flex-direction: row-reverse;
}

.delivery-item-pic {
    width: calc(50% - 20px);
    height: 500px;
}

.delivery-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-item-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 35px;
	margin-top: -70px;
}

.delivery-item-icon img {
    width: 100%;
    height: 100%;
}

.delivery-item-cont {
    width: calc(50% - 20px);
}

.delivery-item-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 10px;
}

.delivery-item-text {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 618px;
}

.review_nat {
    margin-top: 80px;
    padding-top: 0;
}

.qst {
    margin-top: 20px;
}

.qst-title {
    color: #000;
    font-family: Manrope;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px; /* 110% */
}

.qst-row {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 150px;
}

.qst-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    border-bottom: 1px solid #E7E7E7;
    box-sizing: border-box;
    padding-bottom: 30px;
    max-height: 80px;
    overflow: hidden;
    transition: 0.3s;
}

.qst-item a {
	color: #000;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
}

.qst-item_open {
    max-height: 800px;
}

.qst-item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.qst-item-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.qst-item-btn {
    min-width: 50px;
	max-width: 50px;
    height: 50px;
    background-image: url(../img/qst/arrow.svg);
    background-size: 100% 100%;
    cursor: pointer;
    transition: 0.3s;
}

.qst-item_open .qst-item-btn {
    transform: rotate(180deg);
}

.qst-item-text {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: calc(100% - 122px);
    opacity: 0;
    transition: 0.5s;
}

.qst-item_open .qst-item-text {
    opacity: 1;
}

.contact {
    margin-top: 60px;
}

.contact-title {
    color: #000;
    font-family: Manrope;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px; /* 110% */
}

.contact-head {
    margin-top: 40px;
    display: flex;
}

.contact-head-item {
    width: calc(100% / 4);
    border-right: 1px solid var(--Black-Stroke, #E7E7E7);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 5px 10px;
    padding-right: 0;
    box-sizing: border-box;
    justify-content: center;
}

.contact-head-item:last-child {
	border: 0;
}

.contact-head-item-title {
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contact-head-item-text {
    color: #000;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    max-width: 220px;
	text-decoration: none;
}

.contact-head-item-soc {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.contact-head-item-soc-link {
    width: 40px;
    height: 40px;
}

.search-page form {
	margin-bottom: 100px;
}

.contact-head-item-soc-link img {
    width: 100%;
    height: 100%;
}

.contact-map {
    margin-top: 40px;
    width: 100%;
    height: 550px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-rek {
    margin-top: 40px;
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    background: var(--White-100, #FFF);
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.contact-rek-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid var(--Black-Stroke, #E7E7E7);
    margin-bottom: 30px;
}

.contact-rek-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.contact-rek-list-item-name {
    color: var(--Black-40, #999);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contact-rek-list-item-text {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.contact-rek-soc {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-rek-soc-link {
    text-decoration: none;
    color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contact-rek .contact-head-item-soc {
    margin-top: 40px;
}
.contact-pic {
    margin-bottom: 150px;
}
.contact-pic-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.contact-pic img {
    width: 100%;
    height: 100%;
	object-fit: cover;
}

.comm-banner {
    padding: 130px 0;
    box-sizing: border-box;
    width: 100%;
    background-image: url(../img/comm/comm-banner_bg.png);
    background-size: 100% 100%;
    margin-bottom: 150px;
	height: 600px;
}

.comm-banner-row {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 100%;
}

.comm-banner-pic {
    width: 304px;
    height: 341px;
}

.comm-banner-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comm-banner .main-banner-block {
    max-width: 505px;
}

.comm-banner-bot {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.comm-banner-follow {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    background: var(--White-100, #FFF);
    width: 260px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    border: 1px solid #fff;
}

.comm-banner-follow:hover {
    color: #fff;
    background-color: #000;
}

.comm-banner-tel {
    color: #fff;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    background: #000;
    width: 170px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    border: 1px solid #fff;
}

.comm-banner-tel:hover {
    color: #000;
    background-color: #fff;
}

.comm-shop {
    margin-bottom: 150px;
}

.comm-shop-row {
    display: flex;
    justify-content: space-between;
    max-width: 1318px;
    align-items: center;
    margin-bottom: 60px;
}

.comm-shop-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 345px;
}

.comm-shop-title {
    color: #000;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
}

.comm-shop-btn {
    color: #fff;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    background: #000;
    width: 223px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    border: 1px solid #fff;
}

.comm-shop-btn:hover {
    color: #000;
    background-color: #fff;
}

.comm-shop-text {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 446px;
}

.comm-shop-pic {
    height: 356px;
    width: 100%;
}

.comm-shop-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comm-what {
    margin-bottom: 150px;
}

.comm-what-title {
    color: #000;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin-bottom: 20px;
}

.comm-what-text {
    max-width: 846px;
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.comm-what-row {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.comm-what-item {
    background: var(--Bg-Grey, #F6F6F6);
    padding: 30px;
    box-sizing: border-box;
    width: calc(100% / 3 - 13.4px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comm-what-item-num {
    color: #000;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
	opacity: 0.2;
}

.comm-what-item-name {
    color: #000;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 266px;
}

.comm-what-bot {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.comm-what-bot-follow {
    color: #fff;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    background: #000;
    width: 223px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    border: 1px solid #000;
}

.comm-what-bot-follow:hover {
    color: #000;
    background-color: #fff;
}

.comm-what-bot-wa {
    color: #000;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    background: #fff;
    width: 223px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    border: 1px solid #000;
}

.comm-what-bot-wa:hover {
    color: #fff;
    background-color: #000;
}

.buy {
    margin-top: 60px;
}

.buy-title {
    color: #000;
    font-family: Manrope;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px; /* 110% */
}

.buy-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 44px;
}

.buy-head-nav {
    display: flex;
    gap: 30px;
}

.buy-head-nav-item {
    color: var(--Black-40, #999);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.buy-head-nav-item:hover, .buy-head-nav-item_active {
    color: #000;
}

.buy-head-nav-item::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: transparent;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -12px;
    transition: 0.3s;
}

.buy-head-nav-item:hover::after, .buy-head-nav-item_active::after {
    background-color: #000;
}

.buy-head-date {
    color: var(--Black-40, #999);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.buy-cnt {
    margin-bottom: 150px;
}

.buy-table {
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    box-sizing: border-box;
    width: 100%;
    border-bottom: 0;
    display: none;
}

.buy-table_active {
    display: block;
}

.buy-table-head {
    height: 80px;
    background: var(--Bg-Grey, #F6F6F6);
    padding: 25px 30px;
    box-sizing: border-box;
    display: flex;
    gap: 10px;
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.buy-table-test {
    width: calc(100% / 3 - 14px);
}

.buy-table-type {
    width: calc(100% / 3 - 14px);
}

.buy-table-price {
    width: calc(100% / 3 - 14px);
}

.buy-table-body-row {
    padding: 15px 30px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--Black-80, #333);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-bottom: 1px solid var(--Black-Stroke, #E7E7E7);
    align-items: center;
}

.buy-table-info {
	color: var(--Black-60, #666);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
	margin-top: 10px;
}

.buy-consult {
    display: flex;
    flex-direction: column;
    padding: 80px 0;
    background-color: #000;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
}

.buy-consult-title {
    color: var(--White-100, #FFF);
    text-align: center;
    font-family: Manrope;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px; /* 110% */
    max-width: 382px;
    margin-bottom: 16px;
}

.buy-consult-text {
    color: var(--White-80, #CCC);
    text-align: center;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.buy-consult-soc {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.buy-consult-soc-link {
    text-decoration: none;
    width: 50px;
    height: 50px;
}

.buy-consult-soc-link img {
    width: 100%;
    height: 100%;
}

.buy-row {
    margin-top: 40px;
    margin-bottom: 150px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.buy-row-vid {
    width: calc(50% - 10px);
}
.buy-row-vid .main-vid-item {
    width: 100%;
    height: 100% !important;
}
.buy-row-bot {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    width: 100%;
}
.buy-row-bot-item {
    border: 1px solid var(--Black-Stroke, #E7E7E7);
    width: calc(100% / 3 - 16px);
    padding: 25px 20px;
    box-sizing: border-box;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    display: flex;
    justify-content: center;
}
.buy-row-bot-item .contact-head-item-text {
    display: flex;
    align-items: center;
    gap: 4px;
    max-width: none;
}
.buy-row-table {
    width: calc(50% - 10px);
}
.buy-row-table-top {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    height: 40px;
    background: var(--Black-100, #000);
    padding-left: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.comm-stage {
    background-color: #000;
    padding: 100px 0;
    margin-bottom: 150px;
}

.comm-stage .container {
    display: flex;
    justify-content: space-between;
}

.comm-stage-block {
    max-width: 480px;
    height: 100%;
    position: sticky;
    top: 0;
}

.comm-stage-title {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
}

.comm-stage .comm-what-bot-follow {
    background-color: #fff;
    color: #000;
}

.comm-stage .comm-what-bot-follow:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}

.comm-stage .comm-what-bot-wa {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}

.comm-stage .comm-what-bot-wa:hover {
    background-color: #fff;
    color: #000;
}

.comm-stage-list {
    margin-right: 51px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 516px;
    position: relative;
}

.comm-stage-list::before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #3D3D3D;
    position: absolute;
    left: -21px;
    top: 0;
    bottom: 0;
}

.comm-stage-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.comm-stage-item::before {
    content: '';
    width: 13px;
    height: 13px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: -27px;
    top: 7px;
}

.comm-stage-item-title {
    color: var(--White-100, #FFF);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.comm-stage-item-text {
    color: var(--Black-40, #999);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.comm-stage-a {
    position: relative;
    margin-top: 50px;
}
.comm-stage-pic {
    width: 100%;
    height: 439px;
}
.comm-stage-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comm-stage-pic_sub {
    width: 280px;
    height: 280px;
    border: 4px solid #000;
    position: absolute;
    bottom: -71px;
    right: -116px;
}
.comm-stage-pic_sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.smartfilter {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.map-columns {
	margin-bottom: 70px;
}

.map-columns ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.map-columns ul li {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.map-columns ul li a {
	text-decoration: none;
	color: #000;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
}

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

.card-fag-block {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--Black-Stroke, #E7E7E7);
}

.catalog-item-preview .card-fag-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.card-fag-title {
    color: var(--Black-100, #000);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}

.card-fag .card-char-row {
    gap: 10px;
}

.card-desc-text .card-char-row {
    overflow: visible;
}

@media (max-width: 1440px) {
    .catalog-item {
        width: calc(100% / 3 - 13.4px);
        height: 400px;
        transition: 0.3s;
		box-sizing: border-box;
    }

    .catalog-item-photo {
        height: 73%;
    }
}

@media (max-width: 1200px) {
    .header-loc {
        max-width: 330px;
    }

    .main-top-title {
        font-size: 36px;
    }

    .catalog-item-cnt {
        padding: 15px 10px;
    }

    .catalog-item-name {
        height: 88px;
		max-height: none;
		
    }

    .catalog-item-bot {
        gap: 6px;
    }

    .catalog-item-click {
        font-size: 10px;
        width: calc(100% / 2 - 3px);
    }

    .catalog-item-cart {
        font-size: 10px;
        width: calc(100% / 2 - 3px);
    }

    .card-bot {
        flex-direction: column;
    }

    .catalog-preview-cont .card-bot {
        flex-direction: row;
    }

    .catalog-preview-cont .card-bot-cart {
        width: 160px;
    }

    .catalog-preview-cont .card-bot-what {
        width: 160px;
        white-space: nowrap;
    }
}

@media (max-width: 1000px) {
    .header {
		position: sticky;
		top: 0;
		background: #fff;
		z-index: 4;
    }

    .header-loc {
        display: none;
    }

    .header-add {
        display: none;
    }

    .header-burger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 25px;
        height: 18px;
        background-image: url(../img/header/burger.svg);
        background-size: 100% 100%;
        transition: 0.3s;
    }

    .header-burger_close {
        background-image: url(../img/header/burger_close.svg);
    }

    .header-nav {
        height: calc(100vh - 84.7px);
        position: fixed;
        z-index: 4;
        right: 0;
        top: 84.7px;
        background-color: #fff;
        width: 100%;
        padding-top: 20px;
        transition: 0.3s;
        overflow: scroll;
    }

	.qst-item-btn {
		min-width: 40px;
		max-width: 40px;
		height: 40px;
	}

	.header-nav .header-add {
		display: flex;
	}

	.comm-stage-list::before {
		left: 9px;
	}

    .header-nav .container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: flex-start;
        align-items: flex-start;
        padding-left: 20px;
    }

	.catalog-item-preview .card-slider-side {
		max-width: none;
		min-width: 0;
	}

	.card-slider-side {
		max-height: 160px;
		position: relative;
		overflow: scroll;
	}

	.card-slider-side .slick-list {
		overflow: scroll;
		max-height: 110px;
		height: auto;
	}


	
	.catalog-preview-cont-bot {
		position: absolute;
		bottom: 0;
		border-top: 1px solid #E7E7E7;
		padding-top: 34px;
	}

	.card-slider-side-item {
		height: 110px !important;
		margin: 0;
	}

	.catalog-item-preview-a {
		height: 100vh;
		overflow-y: scroll;
	}

	.catalog-item-photo_prev-btn {
		font-size: 12px;
		width: 80%;
		height: 30px;
	}

    .header-nav-link {
        color: #000;
        font-size: 18px;
    }

	.search-page form {
		padding: 0 10px;
		box-sizing: border-box;
		display: flex;
	}

    .header-nav_dis {
        width: 0;
        overflow: hidden;
    }

    .header-nav .container {
        position: unset;
    }

    .header-nav-link_drop::after {
        background-image: url(../img/header/arrow_mob.svg);
    }

    .header-nav-link_drop-menu {
        top: 0;
        margin: 0;
        height: auto;
		padding-bottom: 150px;
    }

    .header-nav-link_drop_back {
        display: flex;
        color: var(--Black-80, #333);
        font-family: Manrope;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-decoration: none;
        gap: 9px;
    }

    .header-nav-link_drop_back::before {
        content: '';
        width: 23px;
        height: 23px;
        background-image: url(../img/card/back.svg);
        background-size: 100% 100%;
    }

    .container {
        padding: 0;
        //overflow: hidden;
    }

    .main .container {
        gap: 10px;
    }

    .main-banner {
        padding: 30px 0;
        height: auto;
    }

    .main-banner-row {
        flex-direction: column-reverse;
        align-items: center;
        padding: 0 20px;
    }

    .main-banner-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-banner-title {
        text-align: center;
        font-size: 40px;
    }

    .main-banner-text {
        text-align: center;
        font-size: 17px;
    }

    .main-banner-btn {
        margin-top: 30px;
    }

    .main-top-row {
        flex-direction: column;
        gap: 10px;
    }

    .main-top {
        height: auto;
        width: 100%;
        padding: 0 20px;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .main-top-add {
        flex-wrap: wrap;
    }

    .main-top-pic {
        top: 20px;
        left: 20px;
    }

    .main-top-title {
        font-size: 25px;
        line-height: normal;
    }

    .main-cat {
        gap: 10px;
    }

    .main-cat_3 {
        flex-direction: column;
        gap: 10px;
    }

    .main-cat_3 .main-cat-item {
        width: 100%;
    }

    .main-cat_2 {
        flex-direction: column;
        gap: 10px;
    }

    .main-cat_2 .main-cat-item {
        width: 100%;
    }

    .main-cat_4 {
        flex-direction: column;
        gap: 10px;
    }

    .main-cat_4 .main-cat-item {
        width: 100%;
    }

    .main-vid {
        padding: 20px;
    }

    .main-vid-slider .slick-slide {
        margin: 0 20px;
    }

    .main-vid-slider {
        margin-bottom: 25px;
    }

	.slick-prev {
		left: 0;
	}

	.slick-next {
		right: 0;
	}

    .main-review {
        padding: 50px 10px;
    }

    .main-review-title {
        font-size: 30px;
        line-height: normal;
    }

    .main-review-row {
        flex-direction: column;
        gap: 10px;
    }

    .main-review-item {
        width: 100%;
        padding: 20px;
        padding-top: 60px;
    }

    .main-review-logo {
        left: 15px;
        top: 15px;
    }

    .main-zxc {
        flex-direction: column;
        gap: 10px;
    }

	.main-zxc-slider-block img {
		height: 300px;
	}

	.main-zxc-slider-title {
		width: 100%;
	}

	.main-zxc-slider-btn {
		width: 100%;
		margin-top: 10px;
	}

    .main-zxc-block {
        width: 100%;
    }

    .main-brief {
		height: auto;
    }

    .main-brief-pic {
        display: none;
    }

    .main-brief {
        padding: 20px;
    }

    .main-brief-title {
        font-size: 34px;
        line-height: normal;
    }

    .main-del {
        padding: 20px;
        margin-bottom: 20px;
		height: auto;
    }

    .main-del-pic {
        display: none;
    }

	.comm-stage-pic_sub {
		right: 0;
		bottom: 0;
	}

    .footer {
        padding-top: 20px;
    }

    .footer-row {
        flex-direction: column;
        padding: 0 10px;
        box-sizing: border-box;
        gap: 30px;
    }

    .footer-add-tel {
        text-align: left;
        margin-left: 0;
    }

    .footer-add-adr {
        text-align: left;
    }

    .footer-add-soc {
        justify-content: flex-start;
    }

    .footer .main-review-row {
        padding: 0 10px;
    }

    .footer-bot {
        flex-direction: column;
        height: fit-content;
    }

    .footer-bot .container {
        flex-direction: column;
        padding: 10px 10px;
        box-sizing: border-box;
        gap: 20px;
    }

    .catalog {
        padding: 0 10px;
        margin-top: 20px;
    }

    .catalog-content-row {
        gap: 10px;
        row-gap: 30px;
    }

    .catalog-item {
        width: calc(50% - 5px);
        max-height: none;
		height: auto;
    }

	.card-slider-side-item {
		max-width: none;
	}

	.catalog-item-preview .card-slider-side-item {
		max-width: none;
		height: 110px !important;
		margin: 0;
	}

    .catalog-item-photo {
        height: 35vw;
        min-height: 200px;
    }

    .catalog-item-bot {
        flex-direction: column;
        gap: 3px;
    }

    .catalog-item-cart {
        width: 100%;
        font-size: 14px;
    }

    .catalog-item-click {
        width: 100%;
        font-size: 14px;
    }

    .catalog-content-bot {
        flex-direction: column-reverse;
        gap: 20px;
        margin-top: 30px;
    }

    .catalog-item-cnt {
        padding: 3px;
        padding-top: 5px;
        opacity: 1;
        border: 1px solid #E7E7E7;
        background: #FFF;
    }

    .catalog-item-bot {
        opacity: 1;
    }

    .catalog-title {
        font-size: 30px;
    }

    .catalog-top {
        flex-wrap: wrap;
        row-gap: 16px;
    }

    .catalog-top-asd {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .catalog-top-filter {
        display: flex;
        color: var(--White-100, #FFF);
        font-family: Manrope;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        padding: 10px 15px;
        background: var(--Black-100, #000);
        height: 51px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    .catalog-sort .custom-select {
        width: auto;
    }

    .catalog-sort .custom-select .select-button {
        width: auto;
        padding: 10px 15px;
    }

    .catalog-filter {
        position: absolute;
        z-index: 2;
        background-color: #fff;
        max-width: none;
        width: 100%;
        padding-right: 10px;
        box-sizing: border-box;
        margin-top: -6px;
        display: none;
    }

    .catalog-filter_open {
        display: flex;
    }

    .catalog-vid {
        flex-direction: column;
        padding: 0 10px;
    }

    .catalog .catalog-vid {
        padding: 0;
    }

    .catalog-row {
        margin-bottom: 20px;
    }

    .catalog-vid .main-vid-item {
        width: 100%;
    }

    .card {
        margin-top: 20px;
    }

    .card-row {
        flex-direction: column;
    }

    .card-slider {
        max-width: none;
        width: 100%;
        flex-direction: column-reverse;
        height: auto;
    }

    .card-slider .slick-arrow {
        background-image: url(../img/main/banner-arrow_bk.svg);
    }

	.card-slider .slick-prev {
		left: 0;
	}

	.card-slider .slick-next {
		right: 0;
	}

    .card-slider-side {
        /* display: none; */
    }

    .card-slider-main {
        max-width: none;
        height: 300px;
    }

    .card-slider-side {
        display: none;
        max-width: none;
        min-width: 0;
    }

    .card-slider-side .slick-track {
        flex-direction: row;
		height: auto !important;
    }

    .card-content {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .card-content-block {
        max-width: none;
    }

    .card-bot {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .card-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }

    .card-garanty {
        padding: 10px;
    }

    .card-char {
        margin-top: 40px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .card-desc {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .card-top {
        margin-bottom: 20px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .card-back {
        font-size: 17px;
    }

    .card-bot-cart {
        width: 100%;
        max-width: none;
    }

    .card-bot-what {
        width: 100%;
        max-width: none;
    }

    .card-also {
        margin-top: 50px;
    }

    .card-also-slider .slick-arrow {
        background-image: url(../img/main/banner-arrow_bk.svg);
		display: none !important;
    }

    .card-also-slider .catalog-item {
        margin: 0 5px;
		height: auto;
    }

    .card-also-slider .slick-arrow {
        bottom: -40px;
        top: auto;
    }

	.main-vid-item img {
		object-position: left;
	}

    .card-also-title {
        font-size: 25px;
        line-height: normal;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .card .catalog-vid {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .catalog-item-preview {
        overflow: hidden;
    }

    .catalog-item-preview-head {
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .catalog-item-preview-title {
        font-size: 20px;
        line-height: normal;
    }

    .catalog-item-preview-close {
        min-width: 40px;
    }

    .catalog-preview-body {
        flex-direction: column;
        padding: 0 10px;
    }

    .catalog-item-preview .card-slider {
        height: auto;
    }

    .catalog-preview-cont-bot {
        position: relative;
    }

    .catalog-preview-cont {
        overflow: scroll;
        // max-height: 260px;
        padding-bottom: 30px;
        box-sizing: border-box;
    }

    .catalog-preview-cont .card-char-row {
        max-height: none;
    }

	.catalog-preview-cont .card-desc-text {
        max-height: none;
    }


	.catalog-preview-cont .card-char-row::-webkit-scrollbar {
		display: none;
	}

    .catalog-preview-cont .card-bot {
        flex-direction: column;
    }

    .catalog-preview-cont .card-bot-cart {
        width: 100%;
    }

    .catalog-preview-cont .card-bot-what {
        width: 100%;
    }

    .catalog-item-preview .card-slider-main {
        max-width: none;
    }

    .catalog-item-preview .card-slider {
        max-width: none;
    }

    .cart {
        margin-top: 20px;
    }

    .cart-top {
        padding: 0 10px;
        box-sizing: border-box;
        width: 100%;
    }

    .cart-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .cart-main {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .cart-main-item {
        flex-direction: column;
    }

    .cart-side {
        max-width: none;
    }

    .cart-title {
        font-size: 30px;
    }

    .cart-empty-title {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .order-block {
        padding: 30px 10px;
    }

    .order-block-switch {
        flex-direction: column;
    }

    .order-block-switch-item {
        width: 100%;
    }

    .order-bot {
        max-width: none;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .added-row {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .added-item-preview-head {
        margin-bottom: 20px;
    }

    .added-item-preview-title {
        font-size: 20px;
        line-height: normal;
    }

    .added-item-preview-close {
        min-width: 40px;
    }

    .added-block {
        padding: 10px;
        padding-top: 0;
    }

    .profile .container {
        padding: 0 10px;
    }

    .profile-info {
        flex-direction: column;
    }

    .profile-info-block {
        width: 100%;
    }

    .profile-info-bot {
        flex-direction: column;
    }

    .profile-info-save {
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

	.order-form-input {
		width: 100%;
	}

    .profile-info_half {
        flex-direction: column;
    }

    .profile-info_half .order-form-input {
        width: 100%;
    }

    .profile-order-good-row {
        flex-direction: column;
    }

    .profile-order-good-row .cart-main-item {
        width: 100%;
    }

    .profile-order-info li {
        flex-direction: column;
        gap: 4px;
    }

    .profile-order-head-status {
        font-size: 13px;
    }

    .profile-order-head-name {
        font-size: 20px;
    }

    .about {
        margin-top: 30px;
    }

    .about-banner-pic {
        display: none;
    }

    .about-banner .container {
        padding: 0 10px;
    }

    .about-banner-title {
        font-size: 35px;
        line-height: normal;
    }

    .about-banner-text {
        font-size: 15px;
    }

    .about-banner-bot {
        flex-direction: row;
        gap: 10px;
		width: 100%;
    }

	.about-banner-order, .about-banner-contact {
		width: calc(50% - 5px)
	}

    .about-adv {
        padding: 50px 0;
    }

    .about-adv .container {
        padding: 0 10px;
    }

    .about-adv-title {
        font-size: 30px;
    }

	.comm-stage-block {
		position: unset;
	}

    .about-adv-row {
        margin-top: 20px;
        flex-direction: column;
    }

    .about-adv-item {
        width: 100%;
    }

    .about-banner {
        margin-bottom: 50px;
    }

    .delivery {
        margin-top: 20px;
    }

    .delivery-title {
        font-size: 35px;
        line-height: normal;
        padding: 0 10px;
    }

    .delivery-row {
        margin-top: 20px;
        gap: 50px;
        margin-bottom: 50px;
    }

    .delivery-item {
        flex-direction: column !important;
        width: 100%;
    }

    .delivery-item-pic {
        width: 100%;
    }

    .delivery-item-cont {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

	.delivery-item-icon {
		margin-top: 0;
	}


    .review_nat {
        margin-top: 20px;
        padding-top: 0;
    }

    .qst-title {
        font-size: 35px;
        line-height: normal;
        padding: 0 10px;
    }

    .qst-row {
        padding: 0 10px;
        gap: 20px;
        margin-bottom: 50px;
    }

    .qst-item-title {
        font-size: 20px;
    }

    .qst-item-text {
        max-width: none;
        font-size: 15px;
    }

    .contact {
        margin-top: 20px;
        padding: 0 10px;
    }

    .contact-title {
        font-size: 35px;
        line-height: normal;
    }

    .contact-head {
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .contact-head-item {
        width: calc(100% / 2);
        border: 0;
    }

    .contact-head-item-text {
        font-size: 15px;
    }

    .contact-rek {
        padding: 10px;
        padding-top: 20px;
        margin-bottom: 50px;
    }

    .contact .catalog-vid {
        padding: 0;
    }

    .contact-head-item-soc-link {
        width: 30px;
        height: 30px;
    }

    .contact-map {
        margin-top: 20px;
    }

    .contact-map {
        height: 250px;
    }

    .contact-pic {
        margin-bottom: 50px;
    }
    .contact-pic-row {
        margin-top: 20px;
        gap: 10px;
		flex-direction: column;
    }

	.contact-pic-item {
		height: 230px;
	}

    .comm-banner {
        background-image: none;
        background-color: #000;
        padding: 40px 0;
        margin-bottom: 50px;
		height: auto;
    }

    .comm-banner-row {
        flex-direction: column-reverse;
    }

    .comm-banner-bot {
        flex-direction: column;
        margin-top: 30px;
    }

    .comm-banner-follow {
        width: 220px;
    }

    .comm-banner-tel {
        width: 220px;
    }

    .comm-shop {
        margin-bottom: 50px;
    }

    .comm-shop-row {
        padding: 0 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 20px;
    }

    .comm-shop-title {
        font-size: 35px;
    }

    .comm-shop-text {
        font-size: 16px;
    }

    .comm-what {
        padding: 0 10px;
        margin-bottom: 50px;
    }

    .comm-what-title {
        font-size: 35px;
    }

    .comm-what-text {
        font-size: 16px;
    }

    .comm-what-row {
        flex-direction: column;
    }

    .comm-what-item {
        width: 100%;
    }

    .comm-what-bot {
        flex-direction: column;
    }

    .buy {
        margin-top: 20px;
    }

    .buy .container {
        padding: 0 10px;
    }

    .buy-title {
        font-size: 35px;
        line-height: normal;
    }

    .buy-head {
        flex-wrap: wrap;
        row-gap: 20px;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .buy-head-nav {
        gap: 20px;
    }

    .buy-head-nav {
        font-size: 16px;
        overflow-x: scroll;
        overflow-y: hidden;
        padding-bottom: 20px;
    }

    .buy-table-head {
        padding: 10px 15px;
        height: auto;
        font-size: 15px;
    }

    .buy-table-body-row {
        padding: 10px 15px;
        font-size: 13px;
    }

    .buy-cnt {
        margin-bottom: 50px;
    }

    .buy-consult {
        margin-bottom: 50px;
    }

    .buy-consult-title {
        font-size: 35px;
        line-height: normal;
        margin-bottom: 10px;
    }

    .buy-consult-text {
        font-size: 15px;
    }

    .buy-consult-soc {
        margin-top: 20px;
        gap: 12px;
    }

    .buy-consult-soc link {
        width: 40px;
        height: 40px;
    }

    .buy .catalog-vid {
        padding: 0;
    }

    .comm-stage {
        padding: 50px 10px;
    }

    .comm-stage .container {
        flex-direction: column;
        gap: 30px;
    }

    .comm-stage-list {
        padding-left: 30px;
    }

    .about-banner-cst {
        margin-bottom: 50px;
    }
    .about-banner-cst-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .about-banner-title {
        max-width: none;
        margin-bottom: 10px;
    }
    .about-banner-cst-cont {
        max-width: none;
    }
    .about-banner-cst-vid {
        height: 300px;
    }
    .about-asd {
        margin-bottom: 50px;
    }
    .about-asd .about-banner-title {
        padding: 0 10px;
        box-sizing: border-box;
        font-size: 30px;
    }
    .about-asd-row {
        display: flex;
        flex-direction: column;
    }
    .about-asd-item {
        height: 270px;
    }
    .about-review .main-review-title {
        max-width: none;
        font-size: 30px;
    }
    .main-review-single {
        width: 100%;
    }
    .buy-row {
        flex-direction: column;
        margin-bottom: 50px;
    }
    .buy-row-vid {
        width: 100%;
        height: 250px;
    }
    .buy-row-table {
        width: 100%;
    }
    .buy-row-table-top {
        padding-left: 10px;
    }
    .buy-row-bot {
        flex-direction: column;
    }
    .buy-row-bot-item {
        width: 100%;
    }
}

.fast_buy_active {
    display: block;
}

.fast_buy .added-row {
    gap: 20px;
    border-bottom: 1px solid var(--Black-Stroke, #E7E7E7);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.fast_buy .added-pic {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
}

.fast_buy .added-info-name {
    font-size: 17px;
}

.fast_buy .added-info-price {
    font-size: 20px;
}

@media (max-width: 1000px) {
    .fast_buy .pop_block {
        height: 100%;
        overflow: scroll;
    }
}

.main-banner {
    height: auto !important;
    background-image: none !important;
}

.main-banner-slide-pic {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-banner-slide-pic_mob {
    display: none !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center top;
}

.main-cat_1 .main-cat-item {
	width: 100%;
}

@media (max-width: 600px) {
    .main-banner {
        padding: 0 !important;
		aspect-ratio: 1/2;
    }

    .main-banner-slide-pic {
        display: none !important;
    }

    .main-banner-slide-pic_mob {
        display: block !important;
    }

	.comm-banner {
		aspect-ratio: 1/2;
    }
}

.header .footer-add-soc {
	margin-left: auto;
	margin-right: 20px;
}

@media (max-width: 1000px) {
	.header .footer-add-soc {
		display: none;
	}
}

/* .header .footer-add-soc-link {
	width: 30px;
	height: 30px;
} */

.comm-banner {
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    background-image: none;
    background-size: 100% 100%;
	height: fit-content;
}

@media (max-width: 1000px) {
	.comm-shop-pic {
		height: 200px;
	}
}