@charset "UTF-8";
@font-face {
    font-family: "HouschkaRoundedAlt-Bold"; /* Укажите имя шрифта */
    src: url("../assets/fonts/houschkarounded_bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "HouschkaRoundedAlt"; /* Укажите имя шрифта */
    src: url("../assets/fonts/HouschkaRoundedAlt-Regular6.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HouschkaRoundedAlt-semibold"; /* Укажите имя шрифта */
    src: url("../assets/fonts/HouschkaRoundedAlt-Regular8.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "DrukCyr-BoldItalic";
    src: url("../assets/fonts/DrukCyr-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "SteelfishEbIt";
    src: url("../assets/fonts/SteelfishEbIt.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Druk-Condensed-Super";
    src: url("../assets/fonts/Druk-Condensed-Super.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

:root {
    --color-pink: #F090B7;
    --color-blue: #82B0DF;
    --color-beige: #EEE4DE;
    --color-green: #7DC4A4;
    --color-text: #1D1D1B;
    --color-error: #e60606;
    --color-gray-text: #6B6B6B;
    --color-grey-light-text: #DADADA;
    --color-white-text: #FFFFFF;
    --color-light-gray-text: #ABABAB;
    --color-main-black: #1D1D1B;
    --color-main-gray: #6B6B6B;
    --color-gray: #ABABAB;
    --color-grey-lines: #DADADA;
    --color-grey-background2: #F7F7F7;
    --color-white-background: #FFFFFF;

    --main-font-size: 18px;
    --small-font-size: 14px;

    --font-family-title: 'Druk-Condensed-Super', 'DrukCyr-BoldItalic';
    --font-family-text: 'HouschkaRoundedAlt', 'Arial';
    --font-family-text-semibold: 'HouschkaRoundedAlt-semibold', 'Arial';
}

* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

html,
body {
    height: 100%;
    font-family: var(--font-family-text);
    font-size: 14px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    max-width: 1700px;
    padding: 0 20px;
    margin: 0 auto;
}

@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}
section {
    padding: 60px 0;
}

@media (max-width: 412px) {
    section {
        padding: 40px 0;
    }
    .container {
        padding: 0 10px;
    }
}
.swiper {
    width: 100%;
    height: 100%;
}

.alert {
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-text);
    background-color: rgba(247, 247, 247, 0.8823529412);
    border-radius: 7px;
    width: 47px;
    height: 47px;
    transition: 0.3s ease-in-out;
}

.basketPage .swiper-button-next,
.basketPage .swiper-button-prev {
    background: rgba(218, 218, 218, 0.5803921569);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 15px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--color-white-background);
}

.main-title {
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 1000;
    font-size: 147px;
    line-height: 80%;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    .main-title {
        font-size: 100px;
        line-height: 85px;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .main-title {
        margin-bottom: 20px;
    }
}
@media (max-width: 412px) {
    .main-title {
        font-size: 60px;
        line-height: 48px;
    }
}

.btn {
    display: block;
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: var(--font-family-text-semibold);
    text-transform: uppercase;
    background: unset;
    color: var(--color-text);
    opacity: 1;
    padding: 22px 32px;
    transition: all .3s ease;
    cursor: pointer;
}
.btn:hover {
    border-color: var(--color-grey-lines);
    background: transparent;
}
.btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .btn {
        padding: 18px 32px;
    }
}

.btn-transparent {
    background: unset;
    color: var(--color-text);
    border: 1px solid var(--color-grey-lines);
}
.btn-transparent:hover {
    background-color: var(--color-main-black) !important;
    color: var(--color-white-text) !important;
}

.btn-white {
    color: var(--color-text);
    background-color: var(--color-white-background);
}
.btn.btn-white:disabled {
    border-color: var(--color-grey-lines);
    color: var(--color-text);
    background-color: var(--color-white-background);
}

.btn-black {
    background-color: #000000;
    color: var(--color-white-text);
}
.btn-black:hover {
    color: var(--color-text);
}
.btn.btn-black:disabled {
    background-color: #000000;
    color: var(--color-white-text);
}

.btn-pink {
    border: 1px solid var(--color-pink);
    color: var(--color-text);
    background-color: var(--color-pink);
}

.buttonGoTop {
    position: fixed;
    bottom: 40px;
    left: 20px;
    background-color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 20;
    display: none;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-grey-lines);
}
.buttonGoTop:hover {
    background-color: #f0f0f0;
}

.buttonGoTop__arrow {
    position: relative;
    width: 16px;
    height: 19px;
}
.buttonGoTop__arrow::after {
    content: "";
    display: block;
    width: 16px;
    height: 19px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="21" viewBox="0 0 18 21" fill="none"><path d="M9 20V1M9 1L1 8.86207M9 1L17 8.86207" stroke="%231D1D1B" stroke-linecap="round"/></svg>') no-repeat center center;
    background-size: contain;
}

.header {
    position: relative;
    z-index: 999;
}
.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header-ghost {
    display: none;
}
.header-ghost.active {
    display: block;
}

.header__nav-media {
    flex: 1;
    display: none;
}
@media (max-width: 768px) {
    .header__nav-media {
        display: block;
    }
}

.header-nav-media__button {
    position: relative;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    padding: 3px;
    cursor: pointer;
}

.header-nav-media__button svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
    opacity: 1;
    transition: all .2s ease;
}
.header-nav-media__button svg#nav-icon-cross {
    position: absolute;
    opacity: 0;
}
.header-nav-media__button.active svg#nav-icon-burger {
    opacity: 0;
}
.header-nav-media__button.active svg#nav-icon-cross {
    opacity: 1;
}

.header-nav-media__container {
    display: none;
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    z-index: 999;
    width: 100%;
    opacity: 0;
    transition: all .3s ease;
}
.header-nav-media__container.active {
    top: 100%;
    opacity: 1;
}

.header-nav-media__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    max-height: calc(100vh - 40px);
    opacity: 1;
    box-shadow: 0px 2px 2px -2px #000000;
    background-color: var(--color-white-background);
    padding: 0;
    transition: all .3s ease;
    overflow: auto;
}
.header-nav-media__content.hide {
    left: 100vw;
    opacity: 0;
}

.header-nav-media__item {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--color-grey-lines);
}

.header-nav-media__item > a,
.header-nav-media__item > span {
    position: relative;
    display: block;
    width: 100%;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 30px 10px;
    cursor: pointer;
}

.header-nav-media__item_submenu span {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-nav-media__item-submenu {
    position: absolute;
    top: 0;
    right: 100%;
    z-index: 100;
    display: block;
    width: 100vw;
    max-height: calc(100vh - 40px);
    opacity: 0;
    background: var(--color-white-background);
    transition: all .3s ease;
    overflow: auto;
}
.header-nav-media__item-submenu.active {
    right: 0;
    opacity: 1;
}

.header-nav-media__item-submenu > ul {
    padding: 0;
    margin: 0;
}

.header-nav-media__item-submenu > ul > li {
    display: block;
    border-bottom: 1px solid var(--color-grey-lines);
}

.header-nav-media__item-submenu > ul a {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 6px;
    min-height: 80px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 10px;
}

.header-nav-media__item-submenu > ul a img {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-position: center;
    object-fit: cover;
}

.header-nav-media__item-submenu-close {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--color-grey-lines);
    padding: 20px 10px;
    cursor: pointer;
}

.header-nav-media__item-submenu-close span {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text);
}

.header-nav-media__item-submenu-close svg {
    display: block;
}

.header-nav-media__help {
    display: block;
    padding: 40px 10px;
}

.header-nav-media__help-button a {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 65px;
    border-radius: 12px;
    border: 1px solid var(--color-grey-lines);
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
}

.header-nav-media__help-content {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    width: 100%;
    max-width: 256px;
    margin: 0 auto;
}

.header-nav-media__help-text {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: var(--color-gray-text);
}

.header-nav-media__help-title {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text);
}


.header .logo {
    width: fit-content;
    height: 100%;
}

.header .logo img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 768px) {
    .header .logo img {
        max-height: 24px;
    }
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--color-grey-lines);
    position: relative;
    z-index: 10;
    background: #fff;
}

.header__first-row {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 768px) {
    .header__first-row {
        flex: 1;
        justify-content: center;
    }
}

.header__mobile-menu {
    display: none;
}
.header__mobile-menu-btn {
    width: 15px;
    border: none;
    background-color: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    transition: 0.3;
}
.header__mobile-menu-btn-line1, .header__mobile-menu-btn-line2, .header__mobile-menu-btn-line3 {
    height: 1px;
    width: 100%;
    background: #000;
    transition: 0.2s;
}
.header__mobile-menu-btn_active {
    height: 20px;
}
.header__mobile-menu-btn_active .header__mobile-menu-btn-line1, .header__mobile-menu-btn_active .header__mobile-menu-btn-line3 {
    position: absolute;
}
.header__mobile-menu-btn_active .header__mobile-menu-btn-line2 {
    transform: rotate(-45deg);
}
.header__mobile-menu-btn_active .header__mobile-menu-btn-line3 {
    transform: rotate(45deg);
}
.header__mobile-menu-btn_active .header__mobile-menu-btn-line1 {
    transform: rotate(-45deg);
    opacity: 0;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 900px) {
    .header__nav-list {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .header__nav-list {
        display: none;
    }
}

.header__nav-item {
    position: relative;
    display: inline-block;
    height: auto;
    list-style: none;
    font-size: var(--small-font-size);
    text-transform: uppercase;
    line-height: 14px;
}

.header__nav-item::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 2px;
    opacity: 0;
    background-color: var(--color-light-gray-text);
    transition: all .2s ease;
}

.header__nav-item:hover::before {
    opacity: 1;
}

.header__profile {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 768px) {
    .header__profile {
        flex: 1;
        justify-content: flex-end;
    }
}

.header__profile-item {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 10px;
}

.header__profile-item_not-authorized img {
    display: none;
}
@media (max-width: 768px) {
    .header__profile-item_not-authorized img {
        display: block;
    }

    .header__profile-item_not-authorized span {
        display: none;
    }
}

.header__profile-item-separator {
    position: relative;
}
@media (max-width: 768px) {
    .header__profile-item-separator {
        display: none;
    }
}

.header__profile-item-separator span {
    position: relative;
    display: block;
    width: 1px;
    height: 12px;
    border-radius: 1px;
    background-color: var(--color-text);
}

.header__profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.header__profile-link img {
    position: relative;
    bottom: 3px;
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.header__profile-link.basket-icon img {
    bottom: 3px;
}

.header__profile-link span {
    position: relative;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-transform: uppercase;
    color: var(--color-text);
}

.header__profile-link span::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 2px;
    opacity: 0;
    background-color: var(--color-light-gray-text);
    transition: all .2s ease;
}
.header__profile-link:hover span::before {
    opacity: 1;
}

.header__profile-icons {
    display: flex;
    gap: 20px;
}
.header__profile-icons img {
    width: 27px;
    height: 27px;
    -o-object-fit: contain;
         object-fit: contain;
}
@media (max-width: 768px) {
    .header__profile-icons {
        display: flex;
        gap: 20px;
    }
    .header__profile-icons img {
        width: 20px;
        height: 20px;
        -o-object-fit: contain;
             object-fit: contain;
    }
    .header__profile-link img {
        width: 20px;
        height: 20px;
    }
    .header__profile-link span {
        display: none;
    }
}
@media (max-width: 412px) {
    .header__inner {
        height: 41px;
    }
}

.header__mobile-menu-nav {
    overflow: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 75px);
    background-color: rgb(255, 255, 255);
    color: var(--color-text);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 5000;
}

.header__mobile-menu-nav.open {
    transform: translateX(0);
}

.catalog-popup {
    position: absolute;
    height: 0;
    display: none;
    overflow: hidden;
    z-index: -2;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.catalog-popup__wrapper {
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 40px 20px;
}
.catalog-popup__inner {
    display: flex;
    justify-content: flex-start;
    text-transform: uppercase;
    gap: 40px;
}

.catalog-popup__list span {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
}
@media (max-width: 768px) {
    .catalog-popup__list span {
        margin-bottom: 15px;
    }
}

.catalog-popup__list ul {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
}

.catalog-popup__list ul li {
    list-style: none;
}

.catalog-popup__list ul li a {
    position: relative;
    display: inline-block;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--color-text);
    cursor: pointer;
}

.catalog-popup__list ul li a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 2px;
    opacity: 0;
    background-color: var(--color-light-gray-text);
    transition: all .2s ease;
}
.catalog-popup__list ul li a:hover::before {
    opacity: 1;
}

.catalog-popup__popular {
    display: flex;
    gap: 22px;
}

.catalog-popup__popular-list {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    flex: 1;
    margin-left: 100px;
}

.catalog-popup__popular-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.catalog-popup__popular-item img {
    width: 180px;
    height: 180px;
    -o-object-fit: cover;
         object-fit: cover;
    border-radius: 50%;
}
@media (max-width: 768px) {
    .catalog-popup__popular-item img {
        width: 80px;
        height: 80px;
    }
}

.catalog-popup__popular-item span {
    position: relative;
    display: inline-block;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .catalog-popup__list li {
        height: unset;
        margin: 7px 0;
    }
    .catalog-popup__popular-item span {
        width: -moz-min-content;
        width: min-content;
    }
}

.catalog-popup__popular-item span::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 2px;
    opacity: 0;
    background-color: var(--color-light-gray-text);
    transition: all .2s ease;
}
.catalog-popup__popular-item:hover span::before {
    opacity: 1;
}

.catalog-popup-open {
    z-index: 2;
    display: block;
    height: auto;
    min-height: 350px;
    background: var(--color-white-background);
    overflow: visible;
    box-shadow: 0px 4.5px 18px rgba(130, 130, 130, 0.1);
    animation: openAnimation 0.4s ease-in-out forwards;
    opacity: 1;
}

.catalog-popup-close {
    animation: closeAnimation 0.4s ease-in-out forwards;
}

@keyframes openAnimation {
    0% {
        opacity: 0;
        transform: translateY(-200px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes closeAnimation {
    0% {
        opacity: 1;
        height: 350px;
        z-index: 2;
        background: #fff;
    }
    100% {
        opacity: 1;
        transform: translateY(-350px);
    }
}
.header__mobile-register {
    background: var(--color-grey-background2);
    color: var(--color-text);
    padding: 15px 10px;
    display: block;
}

.header__mobile-menu-item {
    font-size: var(--small-font-size);
    border-bottom: 0.9px solid var(--color-grey-lines);
    padding: 30px 10px;
    width: 100%;
    text-transform: uppercase;
}

.header__mobile-menu-item span {
    font-weight: 700;
}

.header__mobile-menu-sublist {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-list {
        display: block;
    }
}
.main {
    flex: 1;
}

.section-title {
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 1000;
    font-size: 72px;
    line-height: 80%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--color-text);
}

.slider-nav {
    display: none;
    flex-direction: row-reverse;
    gap: 40px;
}
.slider-nav .swiper-button-next,
.slider-nav .swiper-button-prev {
    display: flex !important;
    position: static;
    margin: 0;
}

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

@media (max-width: 1024px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    .catalog-slider .swiper-button-next,
    .catalog-slider .swiper-button-prev {
        display: flex;
    }
    .slider-nav {
        display: flex;
    }
}
@media (max-width: 768px) {
    .catalog-slider .swiper-button-next,
    .catalog-slider .swiper-button-prev {
        display: none;
    }
}
.welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width: 768px) {
    .welcome {
        padding: 0;
    }
}

.welcome h1 {
    font-family: var(--font-family-title);
    font-weight: bold;
    font-style: italic;
    text-align: center;
    font-size: 147px;
    text-transform: uppercase;
}
@media (max-width: 1024px) {
    .welcome h1 {
        font-size: 100px;
    }
}
@media (max-width: 768px) {
    .welcome h1 {
        line-height: 85px;
        padding: 0 10px;
        margin-bottom: 20px;
        margin-top: 60px;
    }
}

.welcome__subtitle {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--color-text);
}

.welcome__slider {
    height: 650px;
}

.catalog-btn {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 1;
    border: none;
    transform: translateX(-50%);
    text-transform: uppercase;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    opacity: 1;
    color: var(--color-text);
    background-color: var(--color-white-background);
    transition: all .2s ease;
}
.catalog-btn:hover {
    opacity: 1;
    color: var(--color-white-text);
    background-color: #000000;
}

.productSlider {
    position: relative;
}
.productSlider_product-set {
    padding: 0;
}

.productSlider .swiper-button-prev {
    left: -60px;
}
@media (max-width: 768px) {
    .productSlider .swiper-button-prev {
        display: none;
    }
}

.productSlider .swiper-button-next {
    right: -60px;
}
@media (max-width: 768px) {
    .productSlider .swiper-button-next {
        display: none;
    }
}

.product-card__container {
    position: relative;
}

.product-card__quickview {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 50;
    width: calc(100% - 40px);
    border-radius: 12px;
    border: none;
    transform: translateX(-50%);
    font-family: var(--font-family-text-semibold);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0.8705882353);
    color: var(--color-text);
    opacity: 1;
    padding: 18px 10px;
    cursor: pointer;
    transition: all .3s ease;
}
.product-card__quickview:hover {
    background-color: var(--color-white-background);
    opacity: 1;
}

.product-card__container:hover .product-card__quickview {
    display: block;
}
.product-card__img {
    border-radius: 12px;
    position: relative;
}
.product-card__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}

.product-card__title {
    flex: 1;
    display: inline-block;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-gray-text);
}

.product-card__price {
    padding-top: 5px;
    text-transform: uppercase;
}

.product-card__price-new {
    font-weight: 400;
}

.product-card__price-new,
.product-card__price-old {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}

.product-card__price-old {
    text-decoration: line-through;
    color: var(--color-light-gray-text);
    margin-left: 10px;
}
.product-card__price-old.none {
    display: none;
}
@media (max-width: 1024px) {
    .product-card__title {
        font-size: var(--small-font-size);
    }
    .product-card__price {
        padding-top: 5px;
    }
}
@media (max-width: 412px) {
    .product-card__price-new, .product-card__price-old {
        font-size: var(--small-font-size);
    }
}

.putYourLook__list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 20px;
}
.putYourLook__list .putYourLook__item {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s;
    height: 620px;
    border-radius: 12px;
}

.putYourLook__list .putYourLook__item .putYourLook__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    filter: brightness(0.8);
    transition: filter 1s ease;
}
.putYourLook__list .putYourLook__item:hover .putYourLook__image {
    filter: brightness(1);
}

.putYourLook__list .putYourLook__item-text {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 90px;
    font-family: var(--font-family-title);
    font-size: 60px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color-white-text);
}
.putYourLook__list .putYourLook__item-text-title {
    position: absolute;
    left: 30px;
}
.putYourLook__list .putYourLook__item-text-arrow {
    position: absolute;
    right: 30px;
}
@media (max-width: 1024px) {
    .putYourLook__list .putYourLook__item {
        height: 350px;
    }
}
@media (max-width: 768px) {
    .putYourLook__list .putYourLook__item-text {
        height: 50px;
    }
    .putYourLook__list .putYourLook__item-text-arrow {
        top: 17px;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 20px;
    }
    .putYourLook__list .putYourLook__item-text h3 {
        font-size: 45px;
    }
}

.categories__slider {
    display: none;
}

.categories__list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 20px;
}
@media (max-width: 768px) {
    .categories__list {
        flex-wrap: wrap;
    }
}

.categories__item {
    width: calc(16.6666666667% - 20px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media (max-width: 768px) {
    .categories__item {
        width: calc(33.3333333333% - 20px);
    }
}

.categories__item img {
    width: 100%;
    height: 100%;
    background: #d7d7d9;
    border-radius: 12px;
}

.categories__title {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    text-align: center;
    text-decoration: underline;
    text-transform: uppercase;
    color: var(--color-text);
}
.categories__item:hover h5 {
    text-decoration: none;
}

.advantages__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.advantages__first {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 768px) {
    .advantages__first {
        flex-wrap: wrap-reverse;
    }
}

.advantages__first-content {
    padding: 170px 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 10px);
    background: #EEE4DE;
    border-radius: 24px;
}
@media (max-width: 768px) {
    .advantages__first-content {
        width: 100%;
        text-align: center !important;
    }
}

.advantages__first-content div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.advantages__first-content a {
    width: fit-content;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text);
    margin-top: 60px;
}
@media (max-width: 1440px) {
    .advantages__first-content a {
        margin-top: 30px;
    }
}

.advantages__first-subtitle {
    font-size: var(--main-font-size);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.advantages__first-title {
    font-family: var(--font-family-title);
    font-size: 110px;
    line-height: 100px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    word-wrap: anywhere;
    margin-bottom: 40px;
}
.advantages__first-text {
    font-size: var(--main-font-size);
    line-height: 25.2px;
    width: 522px;
    margin: 10px 0;
}
.advantages__first-img {
    width: calc(50% - 10px);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.advantages__first-img-first {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantages__first-img-first div:first-child img {
    display: block;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}
.advantages__first-img-first div:last-child {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}
.advantages__first-img-first div:last-child img {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    width: 70%;
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}
@media (max-width: 1024px) {
    .advantages__first-img-first div:last-child img {
        width: 85%;
    }
}
@media (max-width: 768px) {
    .advantages__first-img-first {
        display: none;
    }
}
.advantages__first-img-second {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
}
.advantages__first-img-second div:first-child {
    padding-top: 80px;
}
.advantages__first-img-second div:first-child img {
    border-radius: 24px;
    overflow: hidden;
    width: 65%;
}
.advantages__first-img-second div:last-child {
    border-radius: 24px;
    overflow: hidden;
}
.advantages__first-img-second div:last-child img {
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
}
@media (max-width: 768px) {
    .advantages__first-img-second {
        width: 100%;
    }
    .advantages__first-img-second div img {
        display: none;
    }
    .advantages__first-img-second div:first-child {
        padding-top: 0;
        height: 100%;
    }
    .advantages__first-img-second div:first-child img {
        width: 100%;
        display: block;
        height: 100%;
        -o-object-fit: cover;
             object-fit: cover;
    }
}
@media (max-width: 768px) {
    .advantages__first-img {
        width: 100%;
        height: 450px;
    }
}
@media (max-width: 1440px) {
    .advantages__first-title {
        font-size: 90px;
        line-height: 85px;
    }
    .advantages__first-text {
        width: unset;
    }
    .advantages__first-content {
        padding: 90px 60px;
    }
}
@media (max-width: 1024px) {
    .advantages__first-title {
        font-size: 62px;
        line-height: 57px;
    }
    .advantages__first-content {
        padding: 80px 50px;
    }
}
@media (max-width: 768px) {
    .advantages__first-text {
        width: 80%;
    }
    .advantages__first-content div {
        align-items: center;
    }
}
.advantages__second {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 1024px) {
    .advantages__second {
        flex-wrap: wrap;
    }
}

.advantages__second-item {
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 6px;
    background: var(--color-grey-background2);
    width: calc(20% - 10px);
}
@media (max-width: 1440px) {
    .advantages__second-item {
        padding: 20px 10px;
    }
}
@media (max-width: 1024px) {
    .advantages__second-item {
        width: calc(33.3333333333% - 15px);
    }
    .advantages__second-item:last-child {
        width: calc(50% - 10px);
    }
    .advantages__second-item:nth-last-child(2) {
        width: calc(50% - 10px);
    }
}

.advantages__second-item span {
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 1000;
    font-size: 100px;
    line-height: 85%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: .9px var(--color-text);
    margin-bottom: 30px;
}
@media (max-width: 1440px) {
    .advantages__second-item span {
        font-size: 60px;
        margin-bottom: 20px;
        line-height: 48px;
    }
}

.advantages__second-item p {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}
@media (max-width: 1440px) {
    .advantages__second-item p {
        font-size: 16px;
        line-height: 20px;
    }
}

.slider-news__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.slider-news__item {
    min-height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slider-news__item img {
    display: block;
    height: 404px;
    -o-object-fit: cover;
         object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}
@media (max-width: 1440px) {
    .slider-news__item img {
        height: 285px;
    }
}

.slider-news__item span {
    display: block;
    text-align: center;
    width: fit-content;
    border-radius: 60px;
    border: 1px solid var(--color-gray);
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-light-gray-text);
    padding: 6px 10px;
    margin-bottom: 20px;
}

.slider-news__item h3 {
    flex: 1;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}

.slider-news__item h3 a {
    text-decoration: none;
    opacity: 1;
    transition: all .2s ease;
    cursor: pointer;
}
.slider-news__item h3 a:hover {
    opacity: .7;
}

.slider-news__item > a {
    width: fit-content;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: var(--color-gray-text);
    margin-top: 15px;
}
.slider-news__item > a:hover {
    text-decoration: none;
}

.slider-news__btn {
    border: 1px solid var(--color-grey-lines);
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text);
}
.slider-news__btn:hover {
    border-color: transparent;
    color: var(--color-white-text);
    background-color: #000000;
}

.join-us__inner {
    background: #82B0DF;
    border-radius: 24px;
    padding: 120px 80px 120px 80px;
    overflow: hidden;
}
@media (max-width: 1440px) {
    .join-us__inner {
        padding: 80px 60px 60px 60px;
    }
}
@media (max-width: 1024px) {
    .join-us__inner {
        padding: 80px 40px 60px 40px;
    }
}

.join-us__inner img {
    width: 100%;
    height: 470px;
    border-radius: 12px;
    -o-object-fit: cover;
         object-fit: cover;
}
@media (max-width: 768px) {
    .join-us__inner img {
        height: 280px;
    }
}

.join-us__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.join-us__content-subtitle {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text);
}

.join-us__content-title {
    font-family: var(--font-family-title);
    font-size: 147px;
    line-height: 117.6px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 40px;
}
@media (max-width: 1440px) {
    .join-us__content-title {
        font-size: 100px;
        line-height: 85px;
    }
}
@media (max-width: 1024px) {
    .join-us__content-title {
        font-size: 72px;
        line-height: 57px;
        margin-top: 30px;
    }
}

.join-us__content-text {
    display: block;
    width: 100%;
    max-width: 660px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--color-text);
}
@media (max-width: 1440px) {
    .join-us__content-text {
        width: 60%;
    }
}
@media (max-width: 1024px) {
    .join-us__content-text {
        width: 65%;
    }
}

.join-us__content-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.join-us__content-buttons a {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
}

.join-us__slider {
    margin-top: 100px;
    overflow: visible;
}
@media (max-width: 1440px) {
    .join-us__slider {
        margin-top: 80px;
    }
}

.join-us__slider-author {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.join-us__slider-author span {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
}

.ourMembers {
    position: relative;
}

.ourMembers img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.ourMembers__content {
    margin-top: 20px;
}

.ourMembers__content h4 {
    flex: 1;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}

.ourMembers__content a {
    display: inline-block;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    text-decoration: underline;
    text-transform: uppercase;
    color: var(--color-gray-text);
    margin-top: 15px;
}
.ourMembers__content a:hover {
    text-decoration: none;
}

.ourMembers__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.ourMembers-slider__btn {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    border-color: var(--color-grey-lines);
    color: var(--color-text);
}
.ourMembers-slider__btn:hover {
    border-color: transparent;
    color: var(--color-white-text);
    background-color: #000000;
}

.partners__inner {
    display: flex;
    gap: 20px;
    height: 950px;
}
.partners__img {
    width: calc(50% - 10px);
    display: flex;
    gap: 20px;
}
.partners__img-first {
    height: 100%;
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}
.partners__img-first div:first-child {
    height: calc(40% - 10px);
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.partners__img-first div:first-child img {
    width: 80%;
    -o-object-fit: cover;
         object-fit: cover;
}
.partners__img-first div:last-child {
    height: calc(60% - 10px);
    display: flex;
    padding-bottom: 80px;
}
.partners__img-first div:last-child img {
    width: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}
.partners__img-second {
    height: 100%;
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.partners__img-second div {
    height: calc(50% - 10px);
    overflow: hidden;
}
.partners__img-second div:first-child {
    padding-top: 80px;
}
.partners__img-second div:first-child img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}
.partners__img-second div:last-child img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}
.partners__img img {
    border-radius: 24px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .partners__img div {
        display: none;
    }
    .partners__img-first {
        display: block;
    }
}
.partners__content {
    width: calc(50% - 10px);
    background: #EEE4DE;
    border-radius: 24px;
    padding: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.partners__content-text {
    font-size: 18px;
}
.partners__content-wrapper h2 {
    font-family: var(--font-family-title);
    font-size: 147px;
    line-height: 117.6px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.partners__content-wrapper h4 {
    line-height: 21.6px;
    font-size: var(--main-font-size);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
}
.partners__content-wrapper p {
    font-size: var(--main-font-size);
    line-height: 25.2px;
    margin-bottom: 40px;
}
@media (max-width: 1440px) {
    .partners__content-wrapper h2 {
        font-size: 100px;
        line-height: 85px;
    }
}
@media (max-width: 1024px) {
    .partners__content-wrapper h2 {
        font-size: 72px;
        line-height: 57px;
    }
}
@media (max-width: 1440px) {
    .partners__content {
        padding: 60px;
    }
}
@media (max-width: 1024px) {
    .partners__content {
        padding: 50px;
    }
}
@media (max-width: 1024px) {
    .partners__inner {
        height: 700px;
    }
}
@media (max-width: 768px) {
    .partners__inner {
        flex-wrap: wrap;
        height: unset;
    }
    .partners__content {
        width: 100%;
        text-align: center !important;
    }
    .partners__content-wrapper {
        width: 80%;
    }
    .partners__content-text {
        font-size: 14px;
    }
}

.breadcrumbs {
    display: flex;
    align-items: center;
    margin: 40px 0;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs__item {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-transform: uppercase;
    color: var(--color-text);
    transition: all .3s ease;
}
.breadcrumbs__item:hover {
    color: var(--color-gray-text);
}

.breadcrumbs__item::after {
    content: "/";
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text);
    margin: 0 5px;
}

.breadcrumbs__item-active {
    font-family: var(--font-family-text-semibold);
}

.breadcrumbs__item-active::after {
    display: none;
}

.catalogPage {
    padding: 0;
}



.catalogPage__count {
    grid-area: product-count;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.catalogPage__count span {
    font-size: var(--main-font-size);
    color: var(--color-light-gray-text);
}

.catalogPage__filters-item--haschild {
    color: var(--color-text);
}

.catalogPage__filters-item--haschild span {
    position: relative;
}

.catalogPage__filters-item--haschild span::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.catalogPage__filters-item--haschild-open span {
    position: relative;
}

.catalogPage__filters-item--haschild-open span::after {
    content: "-";
    position: absolute;
    right: 0;
    font-size: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.catalogPage__go-back {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9;
    display: none;
    opacity: 0;
    transition: all .2s ease;
}

.catalogPage__go-back-button {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--color-grey-lines);
    background-color: var(--color-white-background);
    opacity: 1;
    transition: all .2s ease;
    cursor: pointer;
}
.catalogPage__go-back-button:hover {
    background-color: transparent;
    opacity: .8;
}

.catalogPage__go-back-button svg {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}



.productCard {
    padding-top: 0;
}
.productCard__wrapper {
    border-bottom: 1px solid var(--color-grey-lines);
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 10px;
    -moz-column-gap: 20px;
             column-gap: 20px;
    grid-template-rows: 1fr;
    grid-template-areas: "images content";
}
.productCard__img {
    grid-area: images;
    height: -moz-fit-content;
    height: fit-content;
}
.productCard__img-item {
    width: calc(50% - 5px);
    height: 728px;
    border-radius: 12px;
    overflow: hidden;
}
.productCard__img-item_empty {
    width: 100%;
    height: auto;
}
.productCard__img-empty {
    display: flex;
    width: 100%;
    height: 100%;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    color: #B1B1B1;
    padding: 30px 0;
}
.productCard__img-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}
.productCard__img-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.productCard__content {
    grid-area: content;
    overflow: hidden;
}
.productCard__sales {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}
.productCard__sales span {
    display: inline-block;
    font-family: var(--font-family-title);
    font-size: 24px;
    line-height: 31px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 5px 8px;
}
.productCard__sales span:first-child {
    background: var(--color-pink);
}
.productCard__sales span:last-child {
    background: var(--color-grey-background2);
}

.productCard__title {
    width: 100%;
    /* max-width: 330px; */
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 20px;
}
@media (max-width: 412px) {
    .productCard__title {
        font-size: var(--small-font-size);
        line-height: 15px;
    }
}

.productCard__prices {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-grey-lines);
}

.productCard__prices-price {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
}
.productCard__prices-priceOld {
    text-decoration: line-through;
    color: var(--color-light-gray-text);
}
.productCard__prices-priceNew {
    color: var(--color-text);
}

.productCard__colors {
    margin: 40px 0;
}
.productCard__colors-items {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 5px;
}
.productCard__colors-item {
    position: relative;
    border-radius: 50%;
    cursor: pointer;
}
.productCard__colors-item img {
    display: block;
    width: 30px;
    height: 30px;
    -o-object-fit: cover;
         object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 3px -3px var(--color-main-black);
}
.productCard__colors-item span {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.productCard__colors-item.active::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: 10;
    display: block;
    border-radius: 50%;
    border: 1px solid var(--color-gray);
}
.productCard__configurationTitle {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 30px;
}

.productCard__configurationTitle span {
    font-family: var(--font-family-text-semibold);
}

.productCard__sizes {
    margin-bottom: 40px;
}
.productCard__sizes-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    gap: 15px;
}

.productCard__sizes-item {
    width: 99px;
    display: flex;
    font-size: var(--small-font-size);
    text-transform: uppercase;
    flex-direction: column;
    text-align: center;
    word-break: break-word;
    border: 1px solid var(--color-grey-lines);
    padding: 18px 24px;
    cursor: pointer;
}
.productCard__sizes-item.active {
    background: #000;
    color: #fff;
}
.productCard__sizes-item.disabled {
    display: none;
}

.productCard__sizes a {
    font-size: var(--small-font-size);
    color: var(--color-gray-text);
    line-height: 18px;
    text-decoration: underline;
    margin-top: 20px;
    display: inline-block;
}
.productCard .btn {
    width: 100%;
    display: block;
    text-align: center;
    margin: 5px 0;
}
.productCard__remark {
    margin: 40px 0;
    text-align: center;
    font-size: var(--small-font-size);
    line-height: 19px;
    border-bottom: 1px solid var(--color-grey-lines);
    padding-bottom: 20px;
}

.productCard__remark span {
    display: block;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: var(--color-text);
}

.productCard__remark img {
    position: relative;
    top: 3px;
    display: inline;
    max-width: 24px;
}

.productCard__remark a {
    display: block;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    text-decoration-line: underline;
    color: var(--color-text);
    margin-top: 10px;
}
.productCard__remark a:hover {
    text-decoration-line: none;
}


.productCard__recommendation {
    width: 100%;
    position: relative;
}

.productCard__recommendation h2 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: var(--main-font-size);
    color: var(--color-text);
    margin-bottom: 20px;
}

.productCard__recommendation .product-card__slider-wrapper {
    height: 20vw;
}
@media (max-width: 768px) {
    .productCard__recommendation .product-card__slider-wrapper {
        height: 70vw;
    }
}

.productCard__recommendation .products-set-slider {
    padding-bottom: 30px;
}


.productCard__recommendation__item img {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
         object-fit: cover;
    border-radius: 12px;
}

.productCard__recommendation__item h4 {
    margin: 15px 0 20px 0;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-gray-text);
    font-size: var(--small-font-size);
    line-height: 15px;
}

.productCard__recommendation__item span {
    font-size: var(--main-font-size);
    font-weight: 700;
}


.productCard__features {
    display: grid;
    -moz-column-gap: 100px;
             column-gap: 100px;
    grid-template-rows: 1fr;
    grid-template-areas: "desc characteristics recommendation";
}

.productCard__features-title {
    display: inline-block;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 40px;
}

.productCard__features-content {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
}

.productCard__features-desc {
    grid-area: desc;
}
.productCard__features-characteristics {
    grid-area: characteristics;
}

.productCard__features-recommendation {
    grid-area: recommendation;
}

.productCard__features-recommendation-content {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .productCard__features-recommendation-content {
        font-size: 14px;
    }
}

.productCard__features-recommendation-content b {
    font-family: var(--font-family-text-semibold);
    font-weight: 400;
}


.productCard__features ul li {
    list-style: disc;
    margin: 14px 0;
}

.productCard__features ul li span {
    display: inline-block;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 10px;
}

.productCard__features ul li p {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text);
}

.productCard__features ul li:first-child {
    margin-top: 0;
}
.productCard__features-details {
    display: none;
    border-top: 1px solid var(--color-grey-lines);
    overflow: hidden;
}
.productCard__features-details summary {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}
.productCard__features-details summary:hover {
    color: var(--color-gray-text);
}
.productCard__features-details details {
    padding: 25px 0;
    border-bottom: 1px solid var(--color-grey-lines);
}
.productCard__features-details details > summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
    transform: translateX(-50%);
}
.productCard__features-details details[open] > summary::after {
    content: "-";
    position: absolute;
    right: 0;
    font-size: 20px;
    transform: translateX(-50%);
}

.productCard__features-details .productCard__features-item {
    margin-top: 20px;
}

.productCard__features-details .productCard__features-title {
    margin-bottom: 0px;
}
.productCard__features-details ul li {
    list-style: inside;
    margin: 14px 0;
}

.productCard__features-details ul li span {
    display: inline-block;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 10px;
}

.productCard__features-details ul li p {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
}

.basketPage__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px 160px;
    grid-template-areas: 
        "title product-count ."
        "products products total"
        "recommendation recommendation recommendation";
}
@media (max-width: 1440px) {
    .basketPage__wrapper {
        grid-gap: 20px;
    }
}
@media (max-width: 1024px) {
    .basketPage__wrapper {
        grid-template-areas: 
            "title title product-count"
            "products products products"
            "recommendation recommendation recommendation"
            "total total total";
    }
}

.basketPage .productSlider {
    grid-area: recommendation;
}
.basketPage .section-title {
    grid-area: title;
    line-height: 65px;
}

.basketPage__count {
    grid-area: product-count;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    font-size: var(--small-font-size);
    line-height: 19px;
}

.basketPage__count::before {
    content: 'Товаров в корзине:';
    padding-right: 5px;
}

.basketPage__list {
    grid-area: products;
    border-top: 1px solid var(--color-grey-lines);
}

.basketPage__item {
    padding: 30px 0;
    border-bottom: 1px solid var(--color-grey-lines);
    grid-gap: 20px;
    display: grid;
    grid-template-columns: 90px 2fr 1fr 1fr min-content;
    grid-template-areas: 
        "image title count price removebtn"
        "image configuration whislistbtn whislistbtn whislistbtn";
}
@media (max-width: 1200px) {
    .basketPage__item {
        grid-gap: 10px;
    }
}
@media (max-width: 768px) {
    .basketPage__item {
        grid-template-areas: 
            "title title price price"
            "image configuration configuration configuration"
            "image count count count"
            "image whislistbtn whislistbtn removebtn";
        grid-template-columns: 80px 2fr 1fr 80px;
        padding: 20px;
    }
}
@media (max-width: 320px) {
    .basketPage__item {
        grid-template-areas: 
            "title title price"
            "image configuration configuration"
            "image count count"
            "image whislistbtn removebtn";
        grid-template-columns: 35% repeat(2, 1fr);
        -moz-column-gap: 15px;
        column-gap: 10px;
        padding: 20px;
    }
}


.basketPage__item-image {
    grid-area: image;
    display: block;
    height: 120px;
    max-width: 90px;
    object-fit: cover;
    border-radius: 0;
}
@media (max-width: 768px) {
    .basketPage__item-image {
        display: block;
        height: 125px;
        max-width: 80px;
    }
}

.basketPage__item-info-title {
    grid-area: title;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}
@media (max-width: 1200px) {
    .basketPage__item-info-title {
        font-size: 14px;
    }
}

.basketPage__item-info-configuration {
    grid-area: configuration;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (max-width: 1200px) {
    .basketPage__item-info-configuration {
        gap: 3px;
    }
}

.basketPage__item-info-configuration span {
    font-size: var(--small-font-size);
    line-height: 19.6px;
}
.basketPage__item-info-configuration span span {
    text-transform: uppercase;
    font-weight: 700;
}

.basketPage__item-count {
    grid-area: count;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .basketPage__item-count {
        justify-content: flex-start;
    }
}

.basketPage__item-count-btns {
    border: 1px solid var(--color-grey-lines);
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}

.basketPage__item-count-btns button {
    border: unset;
    background: unset;
    cursor: pointer;
    transition: 0.2s;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-grey-lines);
    line-height: 24px;
}
.basketPage__item-count-btns button:hover {
    color: var(--color-gray-text);
}

.basketPage__item-count-tool {
    display: block;
    border: none;
    background: transparent;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-grey-lines);
    padding: 12px 15px;
    transition: 0.2s;
    cursor: pointer;
}
.basketPage__item-count-tool:hover {
    color: var(--color-gray-text);
}
@media (max-width: 1440px) {
    .basketPage__item-count-tool {
        padding: 12px 6px;
    }
}
@media (max-width: 768px) {
    .basketPage__item-count-tool {
        padding: 6px;
    }
}

.basketPage__item-count-result {
    display: block;
    max-width: 40px;
    border: none;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
    text-align: center;
    background-color: transparent;
    padding: 0;
}
@media (max-width: 1440px) {
    .basketPage__item-count-result {
        max-width: 30px;
    }
}
@media (max-width: 768px) {
    .basketPage__item-count-result {
        font-size: 14px;
    }
}

.basketPage__item-price {
    grid-area: price;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .basketPage__item-price {
        align-items: flex-start;
        justify-content: flex-end;
    }
}

.basketPage__item-price span {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}

.basketPage__item-del {
    grid-area: removebtn;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.basketPage__item-btn-del {
    border: unset;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 50%;
    background: var(--color-grey-lines);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    cursor: pointer;
    transition: 0.2s;
}
.basketPage__item-btn-del:hover {
    background: #e0e0e0;
}
@media (max-width: 1024px) {
    .basketPage__item-btn-del {
        padding: 12px;
    }
}
@media (max-width: 768px) {
    .basketPage__item-btn-del {
        padding: 6px;
    }
}

.basketPage__item-btn-del img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .basketPage__item-btn-del img {
        width: 11px;
        height: 11px;
    }
}

.basketPage__item-whishlist {
    grid-area: whislistbtn;
    display: flex;
    justify-content: flex-end;
    align-items: end;
    height: 100%;
    width: 100%;
}

.basketPage__item-whishlist-btn {
    font-size: var(--small-font-size);
    font-weight: 400;
    line-height: 18.2px;
    text-decoration: underline;
    color: var(--color-gray-text);
    cursor: pointer;
}
.basketPage__item-whishlist-btn:hover {
    text-decoration: none;
}

.basketPage__item-whishlist-btn::before {
    content: 'Переместить в вишлист';
}
.basketPage__item-whishlist-btn.selected::before {
    content: 'В вишлисте';
}



.basketPage__item-notification {
    grid-column: 1/5;
}

.basketPage__item-notification-container {
    display: grid;
    grid-template-columns: 1fr max-content;
    grid-gap: 20px;
}
.basketPage__item-notification-restore-tools {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
}
.basketPage__item-notification-clear {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
}
.basketPage__item-notification-clear::after, .basketPage__item-notification-clear::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 14px;
    background: #d0021b;
    content: "";
    transition: 300ms background-color ease;
}
.basketPage__item-notification-clear::after {
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.basketPage__item-notification-clear::before {
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.basketPage__total {
    background: #fff;
    padding: 20px 0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
}
.basketPage__total-title {
    font-size: var(--main-font-size);
    line-height: 22px;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-grey-lines);
    display: inline-block;
    width: 100%;
    text-align: center;
}

.basketPage__total-price {
    font-size: var(--small-font-size);
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px);
    gap: 10px;
    padding: 40px 0;
    border-bottom: 1px solid var(--color-grey-lines);
}
@media (max-width: 1024px) {
    .basketPage__total-price {
        width: 100%;
        max-width: 365px;
    }
}

.basketPage__total-price-item {
    display: flex;
    justify-content: space-between;
}
.basketPage__total-price-sale span:last-child {
    color: var(--color-green);
}
.basketPage__total-wrapper {
    grid-area: total;
    display: block;
}

.basketPage__promocode {
    margin: 20px 0;
    padding: 0 20px;
}
@media (max-width: 1024px) {
    .basketPage__promocode {
        width: 100%;
        max-width: 365px;
        padding: 0;
    }
}

.basketPage__promocode-form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--color-grey-lines);
    padding: 5px 5px 5px 20px;
}
.basketPage__promocode-results {
    display: flex;
    flex-flow: column nowrap;
    gap: 8px;
    border: none;
    padding: 8px 0 0 0;
}
.basketPage__promocode-results-close {
    border-bottom: 1px dotted #000000;
    font-size: 12px;
    cursor: pointer;
}
.basketPage__promocode-results-close:hover {
    border-color: transparent;
}
.basketPage__promocode-results-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}
.basketPage__promocode-results-item span {
    margin: 0;
}
.basketPage__promocode span {
    font-size: var(--small-font-size);
    line-height: 19px;
    font-weight: 400;
    margin-bottom: 20px;
    display: inline-block;
}
.basketPage__promocode input {
    border: none;
    width: 100%;
    font-size: var(--small-font-size);
    line-height: 19px;
    font-weight: 400;
    padding-right: 20px;
}
.basketPage__promocode button {
    font-size: var(--small-font-size);
    text-align: center;
    padding: 10px;
    text-transform: unset;
    border-radius: 0;
}

.basketPage__btn {
    width: calc(100% - 40px);
    text-align: center;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .basketPage__btn {
        width: 100%;
        max-width: 365px;
    }
}

.orderPage__inner {
    display: grid;
    grid-template-columns: 26% 1fr 26%;
    -moz-column-gap: 20px;
             column-gap: 20px;
    grid-template-areas: "title userInfo total" "info userInfo    total" "info    delivery total" ".         address    ." ".         comment    .";
}
.orderPage input, .orderPage textarea {
    background: var(--color-grey-background2);
    border: unset;
    padding: 30px;
    border-radius: 5px;
    font-size: var(--small-font-size);
}
.orderPage select {
    background: var(--color-grey-background2);
    border: unset;
    padding: 20px 30px;
    border-radius: 5px;
    font-size: var(--small-font-size);
}
.orderPage .section-title {
    grid-area: title;
    font-size: 72px;
    line-height: 50px;
    margin-bottom: 30px;
}
.orderPage__info {
    grid-area: info;
    display: flex;
    flex-direction: column;
}
.orderPage__info-link:nth-child(2) {
    border-bottom: 1px solid var(--color-grey-lines);
}
.orderPage__info-link:first-child, .orderPage__info-link:last-of-type {
    margin-bottom: 10px;
}
.orderPage__info-link {
    padding: 25px;
    background: #fff;
    border-radius: 5px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 20px;
}
.orderPage__info-link span {
    font-size: var(--main-font-size);
    line-height: 25px;
}
.orderPage__info-link:hover {
    background: rgba(240, 239, 239, 0.7137254902);
}
.orderPage__info-help {
    padding: 30px;
    background: #fff;
    border-radius: 5px;
}
.orderPage__info-help h4 {
    font-size: var(--main-font-size);
    line-height: 21px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
}
.orderPage__info-help p {
    font-size: var(--small-font-size);
    color: var(--color-gray-text);
    line-height: 19px;
    margin-bottom: 20px;
}

.orderPage__info-help a {
    width: 100%;
    display: block;
    text-align: center;
    border-color: var(--color-grey-lines);
}

.orderPage__info-helpWrapper {
    width: 80%;
}
.orderPage__userinfo {
    grid-area: userInfo;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.orderPage__userinfo input {
    width: calc(50% - 20px);
    height: 65px;
}
.orderPage__userinfo h2 {
    margin-bottom: 0;
}
.orderPage__userinfo div {
    width: calc(50% - 20px);
}
.orderPage__userinfo div input {
    width: 100%;
}
.orderPage__userinfo div p {
    font-size: 12px;
    color: var(--color-light-gray-text);
    margin-top: 10px;
}
.orderPage__total {
    grid-area: total;
    border-radius: 5px;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 5px;
    overflow: hidden;
}

.orderPage__total h2.orderPage__total-title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    border-bottom: 1px solid var(--color-grey-lines);
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text);
    background: #FFFFFF;
    padding: 20px 0;
}

.orderPage__total-price {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 0 0 6px 6px;
    background: #FFFFFF;
    padding: 20px 20px 0;
}

.orderPage__total-price-item {
    display: flex;
    justify-content: space-between;
}
.orderPage__total-price-item:last-child {
    border-bottom: 1px solid var(--color-grey-lines);
    padding-bottom: 20px;
}

.orderPage__total-price-item span {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text);
}
.orderPage__total-price-item span.bx-soa-cart-d {
    font-family: var(--font-family-text-semibold);
}

.orderPage__total-all {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid var(--color-grey-lines);
    padding: 20px 0;
    margin: 0;
}

.orderPage__total-all span {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
}

.orderPage__total .btn {
    display: block;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.orderPage__total .btn:hover {
    color: var(--color-text);
}

.orderPage__total-policy {
    font-size: 12px;
    color: #7D7D7D;
}

.orderPage__total-policy a {
    text-decoration: underline;
    color: var(--color-text);
}

.orderPage__totalSlider {
    background: #fff;
    width: 100%;
    max-height: 470px;
}

.orderPage__totalSlider .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.orderPage__totalSlider-title {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 20px 20px 0 20px;
    /* height: calc(20% - 90px); */
}

.orderPage__totalSlider-title h3 {
    display: -webkit-box;
    max-width: 250px;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    max-height: 45px;
}

.orderPage__totalSlider-details {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
    margin: 0 20px;
    height: 80%;
    border-bottom: 1px solid var(--color-grey-lines);
}

.orderPage__totalSlider-details-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.orderPage__totalSlider-details-info div span {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text);
}
.orderPage__totalSlider-details-info div span:last-child {
    font-family: var(--font-family-text-semibold);
}

.orderPage__totalSlider-details-img {
    overflow: hidden;
    height: 100%;
}

.orderPage__totalSlider-details-img img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 110px;
    object-fit: cover;
}

.orderPage__delivery {
    grid-area: delivery;
    margin-top: 10px;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}
.orderPage__delivery p {
    color: var(--color-light-gray-text);
    font-size: var(--small-font-size);
    line-height: 25px;
    margin-bottom: 30px;
}
.orderPage__delivery select {
    width: calc(50% - 10px);
    margin-bottom: 10px;
}
.orderPage__delivery-types {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.orderPage__delivery-type {
    padding: 20px;
    border-radius: 5px;
    border: 1px solid var(--color-grey-lines);
    width: calc(50% - 10px);
    transition: 0.2s;
    position: relative;
}
.orderPage__delivery-type:hover {
    background: rgba(240, 239, 239, 0.7137254902);
}
.orderPage__delivery-type label {
    display: flex;
    flex-direction: column;
}
.orderPage__delivery-type input {
    display: none;
}
.orderPage__delivery-type label {
    cursor: pointer;
}
.orderPage__delivery-type h4 {
    font-size: var(--main-font-size);
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.orderPage__delivery-type h4::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10.5L10 14L16 7M21 11C21 16.5228 16.5228 21 11 21C5.47715 21 1 16.5228 1 11C1 5.47715 5.47715 1 11 1C16.5228 1 21 5.47715 21 11Z" stroke="%23DADADA"/></svg>');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}
.orderPage__delivery-type-active {
    border: 1px solid #000;
}
.orderPage__delivery-type-active h4::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10.5L10 14L16 7M21 11C21 16.5228 16.5228 21 11 21C5.47715 21 1 16.5228 1 11C1 5.47715 5.47715 1 11 1C16.5228 1 21 5.47715 21 11Z" stroke="%237DC4A4"/></svg>');
}
.orderPage__delivery-type p {
    flex: 1;
    margin-bottom: 0;
    margin-top: 30px;
}
.orderPage__address {
    grid-area: address;
    margin-top: 10px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}
.orderPage__address h2 {
    padding: 40px 40px 0 40px;
    margin-bottom: 5px;
}
.orderPage__address p {
    color: var(--color-light-gray-text);
    font-size: var(--small-font-size);
    line-height: 25px;
    padding: 0 40px 40px 40px;
    margin-bottom: 30px;
}
.orderPage__comment {
    grid-area: comment;
    margin-top: 10px;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}
.orderPage__comment p {
    color: var(--color-light-gray-text);
    font-size: var(--small-font-size);
    line-height: 25px;
    margin-bottom: 30px;
}
.orderPage__comment h2 {
    margin-bottom: 0;
    margin-bottom: 5px;
}
.orderPage__comment textarea {
    width: 100%;
    height: 130px;
    resize: none;
    font-size: var(--small-font-size);
}
.orderPage__numtitle {
    font-size: var(--main-font-size);
    font-weight: 400;
    line-height: 21px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.orderPage__numtitle::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    background: #000;
    border-radius: 50%;
    font-family: var(--font-family-text-semibold);

    line-height: 20px;
    text-align: center;
    color: var(--color-white-text);
    margin-right: 20px;
    padding: 5px;
}
.orderPage__numtitle-01::before {
    content: "1";
}
.orderPage__numtitle-02::before {
    content: "2";
}
.orderPage__numtitle-03::before {
    content: "3";
}
.orderPage__numtitle-04::before {
    content: "4";
}

.paymentMethodsList {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.paymentMethodsList div {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-main-gray);
    border-radius: 3px;
    width: 69px;
    height: 43px;
}

.paymentMethodsList div img {
    display: block;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.paymentMethods__inner {
    display: flex;
    gap: 20px;
}
.paymentMethods__side {
    width: calc(50% - 10px);
    border-radius: 24px;
}
.paymentMethods__leftside {
    height: 1100px;
    overflow: hidden;
    position: relative;
}
.paymentMethods__leftside img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}
.paymentMethods__banks {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
}
.paymentMethods__banks img {
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
         object-fit: contain;
}
.paymentMethods__rightside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #EEE4DE;
    padding: 0 50px 0 100px;
}

.paymentMethods__rightside h2 {
    display: block;
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 1000;
    font-size: 147px;
    line-height: 80%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 30px;
}

.paymentMethods__rightside p {
    width: 78%;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
    margin: 0 0 20px;
}

.paymentMethods__rightside .paymentMethodsList {
    justify-content: flex-start;
}

.deliveryPay .faqPage h2 {
    text-align: left;
    font-size: 72px;
    line-height: 57px;
}
.deliveryPay__topContent-title {
    font-family: var(--font-family-title);
    font-size: 147px;
    line-height: 117px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.deliveryPay__topContent-text {
    width: 100%;
    max-width: 560px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--color-text);
    margin: 0 auto;
}
@media (max-width: 768px) {
    .deliveryPay__topContent-text {
        font-size: var(--small-font-size);
        padding: 0 15px;
    }
}

.deliveryPay__topContent-img {
    margin: 60px 20px 0 20px;
    height: 650px;
    border-radius: 24px;
    overflow: hidden;
}
.deliveryPay__topContent-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}
.deliveryPay .deliveryesList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.deliveryPay .deliveryesList__item {
    width: calc(50% - 10px);
    border-radius: 12px;
    border: 1px solid var(--color-gray);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}
.deliveryPay .deliveryesList__item-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.deliveryPay .deliveryesList__item-title img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.deliveryPay .deliveryesList__item-title span {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .deliveryPay .deliveryesList__item-title span {
        font-size: var(--small-font-size);
    }
}

.deliveryPay .deliveryesList__item-list {
    padding-left: 17px;
    flex-grow: 1;
}
.deliveryPay .deliveryesList__item-list li {
    list-style-type: decimal;
    width: 60%;
    font-size: var(--main-font-size);
    line-height: 25px;
}
.deliveryPay .deliveryesList__item-price {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.deliveryPay .deliveryesList__item-price span {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}

.deliveryPay .deliveryesList__item-price a {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-decoration: underline;
    color: var(--color-text);
}
.deliveryPay .deliveryesList__item-price a:hover {
    text-decoration: none;
}

.deliveryPay .deliveryesList__item-price p {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-decoration: underline;
    color: var(--color-text);
}

.deliveryCalculator__inner {
    display: flex;
    gap: 20px;
}
.deliveryCalculator__el {
    width: calc(50% - 10px);
    border: 1px solid var(--color-grey-lines);
    padding: 40px;
    border-radius: 12px;
}

.contactsPage__inner {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 33% 1fr;
    -moz-column-gap: 20px;
             column-gap: 20px;
    grid-template-areas: "info map";
}

.contactsPage__content {
    grid-area: info;
    background: #EEE4DE;
    border-radius: 24px;
    overflow: hidden;
    padding: 60px;
}
@media (max-width: 768px) {
    .contactsPage__content {
        padding: 60px 20px;
    }
}

.contactsPage__content h2 {
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 1000;
    font-size: 72px;
    line-height: 80%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 40px;
}

.contactsPage__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.contactsPage__info li {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
}

.contactsPage__info li a {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}

.contactsPage__info span {
    text-transform: uppercase;
    font-weight: 700;
}

.contactsPage__links {
    margin-top: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.contactsPage__links a {
    display: inline-block;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.contactsPage__bottom a {
    margin-top: 20px;
    display: block;
    text-align: center;
    width: fit-content;
    border-color: #000;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .contactsPage__bottom a.btn {
        padding: 20px 10px;
    }
}

.contactsPage__bottom p {
    display: block;
    max-width: 300px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
}
@media (max-width: 412px) {
    .contactsPage__bottom p {
        text-align: center;
    }
}


.contactsPage__map {
    grid-area: map;
    background: var(--color-grey-lines);
    border-radius: 24px;
    overflow: hidden;
}

.faqPage {
    margin-bottom: 60px;
}
.faqPage h2 {
    font-family: var(--font-family-title);
    font-size: 147px;
    line-height: 117px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    margin-bottom: 60px;
}
.faqPage .faqList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 20px;
}
@media (max-width: 768px) {
    .faqPage .faqList {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.faqPage .faqList__content {
    display: none;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
    padding-bottom: 24px;
}
.faqPage .faqList__content.active {
    display: block;
}
@media (max-width: 768px) {
    .faqPage .faqList__content {
        font-size: var(--small-font-size);
    }
}

.faqPage .faqList__question {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
    padding: 24px 0;
}
.faqPage .faqList__question:hover {
    cursor: pointer;
}
@media (max-width: 768px) {
    .faqPage .faqList__question {
        font-size: var(--small-font-size);
    }
}

.faqPage .faqList__question::after {
    content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10H20M10 0L10 20' stroke='%231D1D1B'/%3E%3C/svg%3E");
    position: relative;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    color: var(--color-text);
}
.faqPage .faqList__question.active::after {
    content: url("data:image/svg+xml,%3Csvg width='20' height='2' viewBox='0 0 20 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1H20' stroke='%231D1D1B'/%3E%3C/svg%3E%0A");
}

.faqPage .faqList__item {
    position: relative;
    z-index: 10;
    display: block;
    border-top: 1px solid var(--color-grey-lines);
    border-bottom: 1px solid var(--color-grey-lines);
    margin-top: -1px;
    transition: all .2s ease;
}
.faqPage .faqList__item:hover {
    z-index: 100;
    border-color: var(--color-main-black);
}
@media (max-width: 768px) {
    .faqPage .faqList__item {
        width: 100%;
    }
}

.blogPage .section-title {
    font-family: var(--font-family-title);
    font-size: 147px;
    line-height: 124px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.blogPage .tab {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.blogPage .tab > input[type=radio] {
    display: none;
}
.blogPage .tab-content {
    display: none;
    width: 100%;
    margin-top: 40PX;
}
.blogPage #tab-btn-1:checked ~ #content-1, .blogPage #tab-btn-2:checked ~ #content-2, .blogPage #tab-btn-3:checked ~ #content-3, .blogPage #tab-btn-4:checked ~ #content-4, .blogPage #tab-btn-5:checked ~ #content-5, .blogPage #tab-btn-6:checked ~ #content-6, .blogPage #tab-btn-7:checked ~ #content-7, .blogPage #tab-btn-8:checked ~ #content-8, .blogPage #tab-btn-9:checked ~ #content-9 {
    display: block;
}
.blogPage .tab > label {
    display: block;
    padding: 20px 30px;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    text-decoration: none;
    color: var(--color-text);
    background: var(--color-grey-background2);
    border-radius: 5px;
    margin: 0 5px;
    text-transform: uppercase;
}
.blogPage .tab > label:first-of-type {
    margin-left: 0;
}
.blogPage .tab > label:last-of-type {
    margin-right: 0;
}
.blogPage .tab > input[type=radio]:checked + label {
    cursor: default;
    color: var(--color-text);
    background-color: var(--color-pink);
}
.blogPage .blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}
.blogPage .slider-news__item {
    width: calc(25% - 10px);
}

.blogPage .tab-select {
    display: none;
}
@media (max-width: 768px) {
    .blogPage .tab-select {
        display: block;
        width: 100% !important;
    }
}

.custom-select {
    position: relative;
    font-size: var(--small-font-size);
}

.custom-select select {
    display: none;
}

.select-selected {
    border-radius: 5px;
    border: 1px solid black !important;
    padding: 20px !important;
    text-transform: uppercase;
}

.select-selected:after {
    position: absolute;
    content: "";
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("/src/icons/selectArrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.select-selected.select-arrow-active:after {
    transform: translateY(-50%) rotate(180deg);
}

.select-items div,
.select-selected {
    color: var(--color-text);
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

.select-items {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.96);
    top: 109%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 5px;
    text-transform: uppercase;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.articlePage {
    width: 55%;
    margin: 0 auto;
}
.articlePage__info {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.articlePage__info-date, .articlePage__info-author {
    margin: 0 10px;
    font-size: var(--small-font-size);
    line-height: 15px;
}
.articlePage__info-title {
    font-family: var(--font-family-title);
    font-size: 72px;
    line-height: 58px;
    font-weight: bold;
    font-style: italic;
    margin-top: 40px;
}

.articlePage__content {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .articlePage__content {
        font-size: 14px;
    }
}

.articlePage__content b {
    font-family: var(--font-family-text-semibold);
    font-weight: 400;
}

.articlePage__content h2 {
    font-family: var(--font-family-title);
    font-size: 72px;
    line-height: 57px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    margin: 40px 0;
}
.articlePage__content img {
    display: block;
    border-radius: 24px;
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    margin: 40px 0;
}

.articlePage__content iframe,
.articlePage__content video {
    border-radius: 24px;
    overflow: hidden;
}

.lookBookPage__list {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
             column-gap: 20px;
    row-gap: 40px;
}
.lookBookPage__item {
    width: calc(33.3333333333% - 14px);
}
.lookBookPage__item img {
    height: 780px;
    width: 100%;
    -o-object-fit: cover;
         object-fit: cover;
    border-radius: 24px;
}
.lookBookPage__item span {
    margin: 20px 0;
    font-size: var(--main-font-size);
    line-height: 21.6px;
    display: block;
    text-transform: uppercase;
}
.lookBookPage__item a {
    text-transform: uppercase;
    color: var(--color-gray-text);
    line-height: 24px;
    font-size: var(--main-font-size);
    text-decoration: underline;
}

.lookbookProducts__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.lookbookProducts__list .product-card {
    width: calc(25% - 15px);
}

.lookbook-mobileSlider {
    display: none;
}

.aboutBrandTop__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.aboutBrandTop__subtitle {
    font-size: var(--main-font-size);
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.aboutBrandTop__subtitle p {
    width: 100%;
    max-width: 820px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .aboutBrandTop__subtitle p {
        font-size: 14px;
    }
}

.aboutBrandTop__item {
    width: calc(33.3333333333% - 14px);
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
}
.aboutBrandTop__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}

.brandValuation__inner {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: 
        "item1 item2 . item3"
        ". item4 item5 ."
        ". item6 . item7";
}
@media (max-width: 1440px) {
    .brandValuation__inner {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: 
            "item1 item2 item3"
            "item4 item5 ."
            ". item6 item7";
    }
}
@media (max-width: 768px) {
    .brandValuation__inner {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: 
            "item1 item2" 
            "item3 ." 
            "item4 item5" 
            ". item6" 
            "item7 .";
    }
}
@media (max-width: 500px) {
    .brandValuation__inner {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "item1" 
            "item2" 
            "item3" 
            "item4" 
            "item5" 
            "item6" 
            "item7";
    }
}

.brandValuation__item:nth-child(1) {
    grid-area: item1;
}
.brandValuation__item:nth-child(2) {
    grid-area: item2;
}
.brandValuation__item:nth-child(3) {
    grid-area: item3;
}
.brandValuation__item:nth-child(4) {
    grid-area: item4;
}
.brandValuation__item:nth-child(5) {
    grid-area: item5;
}
.brandValuation__item:nth-child(6) {
    grid-area: item6;
}
.brandValuation__item:nth-child(7) {
    grid-area: item7;
}
.brandValuation__item {
    position: relative;
    display: block;
    min-height: 400px;
}
@media (max-width: 1024px) {
    .brandValuation__item {
        min-height: 315px;
    }
}
@media (max-width: 768px) {
    .brandValuation__item {
        min-height: 350px;
    }
}

.brandValuation__item-content {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    gap: 30px;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: var(--color-grey-background2);
    padding: 30px;
}
@media (max-width: 1024px) {
    .brandValuation__item-content {
        position: relative;
    }
}

.brandValuation__item span {
    flex: 1;
    display: inline-block;
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 1000;
    font-size: 100px;
    line-height: 85%;
    text-align: left;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: .9px var(--color-text);
}
@media (max-width: 1024px) {
    .brandValuation__item span {
        font-size: 72px;
        line-height: 80%;
    }
}
@media (max-width: 768px) {
    .brandValuation__item span {
        font-size: 60px;
    }
}

.brandValuation__item h4 {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .brandValuation__item h4 {
        font-size: 14px;
    }
}

.brandValuation__item p {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .brandValuation__item p {
        font-size: 14px;
    }
}

.certification__inner {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.certification__item {
    border-radius: 24px;
    width: calc(50% - 10px);
}
.certification__img {
    overflow: hidden;
    height: 98vh;
    position: relative;
}
.certification__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}
.certification__mark {
    position: absolute;
    width: 200px;
    height: 200px;
    right: 30px;
    bottom: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8901960784);
}
.certification__mark img {
    width: 70%;
    height: 70%;
    -o-object-fit: contain;
         object-fit: contain;
}
.certification__content {
    background: #82B0DF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px;
}

.certification__content h2 {
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 1000;
    font-size: 100px;
    line-height: 85%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 40px;
}

.certification__content p {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
    margin-bottom: 40px;
}

.certification__content div {
    height: -moz-fit-content;
    height: fit-content;
}

.partnersList__inner {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 60px;
}
.partnersList .main-title {
    margin-bottom: 40px;
}

.partnersList__subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 354px;
    margin: 0 auto;
}

.partnersList__subtitle p {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--color-text);
}

.partnersList__item {
    width: calc(12.5% - 18px);
    height: 180px;
    filter: grayscale(1);
    transition: 0.2s;
}
.partnersList__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
         object-fit: contain;
}
.partnersList__item:hover {
    filter: unset;
}

.becomePartner__main {
    width: 100%;
    height: 340px;
    background-color: var(--color-green);
    margin-bottom: 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.becomePartner__main h2 {
    font-family: var(--font-family-title);
    font-size: 100px;
    line-height: 85px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}
.becomePartner__images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.becomePartner__img {
    width: calc(50% - 10px);
    height: 470px;
    border-radius: 24px;
    overflow: hidden;
}
.becomePartner__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}

.yogaClubMain__subtitle {
    display: flex;
    justify-content: baseline;
    width: 40%;
    text-align: center;
    margin: 0 auto;
}

.yogaClubMain__subtitle p {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .yogaClubMain__subtitle p {
        font-size: 14px;
    }
}

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

.yogaClubMain__item {
    /* display: flex;
    flex-flow: column nowrap; */
    width: calc(25% - 15px);
}

.jogaClubJoin__main {
    display: flex;
    gap: 20px;
    height: 1100px;
}

.jogaClubJoin__mainContent {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    background: #82B0DF;
    border-radius: 24px;
    padding: 0;
}
@media (max-width: 768px) {
    .jogaClubJoin__mainContent {
        align-items: center;
        text-align: center;
        padding: 170px 0;
    }
}
@media (max-width: 412px) {
    .jogaClubJoin__mainContent {
        padding: 30px 0;
    }
}

.jogaClubJoin__mainContent div {
    max-width: 750px;
    padding: 0 60px;
}
@media (max-width: 1024px) {
    .jogaClubJoin__mainContent div {
        max-width: 550px;
        padding: 0 10px;
    }
}

.jogaClubJoin__mainContent h2 {
    font-family: var(--font-family-title);
    font-size: 127px;
    line-height: 100px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    word-wrap: anywhere;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .jogaClubJoin__mainContent h2 {
        margin-bottom: 20px;

    }
}

.jogaClubJoin__mainContent p {
    width: 90%;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .jogaClubJoin__mainContent p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.jogaClubJoin__mainContent a {
    width: fit-content;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text);
}

.jogaClubJoin__mainImg {
    overflow: hidden;
    border-radius: 24px;
}

.jogaClubJoin__mainImg img {
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}

.jogaClubJoin__mainImageList {
    flex: 1;
    display: flex;
    height: 100%;
    overflow: hidden;
    gap: 20px;
}

.jogaClubJoin__mainImageList div:first-child {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 20px;
}
.jogaClubJoin__mainImageList div:first-child img:nth-child(1) {
    width: 100%;
}
.jogaClubJoin__mainImageList div:first-child img:nth-child(2) {
    width: 70%;
}
.jogaClubJoin__mainImageList div:last-child {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.jogaClubJoin__mainImageList div:last-child img:nth-child(1) {
    margin-top: 25%;
    margin-right: 20%;
    height: 30%;
}
.jogaClubJoin__mainImageList div:last-child img:nth-child(2) {
    height: 40%;
}
.jogaClubJoin__items {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}
.jogaClubJoin__item {
    width: calc(25% - 15px);
    background: #F8F8F8;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.jogaClubJoin__itemIcon {
    margin-bottom: 60px;
    height: 40px;
    width: 40px;
}
.jogaClubJoin__itemIcon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
         object-fit: contain;
}

.jogaClubJoin__itemTitle {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}

.collobotationSection__inner {
    display: flex;
    gap: 20px;
    height: 1100px;
    overflow: hidden;
}
.collobotationSection__images {
    display: flex;
    gap: 20px;
    height: 100%;
    overflow: hidden;
    width: calc(50% - 10px);
}
.collobotationSection__images div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    overflow: hidden;
}
.collobotationSection__images div img {
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
    border-radius: 24px;
}
.collobotationSection__images div:first-child img:nth-child(1) {
    height: 75%;
    margin-left: 20%;
}
.collobotationSection__images div:first-child img:nth-child(2) {
    margin-bottom: 20%;
}
.collobotationSection__images div:nth-child(2) img:nth-child(1) {
    margin-top: 20%;
}
.collobotationSection__mainContent {
    background: var(--color-green);
    border-radius: 24px;
    padding: 0 60px 0 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(50% - 10px);
}

.collobotationSection__mainContent h2 {
    font-family: var(--font-family-title);
    font-size: 127px;
    line-height: 100px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .collobotationSection__mainContent h2 {
        margin-bottom: 20px;
    }
}

.collobotationSection__mainContent p {
    width: 90%;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .collobotationSection__mainContent p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.collobotationSection__mainContent a {
    width: -moz-fit-content;
    width: fit-content;
}
.collobotationSection__btns {
    display: flex;
    gap: 20px;
}

@media (max-width: 1440px) {
    .productCard__features {
        grid-template-columns: 50% 1fr;
        grid-template-areas: "desc characteristics" "recommendation .";
    }
    .productCard__img-item {
        height: 458px;
    }
    .productCard__recommendation {
        margin-bottom: 30px;
    }
    .basketPage__item-info {
        gap: 30px;
    }
    .orderPage__inner {
        grid-template-columns: 1fr 1fr 40%;
        -moz-column-gap: 20px;
        column-gap: 20px;
        grid-template-areas: "title         title        title" "userInfo    userInfo total" "delivery    delivery total" "address     address    info" "comment     comment    .     ";
    }
    .orderPage__info {
        margin-top: 40px;
    }
    .contactsPage__inner {
        grid-template-columns: 45% 1fr;
    }
    .deliveryPay .deliveryesList__item-list li {
        width: 100%;
    }
    .paymentMethods__rightside h2 {
        font-size: 60px;
    }
    .paymentMethods__rightside p {
        width: 100%;
    }
    .paymentMethods__leftside {
        height: 800px;
    }
    .lookBookPage__item img {
        height: 550px;
    }
    .aboutBrandTop__item {
        height: 390px;
    }
    .certification__content h2 {
        font-size: 80px;
        line-height: 70px;
    }
    .certification__content {
        padding: 60px;
    }
    .certification__img {
        height: 800px;
    }
    .manufacture__main div {
        width: 100%;
    }
    .manufacture__item div {
        width: 54%;
    }
    .partnersList__item {
        width: calc(16.6666666667% - 17px);
    }
    .partnersList__subtitle {
        width: 100%;
    }
    .yogaClubMain__item {
        width: calc(33.3333333333% - 14px);
    }
    .jogaClubJoin__main, .collobotationSection__inner {
        height: 800px;
    }
    .jogaClubJoin__mainContent h2, .collobotationSection__mainContent h2 {
        font-size: 86px;
        line-height: 70px;
    }
    .collobotationSection__mainContent {
        padding: 60px;
    }
    .jogaClubJoin__mainContent p, .collobotationSection__mainContent p {
        width: 100%;
    }
    .collobotationSection__inner {
        flex-direction: row-reverse;
    }
}
@media (max-width: 1024px) {
    .section-title {
        font-size: 60px;
        line-height: 48px;
    }
    .productCard__img-item {
        height: 375px;
    }
    .productCard__recommendation__item img {
        height: 195px;
    }
    .orderPage .section-title {
        font-size: 60px;
    }
    .orderPage__inner {
        grid-template-columns: 1fr 1fr 33%;
    }
    .orderPage__info-helpWrapper {
        width: 100%;
    }
    .orderPage__totalSlider-title {
        gap: 30px;
    }
    .orderPage__total {
        margin-top: 10px;
    }
    .faqPage h2 {
        font-size: 100px;
        line-height: 85px;
    }
    .contactsPage__inner {
        grid-template-columns: 1fr 1fr;
    }
    .contactsPage__links {
        gap: 15px;
    }
    .deliveryPay__topContent-title {
        font-size: 100px;
    }
    .deliveryPay__topContent-img {
        height: 450px;
    }
    .paymentMethods__rightside {
        padding: 0 50px;
    }
    .paymentMethods__leftside {
        height: 690px;
    }
    .blogPage .slider-news__item {
        width: calc(33.3333333333% - 10px);
    }
    .blogPage .section-title {
        font-size: 100px;
        line-height: 85px;
    }
    .articlePage {
        width: 90%;
    }
    .articlePage__info-title,
    .articlePage__content h2 {
        font-size: 60px;
    }
    .lookBookPage h1 {
        font-size: 100px;
        line-height: 85px;
    }
    .lookBookPage__item img {
        height: 445px;
    }
    .aboutBrandTop__item {
        height: 320px;
    }
    .aboutBrandTop__inner {
        gap: 10px;
    }
    .certification__img {
        height: 700px;
    }
    .certification__content h2 {
        font-size: 65px;
        line-height: 57px;
    }
    .certification__content {
        padding: 45px;
    }
    .certification__mark {
        width: 130px;
        height: 130px;
    }
    .manufacture__item div {
        width: 77%;
    }
    .manufacture__item div {
        margin-bottom: 100px;
    }
    .partnersList__item {
        width: calc(20% - 16px);
    }
    .jogaClubJoin__main, .collobotationSection__inner {
        height: 740px;
    }
    .jogaClubJoin__mainContent h2, .collobotationSection__mainContent h2 {
        font-size: 59px;
        line-height: 56px;
    }
    .collobotationSection__mainContent {
        padding: 0 30px 0 40px;
    }
    .jogaClubJoin__mainContent p, .collobotationSection__mainContent p {
        width: 100%;
    }
    .collobotationSection__inner {
        flex-direction: row-reverse;
    }
}
@media (max-width: 768px) {
    .partners__img div:first-child {
        display: flex;
        width: 100%;
    }
    .partners__img div:first-child img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
             object-fit: cover;
    }
    .partners__img div:last-child {
        display: none;
    }
    .partners__img {
        width: 100%;
        height: 450px;
    }
    .productCard__img-wrapper {
        flex-wrap: nowrap;
        gap: 0;
    }
    .productCard__img {
        border-radius: 12px;
    }
    .productCard__img-item {
        height: 475px;
    }
    .productCard__wrapper {
        grid-template-areas: "images images" "content content";
        border-bottom: unset;
        padding-bottom: 0;
    }
    .productCard__content .productSlider {
        padding: 20px 0;
        display: block;
    }
    .productCard__content .productSlider .container {
        padding: 0;
    }
    .productCard__content .productSlider .section-top {
        margin-bottom: 15px;
    }
    .productCard__content .productSlider .section-title {
        font-family: var(--font-family-text);
        font-size: 18px;
        line-height: 21px;
        font-weight: 400;
    }
    .productCard__features {
        display: none;
    }
    .productCard__features-details {
        display: block;
    }
    .basketPage__total {
        margin-bottom: 60px;
    }
    .basketPage .productSlider {
        margin-top: 0;
    }
    .orderPage__inner {
        grid-template-areas: "title        title        title" "userInfo userInfo userInfo" "delivery delivery delivery" "address    address    address " "comment    comment    comment" "total        total        total" "info         info         info";
    }
    .orderPage__delivery select {
        width: 100%;
    }
    .contactsPage__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        grid-template-areas: "info" "map";
    }
    .contactsPage__map {
        width: 100%;
        height: 500px;
    }
    .deliveryPay__topContent-img {
        height: 860px;
        margin: 40px 20px 0 20px;
    }
    .deliveryPay__topContent-title {
        margin-bottom: 20px;
    }
    .deliveryPay .deliveryesList__item-price {
        margin-top: 70px;
    }
    .paymentMethods__inner {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .paymentMethods__leftside {
        height: 450px;
    }
    .paymentMethods__side {
        width: 100%;
    }
    .paymentMethods__rightside {
        padding: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .paymentMethods__rightside h2,
    .paymentMethods__rightside p {
        margin: 10px 0;
        text-align: center;
    }
    .paymentMethods__rightside h2 {
        margin-bottom: 0;
    }
    .paymentMethods__rightside p {
        width: 90%;
    }
    .paymentMethods__rightside .paymentMethodsList {
        justify-content: center;
    }
    .articlePage {
        width: 100%;
    }
    .lookBookPage__item {
        width: calc(50% - 10px);
    }
    .lookBookPage__item img {
        height: 500px;
    }
    .gallery__block {
        grid-template-areas: "area1    area2" "area3    area4" "area5    area5" "area6 area7" "area8 area9" "area10 area10" "area11 area12" "area13 area13";
    }
    .lookbookProducts__list {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    .lookbookProducts__list .product-card {
        width: calc(33.3333333333% - 14px);
    }
    .aboutBrandTop__item {
        height: 230px;
    }
    .certification__inner {
        flex-direction: column;
    }
    .certification__item {
        width: 100%;
    }
    .certification__item {
        height: 450px;
        text-align: center;
    }
    .certification__content div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .certification__content div button {
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
    }
    .history__inner {
        row-gap: 20px;
    }
    .manufacture__item div {
        width: 100%;
    }
    .manufacture__main {
        padding: 80px;
    }
    .partnersList__item {
        width: calc(25% - 15px);
    }
    .becomePartner__main h2 {
        font-size: 72px;
    }
    .jogaClubJoin__main, .collobotationSection__inner {
        height: unset;
        flex-direction: column-reverse;
    }
    .jogaClubJoin__mainContent h2, .collobotationSection__mainContent h2 {
        font-size: 59px;
        line-height: 56px;
    }
    .collobotationSection__mainContent {
        padding: 0 30px 0 40px;
        width: 100%;
    }
    .jogaClubJoin__mainImageList div:last-child, .jogaClubJoin__mainImageList div:first-child img, .collobotationSection__images div:last-child {
        display: none;
    }
    .jogaClubJoin__mainImageList div:first-child img:nth-child(1), .collobotationSection__images div:first-child img:nth-child(1) {
        display: unset !important;
        width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
        height: 450px !important;
        -o-object-fit: cover !important;
             object-fit: cover !important;
    }
    .jogaClubJoin__mainImageList div:first-child, .collobotationSection__images div {
        width: 100%;
    }
    .jogaClubJoin__mainImageList, .collobotationSection__images {
        width: 100%;
    }
    .collobotationSection__mainContent {
        padding: 170px 60px;
        text-align: center;
        align-items: center;
    }
    .jogaClubJoin__mainContent div, .collobotationSection__mainContent div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .jogaClubJoin__mainContent p, .collobotationSection__mainContent p {
        text-align: center;
    }
    .collobotationSection__btns {
        flex-direction: row !important;
    }
    .collobotationSection__inner {
        flex-direction: column;
    }
    .collobotationSection__images div:first-child img {
        display: none;
    }
    .yogaClubMain__subtitle {
        width: 60%;
    }
    .yogaClubMain__item {
        width: calc(50% - 10px);
    }
    .yogaClubMain__inner {
        row-gap: 20px;
    }
    .jogaClubJoin__items {
        flex-wrap: wrap;
    }
    .jogaClubJoin__item {
        width: calc(50% - 10px);
    }
}
@media (max-width: 412px) {
    .welcome h1 {
        margin-top: 40px;
        font-size: 60px;
        line-height: 48px;
        width: 95%;
    }
    .welcome__subtitle {
        font-size: var(--small-font-size);
        line-height: 20px;
        width: 90%;
    }
    .section-title {
        font-size: 32px;
    }
    .slider-nav {
        display: none;
    }
    .section-top {
        margin-bottom: 20px;
    }
    .putYourLook__list {
        gap: 10px;
    }
    .putYourLook__item {
        height: 255px !important;
    }
    .putYourLook__item-text {
        bottom: 7px !important;
        height: 32px !important;
    }
    .putYourLook__item-text-arrow {
        right: 10px !important;
    }
    .putYourLook__item-text-arrow img {
        width: 13px;
        height: 13px;
    }
    .putYourLook__item-text-title {
        left: 10px !important;
    }
    .putYourLook__item-text-title h3 {
        font-size: 32px !important;
        line-height: 28px;
    }
    .categories__list {
        display: none;
    }
    .categories__slider {
        display: flex;
    }
    .categories__item {
        width: 100%;
    }
    .categories__item img {
        height: 180px;
        width: 100%;
        -o-object-fit: cover;
             object-fit: cover;
    }
    .advantages__first {
        gap: 10px;
    }
    .advantages__first-img {
        height: 220px;
    }
    .advantages__first-subtitle {
        font-size: var(--small-font-size);
        line-height: 15px;
        margin-bottom: 20px;
    }
    .advantages__first-title {
        font-size: 60px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    .advantages__first-content {
        padding: 60px 10px;
    }
    .advantages__first-text {
        width: 90%;
    }
    .advantages__first-content a {
        margin-top: 20px;
    }
    .advantages__second {
        gap: 10px;
    }
    .advantages__second-item span {
        margin-bottom: 45px;
        line-height: 48px;
    }
    .advantages__second-item p {
        font-size: var(--small-font-size);
    }
    .advantages__second-item {
        width: calc(51% - 10px) !important;
        padding: 10px;
        justify-content: space-between;
    }
    .advantages__second-item:nth-last-child(2) {
        width: calc(51% - 10px) !important;
    }
    .advantages__second-item:last-child {
        width: 100% !important;
    }
    .slider-news__item img {
        height: 135px;
    }
    .slider-news__item h3 {
        font-size: var(--small-font-size);
        line-height: 15px;
    }
    .join-us__content-subtitle {
        font-size: var(--small-font-size);
        line-height: 15px;
    }
    .join-us__content-title {
        font-size: 60px;
        line-height: 48px;
        margin: 20px 0;
    }
    .join-us__inner {
        padding: 60px 10px;
    }
    .join-us__content-text {
        font-size: var(--small-font-size);
        line-height: 19px;
        width: 90%;
    }
    .join-us__content-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .join-us__content-buttons a {
        width: 100%;
        text-align: center;
    }
    .join-us__slider {
        margin-top: 40px;
    }
    .join-us__inner img {
        height: 167px;
    }
    .join-us__slider-author {
        font-size: var(--small-font-size);
        line-height: 15.4px;
        margin-top: 10px;
    }
    .join-us__slider-author span {
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
    }
    .ourMembers img {
        height: 135px;
    }
    .ourMembers__content h4 {
        font-size: var(--small-font-size);
        line-height: 15px;
    }
    .ourMembers__content {
        margin-top: 10px;
    }
    .ourMembers__content a {
        margin-top: 20px;
        font-size: var(--small-font-size);
        line-height: 18px;
    }
    .partners__img {
        height: 220px;
    }
    .partners__inner {
        gap: 10px;
    }
    .partners__content-wrapper h2 {
        font-size: 60px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    .partners__content-wrapper h4 {
        font-size: var(--small-font-size);
        line-height: 15px;
    }
    .partners__content-wrapper {
        width: 100%;
    }
    .partners__content {
        padding: 90px 10px;
    }
    .partners__content-wrapper p {
        font-size: var(--small-font-size);
        line-height: 19px;
        margin-bottom: 24px;
    }
    .partners__content-wrapper a {
        display: inline-block;
    }
    .catalogPage__filters {
        display: none;
    }
    .catalogPage__filters-count span {
        border: none;
    }
    .catalogPage__count {
        justify-content: flex-start;
    }
    .catalogPage .section-title {
        font-size: 60px;
    }
    .buttonGoTop {
        width: 40px;
        height: 40px;
        bottom: 20px;
    }
    .catalogPage__products {
        margin-bottom: 80px;
    }
    .catalogPage__products-container {
        grid-template-columns: 1fr;
    }
    .breadcrumbs {
        margin: 20px 0;
        gap: 2px;
    }
    .breadcrumbs__item {
        line-height: 16px;
    }
    .productCard__img {
        height: 468px;
    }
    .catalogPage__count span {
        font-size: var(--small-font-size);
    }
    .productCard__sizes-item {
        width: calc(50% - 8px);
    }
    .productCard__features-content {
        font-size: var(--small-font-size);
    }
    .basketPage__item-img {
        width: 100%;
        height: 100%;
    }
    .basketPage__wrapper {
        gap: 20px;
    }
    .basketPage .section-title {
        line-height: 33px;
    }
    .orderPage__numtitle {
        font-size: 16px;
        position: relative;
        padding-left: 50px;
    }
    .orderPage .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .orderPage__numtitle::before {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .orderPage__userinfo input,
    .orderPage__userinfo div {
        width: 100%;
    }
    .orderPage__userinfo h2 {
        margin-bottom: 10px;
    }
    .orderPage__delivery-type {
        width: 100%;
    }
    .orderPage__address {
        padding: 40px 0;
    }
    .orderPage__address h2 {
        padding: 0px 0px 0 50px;
        margin-left: 40px;
    }
    .orderPage__comment h2 {
        padding-left: 0;
    }
    .orderPage__info-helpWrapper {
        text-align: center;
    }
    .orderPage__info-help h4 {
        font-size: var(--small-font-size);
    }
    .orderPage__total {
        margin-top: 40px;
    }
    .contactsPage__content h2 {
        text-align: center;
    }
    .contactsPage__info {
        align-items: center;
    }
    .contactsPage__info li {
        font-size: var(--small-font-size);
    }
    .contactsPage__links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .contactsPage__bottom a {
        width: 80%;
        margin: 0 auto;
        margin-top: 20px;
    }
    .contactsPage__content h2 {
        font-size: 60px;
    }
    .deliveryPay__topContent-title {
        font-size: 60px;
        line-height: 48px;
    }
    .deliveryPay__topContent-img {
        height: 490px;
        margin: 20px 10px;
    }
    .deliveryPay .deliveryesList {
        flex-direction: column;
    }
    .deliveryPay .deliveryesList__item {
        width: 100%;
    }
    .deliveryPay .deliveryesList__item-price {
        gap: 10px;
    }
    .paymentMethods__leftside {
        height: 220px;
    }
    .paymentMethods__inner {
        gap: 10px;
    }
    .paymentMethods__banks img {
        width: 58px;
        height: 58px;
    }
    .paymentMethods__banks {
        right: 10px;
        bottom: 10px;
    }
    .paymentMethods__side {
        border-radius: 12px;
    }
    .paymentMethods__leftside > img {
        -o-object-position: 0 -50px;
             object-position: 0 -50px;
    }
    .paymentMethods__rightside {
        padding: 20px;
    }
    .paymentMethods__rightside h2 {
        font-size: 60px;
        margin-top: 40px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    .paymentMethods__rightside p {
        width: 100%;
    }
    .paymentMethods__rightside .paymentMethodsList {
        margin-bottom: 100px;
    }
    .deliveryPay .faqPage h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .deliveryPay .deliveryesList {
        gap: 10px;
    }
    .blogPage .slider-news__item {
        width: calc(50% - 10px);
    }
    .blogPage .slider-news__item a {
        font-size: var(--small-font-size);
    }
    .blogPage .slider-news__item span {
        padding: 5px 10px;
    }
    .blogPage .section-title {
        font-size: 60px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    .blogPage .tab-content {
        margin-top: 20px;
    }
    .articlePage__info-title,
    .articlePage__content h2 {
        font-size: 50px;
        line-height: 48px;
    }
    .articlePage__content img {
        max-height: 350px;
        margin: 20px 0;
    }
    .articlePage__info-title,
    .articlePage__content h2 {
        margin-top: 20px;
    }
    .articlePage__content p {
        font-size: var(--small-font-size);
        line-height: 19px;
    }
    .lookBookPage__item {
        width: 100%;
    }
    .lookBookPage__item img {
        height: 490px;
    }
    .lookBookPage__item span {
        font-size: var(--small-font-size);
        margin: 15px 0;
    }
    .gallery__block {
        grid-template-areas: "area1    area1" "area2 area3" "area4    area5" "area6 area6" "area7 area7" "area8 area9" "area10 area11" "area13 area13" "area12 area12";
        gap: 10px;
    }
    .lookbook-mobileSlider {
        display: block;
    }
    .lookbookProducts {
        display: none;
    }
    .aboutBrandTop__item {
        display: none;
    }
    .aboutBrandTop__item:nth-child(1) {
        display: unset;
        height: 490px;
        width: 100%;
    }
    .brandValuation__item h4, .brandValuation__item p {
        font-size: var(--small-font-size);
        line-height: 20px;
    }
    .certification__item {
        height: 220px;
    }
    .certification__mark {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }
    .certification__content {
        height: unset;
        padding: 60px 15px;
    }
    .certification__content h2 {
        font-size: 55px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    .manufacture__main .section-title {
        font-size: 60px;
        line-height: 60px;
    }
    .manufacture__main .section-title {
        margin-bottom: 20px;
    }
    .manufacture__item div p {
        font-size: var(--small-font-size);
        line-height: 20px;
    }
    .manufacture__item div {
        margin-bottom: 0;
    }
    .manufacture__item {
        padding: 20px 30px;
    }
    .manufacture__item2 {
        background-position: revert;
    }
    .manufacture__main {
        padding: 60px 15px;
    }
    .partnersList__item {
        width: calc(33.3333333333% - 14px);
        height: 100px;
    }
    .partnersList .main-title {
        margin-bottom: 20px;
    }
    .partnersList__inner {
        margin-top: 40px;
    }
    .becomePartner__main h2 {
        font-size: 60px;
        line-height: 48px;
    }
    .becomePartner__img {
        display: none;
    }
    .becomePartner__img:nth-child(1) {
        width: 100%;
        height: 470px;
        display: unset;
    }
    .yogaClubMain__subtitle {
        width: 100%;
    }
    .yogaClubMain__inner {
        margin-top: 20px;
    }
    .yogaClubMain__inner {
        gap: 10px;
    }
    .jogaClubJoin__mainImageList div:first-child img:nth-child(1), .collobotationSection__images div:first-child img:nth-child(1) {
        height: 220px !important;
    }
    .collobotationSection__mainContent {
        padding: 30px 10px;
    }
    .jogaClubJoin__mainContent h2, .collobotationSection__mainContent h2 {
        font-size: 40px;
        line-height: 40px;
    }
    .jogaClubJoin__mainContent p {
        margin-bottom: 20px;
    }
    .collobotationSection__btns {
        flex-direction: column !important;
        gap: 10px;
    }
    .jogaClubJoin__itemTitle {
        font-size: var(--small-font-size);
    }
    .jogaClubJoin__item {
        padding: 20px;
    }
    .jogaClubJoin__items {
        gap: 10px;
    }
    .jogaClubJoin__main, .collobotationSection__inner {
        gap: 10px;
    }
}
@media (max-width: 320px) {
    .welcome h1 {
        font-size: 55px;
        width: 100%;
        margin-bottom: 20px;
    }
    .putYourLook__item {
        height: 216px !important;
    }
    .advantages__first-title {
        font-size: 52px;
        line-height: 42px;
    }
    .advantages__first-text {
        width: 100%;
    }
    .advantages__first-content {
        padding: 40px 20px;
    }
    .advantages__first-text {
        font-size: var(--small-font-size);
        margin: 5px 0;
    }
    .advantages__second {
        gap: 6px;
    }
    .advantages__second-item {
        width: calc(52% - 9px) !important;
    }
    .advantages__second-item p {
        font-size: 12px;
        line-height: 18px;
    }
    .advantages__second-item span {
        font-size: 55px;
        margin-bottom: 30px;
    }
    .slider-news__item a {
        font-size: var(--small-font-size);
    }
    .section-title {
        font-size: 29px;
    }
    .section-top {
        margin-bottom: 10px;
    }
    .basketPage__item-info-configuration {
        gap: 5px;
    }
    .orderPage__userinfo,
    .orderPage__delivery,
    .orderPage__comment {
        padding: 30px;
    }
    .orderPage__address p {
        padding: 0 30px 30px 30px;
    }
    .orderPage__userinfo,
    .orderPage__delivery-types {
        gap: 10px;
    }
    .orderPage__address h2 {
        margin-left: 30px;
    }
    .orderPage__numtitle,
    .orderPage__address h2 {
        padding-left: 45px;
    }
    .orderPage__info-link {
        padding: 20px;
    }
    .contactsPage__links {
        gap: 15px;
    }
    .contactsPage__content {
        padding: 60px 25px;
    }
    .deliveryPay__topContent-title {
        font-size: 50px;
    }
    .deliveryPay .deliveryesList__item-list li {
        font-size: var(--small-font-size);
    }
    .deliveryPay .deliveryesList__item-price span {
        font-size: 16px;
    }
    .paymentMethods__rightside h2 {
        font-size: 50px;
    }
    .articlePage__content h2 {
        font-size: 32px !important;
        line-height: 32px;
    }
    .lookBookPage__item img {
        height: 400px;
    }
    .aboutBrandTop__subtitle {
        margin-bottom: 20px;
    }
    .aboutBrandTop__item:nth-child(1) {
        height: 490px;
    }
    .section-title {
        line-height: 32px;
    }
    .certification__img {
        height: 340px;
    }
    .certification__content h2 {
        font-size: 46px;
        line-height: 40px;
    }
    .certification__content {
        padding: 60px 5px;
    }
    .certification__content div button {
        padding: 25px 13px;
    }
    .certification__content p {
        margin-bottom: 20px;
        font-size: var(--small-font-size);
        line-height: 20px;
    }
    .manufacture__item a {
        width: 100%;
        text-align: center;
    }
    .becomePartner__main h2 {
        font-size: 50px;
    }
    .becomePartner__main {
        margin-bottom: 10px;
    }
    .partnersList__inner {
        margin-top: 20px;
    }
    .partnersList__item {
        height: 80px;
    }
}
.footer {
    padding-top: 45px;
    background: #000000;
}
.footer__menu-mobile {
    display: none;
    width: 100%;
}
.footer__menu-mobile-item {
    border-bottom: 1px solid var(--color-main-gray);
}
.footer__menu-mobile-item p {
    text-align: left;
    font-size: var(--small-font-size);
    text-transform: uppercase;
    width: 100%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    padding: 20px 0;
}
.footer__menu-mobile-item .menu-mobile-active::before {
    content: "";
    position: absolute;
    right: 10px;
    width: 8px;
    height: 8px;
    border: solid var(--color-main-gray);
    border-width: 0 2px 2px 0;
    transform: rotate(-135deg);
}
.footer__menu-mobile-item .menu-mobile-unactive::after {
    content: "";
    position: absolute;
    right: 10px;
    width: 8px;
    height: 8px;
    border: solid var(--color-main-gray);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.footer__menu-mobile-item ul {
    margin: 20px 0;
    display: none;
    text-align: left !important;
}
.footer__menu-mobile-item ul li {
    margin: 10px 0;
    font-size: var(--small-font-size);
    line-height: 20px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px 20px;
    grid-template-areas: 
        "logo . socials" 
        "shops menu subscribe" 
        "telegram menu subscribe"
        ". menu subscribe"
        ". menu subscribe";
    width: 100%;
    color: var(--color-white-text);
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .footer__inner {
        grid-template-columns: 1fr max-content;
        grid-template-areas: 
            "logo socials" 
            "shops menu" 
            "telegram menu"
            "subscribe menu" 
            ". searchshop";
    }
}
@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "logo" 
            "socials" 
            "shops" 
            "subscribe" 
            "mobile-menu" 
            "searchshop" 
            "telegram";
        width: 100%;
        max-width: 355px;
        gap: 30px;
        margin: 0 auto;
    }
}

.footer__colupmn-menu {
    grid-area: menu;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
@media (max-width: 768px) {
    .footer__colupmn-menu {
        display: none;
    }
}

.footer__colupmn-menu-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    width: 100%;
    max-width: 600px;
}

.footer__telegram {
    grid-area: telegram;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    gap: 18px;
}
.footer__telegram_shops {
    grid-area: shops / telegram;
}
@media (max-width: 768px) {
    .footer__telegram {
        align-items: center;
        border-top: 1px solid var(--color-main-gray);
        padding-top: 20px;
    }
}

.footer__telegram h5 {
    display: none;
}
@media (max-width: 768px) {
    .footer__telegram h5 {
        order: 0;
        display: block;
        font-family: var(--font-family-text);
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.1;
        text-transform: uppercase;
        color: var(--color-white-text);
        text-align: center;
    }
}

.footer__telegram p {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-light-gray-text);
}
@media (max-width: 1024px) {
    .footer__telegram p {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .footer__telegram p  {
        order: 1;
        text-align: center;
    }
}

.footer__telegram a {
    display: inline-block;
    border-color: var(--color-main-gray);
}
.footer__telegram a:hover {
    color: var(--color-white-text);
}
@media (max-width: 768px) {
    .footer__telegram a  {
        order: 2;
    }
}

.footer__logo {
    grid-area: logo;
}

.footer__logo img {
    display: block;
}
@media (max-width: 768px) {
    .footer__logo img {
        max-width: 40px;
        margin: 0 auto;
    }
}

.footer__socials {
    grid-area: socials;
}

.footer__socials-container {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 20px 30px;
}
@media (max-width: 1024px) {
    .footer__socials-container {
        justify-content: flex-end;
    }
}
@media (max-width: 768px) {
    .footer__socials-container {
        gap: 15px;
        justify-content: center;
    }
}

.footer__socials a {
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-gray);
    border-radius: 50%;
    transition: 0.3s;
}
.footer__socials a:hover {
    background: #e0e0e0;
}
@media (max-width: 768px) {
    .footer__socials a {
        width: 22px;
        height: 22px;
    }
}

.footer__socials img {
    width: 20px;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
@media (max-width: 768px) {
    .footer__socials img {
        max-width: 12px;
    }
}

.footer__shops {
    grid-area: shops;
    display: flex;
    flex-direction: column;
}

.footer__shops-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media (max-width: 768px) {
    .footer__shops-links {
        padding-top: 10px;
    }
}

.footer__shops-links img {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
         object-fit: contain;
}

.footer__shops-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-decoration: none;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: 0.3s;
}
.footer__shops-links a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer__shops-links a {
        font-size: 14px;
    }
}

.footer__shops .btn {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .footer__shops .btn {
        width: 100%;
        text-align: center;
    }
}

.footer__shops p {
    font-size: var(--main-font-size);
    line-height: 25px;
    color: var(--color-light-gray-text);
}

.footer__subscribe {
    grid-area: subscribe;
    width: 100%;
}
@media (max-width: 1024px) {
    .footer__subscribe {
        max-width: 245px;
    }
}
@media (max-width: 768px) {
    .footer__subscribe {
        max-width: none;
        padding-top: 15px;
    }
}

.footer__subscribe p {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .footer__subscribe p {
        font-size: 14px;
        text-align: center;
    }
}

.footer__subscribe-form {
    display: flex;
    gap: 5px;
}
@media (max-width: 1024px) {
    .footer__subscribe-form {
        flex-direction: column;
        gap: 20px;
    }
    .footer__subscribe-form a {
        width: 100%;
        text-align: center;
    }
}

.footer__contacts span {
    padding-right: 5px;
}

.footer__contacts a {
    font-weight: 700;
}

.footer__search {
    grid-area: searchshop;
    display: none;
}
.footer__search_desctop {
    grid-area: none;
    display: block;
}
@media (max-width: 1024px) {
    .footer__search {
        display: block;
        width: 100%;
        max-width: calc(50% - 25px);
        margin-left: auto;
    }
    .footer__search_desctop {
        display: none;
    }
}
@media (max-width: 768px) {
    .footer__search {
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        max-width: 210px;
        margin: 0 auto;
    }
    .footer__search_desctop {
        display: none;
    }
    
    .footer__search button {
        width: 100%;
    }
}

.footer__search a {
    display: inline-block;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-transform: uppercase;
    border-color: var(--color-main-gray);
    color: var(--color-white-text);
    padding: 22px 46px;
}
.footer__search a:hover {
    color: var(--color-white-text);
}

.footer__search p {
    font-size: var(--main-font-size);
    line-height: 25px;
    margin-bottom: 40px;
    width: 70%;
}
@media (max-width: 1024px) {
    .footer__search p {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .footer__search p {
        font-size: var(--small-font-size);
        text-align: center;
        margin-bottom: 20px;
    }
}

.footer__payments {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .footer__payments {
        justify-content: center;
    }
}

.footer__payments div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 26px;
    border-radius: 3px;
    border: 1px solid var(--color-main-gray);
    padding: 0;
}

.footer__payments img {
    display: block;
    width: auto;
    height: auto;
    max-height: 90%;
    object-fit: contain;
}

.footer__menu h4 {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-white-text);
    margin-bottom: 40px;
}

.footer__menu ul {
    display: flex;
    flex-flow: column nowrap;
    gap: 15px;
}

.footer__menu li {
    margin: 0;
}

.footer__menu li a {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    opacity: 1;
    color: var(--color-white-text);
    transition: all .2s ease;
}
.footer__menu li span + a {
    font-family: var(--font-family-text-semibold);
}
.footer__menu li a:hover {
    opacity: .8;
}

.footer__menu li span {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-white-text);
}

.footer__bottom {
    padding: 0 20px;
    background: #000;
}
@media (max-width: 768px) {
    .footer__bottom {
        padding-top: 40px;
    }
}

.footer__subscribe label {
    font-size: var(--main-font-size);
    line-height: 25px;
    margin-bottom: 20px;
    display: block;
}
.footer__subscribe-email {
    background: unset;
    border: unset;
    border-bottom: 1px solid rgba(107, 107, 107, 0.6980392157);
    margin-right: 5px;
    color: #fff;
    flex: 1;
    font-size: var(--main-font-size);
    padding-right: 20px;
}

.footer__subscribe-form {
    display: flex;
    align-items: center;
}

.footer__subscribe button,
.footer__subscribe input {
    height: 51px;
}

.footer__searchshop p {
    font-size: var(--main-font-size);
    line-height: 25px;
    padding: 40px 0;
}

.footer__searchshop button {
    width: 60%;
}

.footer__copyright {
    border-top: 1px solid var(--color-main-gray);
    height: 60px;
    color: var(--color-gray-text);
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.footer__copyright p {
    flex: 0 0 auto;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-gray-text);
}
@media (max-width: 768px) {
    .footer__copyright p {
        font-size: 10x;
    }
}

.footer__copyright-links {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 600px;
}
@media (max-width: 1024px) {
    .footer__copyright-links {
        justify-content: center;
        gap: 20px;
        max-width: none;
    }
}

.footer__copyright-links a {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-gray-text);
}
@media (max-width: 768px) {
    .footer__copyright-links a {
        font-size: 10px;
        text-decoration: underline;
    }
    .footer__copyright-links a:hover {
        text-decoration: none;
    }
}

.footer__copyright-links div {
    flex: 1;
    text-align: left;
}
@media (max-width: 1024px) {
    .footer__copyright-links div {
        flex: 0 0 auto;
    }
}

.footer__text {
    color: var(--color-light-gray-text);
    line-height: 25.2px;
}
.footer__question button {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .footer__subscribe div,
    .footer__subscribe .btn,
    .footer__subscribe form {
        width: 100%;
    }
    .footer__copyright {
        height: 100%;
        flex-direction: column;
        padding: 20px 0;
    }
    .footer__copyright-links {
        flex-direction: column;
        gap: 10px;
        text-transform: uppercase;
    }
    .footer__shops-links {
        justify-content: center;
        align-items: center;
    }
    .footer__shops-links a {
        width: -moz-fit-content;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .footer__menu {
        display: none;
    }
    .footer__menu-mobile {
        grid-area: mobile-menu;
        display: block;
    }
}
@media (max-width: 320px) {
    .footer__socials img {
        width: 11px;
        height: 11px;
    }
    .footer__socials a {
        padding: 8;
    }
    .footer__socials {
        gap: 15px;
    }
    .footer .container {
        width: 100%;
    }
    .footer {
        padding-top: 20px;
    }
    .footer__payments div {
        padding: 5px 15px;
    }
    .footer__payments img {
        width: 18px;
        height: 18px;
    }
}




/**
TODO: загрузить через scss
*/
.deliveryesList__item-content {
    flex: 1;
    font-size: var(--main-font-size);
    line-height: 25px;
}

.deliveryesList__item-content ul, 
.deliveryesList__item-content ol {
    padding-left: 17px;
    flex-grow: 1;
}

.deliveryesList__item-content ul li, 
.deliveryesList__item-content ol li {
    width: 100%;
    max-width: 500px;
    list-style: unset;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .deliveryesList__item-content ul li, 
    .deliveryesList__item-content ol li {
        font-size: 14px;
    }
}

.basket-icon {
    position: relative;
}

.basket-icon img {
    position: relative;
    z-index: 0;
}

.basket-icon span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 10px;
    line-height: 20px;
}
@media (max-width: 768px) {
    .header__profile-link.basket-icon span {
        display: flex;
        line-height: 16px;
    }
}

.orderPage__info-link {
    margin-bottom: 2px;
}

.orderPage__section.bx-selected {
    border: none;
}

.orderPage__section.bx-step-completed {
    border: none;
}

.orderPage__section {
    background: #fff;
    border-radius: 5px;
    padding: 40px;
}

.orderPage__section .orderPage__title {
    background: transparent;
    padding: 0;
    overflow: auto;
    cursor: pointer;
}

.orderPage__section .orderPage__title:hover a.bx-soa-editstep {
    border-bottom-color: transparent;
}

.orderPage__section .bx-soa-section-content {
    font-family: var(--font-family-text);
    background: transparent;
    padding: 10px 0 0;
    overflow: unset;
}

.orderPage__section .bx-soa-section-content strong {
    font-family: var(--font-family-text-semibold);
    font-weight: 400;
}

.orderPage__section .bx-soa-pp-company-selected {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.orderPage__section .bx-soa-section-content .bx-soa-more-btn {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.orderPage__section .bx-soa-section-content .btn {
    display: inline-block;
    border: 1px solid var(--color-grey-lines);
    background-color: var(--color-white-background);
    color: var(--color-text);
    padding: 22px 30px;
}

.orderPage__section .bx-soa-section-content .form-check-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 20px;
    margin-bottom: 20px;
}

.orderPage__section .bx-soa-section-content .form-control {
    border: none;
    background-color: transparent;
    padding: 0;
}

.orderPage__section .bx-soa-section-content .form-control .bx-ui-sls-container {
    display: block;
    width: 100%;
    height: 65px;
}

.orderPage__section .bx-soa-section-content .form-control .bx-ui-combobox-container {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
    height: 65px;
    background-color: var(--color-grey-background2);
    border-radius: 5px;
}

.orderPage__section .bx-soa-section-content .form-control .bx-ui-sls-container input {
    height: 100%;
    border: 2px solid transparent !important;
    border-radius: 5px !important;
    font-size: var(--small-font-size) !important;
    padding: 22px 30px !important;
}

.orderPage__section .bx-soa-section-content .form-control .bx-ui-sls-container input:active,
.orderPage__section .bx-soa-section-content .form-control .bx-ui-sls-container input:focus {
    border: 2px solid #0060df !important;
}

.orderPage__section .bx-soa-section-content .form-control .bx-ui-sls-container input.bx-ui-sls-route {
    background: var(--color-grey-background2) !important;
    color: var(--color-gray-text);
}

.orderPage__section .bx-soa-section-content .form-control .dropdown-icon {
    top: 50%;
    left: 10px;
    z-index: 10;
    transform: translateY(-50%);
}

.orderPage__section .bx-soa-section-content .form-control .bx-ui-combobox-toggle {
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 100%;
    background: transparent;
    margin: 0;
}

.orderPage__section .bx-soa-section-content .form-control .bx-ui-combobox-toggle::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><polygon points="0,0 10,0 5,10" fill="000000"/></svg>');
    display: block;
    width: 12px;
    height: 12px;
}

.orderPage__section .bx-soa-section-content .form-control .bx-combobox-fake-as-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    padding: 5px 30px;
}

.orderPage__section .bx-soa-section-content .form-control .dropdown-fade2white {
    display: none;
}

.orderPage__section .bx-soa-section-content .form-control.dropdown-block {
    border: 1px solid transparent;
    border-radius: 5px;
    box-shadow: none;
    padding: 0;
}

.bx-sls .bx-ui-sls-pane {
    top: 100%;
}

.orderPage__section .bx-soa-section-content .form-control .bx-ui-sls-clear {
    top: 50%;
    right: 0px;
    z-index: 10;
    margin: 0px;
    transform: translateY(-50%);
}

.orderPage__section .bx-soa-section-content .bx-soa-location-input-container input {
    /* height: 65px; */
    border: 2px solid var(--color-grey-background2);
    border-radius: 5px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
    background-color: var(--color-grey-background2);
    padding: 22px 30px;
}

.orderPage__section .bx-soa-pp-company-block {
    display: block;
}

.orderPage__section .bx-soa-section-content .form-group {
    margin-bottom: 20px;
}

.orderPage__section .bx-soa-section-content .bx-soa-tooltip .tooltip-inner {
    display: inline-block;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 2px;
}

.orderPage__section .bx-soa-section-content .bx-ui-sls-tree-trunk {
    padding: 0 0 10px 30px;
}

.orderPage input {
    padding: 5px 30px;
}

.orderPage__section .bx-soa-section-content .bx-soa-custom-label {
    grid-column: 1/3;
    display: block;
    margin-bottom: 10px;
}

.orderPage__section .bx-soa-section-content .form-check {
    position: relative;
    width: auto;
    padding: 0;
    transition: 0.2s;
}

.orderPage__section .bx-soa-section-content .form-check input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
}

.orderPage__section .bx-soa-section-content .form-check label {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 5px;
    border: 1px solid var(--color-grey-lines);
    padding: 20px;
    cursor: pointer;
}

.orderPage__section .bx-soa-section-content .form-check label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10.5L10 14L16 7M21 11C21 16.5228 16.5228 21 11 21C5.47715 21 1 16.5228 1 11C1 5.47715 5.47715 1 11 1C16.5228 1 21 5.47715 21 11Z" stroke="%23DADADA"/></svg>');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.orderPage__section .bx-soa-section-content .form-check input:checked + label {
    border-color: #000000;
}

.orderPage__section .bx-soa-section-content .form-check input:checked + label::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10.5L10 14L16 7M21 11C21 16.5228 16.5228 21 11 21C5.47715 21 1 16.5228 1 11C1 5.47715 5.47715 1 11 1C16.5228 1 21 5.47715 21 11Z" stroke="%237DC4A4"/></svg>');
}

.orderPage__section .bx-soa-pp-item-container > .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.orderPage__section input[type="checkbox"].bx-soa-pp-company-checkbox {
    top: 0;
    left: 0;
    z-index: 0;
    width: 0;
    height: 0;
    opacity: 0;
}

.orderPage__section .bx-soa-pp-item-container > .row .bx-soa-pp-company {
    cursor: pointer;
}

.orderPage__section .bx-soa-pp-item-container > .row .bx-soa-pp-company::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 100;
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10.5L10 14L16 7M21 11C21 16.5228 16.5228 21 11 21C5.47715 21 1 16.5228 1 11C1 5.47715 5.47715 1 11 1C16.5228 1 21 5.47715 21 11Z" stroke="%23DADADA"/></svg>');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.orderPage__section .bx-soa-pp-item-container > .row .bx-soa-pp-company.bx-selected::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10.5L10 14L16 7M21 11C21 16.5228 16.5228 21 11 21C5.47715 21 1 16.5228 1 11C1 5.47715 5.47715 1 11 1C16.5228 1 21 5.47715 21 11Z" stroke="%237DC4A4"/></svg>');
}

.orderPage__section .bx-soa-pp-item-container > .row .bx-soa-pp-company .bx-soa-pp-company-graf-container {
    border-radius: 5px;
    border-color: var(--color-grey-lines);
}

.orderPage__section .bx-soa-pp-item-container > .row .bx-soa-pp-company.bx-selected .bx-soa-pp-company-graf-container {
    border-color: #0060df;
}

.orderPage__section .bx-soa-pp-desc-container .bx-soa-pp-company {
    border: 2px solid var(--color-grey-lines);
    border-radius: 5px;
    background-color: transparent;
    padding: 10px 30px;
}

.orderPage__section.bx-selected .orderPage__title {
    background: transparent;
    padding: 0;
    overflow: auto;
}

.orderPage__section .orderPage__title .orderPage__numtitle {
    min-height: auto;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 0;
    margin-bottom: 10px;
}

.orderPage__section .orderPage__title .orderPage__update {
    margin-bottom: 10px;
}

.orderPage__section .bx-soa-section-content {
    padding: 0;
}

.orderPage__section .bx-soa-coupon-label {
    margin-bottom: 5px;
}

.orderPage__section .bx-soa-tooltip.bx-soa-tooltip-coupon {
    position: absolute;
    left: calc(100% - 10px);
    bottom: calc(100% - 10px);
}

.orderPage__section .bx-soa-coupon-input {
    top: 0;
}

.orderPage__section .bx-soa-coupon-input input[type="text"].form-control {
    height: auto;
    border: 2px solid var(--color-grey-background2);
    border-radius: 5px;
    background-color: var(--color-grey-background2);
    padding: 22px 30px;
}

.orderPage__section .bx-soa-section-content textarea.form-control {
    display: block;
    width: 100%;
    border: 2px solid var(--color-grey-background2);
    border-radius: 5px;
    background-color: var(--color-grey-background2) !important;
    padding: 22px 30px;
}

.orderPage__section .bx-soa-customer-field label {
    display: block;
    margin-bottom: 10px;
}

.orderPage__numtitle::before {
    content: counter(heading);
    counter-increment: heading;
}

.orderPage__item_title {
    order: 0;
    grid-row: 1/2;
}

.orderPage__item_user-info {
    order: 1;
    grid-row: 1/3;
}

.orderPage__item_result {
    order: 2;
    grid-row: 1/3;
}

.orderPage__item_info {
    order: 3;
    grid-row: 2/3;
}

.orderPage__inner {
    grid-template-areas: none;
    grid-template-rows: min-content 1fr;
}

@media (max-width: 768px) {
    .orderPage__inner {
        grid-template-columns: 1fr;
    }

    .orderPage__item {
        grid-row: unset;
    }
}




.faqList__item.active p {
	white-space: normal;
}

.catalog-slider .swiper-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.orderPage__totalSlider-title span {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: right;
    text-transform: uppercase;
    color: var(--color-text);
    white-space: nowrap;
}

.orderPage__section .orderPage__properties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding-top: 10px;
    margin-bottom: 10px;
}

.orderPage__total-policy {
    position: relative;
}

.orderPage__total-policy input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.orderPage__total-policy .main-user-consent-request-announce-link::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10.5L10 14L16 7M21 11C21 16.5228 16.5228 21 11 21C5.47715 21 1 16.5228 1 11C1 5.47715 5.47715 1 11 1C16.5228 1 21 5.47715 21 11Z" stroke="%23DADADA"/></svg>');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    float: left;
}

.orderPage__total-policy input:checked + .main-user-consent-request-announce-link::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10.5L10 14L16 7M21 11C21 16.5228 16.5228 21 11 21C5.47715 21 1 16.5228 1 11C1 5.47715 5.47715 1 11 1C16.5228 1 21 5.47715 21 11Z" stroke="%237DC4A4"/></svg>');
}

.orderPage__section .orderPage__properties .form-group {
    margin: 0;
}
.orderPage__section .orderPage__properties .form-group[data-property-id-row="30"] {
    grid-column: 1/3;
}
@media (max-width: 768px) {
    .orderPage__section .orderPage__properties .form-group[data-property-id-row="30"] {
        grid-column: unset;
    }
}

.orderPage__section .orderPage__properties .form-group[data-property-id-row="30"] .tooltip-inner {
    max-width: 100%;
}

.orderPage__section .orderPage__properties .form-control {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 5px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: var(--color-text);
    background: var(--color-grey-background2);
    padding: 22px 30px;
}
.orderPage__section .orderPage__properties .form-control:focus {
    outline: 0;
	box-shadow: none; 
	border-color: var(--color-pink);
}

.orderPage__section .alert-danger {
    border-radius: 5px;
}

.orderPage__total-all span:last-child {
    font-size: 18px !important;
}

.orderPage__total-wrapper.total-fixed {
    position: fixed;
    top: 0;
}

.orderPage-confirm a {
    border-bottom: 1px dotted #000000;
}

.orderPage-confirm a:hover {
    border-color: transparent;
}

.orderPage-confirm__order {
    border-bottom: 1px solid var(--color-grey-lines);
    font-size: var(--main-font-size);
    line-height: 1.6;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.orderPage-confirm__no-personal {
    border-bottom: 1px solid var(--color-grey-lines);
    font-size: 14px;
    line-height: 1.6;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.orderPage-confirm__pay-system-title {
    display: block;
    margin-bottom: 10px;
}

.orderPage-confirm__pay-system-title h3 {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.orderPage-confirm__pay-system-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 10px;
}

.orderPage-confirm__pay-system-services form {
    padding: 10px 0;
}

.orderPage-confirm__pay-system-services form input[type="submit"] {
    background-color: var(--color-pink);
    color: var(--color-white-text);
    border: 1px solid var(--color-pink);
    margin-bottom: 10px;
}

.orderPage-confirm__pay-system-services form input[type="submit"]:hover {
    background: unset;
    color: var(--color-text);
    border: 1px solid var(--color-grey-lines);
}

.orderPage__numtitle::before {
    width: 30px;
    height: 30px;
}

@media (max-width: 412px) {
    .orderPage__numtitle::before {
        position: relative;
        top: 0;
        transform: none;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .orderPage__total-wrapper.total-fixed {
        position: relative;
        top: 0;
    }

    .orderPage__section {
        padding: 30px;
    }

    .orderPage__section .bx-soa-section-content .form-check-group {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }

    .orderPage__section .bx-soa-section-content .bx-soa-custom-label {
        grid-column: 1/2;
    }

    .orderPage__section .bx-soa-section-content .form-control .bx-ui-sls-container {
        height: 50px;
    }

    .orderPage__section .bx-soa-section-content .form-control .bx-ui-sls-container input {
        padding: 13px 30px !important;
    }

    .orderPage__section .bx-soa-section-content .bx-soa-location-input-container input {
        padding: 13px 20px;
    }

    .orderPage__section .bx-soa-coupon-input input[type="text"].form-control {
        padding: 13px 20px;
    }

    .orderPage__section .orderPage__properties .form-control {
        padding: 13px 20px;
    }

    .orderPage__section .bx-soa-section-content textarea.form-control {
        padding: 13px 20px;
    }

    .orderPage__section .orderPage__properties {
        grid-template-columns: 1fr;
    }
}

.hidden {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 0 !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.footer {
    position: relative;
    z-index: 10;
}

.alert-success {
    position: relative;
}

.prices-calculator-table {
    display: block;
}

.prices-calculator-table__tab-wrapper {
    position: relative;
    display: block;
}

.prices-calculator-table__tab-nav {
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.prices-calculator-table__tab-nav-item {
    display: block;
    border-radius: 12px;
    font-family: inherit;
    font-size: 18px;
    line-height: 1.4;
    text-transform: uppercase;
    background-color: #F8F8F8;
    color: var(--color-text);
    padding: 24px 30px;
    cursor: pointer;
}

.prices-calculator-table__tab-nav-item.active {
    background-color: var(--color-pink);
}

.prices-calculator-table__tab-nav-media {
    display: none;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.prices-calculator-table__tab-nav-media span {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    border-radius: 12px;
    background-color: #EFEFEF;
    padding: 20px 20px;
}

.prices-calculator-table__tab-nav-media select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.prices-calculator-table__tab-content-item {
    display: block;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
}
@media (max-width: 768px) {
    .prices-calculator-table__tab-content-item {
        font-size: 14px;
    }
}

.prices-calculator-table__tab-content table {
    border: 1px solid #B1B1B1;
    margin-bottom: 20px;
}

.prices-calculator-table__tab-content table th {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}

.prices-calculator-table__tab-content table th,
.prices-calculator-table__tab-content table td {
    border: 1px solid #B1B1B1;
    padding: 12px 15px;
}

@media (max-width: 768px) {
    .prices-calculator-table__tab-nav {
        display: none;
    }

    .prices-calculator-table__tab-nav-media {
        display: block;
    }

    .prices-calculator-table__tab-content table th,
    .prices-calculator-table__tab-content table td {
        font-size: 12px;
        padding: 8px;
    }
}

.blogPage .blog-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px 20px;
}

.blogPage .slider-news__item {
    width: 100%;
}

.slider-news__item img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .blogPage .blog-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .blogPage .blog-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.articlePage {
    width: 100%;
    max-width: 830px;
}

.articlePage {
    padding-top: 0;
}

.container_breadcrumb-full {
    padding: 0 10px;
}



.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    cursor: pointer;
    object-fit: cover;
    overflow: hidden;
}

.gallery__item_left {
    grid-column: 1/3;
}

.gallery__item_right {
    grid-column: 2/4;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery__item img {
        border-radius: 12px;
    }
    
    .gallery__item_right {
        grid-column: 1/3;
    }
}


.zoom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.zoom-popup__wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
}

.zoom-popup__active {
    display: flex;
}

.zoom-popup__close {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 0 0 0 50%;
    cursor: pointer;
}

.zoom-popup__close img {
    display: block;
    width: 30px;
    height: 30px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: var(--color-grey-background2);
    border-radius: 50%;
    padding: 8px;
}

@media (max-width: 768px) {
    .zoom-popup__wrapper {
        padding: 0;
    }
}

.gallery-slider {
    display: block;
}

.gallery-slider__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
}
.gallery-slider__item::-webkit-scrollbar {
    display: none;
}

.gallery-slider__item-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.gallery-slider__item-img img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    margin: 0 auto;
}

.product-card__img img {
    border-radius: 12px;
}

.swiper-wrapper_media {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.slider-nav_media {
    display: none;
}
@media (max-width: 420px) {
    .section-top .slider-nav_media {
        display: none;
    }
}

.swiper-button-next_media {
    display: none;
}

.swiper-button-prev_media {
    display: none;
}

.swiper-wrapper {
    align-items: stretch;
}
.swiper-wrapper .swiper-slide {
    height: auto;
}





.products-filter {
    position: fixed;
    top: 0;
    right: -345px;
    z-index: 999;
    display: block;
    width: 345px;
    height: 100vh;
    background: var(--color-white-background);
    box-shadow: -5.4px 0px 18px rgba(130, 130, 130, 0.1);
    overflow-y: auto;
    transition: all .2s;
}
.products-filter.active {
    right: 0;
}

.products-filter__header {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-grey-lines);
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-text);
    padding: 40px;
}

.products-filter__header-close {
    position: absolute;
    top: calc(50% - 10px);
    right: 40px;
    z-index: 100;
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.products-filter__header-close svg {
    display: block;
    width: 100%;
    height: 100%;
}

.products-filter__items {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    padding: 40px;
}

.products-filter__item-title {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 20px;
}

.products-filter__tools-button {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
}

.products-filter__tools-button-item {
    position: relative;
}

.products-filter__tools-button-item input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
}

.products-filter__tools-button-item label {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 45px;
    border-radius: 6px;
    border: 1px solid var(--color-grey-lines);
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text);
    padding: 5px 10px;
    cursor: pointer;
}
.products-filter__tools-button-item label:hover {
    background-color: var(--color-main-black);
    color: var(--color-white-text)
}
.products-filter__tools-button-item input:checked + label {
    background-color: var(--color-main-black);
    color: var(--color-white-text)
}

.products-filter__tools-button-item_color label {
    width: 30px;
    height: 30px;
    min-height: auto;
    border-radius: 50%;
    border: 1px solid transparent;
    padding: 0;
}
.products-filter__tools-button-item_color label:hover {
    background-color: transparent;
    border-color: var(--color-grey-lines);
}
.products-filter__tools-button-item_color input:checked + label {
    border-color: var(--color-light-gray-text);
    background-color: transparent;
}

.products-filter__tools-button-item_color label img {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.products-filter__tools-button-item_color label span {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #EEEEEE;
}

.products-filter__tools-button-item_size label {
    min-width: 100px;
    min-height: 60px;
    border-radius: 0;
}

.products-filter__tools-accord {
    border-top: 1px solid var(--color-grey-lines);
}
.products-filter__tools-accord:last-child {
    border-bottom: 1px solid var(--color-grey-lines);
}
.products-filter__tools-accord-title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    cursor: pointer
}
.products-filter__tools-accord-title span {
    flex: 1;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
}
.products-filter__tools-accord-title .icon-accord {
    /* transition: all 0.3s; */
}
.products-filter__tools-accord-title .icon-accord path {
    /* transition: all 0.3s; */
}
.products-filter__tools-accord-title.active .icon-accord path:nth-child(2) {
    transform: rotate(90deg);
    transform-origin: center;
}
.products-filter__tools-accord-title.active .icon-accord path:nth-child(1) {
    opacity: 0;
}
.products-filter__tools-accord-content {
    display: none;
    padding-bottom: 20px;
}
.products-filter__tools-accord-content.active {
    display: block;
}
.products-filter__submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 64px;
    border-radius: 6px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-white-text);
    background: var(--color-main-black);
    border: 1px solid var(--color-main-black);
    transition: all .2s;
    cursor: pointer;
}
.products-filter__submit-button:hover {
    background: var(--color-white-background);
    color: var(--color-text);
    border-color: var(--color-grey-lines);
}
.products-filter__reset {
    text-align: center;
}
.products-filter__reset a {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    text-decoration-line: underline;
    color: var(--color-text);
}
.products-filter__reset-group {
    flex: 0 0 100%;
}
.products-filter__reset-group span {
    display: inline-block;
    border-bottom: 1px solid var(--color-main-gray);
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--color-gray-text);
    cursor: pointer;
}
.products-filter__reset-group span:hover {
    border-color: transparent;
}

.products-filter__price-range {
    position: relative;
    width: calc(100% - 18px);
    height: 18px;
}
.products-filter__price-range::before,
.products-filter__price-range::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-main-black);
}
.products-filter__price-range::after {
    width: calc(100% + 18px);
}
.products-filter__price-range-wrapper {
    width: 100%;
}
.products-filter__price-range-wrapper input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0
}
.products-filter__price-range-min,
.products-filter__price-range-max {
    position: absolute;
    top: calc(50% - 9px);
    z-index: 10;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--color-main-black);
    background-color: var(--color-white-background);
    cursor: pointer;
}
.products-filter__price-range-max {
    left: 100%;
}
.products-filter__price-range-min::before,
.products-filter__price-range-max::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-main-black);
}
.products-filter__price-range-info {
    flex: 0 0 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 10px;
}
.products-filter__price-range-info-min,
.products-filter__price-range-info-max {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text);
}

@media (max-width: 412px) {
    .products-filter {
        right: -100%;
        width: 100%;
    }
}


.catalogPage__filters-count > span {
    border: 1px solid var(--color-grey-lines);
    width: -moz-fit-content;
    width: fit-content;
    padding: 15px 20px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 60px;
    cursor: pointer;
}
.catalogPage__filters-count > span::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 2H14" stroke="black" stroke-width="0.9"/><path d="M0 8H13" stroke="black" stroke-width="0.9"/><circle cx="5" cy="2" r="2" fill="black"/><circle cx="10" cy="8" r="2" fill="black"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.product-card {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    height: 100%;
}

@media (max-width: 768px) {
    .product-card {
        max-width: 340px;
    }
}

.partners__content-link {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
}
@media (max-width: 768px) {
    .partners__content-link {
        justify-content: center;
    }
}

.partners__content-link a {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text);
}

.footer__subscribe-form-item {
    flex: 1;
    position: relative;
}
@media (max-width: 1024px) {
    .footer__subscribe-form-item {
        width: 100%;
    }
}

.footer__subscribe-form button {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    text-transform: lowercase;
    color: var(--color-text);
    padding: 5px 32px;
}
.footer__subscribe-form button:hover {
    color: var(--color-white-text);
}
@media (max-width: 1024px) {
    .footer__subscribe-form button {
        width: 100%;
    }
}

.footer__subscribe-form-item input {
    position: relative;
    z-index: 10;
}

.footer__subscribe-form-item.error input[type="text"] {
    border-color: red;
}

.footer__subscribe-form-placeholder {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
    display: block;
    transform: translateY(-50%);
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-grey-lines);
    transition: all .2s;
}

.footer__subscribe-form-item input.active + .footer__subscribe-form-placeholder,
.footer__subscribe-form-item input:focus + .footer__subscribe-form-placeholder {
    top: -18px;
    transform: translateY(0);
    font-size: 12px;
}

.footer__subscribe-form input {
    width: 100%;
    background: unset;
    border: unset;
    border-bottom: 1px solid var(--color-main-gray);
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-white-text);
    padding: 10px 10px 10px 0;
    margin: 0;
}
.footer__subscribe-form input::placeholder {
    color: var(--color-grey-light-text);
}
@media (max-width: 1024px) {
    .footer__subscribe-form input {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .footer__subscribe-form input {
        text-align: center;
    }
}
@media (max-width: 320px) {
    .footer__subscribe-form input {
        margin-right: 0;
        text-align: center;
    }
}

.footer__subscribe-form-wrapper {
    position: relative;
    margin-bottom: 70px;
}
@media (max-width: 1024px) {
    .footer__subscribe-form-wrapper {
        margin-bottom: 0;
    }
}

.footer__subscribe-form-wrapper p {
    position: absolute;
    top: 100%;
    font-size: 14px;
}

.catalogPage__filters-item {
    font-size: var(--main-font-size);
    border-bottom: 1px solid var(--color-grey-lines);
    text-transform: uppercase;
    cursor: pointer;
}

.catalogPage__filters-item a,
.catalogPage__filters-item span {
    width: 100%;
    display: inline-block;
    padding: 30px 20px 30px 0;
}

.registration {
    position: relative;
    width: 100%;
    max-width: 590px;
    border-radius: 12px;
    background-color: var(--color-grey-background2) !important;
    overflow: hidden;
}

.registration__container {
    padding: 50px;
}

.registration__title {
    margin-bottom: 30px;
}

.registration__title h3 {
    font-family: var(--font-family-title);
    font-size: 72px;
    line-height: 80%;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 0;
}

.registration__title_personal h3 {
    text-align: left;
}

.registration__description {
    margin-bottom: 30px;
}

.registration__description p {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--color-text);
    padding: 0px;
    gap: 20px;
    margin: 0;
}

.registration__description_personal p {
    text-align: left;
}

.registration__message {
    display: block;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: left;
    margin-bottom: 10px;
}

.bx-form__info-under-form {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: var(--color-text);
    padding-top: 20px;
}
.bx-form__info-under-form .open-link {
    display: inline-block;
    border-bottom: 1px solid var(--color-main-black);
    cursor: pointer;
}
.bx-form__info-under-form .open-link:hover {
    border-color: transparent;
}
.bx-form__error {
    display: none;
    width: 100%;
    color: red;
    margin-bottom: 10px;
}
.bx-form__error.active {
    display: block;
}
.registration__form-image {
    display: block;
    width: 100%;
    height: 200px;
    object-position: center;
    object-fit: cover;
}
@media (max-width: 768px) {
    .registration {
        max-width: calc(100vw - 20px);
        max-height: 95vh;
    }
    .registration__container {
        padding: 20px 10px;
    }
    .registration__title h3 {
        font-size: 32px;
    }
    .registration__description p {
        font-size: 14px;
        gap: 20px;
    }
}

.bx-form {
    display: block;
}

.bx-form__description-container {
    color: var(--color-gray-text);
}

.bx-form__item {
    order: 10;
    grid-column: 1/3;
    position: relative;
    display: block;
    width: 100%;
}
.bx-form__item_captcha {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
}
.bx-form__item_name {
    order: 0;
    grid-column: 1/2;
}
.bx-form__item_last_name {
    order: 1;
    grid-column: 2/3;
}
.bx-form__item_email {
    order: 2;
}
.bx-form__item_personal_phone {
    order: 3;
}

.bx-form__item_captcha label {
    display: block;
    padding: 10px 0;
}

.bx-form__item-image {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bx-form__item-image button {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    cursor: pointer;
}

.bx-form__item-image img {
    display: block;
    width: 180px;
    height: 64px;
    object-position: center;
    object-fit: contain;
    background-color: #FFFFFF;
}

.bx-form__item-image svg {
    display: block;
    max-width: 100%;
}
.bx-form__item-image svg.loading {
    animation: catalog_loader .5s infinite linear;
}

.bx-form__item input {
    display: block;
    width: 100%;
    border-radius: 6px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    border-color: transparent;
    background: var(--color-white-background);
    color: var(--color-text);
    padding: 20px 20px;
}
.bx-form__item input::placeholder {
    color: var(--color-light-gray-text);
}

.bx-form__item-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
    margin-bottom: 10px;
}

.bx-form__submit {
    display: block;
    width: 100%; 
    text-align: center;
}
.bx-form__submit:disabled {
    opacity: .5;
}
.bx-form__submit:disabled:hover {
    border: 1px solid var(--color-grey-lines);
    background: var(--color-main-black);
    color: var(--color-white-text);
}

.bx-form__checkbox {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.bx-form__checkbox_auth {
    padding-top: 10px;
}
.bx-form__checkbox-label {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 5px;
    cursor: pointer;
}
.bx-form__checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0
}
.bx-form__checkbox input:checked + .icon svg {
    opacity: 1;
}
.bx-form__checkbox-icon {
    flex: 0 0 14px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    height: 14px;
    border: 1px solid var(--color-main-black);
    border-radius: 50%;
    margin-top: 3px;
}
.bx-form__checkbox-icon svg {
    display: block;
    width: 6px;
    opacity: 0;
}
.bx-form__checkbox p {
    flex: 1;
    display: block;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .bx-form__item input {
        font-size: 12px;
        padding: 14px 14px;
    }
}

.modal__close.modal__close_inside {
    position: absolute;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}

.body-fixed {
    overflow: hidden;
}

.productCard__buttons {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
}
.productCard__buttons button {
    width: 100%;
}

.product-card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 200;
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.product-card__favorite.active {
    display: block;
}
@media (max-width: 412px) {
    .product-card__favorite {
        top: 5px;
        right: 5px;
        width: 17px;
        height: 25px;
    }
}

.product-card__favorite svg {
    display: block;
    max-width: 100%;
    height: auto;
}
@media (max-width: 412px) {
    .product-card__favorite svg {
        height: 100%;
    }
}

.product-card__favorite svg path {
    fill: transparent;
}

.product-card__favorite:hover svg path {
    fill: var(--color-pink);
}

.product-card__favorite.selected svg path {
    fill: var(--color-pink);
}

.productCard__recommendation__item-favorite {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background-color: var(--color-pink);
    -webkit-mask-image: url("../images/icons/favoriteicon.svg");
                    mask-image: url("../images/icons/favoriteicon.svg");
    -webkit-mask-repeat: no-repeat;
                    mask-repeat: no-repeat;
    -webkit-mask-position: center;
                    mask-position: center;
    -webkit-mask-size: contain;
                    mask-size: contain;
    cursor: pointer;
}
.productCard__recommendation__item-favorite:hover {
    -webkit-mask-image: url("../images/icons/hearticon_full.svg");
                    mask-image: url("../images/icons/hearticon_full.svg");
}
.productCard__recommendation__item-favorite-active {
    -webkit-mask-image: url("../images/icons/hearticon_full.svg");
                    mask-image: url("../images/icons/hearticon_full.svg");
}

.btn_icon {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

[data-offer-card] {
    display: none;
}
[data-offer-card].active {
    display: flex;
}



.catalogPage__inner {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
}
.catalogPage .section-title {
    order: 0;
}
.catalogPage__header-products {
    order: 1;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}
.catalogPage__filters {
    order: 2;
    border-top: 1px solid var(--color-grey-lines);
}

.catalogPage__products {
    order: 3;
    grid-column: 2/3;
    grid-row: 2/4;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .catalogPage__products {
        grid-column: unset;
        grid-row: unset;
    }
}

.catalogPage__products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 20px;
}
.catalogPage__filters-count {
    display: flex;
    align-items: center;
}
.product-card__img img {
    display: block;
    margin-bottom: 10px;
}
.product-card__slider {
    position: relative;
    z-index: 10;
}
.product-card__slider-wrapper {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 520px;
}
@media (max-width: 1440px) {
    .product-card__slider-wrapper {
        height: 35vw;
    }
}
@media (max-width: 768px) {
    .product-card__slider-wrapper {
        height: 70vw;
    }
}
.product-card__slider-item {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s ease;
}
.product-card__slider-item.active {
    z-index: 100;
    opacity: 1;
}
.product-card__slider-item-empty {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: #B1B1B1;
    background-color: var(--color-grey-background2);
}
.product-card__slider-item img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-card__colors {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row wrap;
    gap: 5px;
    padding: 0 0 10px;
}
.product-card__color {
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid transparent;
    cursor: pointer;
}
.product-card__color:hover {
    border-color: #B1B1B1;
}
.product-card__color.active {
    border-color: var(--color-light-gray-text);
}

.product-card__color-empty {
    background-color: #EEEEEE;
}

.product-card__color img,
.product-card__color span {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transition: all .2s ease;
}

.product-card__color.active img,
.product-card__color.active span {
    transform: scale(1.22);
}

@media (max-width: 1024px) {
    .catalogPage__products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .product-card__color {
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
    }

    .product-card__color img,
    .product-card__color span {
        width: 14px;
        height: 14px;
    }

    .catalogPage__inner {
        grid-template-columns: 1fr;
    }

    .catalogPage__filters {
        display: none;
    }

    .catalogPage__filters-count span {
        font-size: var(--small-font-size);
        border: none;
        padding: 0;
    }

    .catalogPage__products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
    }

    .catalogPage__header-products {
        flex-direction: row-reverse;
    }

    .product-card__img img {
        border-radius: 9px;
    }

    .product-card__title {
        display: inline-block;
        width: 100%;
        max-width: 44vw;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-card__container:hover .product-card__quickview,
    .product-card__quickview,
    .product-card__quickview:hover {
        display: none;
    }
}

.catalog-slider {
    width: 100%;
    height: 650px;
    border-radius: 24px;
    margin-top: 60px;
}
.catalog-slider .swiper-slide {
    text-align: center;
    font-size: var(--main-font-size);
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.catalog-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
         object-fit: cover;
}
@media (max-width: 1440px) {
    .catalog-slider {
        height: 45vw;
    }
}
@media (max-width: 768px) {
    .catalog-slider {
        width: 100%;
        height: 112vw;
        border-radius: 0;
    }
    .catalog-slider .swiper-slide {
        width: 90%;
        max-width: 600px;
    }
    .catalog-slider .swiper-slide img {
        border-radius: 24px;
    }
}

.product-card__promotion {
    display: flex;
    justify-items: center;
    align-items: center;
    min-height: 38px;
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 1000;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-text);
    border-radius: 6px;
    padding: 0 12px;
}
@media (max-width: 412px) {
    .product-card__promotion {
        height: unset;
        border-radius: 4.5px;
        font-size: 16px;
        line-height: 13px;
        padding: 0 7px;
    }
}
.product-card__promotion-list {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    display: flex;
    justify-items: flex-start;
    align-items: center;
    gap: 10px;
}
@media (max-width: 768px) {
    .product-card__promotion-list {
        top: 5px;
        left: 5px;
    }
}

.product-card__promotion.show {
    display: flex;
}
.product-card__promotion.hide {
    display: none;
}

.productCard .btn {
    border-color: var(--color-grey-lines);
}

.productCard .btn.btn_add-cart {
    display: none;
}
.productCard .btn.btn_add-cart.active {
    display: block;
}
.productCard .btn.btn_add-cart.quantity-empty {
    opacity: .1;
    cursor: not-allowed;
}
.productCard .btn.btn_add-cart.quantity-empty:hover {
    background-color: #000000;
    color: var(--color-white-text);
}

.productCard .btn.btn_add-wishlist {
    display: none;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.productCard .btn.btn_add-wishlist.active {
    display: flex;
}

.btn_add-wishlist::after {
    content: "Добавить в вишлист";
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
}
.btn_add-wishlist.selected::after {
    content: "Добавлено в вишлист";
}

.btn_add-wishlist svg {
    display: block;
    height: auto;
    max-width: 20px;
}

.btn_add-wishlist svg path {
    fill: transparent;
    transition: all .2s ease;
}
.btn_add-wishlist.selected svg path {
    fill: var(--color-pink);
    stroke: var(--color-pink);
}

.newsSlider {
    overflow: hidden;
}

.modal.active {
    display: block;
}

.modal__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.modal__container {
    position: relative;
    z-index: 10;
    display: block;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
}

.modal__container_gallery-product {
    max-height: 100vh;
    overflow: auto;
}

.modal__close {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 0 0 0 50%;
    cursor: pointer;
}

.modal__close img {
    display: block;
    width: 30px;
    height: 30px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: var(--color-grey-background2);
    border-radius: 50%;
    padding: 8px;
}

.certification-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.certification__img {
    height: 100%;
}

.certification__img img {
    display: block;
}


.history__inner {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px
}

.history__item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 20px;
}

.history__img {
    flex: 1;
    display: block;
}

.history__img img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.history__img span {
    display: none;
    width: 100%;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .history__img span {
        display: block;
    }
}

.history__content {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 45px;
}

.history__desc {
    width: 100%;
    max-width: 500px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .history__desc {
        font-size: 14px;
    }
}

.history__desc p {
    margin-bottom: 10px;
}

.history__name {
    display: block;
    max-width: 500px;
    width: 100%;
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .history__name {
        font-size: 14px;
    }
}

.history__item:nth-child(2n) {
    flex-direction: row-reverse;
}

.history__item:nth-child(2n) .history__content {
    align-items: flex-start;
}

@media (max-width: 768px) {
    .history__inner {
        gap: 30px;
    }

    .history__item,
    .history__item:nth-child(2n) {
        flex-flow: column nowrap;
        align-items: flex-start;
        gap: 15px;
    }

    .history__img {
        display: flex;
        flex-flow: row nowrap;
        align-items: flex-end;
        gap: 8px;
    }

    .history__desc {
        font-size: var(--small-font-size);
    }

    .history__name {
        display: none;
    }
}

.manufacture__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.manufacture__item {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    gap: 30px;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    min-height: 570px;
}

.manufacture__item a {
    width: fit-content;
}

.manufacture__item > p {
    flex: 1;
    display: block;
    max-width: 380px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 155%;
    text-align: center;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .manufacture__item p {
        font-size: 14px;
    }
}

.manufacture__item picture {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.manufacture__item img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.manufacture__item-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    min-height: 100%;
}

.manufacture__item-content h3 {
    font-family: var(--font-family-text-semibold);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .manufacture__item-content h3 {
        font-size: var(--small-font-size);
    }
}

.manufacture__item-content p {
    flex: 1;
    display: block;
    max-width: 375px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 155%;
    text-align: left;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .manufacture__item-content p {
        font-size: var(--small-font-size);
    }
}

.manufacture__item_main {
    grid-column: 1/3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #EEE2D7;
    text-align: center;
    padding: 120px;
}

.manufacture__item_main p {
    max-width: 610px;
}

.manufacture__title {
    font-size: 125px;
    line-height: 1;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .manufacture__inner {
        grid-template-columns: 1fr;
    }

    .manufacture__item {
        min-height: 510px;
    }

    .manufacture__item_main {
        grid-column: 1/2;
        min-height: auto;
        padding: 80px 15px;
    }

    .manufacture__title {
        font-size: 60px;
    }
}

.jogaClubJoin__mainImg {
    display: block;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.legal-info__title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.legal-info__title h1 {
    font-family: var(--font-family-title);
    font-size: 72px;
    line-height: 1;
    font-weight: bold;
    font-style: italic;
}
@media (max-width: 1024px) {
    .legal-info__title h1 {
        font-size: 60px;
    }
}
@media (max-width: 412px) {
    .legal-info__title h1 {
        font-size: 40px;
    }
}

.legal-info__content {
    width: 100%;
    max-width: 830px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
    margin: 0 auto;
}
@media (max-width: 768px) {
    .legal-info__content {
        font-size: 14px;
    }
}

.legal-info__content b {
    font-family: var(--font-family-text-semibold);
    font-weight: 400;
}

.table-size-modal__wrapper {
    padding: 0;
}

.table-size-modal__close {
    position: fixed;
    top: 24px;
    right: 30px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: .8;
    background-color: var(--color-white-background);
    transition: all .2s ease;
    cursor: pointer;
}
.table-size-modal__close:hover {
    opacity: 1;
}

.table-size-modal__close svg {
    display: block;
}

.table-size-modal__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.table-size-modal__item-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.table-size-modal__item-img img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}

.lookbook-detail {
    padding-top: 0;
}

.catalog-loader {
    display: block;
    width: 40px;
    height: 40px;
    transform: rotate(0deg);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.1004 1.62795C9.07571 0.823466 5.99592 1.67517 3.83994 3.62477L4.65736 3.55741C5.02498 3.52711 5.34774 3.79837 5.37827 4.16329C5.40877 4.52818 5.13551 4.84858 4.76789 4.87888L2.2603 5.0855C1.99786 5.10714 1.74712 4.97367 1.62003 4.74471C1.49295 4.51579 1.51325 4.23409 1.67187 4.02543C4.0975 0.834599 8.31483 -0.75169 12.4462 0.347131C17.8817 1.79281 21.1073 7.33858 19.6508 12.7339C19.5554 13.0876 19.1891 13.2975 18.8328 13.2028C18.4765 13.108 18.265 12.7444 18.3605 12.3907C19.626 7.70277 16.8232 2.88409 12.1004 1.62795Z' fill='black'%3E%3C/path%3E%3Cpath d='M7.9331 18.3665C10.9519 19.1694 14.0122 18.3521 16.1527 16.463L15.3488 16.5247C14.981 16.5529 14.6598 16.2798 14.6314 15.9147C14.603 15.5496 14.8781 15.2308 15.2458 15.2026L17.7495 15.0105C18.0121 14.9904 18.2622 15.1253 18.3879 15.3551C18.5136 15.5848 18.4916 15.8665 18.3316 16.0742C15.9183 19.2076 11.7118 20.7443 7.58734 19.6473C2.16289 18.2045 -1.09639 12.7397 0.338659 7.42352C0.434136 7.06983 0.800387 6.85993 1.1567 6.9547C1.51302 7.04946 1.72448 7.41302 1.629 7.76671C0.390747 12.3538 3.19925 17.1074 7.9331 18.3665Z' fill='black'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    animation: catalog_loader 1s infinite linear;
}

@keyframes catalog_loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@media (max-width: 768px) {
    .tab-elementLabel,
    .tab-element {
        display: none !important;
    }
}

.blogPage__select-media {
    display: none;
    width: 100%;
    height: 58px;
    border-radius: 6px;
    border: 1px solid var(--color-gray);
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-text);
    background-color: #FFF;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .blogPage__select-media {
        display: block;
    }
}

.modal-certificate__wrapper {
    padding: 0;
}

[data-tab-panel-content] {
    display: none;
}
[data-tab-panel-content].active {
    display: block;
}

[data-tab-panel-nav] {
    cursor: pointer;
}
[data-tab-panel-nav].disabled {
    cursor: not-allowed;
}

/*
* Комментарии к товару
*/
.product-comments {
    display: block;
}

.product-comments__buttons {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 10px;
    padding-top: 30px;
}
@media (max-width: 1024px) {
    .product-comments__buttons {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .product-comments__buttons {
        display: none;
    }
}

.product-comments__buttons p {
    flex: 0 0 100%;
    font-family: 'HouschkaRoundedAlt';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-gray-text);
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .product-comments__buttons p {
        display: none;
    }
}

.product-comments__buttons-item {
    display: block;
}
.product-comments__buttons-item[data-panel-type-comm-item-mobile] {
    display: none;
}
@media (max-width: 1024px) {
    .product-comments__buttons-item[data-panel-type-comm-item-medium="Q"] {
        display: none;
    }
}
@media (max-width: 768px) {
    .product-comments__buttons-item[data-panel-type-comm-item-medium] {
        display: none;
    }
    
    .product-comments__buttons-item[data-panel-type-comm-item-mobile="R"] {
        display: block;
    }
}

.product-comments__buttons-item button {
    border: 1px solid var(--color-grey-lines);
}
.product-comments__buttons-item button:hover {
    border-color: transparent;
    color: var(--color-white-text);
    background-color: #000000;
}

.product-comments__buttons-item_mobile button {
    width: 100%;
}

.product-comments__buttons-items {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
@media (max-width: 1024px) {
    .product-comments__buttons-items {
        justify-content: flex-end;
    }
}

.product-comments__buttons-items-mobile {
    display: none;
}
@media (max-width: 768px) {
    .product-comments__buttons-items-mobile {
        display: block;
        margin-bottom: 20px;
    }
}

.product-comments__pagination {
    position: relative;
    display: block;
    width: 100%;
}

.product-comments__pagination-type {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product-comments__pagination__wrapper {
    display: none;
}
.product-comments__pagination__wrapper.active {
    display: block;
}

.product-comments__pagination-item {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
}
.product-comments__pagination-item.active {
    background-color: var(--color-main-black);
}

.product-comments__pagination-item span {
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text);
}
.product-comments__pagination-item.active span {
        color: #FFFFFF;
}

.product-comments__tabs {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 20px;
}
@media (max-width: 1024px) {
    .product-comments__tabs {
        display: flex;
        flex-flow: column nowrap;
        gap: 30px;
    }
}

.product-comments__tabs-nav {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    gap: 0;
}

.product-comments__tabs-nav-item {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 80px;
    padding: 0 0 18px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .product-comments__tabs-nav-item {
        min-height: auto;
        padding-bottom: 10px;
    }
}

.product-comments__tabs-nav-item h4 {
    display: inline;
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 1000;
    font-size: 60px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-grey-light-text);
    padding: 0;
    margin: 0;
}
.product-comments__tabs-nav-item.active h4 {
    color: var(--color-text);
}
@media (max-width: 768px) {
    .product-comments__tabs-nav-item h4 {
        font-weight: 500;
        font-size: 32px;
        line-height: 100%;
        letter-spacing: -0.01em;
    }
}

.product-comments__tabs-nav-item::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 1px;
    background-color: var(--color-grey-lines);
}
.product-comments__tabs-nav-item.active::before {
    height: 4px;
    transform: translateY(calc(-50% + 1px));
    background-color: var(--color-pink);
}

.product-comments__rating {
    position: relative;
    display: block;
}
@media (max-width: 768px) {
    .product-comments__rating {
        width: 100%;
    }
}

.product-comments__rating-head {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
@media (max-width: 1024px) {
    .product-comments__rating-head {
        margin: 0;
    }
}
@media (max-width: 768px) {
    .product-comments__rating-head {
        justify-content: space-between;
        width: 100%;
    }
}

.product-comments__rating-value {
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 1000;
    font-size: 60px;
    line-height: 80%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .product-comments__rating-value {
        font-size: 32px;
    }
}

.product-comments__rating-stars {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    gap: 10px;
}
@media (max-width: 768px) {
    .product-comments__rating-stars {
        gap: 5px;
    }
}

.product-comments__rating-stars svg {
    display: block;
}
@media (max-width: 768px) {
    .product-comments__rating-stars svg {
        max-width: 23px;
        max-height: 23px;
    }
}

.product-comments__rating-list {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    grid-gap: 20px;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-text);
}
@media (max-width: 1024px) {
    .product-comments__rating-list {
        display: none;
    }
}

.product-comments__rating-item-name {
    display: block;
}

.product-comments__rating-item-progressbar {
    position: relative;
}

.product-comments__rating-item-progressbar span {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    transform: translateY(-50%);
    background-color: #DADADA;
}
.product-comments__rating-item-progressbar span.progressbar-result {
    z-index: 100;
    background-color: var(--color-text);
}

.product-comments__rating-item-count {
    display: block;
}

.product-comments__right {
    grid-column: 2/3;
    grid-row: 1/4;
}
@media (max-width: 1024px) {
    .product-comments__right {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
}

.form-page {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    background-color: var(--color-grey-background2);
}

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

.gallery-modal__slider-slide.swiper-slide {
    position: relative;
    z-index: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    scrollbar-width: none;
}

.gallery-modal__slider-slide.swiper-slide img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.gallery-modal__slider-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.footer__copyright a {
	text-decoration: underline;
}

.footer__copyright a:hover {
	text-decoration: none;
}