/*@import url(../assets/css/fonts.css);*/
:root {
    --main: #2D2D2D;
    --bg: #F3F4F5;
    --white: #fff;
    --black: #2D2D2D;
    --red: #c41e3a;
    /* --second: #FCF1E7;   --gray: #5D636F;   --gray-light: #DDE3E6; */
}

body {
    font-size: 16px;
    background: var(--bg);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.35;
}

html, body {
    overflow-y: scroll;
}

body.hidden {
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (min-width: 1200px) {
    ::-webkit-scrollbar {
        width: 12px;
        height: 5px;
        background: var(--bg);
    }

    ::-webkit-scrollbar-button {
        display: none;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--main);
        border-radius: 50px;
        border: 3px solid transparent;
        background-clip: content-box;
    }
}

.form-control {
    background-color: var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--black);
    height: auto;
    padding: 12px 14px;
    transition: 0.3s ease, background-position 0s;
    border: 1px solid #F4F4F4;
}
.modal-dialog.modal-dialog-centered{
    display: table;
}

.product-page-product-type label {
    border: 1px solid black
}

/*.swiper-wrapper .swiper-slide:nth-child(2n) {margin-left: 60px !important;}*/
.swiper-slide-active {
    margin-right: 25px !important;
    margin-left: 0px !important;
}

.swiper-slide-prev {
    margin-right: -10px !important;
}

@media (max-width: 767px) {
    .form-control {
        font-size: 14px;
        padding: 10px 14px;
    }
}

.form-control:hover {
    border-color: var(--main)
}

.form-control:focus {
    border-color: var(--main)
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    /* border-color: var(--red); */
    border-color: #F4F4F4;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23FF8181'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23FF8181' stroke='none'/%3e%3c/svg%3e");
}

.form-control.is-valid,
.was-validated .form-control:valid {
    /* border-color: #3ad466; */
    border-color: #F4F4F4;
    background-image: none;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: var(--main)
}

.form-control::placeholder {
    font-weight: 500;
    color: #989A9C;
    opacity: 1;
}

input:focus,
textarea:focus {
    box-shadow: none !important;
    outline: none;
}

.textarea {
    transition: all 0.3s ease, height 0s !important;
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    font-weight: 500;
    color: #989A9C;
}

input,
textarea {
    font-family: 'Montserrat', sans-serif;
}

textarea {
    resize: none;
}

/* Btn */
.btn {
    font-size: 14px;
    line-height: 1.5;
    transition: 0.3s ease;
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: var(--black);
    text-align: center;
    padding: 0;
    border: 0;
    font-weight: 600;
}

.btn:disabled {
    opacity: 1;
}

.btn:focus,
button:focus {
    box-shadow: none !important;
    outline: none;
}

.btn-main {
    background: var(--main);
    border-radius: 6px;
    color: var(--white);
}

.btn-main:hover {
    background: var(--main);
    color: var(--white);
}

.btn-trans {
    background: var(--white);
    color: var(--main);
    border: 1px solid var(--main);
}

.btn-trans:hover {
    background: var(--main);
    color: var(--white);
}

/* Links */
a {
    color: var(--black);
    text-decoration: none;
    transition: 0.4s ease;
}

a:hover {
    color: var(--main);
}

/* Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.5;
}

/* Container */
._container {
    padding: 0 15px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

@media (max-width: 1319px) {
    ._container {
        max-width: 1200px;
    }
}

@media (max-width: 1199px) {
    ._container {
        max-width: 992px;
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    ._container {
        max-width: 768px;
    }
}

@media (max-width: 767px) {
    ._container {
        max-width: 576px;
    }
}

@media (max-width: 575px) {
    ._container {
        max-width: 100%;
    }
}

/* Main */
.main {
    flex-grow: 1;
    padding-top: 60px;
}

@media (max-width: 991px) {
    .main {}
}

/* Select */
.select {
    position: relative;
}

.select__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.select__btn span {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: var(--color);
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1199px) {
    .select__btn span {
        font-size: 14px;
    }
}

.select__btn>svg:last-child {
    transition: 0.3s ease-in-out;
    width: 10px;
    height: 6px;
    flex: 0 0 10px;
}

.select__btn.active>svg:last-child {
    transform: rotate(180deg);
}

.select__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    z-index: 10;
}

.select__item {
    transition: 0.3s ease;
    cursor: pointer;
}

.select__item.active {
    pointer-events: none;
}

/* /Select */
/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
}

@media (max-width: 991px) {
    .header {
        position: absolute;
    }
}

@media (max-width: 575px) {
    .header {}
}

.header-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media (max-width: 991px) {
    .header-body {
        align-items: stretch;
    }
}

.header-main {
    display: flex;
    align-items: center;
    column-gap: 35px;
}

.header-logo {
    display: flex;
}

.header-logo a {
    display: flex;
    height: 36px;
}

/*@media (max-width: 575px) {   .header-logo a{      height: 50px;   }}*/
.header-logo a img {
    height: 60%;
    margin-top: 8px;
}

.header-menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    column-gap: 50px;
    height: 100%;
}

@media (max-width: 1199px) {
    .header-menu {
        column-gap: 35px;
    }
}

@media (max-width: 991px) {
    .header-menu {
        display: none;
    }
}

.header-menu li a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    height: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: calc(20 / 14);
}

.header-menu-catalog a {
    padding: 15px 13px;
    background: var(--main);
    color: var(--white) !important;
    cursor: pointer;
}

.header-menu-catalog a svg {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    fill: var(--white)
}

.header-menu-sale a {
    color: var(--red);
}

.header-connect {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    column-gap: 40px;
}

@media (max-width: 1199px) {
    .header-connect {
        column-gap: 30px;
    }
}

@media (max-width: 991px) {
    .header-connect {
        display: none;
    }
}

.header-connect li,
.header-connect li a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.header-connect li svg {
    width: 14px;
    height: 14px;
    transition: 0.3s ease;
}

.header-connect li a:hover {
    color: var(--main);
}

.header-connect li a:hover svg {
    fill: var(--main)
}

.header-actions {
    display: flex;
    align-items: center;
    column-gap: 7px;
}

.header-call {
    display: none;
}

@media (max-width: 991px) {
    .header-actions {
        column-gap: 12px;
    }

    .header-call {
        display: block;
        font-size: 0;
        line-height: 0;
    }

    .header-call svg {
        width: 24px;
        height: 24px;
        fill: var(--black)
    }
}

.header-actions-search {
    background: #F3F3F7;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    padding: 8px 14px;
    color: #9B9B9B;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .header-actions-search {
        padding: 6px 10px;
        border-radius: 8px;
    }

    .header-actions-search span {
        display: none;
    }
}

.header-actions-search svg {
    width: 14px;
    height: 14px;
    fill: #9B9B9B;
    transition: 0.3s ease;
}

@media (max-width: 1199px) {
    .header-actions-search svg {
        width: 20px;
        height: 20px;
    }
}

.header-actions-search:hover svg {
    fill: var(--black)
}

.header-cart {
    display: none;
}

@media (max-width: 991px) {
    .header-cart {
        display: block;
        padding: 0;
        width: 24px;
        height: 24px;
    }

    .header-cart svg {
        width: 100%;
        height: 100%;
        fill: var(--main)
    }
}

.header-cart-open {
    background: var(--main);
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    padding: 8px 14px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .header-cart-open {
        background: transparent;
        border-radius: 0;
        padding: 6px;
    }

    .header-cart-open span {
        display: none;
    }
}

.header-cart-open svg {
    width: 14px;
    height: 14px;
    fill: var(--white)
}

@media (max-width: 1199px) {
    .header-cart-open svg {
        fill: var(--main);
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 992px) {
    .header-cart-open:hover {
        color: var(--white);
        background: var(--main);
    }
}

@media (max-width: 991px) {
    .header-cart-open {
        display: none;
    }
}

.header-user {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    background: #F3F3F7;
    font-size: 0;
    line-height: 0;
    font-weight: 600;
    color: #5D636F;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-user>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-user>svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 991px) {
    .header-user {
        display: none;
    }
}

.bars {
    display: none;
}

@media (max-width: 991px) {
    .bars {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: -20px;
        width: 60px;
        height: 60px;
        background: var(--main);
    }

    .bars svg {
        fill: var(--white);
        width: 24px;
        height: 24px;
    }
}

.header-categories {
    background: var(--white);
    border-radius: 11px;
    padding: 25px 15px 30px;
    display: flex;
    width: 100%;
    transition: all 0.5s ease, opacity 0.5s 0.5s ease;
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.07);
    transform: translateY(-100%) translateX(-50%);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 100;
    max-width: 1290px;
}

.category-page {
    padding-top: 40px;
    margin-bottom: 36px;
}

@media (max-width: 1199px) {
    .category-page {
        padding-top: 30px;
    }
}

.category-page .header-categories {
    display: inline-flex;
    flex-wrap: wrap;
    transform: translate(0);
    position: initial;
    top: auto;
    left: auto;
    max-width: 100% !important;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1199px) {
    .header-categories {
        max-width: 952px;
    }
}

@media (max-width: 991px) {
    .header-categories {
        display: none;
    }

    .category-page .header-categories {
        display: flex;
        overflow-x: auto;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .category-page .header-categories::-webkit-scrollbar {
        height: 0;
    }
}

.header-categories.show {
    top: 70px;
    transform: translateY(0) translateX(-50%);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    display: inline-flex;
    flex-wrap: wrap;
}

.header-category {
    flex: 0 0 calc(100% / 7);
    width: calc(100% / 7);
    padding: 0 10px;
}

@media (max-width: 991px) {
    .category-page .header-category {
        flex: 0 0 160px;
        width: 160px;
    }
}

@media (max-width: 575px) {
    .category-page .header-category {
        flex: 0 0 105px;
        width: 105px;
        padding: 0 5px;
    }
}

.header-category-img {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #F3F3F7;
    transition: 0.3s ease;
}

@media (max-width: 575px) {
    .category-page .header-category-img {
        margin-bottom: 10px;
    }
}

.header-category._all .header-category-img span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 16px;
    line-height: calc(20 / 16);
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: #999999;
}

.header-category._sale .header-category-img {
    background: var(--red);
}

.header-category._sale .header-category-img span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: var(--white);
}

@media (max-width: 575px) {
    .header-category._sale .header-category-img span {
        font-size: 20px;
    }
}

.header-category-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    background: #F3F3F7;
}

.header-category-title {
    font-size: 16px;
    line-height: calc(20 / 16);
    letter-spacing: 0.02em;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
    transition: 0.3s ease;
}

@media (max-width: 575px) {
    .category-page .header-category-title {
        font-size: 12px;
        line-height: calc(15 / 12);
    }
}

.header-category-wrapper {
    transition: 0.3s ease;
    display: block;
}

.header-category-wrapper:hover {
    transform: translateY(-4px);
}

.header-category-wrapper:hover .header-category-title {
    color: var(--main);
}

.header-category._all .header-category-wrapper:hover .header-category-img {
    background: var(--main);
}

.header-category._all .header-category-wrapper:hover .header-category-img span {
    color: var(--white);
}

/* Search */
.search {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    display: none;
}

@media (max-width: 575px) {
    .search {
        max-width: calc(100% - 14px);
    }
}

.search.show {
    display: block;
}

.search-open-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 31, 0.62);
    z-index: 90;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
}

.search-open-bg.show {
    opacity: 1;
    visibility: visible;
}

.search-group {
    position: relative;
}

.search-group .form-control {
    padding: 6px 37px;
    background: #F3F3F7;
    border-radius: 11px;
    font-size: 12px;
    line-height: 20px;
}

@media (max-width: 575px) {
    .search-group .form-control {
        border-radius: 8px;
    }
}

.search-group>svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
    width: 14px;
    height: 14px;
    fill: #9B9B9B
}

.search-remove {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
}

.search-remove svg {
    width: 10px;
    height: 10px;
    fill: #9B9B9B
}

.search-result {
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    background: var(--white);
    border-radius: 0 0 10px 10px;
    padding: 5px 20px;
}

@media (max-width: 991px) {
    .search-result {
        top: calc(100% + 5px);
    }
}

@media (max-width: 575px) {
    .search-result {
        padding: 10px;
    }
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #EAEAEA;
    column-gap: 24px;
}

@media (max-width: 575px) {
    .search-result-item {
        column-gap: 15px;
        align-items: flex-start;
    }

    .search-result-item:first-child {
        padding-top: 0;
    }

    .search-result-item:last-child {
        padding-bottom: 0;
    }
}

.search-result-item:last-child {
    border-bottom: 0;
}

.search-result-item-img {
    margin-bottom: 0;
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
}

.search-result-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-item-content {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

@media (max-width: 575px) {
    .search-result-item-content {
        flex-direction: column;
        gap: 8px;
    }
}

.search-result-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.21;
    margin-bottom: 5px;
}

@media (max-width: 575px) {
    .search-result-item-title {
        font-size: 14px;
    }

    .search-result-item-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}

.search-result-item-text {
    font-size: 12px;
    line-height: 15px;
    color: #5D636F;
    margin-bottom: 0;
}

.search-result-item-price {
    white-space: nowrap;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

@media (max-width: 575px) {
    .search-result-item-price {
        font-size: 12px;
    }
}

.search-result .product-add-to-cart {
    font-size: 12px;
}

@media (max-width: 575px) {
    .search-result .product-add-to-cart {
        font-size: 10px;
        line-height: 20px;
        padding: 2px 13px;
        border-radius: 6px;
    }
}

/* Search end */
/* Catalog nav */
.catalog-nav {
    margin-top: -10px;
    padding: 10px 0;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .catalog-nav {
        margin-bottom: 10px;
    }
}

.catalog-nav-list {
    display: flex;
    column-gap: 10px;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    justify-content: center;
}

.catalog-nav {
    position: sticky;
    top: 0;
    z-index: 800;
    background: var(--bg);
}

@media (min-width: 1200px) {
    .catalog-nav-list {
        flex-wrap: wrap;
        row-gap: 10px;
    }
}

@media (max-width: 1199px) {
    .catalog-nav-list {
        overflow-x: auto;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        justify-content: flex-start;
    }

    .catalog-nav-list::-webkit-scrollbar {
        height: 0;
    }
}

.catalog-nav-item a {
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 20px;
    font-weight: 500;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
}

.catalog-nav-item a:hover {
    border-color: var(--main);
}

.catalog-nav-item.active a {
    background: var(--main);
    border-color: var(--main);
    color: var(--white);
}

.catalog-nav-item.active a:hover {
    color: var(--white);
}

.catalog-nav-item.sale a {
    background: var(--main);
    border-color: var(--main);
    color: var(--white);
}

.catalog-nav-item.menu-item a {
    background: var(--gray-light);
    border-color: var(--gray-light);
    color: var(--black);
}

.catalog-nav-item.menu-item a:hover {
    background: var(--gray);
    border-color: var(--gray);
    color: var(--white);
}

/* Banner */
.banner {
    padding-top: 30px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .banner {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .banner {
        padding-top: 20px;
        margin-bottom: 40px;
    }
}

.banner-body {
    background: var(--white);
    border-radius: 12px;
    padding: 50px 70px 36px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .banner-body {
        padding: 40px 50px 36px;
    }
}

@media (max-width: 575px) {
    .banner-body {
        padding: 30px 10px 25px;
    }
}

.banner-content {
    max-width: 486px;
}

.banner-content>* {
    position: relative;
    z-index: 2;
}

@media (max-width: 1199px) {
    .banner-content {
        max-width: 420px;
    }
}

@media (max-width: 991px) {
    .banner-content {
        max-width: 390px;
    }
}

.banner-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.02em;
    line-height: calc(48 / 40);
    margin-bottom: 0.5em;
}

@media (max-width: 991px) {
    .banner-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .banner-title {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 20px;
        line-height: calc(24 / 20);
        margin-bottom: 10px;
    }
}

.banner-desc {
    font-size: 16px;
    line-height: calc(19 / 16);
    letter-spacing: 0.02em;
    font-weight: 500;
    color: #A6A8A8;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .banner-desc {
        font-size: 15px;
        max-width: 90%;
    }
}

@media (max-width: 575px) {
    .banner-desc {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 12px;
        line-height: calc(18 / 12);
        margin-bottom: 22px;
    }
}

.banner-btn {
    padding: 10px 30px;
}

@media (max-width: 575px) {
    .banner-btn {
        margin: 0 auto;
        display: table;
    }
}

.banner-img {
    position: absolute;
    margin-bottom: 0;
    width: 100%;
    max-width: 548px;
    right: 80px;
    top: -19px;
    z-index: 1 !important;
}

@media (max-width: 1199px) {
    .banner-img {
        right: -80px;
    }
}

@media (max-width: 991px) {
    .banner-img {
        right: -180px;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .banner-img:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        opacity: 0.7;
        /* max-width: 360px;      top: auto;      bottom: 0px;      right: -80px; */
    }
}

@media (max-width: 575px) {
    .banner-img {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
}

.banner-img img {
    max-width: 100%;
}

/* Carpets */
.carpets {
    overflow: hidden;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .carpets .swiper-wrapper {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }

    .carpets .swiper-slide {
        padding: 0 15px;
        flex: 0 0 50%;
        width: 50%;
    }
}

.carpets-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin: 25px 15px 0px 15px;
    background: var(--white);
    padding: 50px 70px 54px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 70px;
}

@media (max-width: 1199px) {
    .carpets-item {
        padding-left: 50px;
        max-height: 300px;
    }
}

@media (max-width: 991px) {
    .carpets-item {
        padding: 40px 50px;
        gap: 50px;
        max-height: 300px;
    }
}

@media (max-width: 575px) {
    .carpets-item {
        padding: 17px 20px 20px;
        resize: none;
        gap: 15px;
        height: 130px;
    }
}

.carpets-item-title {
    position: relative;
    z-index: 1;
    max-width: 500px;
    font-size: 36px;
    line-height: calc(43 / 36);
    letter-spacing: 0.02em;
    color: var(--black);
    font-weight: 600;
}

@media (max-width: 991px) {
    .carpets-item-title {
        font-size: 28px;
        width: min-content;
    }
}

@media (max-width: 575px) {
    .carpets-item-title {
        font-size: 18px;
        width: min-content;
    }
}

.carpets-item-btn {
    position: relative;
    z-index: 1;
    padding: 10px 30px;
}

.carpets-item-btn._mobile {
    display: none;
}

@media (max-width: 575px) {
    .carpets-item-btn {
        display: none;
    }

    .carpets-item-btn._mobile {
        display: block;
        padding: 0;
    }

    .carpets-item-btn._mobile svg {
        width: 28px;
        height: 28px;
        fill: #AEAEAE;
        transition: 0.3s ease;
    }

    .carpets-item-btn._mobile:hover svg {
        fill: var(--main)
    }
}

.carpets-item-img {
    position: absolute;
    height: 100%;
    max-width: 300px;
    right: 0;
    top: 0;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .carpets-item-img {
        right: -80px;
    }
}

@media (max-width: 575px) {
    .carpets-item-img {
        right: -10px;
    }
}

.carpets-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 50%;
}

@media (max-width: 991px) {
    .carpets .swiper-pagination {}
}

/* History */
.histories {
    margin-bottom: 50px;
}

@media (max-width: 575px) {
    .histories {
        margin-bottom: 35px;
    }
}

.histories-body {
    display: flex;
    column-gap: 19px;
    overflow-x: auto;
}

.histories-body::-webkit-scrollbar {
    height: 0;
}

.history {
    flex: 0 0 100px;
}

@media (max-width: 1199px) {
    .history {
        flex: 0 0 80px
    }
}

@media (max-width: 575px) {
    .history {
        flex: 0 0 50px
    }
}

.history-img {
    margin-bottom: 0;
    padding-top: calc(100% - 6px);
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    border: 3px solid var(--main)
}

.history-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

/* Catalog */
.catalog {
    padding-bottom: 10px;
}

.catalog.taxonomy {
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .catalog {
        padding-bottom: 10px;
    }
}

.catalog-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 40px;
}

.taxonomy .catalog-title {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .catalog-title {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .catalog-title {
        margin-bottom: 25px;
    }
}

.taxonomy .catalog-nav-list {
    margin-bottom: 40px;
    justify-content: flex-start;
}

.catalog-list {
    margin: 0 -15px !important;
}

@media (max-width: 991px) {
    .catalog-list {
        margin: 0 -10px !important;
    }
}

@media (max-width: 575px) {
    .catalog-list {
        margin: 0 -5px !important;
    }
}

.product {
    padding: 0 15px !important;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .product {
        padding: 0 10px !important;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .product {
        padding: 0 5px !important;
        margin-bottom: 15px;
    }
}

.product-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 20px 24px;
    background: var(--white);
    border-radius: 12px;
    position: relative;
}

@media (max-width: 991px) {
    .product-wrapper {
        gap: 10px
    }
}

@media (max-width: 575px) {
    .product-wrapper {
        padding: 15px;
        gap: 5px;
    }
}

.product-stock {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--main);
    color: var(--white);
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10;
}

.product-add-to-fav {
    position: absolute;
    z-index: 10;
    top: 15px;
    right: 15px;
    padding: 0;
}

.product-add-to-fav svg {
    width: 28px;
    height: 28px;
    fill: transparent;
    stroke: #dedede;
    stroke-width: 2.5px;
    transition: 0.3s ease;
}

.product-add-to-fav:hover svg {
    stroke: var(--main)
}

.product-add-to-fav.active svg {
    fill: var(--main);
    stroke: var(--main)
}

.product-main>a:nth-of-type(1) {
    padding: 0;
    padding-right: 0;
    padding-left: 0;
    display: block;
    cursor: pointer;
}

.product-thumb {
    padding-top: 200px;
    width: 147px;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .product-thumb {
        margin-bottom: 20px;
        padding-top: 140px;
    }
}

@media (max-width: 575px) {
    .product-thumb {
        width: 100%;
    }
}

.product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: var(--black);
    line-height: calc(20 / 16);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .product-title {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .product-title {
        font-size: 12px;
        line-height: calc(20 / 12);
    }
}

.product-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 16px;
}

.product-price {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.02em;
    color: var(--black);
    line-height: calc(29 / 24);
}

@media (max-width: 991px) {
    .product-price {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .product-price {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .product-price {
        font-size: 12px;
        line-height: calc(20 / 12);
    }
}

.product-price.sale {
    color: var(--main);
    position: relative;
}

.product-price.sale s {
    position: absolute;
    left: 0;
    bottom: calc(100% + 2px);
    color: var(--gray);
    font-size: 12px;
}

.btn.product-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main);
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .btn.product-add-to-cart {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }
}

.btn.product-add-to-cart:hover {
    background: var(--main);
}

.btn.product-add-to-cart svg {
    width: 16px;
    height: 16px;
    fill: var(--main)
}

@media (max-width: 991px) {
    .btn.product-add-to-cart svg {
        width: 14px;
        height: 14px;
    }
}

.btn.product-add-to-cart:hover svg {
    fill: var(--white)
}

/* Modal */
.modal-menu {
    display: none;
}

@media (max-width: 991px) {
    .modal-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1010;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease-in-out;
        transition-delay: 0.4s;
    }

    .modal-menu.show {
        transition-delay: 0s;
        opacity: 1;
        visibility: visible;
    }

    .modal-menu-dialog {
        background: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .modal-menu-content {
        background: var(--white);
        width: 100%;
        max-width: 270px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 40px;
        padding: 50px 35px 25px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: 0.4s ease-in-out;
        transition-delay: 0s;
    }

    .modal-menu.show .modal-menu-content {
        transition-delay: 0.4s;
        transform: translateX(0%);
    }

    .modal-menu-close {
        position: absolute;
        top: 13px;
        right: 6px;
        padding: 10px;
        display: flex;
    }

    .modal-menu-close svg {
        width: 15px;
        height: 15px;
        fill: var(--black)
    }

    .modal-menu-list {
        list-style: none;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 50px;
    }

    .modal-menu-list>li._sale>a {
        color: var(--red) !important;
    }

    .modal-menu-list>li>.sub-menu {
        display: none;
    }

    .modal-menu-list>li>ul.sub-menu {
        list-style: disc;
        margin-bottom: 0;
        padding-left: 1.25em;
        padding-top: 10px;
    }

    .modal-menu-list>li>ul.sub-menu li {
        margin-bottom: 10px;
    }

    .modal-menu-list>li>ul.sub-menu li:last-child {
        margin-bottom: 0;
    }

    .modal-menu-list>li>ul.sub-menu li a {
        font-weight: 600;
        font-size: 14px;
        line-height: calc(20 / 14);
        letter-spacing: 0.02em;
    }

    .modal-menu-list>li ul.sub-menu-catalog {
        list-style: none;
        display: flex;
        padding-left: 0;
        padding-top: 30px;
        padding-bottom: 15px;
        flex-wrap: wrap;
        flex-direction: row;
        margin: 0 -5px;
        row-gap: 20px;
    }

    .modal-menu-list>li ul.sub-menu-catalog li {
        flex: 0 0 50%;
        width: 50%;
        padding: 0 5px;
    }

    .modal-menu-list>li ul.sub-menu-catalog li a {
        display: block;
    }

    .modal-menu-list>li ul.sub-menu-catalog li a figure {
        padding-top: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .modal-menu-list>li ul.sub-menu-catalog li._all a figure {
        padding-top: 90px;
        background: #F3F3F7;
        transition: 0.3s ease;
    }

    .modal-menu-list>li ul.sub-menu-catalog li._all {
        flex: 0 0 100%;
        width: 100%;
    }

    .modal-menu-list>li ul.sub-menu-catalog li._all a:hover figure {
        background: var(--main);
    }

    .modal-menu-list>li ul.sub-menu-catalog li._all a:hover figure span {
        color: var(--white);
    }

    .modal-menu-list>li ul.sub-menu-catalog li._all a figure span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: 600;
        font-size: 14px;
        line-height: calc(20 / 14);
        letter-spacing: 0.02em;
        color: #999999;
        transition: 0.3s ease;
    }

    .modal-menu-list>li ul.sub-menu-catalog li a figure img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }

    .modal-menu-list>li ul.sub-menu-catalog li a h5 {
        color: var(--black);
        font-size: 12px;
        line-height: calc(15 / 12);
        font-weight: 600;
        margin-bottom: 0;
        letter-spacing: 0.02em;
    }

    .modal-menu-list>li>a:not(.btn) {
        color: var(--black);
        font-size: 16px;
        font-weight: 600;
        line-height: calc(20 / 16);
        line-height: 1;
    }

    .modal-menu-list li.has-child>a {
        display: inline-flex;
        align-items: center;
        column-gap: 10px;
    }

    .modal-menu-list li.has-child>a>svg {
        width: 11px;
        height: 8px;
        fill: var(--black);
        transition: 0.3s ease;
    }

    .modal-menu .header-connect {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .modal-menu .header-connect a {
        color: #343434;
    }

    .modal-menu .header-connect a svg {
        fill: var(--main);
        width: 20px;
        height: 20px;
    }

    .modal-menu .account-actions {
        margin-bottom: 16px;
        background: #EFF3F5;
        border-radius: 11px;
        padding: 12px;
        padding-top: 5vh;
    }

    .modal-menu .account-actions-menu a {
        padding: 10px 16px;
        border-radius: 7px;
        font-size: 14px;
    }

    .modal-menu .account-actions-menu a.active {
        background: #E3E3E3;
        color: var(--main);
    }

    .modal-menu .account-actions-menu a.active:before {
        display: none;
    }

    .modal-menu .account-actions-logout {
        width: 100%;
        display: block;
        font-family: 'Montserrat', sans-serif;
    }

    .modal-menu .account-actions-login {
        margin-top: 10px;
    }

    .account-nav-modal-info {
        background: rgba(58, 0, 113, 0.08);
        border-radius: 6px;
        padding: 10px;
        margin-bottom: 6px;
    }

    .account-nav-modal-info p {
        text-align: center;
        margin-bottom: 3px;
        color: var(--black);
        font-weight: 600;
        font-size: 14px;
        line-height: calc(14 / 12);
    }

    .account-nav-modal-info span {
        display: block;
        text-align: center;
        font-size: 12px;
        line-height: 1.2;
        font-weight: 500;
        color: var(--black);
    }
}

@media (max-width: 767px) {
    .modal-menu-list>li>a.btn {
        font-size: 16px;
    }
}

/* Account */
.account {
    padding-bottom: 60px;
}

@media (max-width: 575px) {
    .account {
        padding-bottom: 30px;
    }
}

.account-wrapper {
    margin: 0 -15px;
    display: flex;
}

@media (max-width: 1319px) {
    .account-wrapper {
        margin: 0 -10px;
    }
}

.account-nav {
    flex: 0 0 20%;
    width: 20%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

@media (max-width: 1319px) {
    .account-nav {
        flex: 0 0 25%;
        width: 25%;
        padding: 0 10px;
    }
}

@media (max-width: 991px) {
    .account-nav {
        display: none;
    }
}

.account-nav-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border-radius: 15px;
    padding: 30px 0;
}

.account-user-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EBEBEB;
    font-size: 48px;
    margin-bottom: 17px;
}

.account-user-img svg {
    width: 56px;
    height: 56px;
    fill: var(--black)
}

.account-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-user-name {
    text-align: center;
    margin-bottom: 4px;
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}

.account-user-email {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    color: #A1A9B8;
}

.account-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--white);
    padding: 20px 17px;
    border-radius: 15px;
}

.account-actions-menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.account-actions-menu a {
    display: block;
    padding: 12px 14px;
    color: var(--black);
    font-size: 14px;
    line-height: 1.21;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 7px;
}

@media (max-width: 991px) {
    .account-actions-menu a {
        font-size: 12px;
        padding-right: 0;
    }
}

.account-actions-menu a:hover {
    color: var(--main);
}

.account-actions-menu a.active {
    color: var(--black);
    background: #F1F3F4;
}

.account-actions-logout,
.account-actions-login {
    font-size: 14px;
    line-height: 1.21;
    font-weight: 600;
    padding: 12px;
    border-radius: 7px;
    width: 100%;
}

.modal-account-bonus {
    padding: 20px 17px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    color: var(--main);
    font-size: 16px;
    font-weight: 600;
}

.modal-account-bonus span {
    font-size: 24px;
    font-weight: 700;
}

.modal-account-bonus svg {
    width: 15px;
    height: 15px;
    fill: var(--main)
}

.account-body {
    padding: 0 15px;
    flex: 0 0 80%;
    max-width: 100%;
}

@media (max-width: 1319px) {
    .account-body {
        max-width: 75%;
        padding: 0 10px;
    }
}

@media (max-width: 991px) {
    .account-body {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.account-contact {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
}

@media (max-width: 575px) {
    .account-contact {
        padding: 20px 15px;
    }
}

/* @media (max-width: 575px) {   .account-contact{      border-radius: 0;      padding: 0;      background: transparent;   }} */
.account-contact-title {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.21;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .account-contact-title {
        text-align: center;
    }
}

.account-contact-form {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    margin: 0 -5px;
    margin-bottom: 10px;
}

.account-contact-group {
    flex: 0 0 33.3%;
    width: 33.3%;
    padding: 0 5px;
}

@media (max-width: 767px) {
    .account-contact-group {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (max-width: 575px) {
    .account-contact-group {
        flex: 0 0 100%;
        width: 100%;
    }
}

.account-contact-group .form-control {
    padding: 12px 18px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.account-contact-group .form-control:focus {
    border-color: var(--main)
}

.account-contact-group .form-control::placeholder {
    font-weight: 600;
    color: #989A9C;
}

.account-contact-group label {
    margin-bottom: 0;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .account-contact-group label {
        font-size: 12px;
    }
}

.account-contact-group label span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 5px;
    background: #E3E3E3;
}

@media (max-width: 575px) {
    .account-contact-group label span {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        border: 1px solid #C6C6C6;
        background: var(--white);
    }
}

.account-contact-group label span svg {
    opacity: 0;
    transition: 0.4s ease;
}

.account-contact-group label input:checked+span svg {
    opacity: 1;
}

.account-contact-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.account-contact-btn .btn {
    max-width: 100%;
    border-radius: 11px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .account-contact-btn .btn {
        padding: 11px;
        width: 100%;
        font-size: 12px;
    }
}

.account-contact-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -5px;
}

@media (max-width: 575px) {
    .account-contact-bottom {
        margin: 0;
        flex-direction: column;
        gap: 20px
    }
}

.account-contact-bottom .account-contact-group {
    width: 66.6%;
    flex: 0 0 66.6%;
}

@media (max-width: 767px) {
    .account-contact-bottom .account-contact-group {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (max-width: 575px) {
    .account-contact-bottom .account-contact-group {
        flex: 0 0 100%;
        width: 100%;
        padding: 0;
    }
}

.account-contact-reset-password {
    width: 33.3%;
    padding: 0 5px;
}

@media (max-width: 767px) {
    .account-contact-reset-password {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .account-contact-reset-password {
        width: 100%;
        padding: 0;
    }
}

.account-contact-reset-password .btn {
    background: #E3E3E3;
    border-radius: 6px;
    color: var(--black);
    padding: 9px;
    width: 100%;
}

@media (max-width: 575px) {
    .account-contact-reset-password .btn {
        font-size: 12px;
    }
}

.account-contact-reset-password .btn:hover {
    background: var(--main);
    color: var(--white);
}

.account-history {
    background: var(--white);
    border-radius: 15px;
    padding: 20px 25px;
}

.account-history-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.account-history-table {
    margin-bottom: 0;
}

.account-history-table th,
.account-history-table td {
    border-bottom: 0;
    padding: 20px 10px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

@media (min-width: 768px) {

    .account-history-table th:first-child,
    .account-history-table td:first-child {
        padding-left: 28px;
    }

    .account-history-table th:last-child,
    .account-history-table td:last-child {
        padding-right: 28px;
    }
}

@media (min-width: 576px) {
    .account-history-table th:first-child {
        border-radius: 11px 0 0 11px;
    }

    .account-history-table th:last-child {
        border-radius: 0 11px 11px 0;
    }
}

.account-history-table th {
    background: #EEF4F7;
    color: #9A9898;
}

.account-history-table td {
    color: var(--black);
    border-bottom: 1px solid #dcdcdc;
}

.account-history-table tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 767px) {

    .account-history-table th,
    .account-history-table td {
        padding: 15px;
        font-size: 12px;
    }

    .account-history-table th:last-child,
    .account-history-table td:last-child {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .account-history .table-responsive {
        margin: 0 -25px;
    }
}

.account-adress {
    background: var(--white);
    border-radius: 15px;
    padding: 20px 25px;
}

@media (max-width: 575px) {
    .account-adress {
        padding: 20px 15px;
    }
}

.account-adress-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .account-adress-title {
        text-align: center;
    }
}

.account-adress-group {
    margin-bottom: 15px;
}

.account-adress-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.account-adress-item {
    background: #F1F3F4;
    border-radius: 7px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media (max-width: 575px) {
    .account-adress-item {
        padding: 20px 15px 20px;
    }
}

.account-adress-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.account-adress-item-adress {
    color: #989A9C;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .account-adress-item-adress {
        font-size: 12px;
    }
}

.account-adress-item-remove {
    padding: 0;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 575px) {
    .account-adress-item-remove {
        position: absolute;
        top: 7px;
        right: 7px;
    }
}

.account-adress-item-remove svg {
    width: 14px;
    height: 14px;
    fill: #989A9C;
    transition: 0.3s ease;
}

.account-adress-item-remove:hover svg {
    fill: var(--black)
}

.account-adress-add {
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.account-adress-add-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F3F4;
    transition: 0.3s ease;
}

.account-adress-add-icon svg {
    width: 20px;
    height: 20px;
    fill: #989A9C;
    transition: 0.3s ease;
}

.account-adress-add-icon:hover {
    background: var(--main);
}

.account-adress-add-icon:hover svg {
    fill: var(--white)
}

.account-adress-new {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.account-adress-form-group {
    margin-bottom: 10px;
}

.account-adress-form-group:last-child {
    margin-bottom: 0;
}

/* Cart modal */
.offcanvas {
    border: 0;
    background: transparent;
    top: 0;
    height: 100%;
    width: 340px;
}

.cart-popup-content {
    background: var(--white);
    border-left: 1px solid #dedede;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px 30px;
}

.cart-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-popup-counter {
    color: var(--black);
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size: 16px;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.cart-popup-counter span {
    display: block;
    width: 22px;
    flex: 0 0 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--main);
    color: var(--white);
    line-height: 24px;
    text-align: center;
    font-size: 14px;
}

.cart-popup-delete {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
    font-size: 14px;
    padding: 0;
    font-weight: 500;
    color: var(--black);
}

.cart-popup-delete:hover {
    color: var(--black);
    opacity: 0.75;
}

.cart-popup-delete svg {
    width: 14px;
    height: 14px;
    fill: var(--black)
}

.cart-popup-body {
    flex-grow: 1;
    overflow-y: auto;
}

.cart-popup-body::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.cart-popup-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-popup-item {
    background: #EFF3F5;
    border-radius: 10px;
    padding: 10px;
}

.cart-popup-item-header {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 9px;
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
    padding-left: 5px;
    padding-top: 5px;
}

.cart-popup-item-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 0;
    display: flex;
}

.cart-popup-item-remove svg {
    width: 14px;
    height: 14px;
    fill: #929292;
    transition: 0.3s ease;
}

.cart-popup-item-remove:hover svg {
    fill: var(--black)
}

.cart-popup-item-img {
    margin-bottom: 0;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
}

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

.cart-popup-item-content {
    padding-right: 20px;
}

.cart-popup-item-title {
    font-size: 14px;
    line-height: 1.21;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 3px;
}

.cart-popup-item-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.cart-popup-item-list li {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: #5D636F;
}

@media (max-width: 991px) {
    .cart-popup-item-list li {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 1px;
    }
}

.cart-popup-item-list li:last-child {
    margin-bottom: 0;
}

.cart-popup-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-popup-item-price {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: var(--black);
}

.qnt {
    border: 1px solid #DCDCDC;
    border-radius: 9px;
    display: flex;
}

.qnt-btn {
    padding: 0;
    display: flex;
    align-items: center;
}

.qnt-btn svg {
    width: 10px;
    fill: #555555
}

.qnt-minus {
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-right: 6px;
}

.qnt-minus svg {
    height: 2px;
}

.qnt-input {
    padding: 0;
    text-align: center;
    width: 26px;
    flex: 0 0 26px;
    border: 0;
    border-radius: 0;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
}

.qnt-input::-webkit-outer-spin-button,
.qnt-input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

.qnt-plus {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 6px;
}

.qnt-plus svg {
    height: 10px;
}

.cart-popup-footer {
    border-top: 1px solid #EAEAEA;
    padding-top: 10px;
}

.cart-popup-footer-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cart-popup-footer-title {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
    line-height: 1.21;
    letter-spacing: 0.02em;
}

.cart-popup-footer-price {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
    line-height: 1.21;
    letter-spacing: 0.02em;
}

.cart-popup-footer-btn {
    width: 100%;
    border-radius: 11px;
    padding: 8px 6px 9px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.35;
}

/* Main header */
.main-header {
    margin-top: 40px;
    padding-bottom: 30px;
}

@media (max-width: 991px) {
    .main-header {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .main-header {
        margin-top: 20px;
        padding-bottom: 20px;
    }
}

.main-header-body {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.main-header-back {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    padding: 8px 14px;
    background: #DBDBDB;
    border-radius: 11px;
    font-size: 12px;
    line-height: 1.21;
    font-weight: 600;
    color: var(--black);
}

.main-header-back svg {
    width: 16px;
    height: 16px;
    fill: var(--black);
    transition: 0.3s ease;
}

.main-header-back:hover {
    color: var(--white);
    background: var(--main);
}

.main-header-back:hover svg {
    fill: var(--white)
}

@media (max-width: 767px) {
    .main-header-back {
        padding: 15px;
        margin-left: -15px;
        margin-bottom: -15px;
        margin-top: -15px;
        background: transparent;
        border-radius: 0;
    }

    .main-header-back span {
        display: none;
    }

    .main-header-back:hover {
        background: transparent;
    }

    .main-header-back:hover svg {
        fill: var(--black);
    }
}

.main-header-title {
    position: absolute;
    font-size: 24px;
    line-height: 1.21;
    font-weight: 600;
    color: var(--black);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .simple-page .main-header-body {
        justify-content: center;
    }
}

.simple-page .main-header-title {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0);
}

@media (max-width: 991px) {
    .main-header-title {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .main-header-title {
        font-size: 18px;
        white-space: nowrap;
    }
}

/* Order */
.order {
    padding-bottom: 60px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    margin: 0 -15px 20px;
}

@media (max-width: 575px) {
    .order-header {
        margin: 0 0 20px;
    }
}

.order-header-spoiler {
    flex: 0 0 50%;
    width: 50%;
    padding: 0 15px;
}

@media (max-width: 575px) {
    .order-header-spoiler {
        padding: 0;
        flex: 0 0 100%;
        width: 100%;
    }
}

.order-header-spoiler-item {
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    padding: 11px 17px;
}

.order-header-spoiler-header svg {
    transition: 0.3s ease-in-out;
    width: 10px;
    height: 6px;
    flex: 0 0 10px;
}

.order-header-spoiler-title {
    font-size: 16px;
    font-weight: 600;
}

.order-header-spoiler-body {
    margin-top: 10px;
    padding-bottom: 5px;
}

.order-header-spoiler-body>* {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.order-header-spoiler-body>*:last-child {
    margin-bottom: 0;
}

.order-body {
    display: flex;
    margin: 0 -15px 50px;
}

@media (max-width: 991px) {
    .order-body {
        flex-wrap: wrap;
        margin: 0 0 30px;
    }
}

.order-cart {
    flex: 0 0 66.6%;
    width: 66.6%;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .order-cart {
        width: 100%;
        flex: 0 0 100%;
        padding: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .order-cart {
        padding-bottom: 20px;
        border-bottom: 1px solid #DCDCDC;
    }
}

.order-cart-content {
    background: var(--white);
    border-radius: 11px;
    padding: 20px 20px 24px;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .order-cart-content {
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
}

.order-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.order-cart-title {
    color: var(--black);
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size: 16px;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.order-cart-title span {
    display: block;
    min-width: 22px;
    flex: 0 0 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--main);
    color: var(--white);
    line-height: 24px;
    text-align: center;
    font-size: 14px;
}

.order-cart-delete {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
    font-size: 14px;
    padding: 0;
    font-weight: 500;
    color: #B3B3B3;
}

.order-cart-delete:hover {
    color: var(--main);
    opacity: 0.75;
}

.order-cart-delete svg {
    width: 14px;
    height: 14px;
    fill: #B3B3B3;
    transition: 0.3s ease;
}

.order-cart-delete:hover svg {
    fill: var(--main)
}

.order-cart-list {
    margin-bottom: 25px;
}

@media (max-width: 575px) {
    .order-cart-list {
        margin-bottom: 20px;
    }
}

.order-cart-item {
    margin-bottom: 10px;
    padding: 18px;
    background: #EFF3F5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    column-gap: 35px;
}

@media (max-width: 1199px) {
    .order-cart-item {
        column-gap: 20px;
    }
}

@media (max-width: 575px) {
    .order-cart-item {
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        border-radius: 0;
        background: transparent;
    }

    .order-cart-item:nth-child(2n+1) {
        background: var(--white);
        border-radius: 10px;
    }
}

.order-cart-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .order-cart-item-col:nth-child(1) {
        flex-grow: 1;
    }

    .order-cart-item-col:nth-child(2) {
        flex: 0 0 80px;
    }

    .order-cart-item-col:nth-child(3) {
        flex: 0 0 100px;
    }
}

@media (max-width: 575px) {
    .order-cart-item-col {
        border-bottom: 1px solid #DCDCDC;
        padding: 10px;
    }

    .order-cart-item-col:nth-child(3),
    .order-cart-item-col:last-child {
        border-bottom: 0;
    }
}

.order-cart-item-main {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

@media (max-width: 1199px) {
    .order-cart-item-main {
        column-gap: 16px;
    }
}

@media (max-width: 575px) {
    .order-cart-item-main {
        padding-right: 30px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

.order-cart-item-thumb {
    margin-bottom: 0;
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
}

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

.order-cart-item-title {
    font-size: 16px;
    line-height: 1.21;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 5px;
}

.order-cart-item-info {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.order-cart-item-info li {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: #5D636F;
}

@media (max-width: 991px) {
    .order-cart-item-info li {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 1px;
    }
}

.order-cart-item-info li:last-child {
    margin-bottom: 0;
}

.order-cart-item-counter {
    display: flex;
    justify-content: center;
}

@media (max-width: 575px) {
    .order-cart-item-counter {
        justify-content: flex-end;
        position: relative;
    }

    .order-cart-item-counter:before {
        content: attr(data-label);
        position: absolute;
        height: 100%;
        top: -1px;
        font-weight: 600;
        font-size: 14px;
        display: flex;
        align-items: center;
        left: 10px;
        color: #5D636F;
    }
}

.order-cart-item-price {
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    text-align: center;
}

@media (max-width: 1199px) {
    .order-cart-item-price {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .order-cart-item-price {
        text-align: right;
        position: relative;
        min-height: 53px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .order-cart-item-price:before {
        content: attr(data-label);
        text-align: left;
        position: absolute;
        height: 100%;
        top: -1px;
        font-weight: 600;
        font-size: 14px;
        display: flex;
        align-items: center;
        left: 10px;
        color: #5D636F;
    }
}

.order-cart-item-delete {
    flex: 0 0 38px;
}

@media (max-width: 1199px) {
    .order-cart-item-delete {
        flex: 0 0 32px;
    }
}

@media (max-width: 575px) {
    .order-cart-item-delete {
        flex: 0 0 100%;
        position: absolute;
        right: 15px;
    }
}

.remove-of-cart {
    padding: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DCDCDC;
}

@media (max-width: 1199px) {
    .remove-of-cart {
        width: 32px;
        height: 32px;
    }
}

.remove-of-cart svg {
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    fill: #DCDCDC;
    transition: 0.3s ease;
}

.remove-of-cart:hover {
    background: #DCDCDC;
}

.remove-of-cart:hover svg {
    fill: var(--black)
}

.order-cart-related {
    margin-bottom: 20px;
}

.order-cart-related-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black);
}

.order-cart-related-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
}

@media (max-width: 767px) {
    .order-cart-related-list {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .order-cart-related-list::-webkit-scrollbar {
        height: 0;
    }
}

@media (max-width: 575px) {
    .order-cart-related-list {
        margin: 0 -15px;
        padding: 0 15px;
    }
}

.order-cart-related-item {
    flex: 0 0 75px;
    width: 75px;
}

.order-cart-related-item-title {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.68);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0;
    font-size: 12px;
}

.order-cart-related-item:hover .order-cart-related-item-img,
.order-cart-related-item.active .order-cart-related-item-img {
    border-color: var(--main)
}

.order-cart-related-item-img {
    margin-bottom: 5px;
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s ease;
}

.order-cart-related-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.order-cart-related-item span {
    font-size: 14px;
    font-weight: 500;
}

.order-cart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #EFF3F5;
    border-radius: 8px;
}

@media (max-width: 575px) {
    .order-cart-footer {
        flex-wrap: wrap;
        row-gap: 3px;
        background: var(--white);
    }
}

.order-cart-total {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 16px;
    font-weight: 600;
    color: var(--black);
}

@media (max-width: 991px) {
    .order-cart-total {
        font-size: 14px;
        column-gap: 12px;
    }
}

@media (max-width: 575px) {
    .order-cart-total {
        justify-content: center;
    }
}

.order-cart-total span {
    font-weight: 700;
    color: var(--main);
    font-size: 20px;
}

@media (max-width: 991px) {
    .order-cart-total span {
        font-size: 20px;
    }
}

.order-cart-total-delivery {
    display: flex;
    align-items: center;
    column-gap: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

@media (max-width: 575px) {
    .order-cart-total-delivery {
        font-size: 14px;
    }
}

.order-cart-total-delivery span {
    color: var(--main);
    font-weight: 600;
}

.order-cart-promo {
    border-radius: 11px;
    background: var(--white);
    padding: 20px;
}

.order-cart-promo-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.order-cart-promo-form {
    display: flex;
    column-gap: 15px;
}

@media (max-width: 575px) {
    .order-cart-promo-form {
        flex-direction: column;
        gap: 10px;
    }
}

.order-cart-promo-form-group {
    flex-grow: 1;
}

.order-cart-promo-form-btn .btn {
    height: 100%;
    padding: 0 36px;
    border-radius: 8px;
}

@media (max-width: 575px) {
    .order-cart-promo-form-btn .btn {
        width: 100%;
        padding: 8px 0;
        border-radius: 6px;
    }
}

.order-cart-pay {
    border-radius: 11px;
    background: var(--white);
    padding: 20px;
    margin-bottom: 20px;
}

.order-cart-pay-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .order-cart-pay-header {
        flex-direction: column;
        gap: 20px;
    }
}

.order-cart-pay-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 3px;
}

.order-cart-pay-text {
    font-size: 10px;
    line-height: 1.4;
    margin-bottom: 0;
    color: #989A9C;
}

.order-cart-pay-sales {
    display: flex;
    column-gap: 20px;
}

@media (max-width: 575px) {
    .order-cart-pay-sales {
        gap: 10px;
        flex-direction: column;
    }
}

.order-cart-pay-sale {
    display: flex;
    align-items: center;
    column-gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.order-cart-pay-sale span {
    display: flex;
    justify-content: center;
    background: var(--main);
    color: var(--white);
    border-radius: 50px;
    padding: 0 10px;
    line-height: 1.7;
    min-width: 50px;
    text-align: center;
}

.order-cart-pay-body {
    list-style: none;
    padding-left: 0;
    /* margin-bottom: 20px; */
    display: flex;
    padding: 2px;
    background: #EFF3F5;
    border-radius: 6px;
}

@media (max-width: 1199px) {
    .order-cart-pay-body {
        overflow-x: auto;
    }

    .order-cart-pay-body::-webkit-scrollbar {
        height: 0;
    }
}

@media (max-width: 575px) {
    .order-cart-pay-body {
        flex-direction: column;
        overflow: hidden;
        padding: 0;
        background: transparent;
        gap: 6px
    }
}

.order-cart-pay-item {
    flex: 1 0 33.3%;
    min-width: 33.3%;
    cursor: pointer;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .order-cart-pay-item {
        white-space: nowrap;
        flex: 0 0 auto;
    }
}

@media (max-width: 575px) {
    .order-cart-pay-item {
        white-space: normal;
        background: #EFF3F5;
    }
}

.order-cart-pay-item input:checked+span {
    background: var(--main);
    color: var(--white);
}

.order-cart-pay-item span {
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    transition: 0.3s ease;
    width: 100%;
    display: block;
    padding: 4px 10px;
    line-height: 2;
}

@media (max-width: 1199px) {
    .order-cart-pay-item span {
        padding: 4px 20px;
    }
}

@media (max-width: 575px) {
    .order-cart-pay-item span {
        padding: 4px 8px;
    }
}

.order-cart-pay-accept {
    display: flex;
    align-items: center;
    column-gap: 20px;
    cursor: pointer;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .order-cart-pay-accept {
        column-gap: 10px;
    }
}

.order-cart-pay-accept span {
    display: block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    flex: 0 0 17px;
    border: 1px solid #989A9C;
    background: var(--white);
    transition: 0.3s ease;
}

.order-cart-pay-accept input:checked+span {
    background: var(--main);
    border-color: var(--main)
}

.order-cart-pay-accept-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-cart-pay-accept-text p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 575px) {
    .order-cart-pay-accept-text p {
        font-size: 10px;
    }
}

.order-cart-pay-accept-text p b {
    font-weight: 600;
}

.order-cart-pay-accept-text p a {
    border-bottom: 1px solid var(--black);
}

.order-cart-pay-accept-text p a:hover {
    border-color: var(--main)
}

.order-form {
    padding: 0 15px;
    flex: 0 0 33.3%;
    width: 33.3%;
}

@media (max-width: 991px) {
    .order-form {
        padding: 0;
        flex: 0 0 100%;
        width: 100%;
    }
}

.order-form-content {
    padding: 20px;
    background: var(--white);
    border-radius: 11px;
}

@media (max-width: 575px) {
    .order-form-content {
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
}

.order-form-content-header {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
    flex-wrap: wrap;
    row-gap: 4px;
}

.order-form-title {
    font-size: 16px;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: var(--black);
}

.order-form-content-header-reg {
    font-size: 14px;
    color: #B3B3B3;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.order-form-group {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

@media (max-width: 1199px) {
    .order-form-group {
        flex-direction: column;
        gap: 3px;
        align-items: flex-start;
    }
}

.order-form-group>label:first-child {
    flex: 0 0 120px;
    font-weight: 500;
    color: var(--black);
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .order-form-group>label:first-child {
        flex: 0 0 100%;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .order-form-form {
        display: flex;
        flex-wrap: wrap;
    }

    .order-form-group {
        flex: 0 0 50%;
        padding: 0 5px;
    }

    .order-form-group:last-child {
        flex: 0 0 100%;
    }
}

.order-form-group:last-child {
    margin-bottom: 0;
}

.order-form-group .textarea {
    min-height: 100px;
}

.order-form-submit {
    display: flex;
    justify-content: center;
}

.order-form-submit .btn {
    width: 100%;
    max-width: 740px;
    font-size: 16px;
    padding: 9px 9px 10px;
    border-radius: 11px;
}

@media (max-width: 767px) {
    .order-form-submit .btn {
        font-size: 14px;
    }
}

.order-form-form-delivery {
    margin-top: 20px;
    width: 100%;
}

.order-form-form-delivery .alert {
    font-size: 14px;
}

.order-form-form-delivery-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    display: flex;
    padding: 2px;
    border-radius: 6px;
    background: #EFF3F5;
    border-bottom: 0;
}

@media (max-width: 575px) {
    .order-form-form-delivery-list {
        background: var(--white);
    }
}

.order-form-form-delivery-item {
    flex: 0 0 50%;
    width: 50%;
    display: block;
    cursor: pointer;
    margin-bottom: 0;
}

.order-form-form-delivery-item.active span {
    background: var(--main);
    color: var(--white);
}

.order-form-form-delivery-item span {
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    transition: 0.3s ease;
    width: 100%;
    display: block;
    padding: 4px 10px;
    line-height: 2;
}

.order-form-form-select {
    /* width: calc(100% - 130px); */
    width: 100%;
}

.order-form-form-btn {
    background-color: var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--black);
    height: auto;
    padding: 12px 14px;
    transition: 0.3s ease, background-position 0s;
    border: 1px solid #F4F4F4;
    width: 100%;
}

@media (max-width: 767px) {
    .order-form-form-btn {
        padding: 10px 14px;
    }
}

.order-form-form-list {
    background: var(--white);
    border: 1px solid #F4F4F4;
    width: 100%;
    border-radius: 8px;
    padding: 2px;
    max-height: 150px;
    overflow-y: auto;
    transition: top 0.3s ease;
}

.select__btn.active+.order-form-form-list {
    top: calc(100% + 4px)
}

.order-form-form-item {
    margin-bottom: 2px;
    background: #F4F4F4;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
}

.order-form-form-item:hover {
    background: #EFF3F5;
    color: var(--black);
}

.order-form-form-item.active {
    background: var(--main);
    color: var(--white);
    font-weight: 600;
}

.order-form-form-item:last-child {
    margin-bottom: 0;
}

/* Sign */
.sign {
    padding: 0 0 30px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

@media (max-width: 575px) {
    .sign {}
}

.sign .alert {
    font-size: 14px;
}

.sign-body {
    margin: 0 auto;
    width: 100%;
    max-width: 340px;
    background: var(--white);
    border-radius: 11px;
    padding: 30px 16px 20px;
}

@media (max-width: 575px) {
    .sign-body {
        padding: 40px 15px 25px;
    }
}

.sign-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--color);
    margin-bottom: 20px;
}

.sign-form {
    margin-bottom: 30px;
}

.sign-form:last-child {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .sign-form {
        margin-bottom: 16px;
    }
}

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

@media (max-width: 575px) {
    .sign-form-group {
        margin-bottom: 10px;
    }
}

.sign-form-group:last-child {
    margin-bottom: 0;
}

.sign-form-group label {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 20px;
    color: var(--black);
    font-weight: 600;
}

.sign-form-group .form-control {
    background: var(--white);
    color: var(--color) !important;
    border-color: #F4F4F4 !important;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 9px 13px;
    font-size: 14px;
    border: 1px solid #C6C6C6;
}

@media (max-width: 575px) {
    .sign-form-group .form-control {
        font-size: 14px;
        padding: 10px 16px;
    }
}

.sign-form-group .form-control:focus {
    border-color: var(--main) !important
}

.sign-form-group .form-control::placeholder {
    font-weight: 500;
}

.sign-form-group .form-control.is-invalid,
.was-validated .sign-form-group .form-control:invalid {
    border-color: var(--red) !important;
    color: var(--red) !important;
}

.sign-form-invalid {
    color: var(--red);
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    opacity: 0;
    transition: 0.4s ease;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .sign-form-invalid {
        top: calc(100% + 6px);
        font-size: 9px;
    }
}

.sign-form-group .form-control.is-invalid+.sign-form-invalid,
.was-validated .sign-form-group .form-control:invalid+.sign-form-invalid {
    opacity: 1;
}

.sign-form-group .btn {
    font-family: 'Montserrat', sans-serif;
    padding: 10px;
    width: 100%;
    border-radius: 11px;
}

.sign-form-btn {
    margin-top: 35px;
}

.reset-password .sign-form-btn {
    margin-top: 20px;
}

.sing-accept {
    margin-top: 20px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .sing-accept {
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

.sing-accept label {
    margin-bottom: 0;
    margin-top: 10px;
    display: inline-flex;
    align-items: flex-start;
    column-gap: 10px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    color: #A7A7A7;
    font-family: 'Montserrat', sans-serif;
}

.sing-accept label span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 5px;
    background: #E3E3E3;
    margin-top: 1px;
}

@media (max-width: 575px) {
    .sing-accept label span {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        border: 1px solid #C6C6C6;
        background: var(--white);
    }
}

.sing-accept label span svg {
    opacity: 0;
    transition: 0.4s ease;
}

.sing-accept label input:checked+span svg {
    opacity: 1;
}

.sing-accept label p {
    margin-bottom: 0;
}

.sing-accept label p a {
    border-bottom: 1px solid #A7A7A7;
    color: #A7A7A7;
}

.sing-accept label p a:hover {
    color: var(--color);
    border-color: var(--color)
}

.reset-password .form-control.is-invalid,
.reset-password .was-validated .form-control:invalid {
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: var(--white);
}

@media (max-width: 991px) {
    .footer {
        padding-bottom: 64px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding-bottom: 50px;
    }
}

.footer-body {
    padding: 40px 0;
}

@media (max-width: 767px) {
    .footer-body {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.footer-top {
    padding-bottom: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #6F6F6F;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .footer-top {
        gap: 20px;
        padding-bottom: 0;
        margin-bottom: 50px;
        border-bottom: 0;
    }
}

.footer-logo {
    display: flex;
}

@media (max-width: 767px) {
    .footer-logo {
        display: none;
    }
}

.footer-logo a {
    display: flex;
    height: 59px;
}

.footer-logo img {
    height: 100%;
}

.footer-nav {
    padding-top: 20px;
    display: flex;
    column-gap: 160px;
}

@media (max-width: 1199px) {
    .footer-nav {
        column-gap: 100px;
    }
}

@media (max-width: 767px) {
    .footer-nav {
        flex-wrap: wrap;
        row-gap: 45px;
    }
}

@media (max-width: 575px) {
    .footer-nav {
        column-gap: 30px;
        justify-content: space-between;
    }
}

.footer-nav-title {
    color: var(--black);
    font-weight: 600;
    font-size: 22px;
    line-height: calc(26 / 22);
    margin-bottom: 25px;
}

@media (max-width: 575px) {
    .footer-nav-title {
        font-size: 16px;
        margin-bottom: 18px;
    }
}

.footer-menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 767px) {
    .footer-menu {
        gap: 18px;
    }
}

.footer-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    line-height: calc(19 / 16);
}

@media (max-width: 575px) {
    .footer-menu a {
        font-size: 14px;
    }
}

.footer-contacts {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

@media (max-width: 575px) {
    .footer-contacts {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-contacts a {
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .footer-contacts a {
        font-size: 14px;
    }
}

.footer-contacts span {
    font-size: 15px;
    line-height: calc(20 / 15);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #AEAEAE;
    display: block;
}

.footer-nav-btn {
    background: var(--main);
    color: var(--white);
    padding: 6px 23px 7px;
    font-size: 14px;
    line-height: calc(20 / 12);
    border-radius: 6px;
    margin-bottom: 10px;
    width: 100%;
}

.footer-nav-btn:hover {
    background: var(--main);
    color: var(--white);
}

.footer-nav-text {
    margin-bottom: 0;
    font-size: 12px;
    line-height: calc(20 / 12);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #AEAEAE;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
}

@media (max-width: 991px) {
    .footer-bottom {
        flex-direction: column-reverse;
    }
}

.footer-text {
    font-size: 14px;
    font-weight: 500;
    line-height: calc(17 / 14);
    letter-spacing: 0.02em;
    color: #AEAEAE;
}

@media (max-width: 991px) {
    .footer-text {
        max-width: 100%;
        padding-top: 30px;
    }
}

@media (max-width: 575px) {
    .footer-text {
        padding-top: 0;
        font-size: 10px;
        margin-top: 50px;
        text-align: center;
    }

    .footer-text br {
        display: none;
    }
}

.footer-socials {
    display: flex;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    gap: 18px;
}

@media (max-width: 575px) {
    .footer-socials {
        justify-content: center;
        transform: scale(1.2);
    }
}

.footer-socials a svg {
    transition: 0.3s ease;
    fill: var(--main)
}

.footer-socials a:hover svg {
    fill: #989A9C;
}

/* Footer end */
/* Nav panel */
.nav-panel {
    display: none;
}

@media (max-width: 991px) {
    .nav-panel {
        display: block;
        position: fixed;
        z-index: 1000;
        bottom: 10px;
        width: 100%;
    }

    .nav-panel-menu {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
        display: flex;
        justify-content: space-around;
        background: var(--white);
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 6px 15px;
    }

    .nav-panel-item a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .nav-panel-item svg {
        width: 24px;
        height: 24px;
        fill: var(--black)
    }

    .nav-panel-item.active svg {
        fill: var(--main)
    }

    .nav-panel-item span {
        color: var(--black);
        font-size: 12px;
        font-weight: 600;
    }

    .nav-panel-item.active span {
        color: var(--main)
    }
}

@media (max-width: 575px) {
    .nav-panel-menu {
        justify-content: space-between;
    }

    .nav-panel-item svg {
        width: 18px;
        height: 18px;
    }

    .nav-panel-item span {
        font-size: 10px;
    }
}

/* Nav panel end */
/* Spoilers */
.spoiler-item-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spoiler-item-header>* {
    pointer-events: none;
}

.spoiler-item-header svg {
    transition: 0.3s ease;
}

.spoiler-item.show .spoiler-item-header>svg {
    transform: rotate(180deg);
}

.spoiler-item-body {
    display: none;
}

/* Spoilers end */
/* Modal product */
#modal-product {
    padding: 0 10px !important;
}

.modal-dialog {
    max-width: 950px;
    margin: 50px auto;
}

@media (min-width: 1200px) {
    .modal-dialog {
        min-height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
        height: calc(100vh - 100px);
    }
}

.modal-content {
    border-radius: 11px;
    border: 0;
    max-height: 100%;
    height: 100%;
}

.modal-close {
    position: absolute;
    right: -9px;
    top: -9px;
    transform: translate(100%, -100%);
    padding: 0;
}

@media (max-width: 1199px) {
    .modal-close {
        right: 0;
        transform: translate(0%, -100%);
    }
}

.modal-close svg {
    width: 30px;
    height: 30px;
    fill: var(--white)
}

.modal-body {
    padding: 0;
    border-radius: 11px;
    overflow: hidden;
    height: 100%;
}

.modal-product {
    display: flex;
    height: 100%;
}

@media (max-width: 767px) {
    .modal-product {
        flex-direction: column;
    }
}

.modal-product-gallery {
    flex: 0 0 550px;
    max-width: 550px;
    background: var(--white);
    padding: 70px 75px;
}

@media (max-width: 991px) {
    .modal-product-gallery {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 60px 30px;
    }
}

@media (max-width: 767px) {
    .modal-product-gallery {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px;
    }
}

.modal-product-gallery-main {
    margin-bottom: 65px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .modal-product-gallery-main {
        margin: 0 20px 18px;
    }
}

.modal-product-gallery-nav {
    overflow: hidden;
}

.modal-product-main-item figure {
    margin-bottom: 0;
    padding-top: 100%;
    overflow: hidden;
    position: relative;
}

.modal-product-main-item figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.modal-product-nav-item figure {
    margin-bottom: 0;
    padding-top: 100%;
    overflow: hidden;
    position: relative;
}

.modal-product-nav-item figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.modal-product-content {
    background: var(--bg);
    padding: 40px 30px;
    overflow-y: auto;
    height: 100%;
    width: 100%;
}

@media (max-width: 767px) {
    .modal-product-content {
        padding: 25px 15px;
    }
}

.modal-product-title {
    line-height: 1;
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .modal-product-title {
        font-size: 20px;
        margin-bottom: 5px;
    }
}

.modal-product-text {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.35;
}

@media (max-width: 767px) {
    .modal-product-text {
        font-size: 14px;
    }
}

.modal-product-components {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

@media (max-width: 767px) {
    .modal-product-components {
        gap: 4px;
    }
}

.modal-product-component {
    display: flex;
    align-items: center;
    column-gap: 6px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    background: var(--white);
    padding: 4px 10px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--white);
    transition: 0.3s ease;
}

.modal-product-component:hover {
    border-color: var(--main)
}

.modal-product-component svg {
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    fill: var(--black);
    position: relative;
    top: 1px;
}

.modal-product-tabs {
    padding: 2px;
    margin-bottom: 10px;
    background: var(--white);
    border-radius: 6px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 5px;
}

.modal-product-tabs-btn {
    padding: 4px;
    font-size: 12px;
    line-height: 20px;
    color: var(--black);
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
    flex-grow: 1;
}

.modal-product-tabs-btn:hover {
    color: var(--main);
}

input:checked+.modal-product-tabs-btn {
    border: 1.2px solid #3a0071
}

.modal-product-spoilers {
    margin-bottom: 10px;
}

.modal-product-spoiler {
    border-bottom: 1px solid #DDE3E6;
}

.modal-product-spoiler:last-child {
    border-bottom: 0;
}

.modal-product-spoiler-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    cursor: pointer;
}

.modal-product-spoiler-title {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--black);
    transition: 0.3s ease;
}

.modal-product-spoiler-header:hover .modal-product-spoiler-title {
    color: var(--main);
}

.modal-product-spoiler-header svg {
    width: 24px;
    height: 24px;
    fill: var(--black);
}

.modal-product-spoiler-body {
    padding-bottom: 10px;
}

.modal-product-spoiler-body>p {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.modal-product-spoiler-body>p:last-child {
    margin-bottom: 0;
}

.modal-product-spoiler-feedbacks {}

.modal-product-spoiler-feedbacks-btn {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.modal-product-spoiler-feedbacks-btn .btn {
    font-size: 14px;
    color: var(--main);
    border-bottom: 1px solid var(--main);
    font-weight: 600;
    padding: 0;
}

.modal-product-spoiler-feedbacks-slider {
    overflow: hidden;
    background: var(--white);
    border-radius: 10px;
    position: relative;
}

.modal-product-spoiler-feedbacks-slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 8px;
}

.modal-product-spoiler-feedbacks-slider-next svg,
.modal-product-spoiler-feedbacks-slider-prev svg {
    width: 24px;
    height: 24px;
    fill: var(--black);
    transition: 0.3s ease;
}

.modal-product-spoiler-feedbacks-slider-next:hover svg,
.modal-product-spoiler-feedbacks-slider-prev:hover svg {
    fill: var(--main)
}

.modal-product-spoiler-feedbacks-slider-nav .swiper-pagination {
    position: relative;
    display: flex;
    bottom: 0;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.modal-product-spoiler-feedbacks-slider-nav .swiper-pagination span {
    font-size: 12px;
    font-weight: 600;
}

.modal-product-spoiler-feedbacks-slide {
    padding: 10px;
}

.modal-product-spoiler-feedbacks-header {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
}

.modal-product-spoiler-feedbacks-person {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.modal-product-spoiler-feedbacks-person figure {
    margin-bottom: 0;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.modal-product-spoiler-feedbacks-person figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-spoiler-feedbacks-person span {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    line-height: 20px;
}

.modal-product-spoiler-feedbacks-rating {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    column-gap: 3px;
    fill: #D9D9D9;
}

.modal-product-spoiler-feedbacks-rating li svg {
    width: 18px;
    height: 18px;
}

.modal-product-spoiler-feedbacks-rating li.active svg {
    fill: var(--main)
}

.modal-product-spoiler-feedbacks-text {
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 20px;
}

.modal-product-spoiler-feedbacks-phones {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    margin-bottom: 10px;
}

.modal-product-spoiler-feedbacks-phones li {
    flex: 0 0 60px;
}

.modal-product-spoiler-feedbacks-phones li figure {
    margin-bottom: 0;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 7px;
    position: relative;
}

.modal-product-spoiler-feedbacks-phones li figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-product-related {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .modal-product-related {
        margin-bottom: 10px;
    }
}

.modal-product-related-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--black);
    margin-bottom: 18px;
}

.modal-product-related-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    margin: 0 -6px;
}

@media (max-width: 767px) {
    .modal-product-related-list {
        overflow-x: auto;
        padding-bottom: 20px;
    }
}

.modal-product-related-item {
    padding: 0 6px;
    flex: 0 0 33.3%;
}

@media (max-width: 767px) {
    .modal-product-related-item {
        flex: 0 0 105px
    }
}

.modal-product-related-item-body {
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    gap: 6px;
    cursor: pointer;
    border: 1px solid var(--white);
    transition: 0.3s ease;
}

.modal-product-related-item-body:hover,
.modal-product-related-item-body.active {
    border-color: var(--main);
}

.modal-product-related-item-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.modal-product-related-item-img {
    margin-bottom: 0;
    height: 64px;
}

.modal-product-related-item-img img {
    height: 100%;
    width: auto;
}

.modal-product-related-item-title {
    font-size: 12px;
    line-height: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    text-align: center;
}

.modal-product-related-item-price {
    text-align: center;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.02em;
}

.modal-product-add-to-cart .btn {
    width: 100%;
    padding: 10px;
}

.modal-product-spoiler-form {
    display: none;
}

.modal-product-spoiler-form-header {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-product-spoiler-form-title {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    line-height: 20px;
}

.modal-product-spoiler-form-header .modal-product-spoiler-feedbacks-btn {
    margin-bottom: 0;
}

.modal-product-spoiler-form-group {
    margin-bottom: 5px;
    display: flex;
    column-gap: 5px;
    align-items: flex-start;
}

.modal-product-spoiler-form-group .form-control {
    font-size: 12px;
    padding: 6px 8px;
    line-height: 20px;
}

.modal-product-spoiler-form-group .textarea {
    min-height: 95px;
}

.modal-product-spoiler-form-file {
    display: flex;
    margin-bottom: 0;
    background: var(--white);
    border-radius: 6px;
    padding: 5px;
    cursor: pointer;
    border: 1px solid var(--white);
    transition: 0.3s ease;
}

.modal-product-spoiler-form-file:hover {
    border-color: var(--main)
}

.modal-product-spoiler-form-file svg {
    width: 22px;
    height: 22px;
    fill: #A7A7A7
}

.modal-product-spoiler-form-btn {
    margin-top: 10px;
}

.modal-product-spoiler-form-btn .btn {
    padding: 6px 10px;
    font-size: 12px;
    line-height: 20px;
    border-radius: 6px;
}

/* Modal auth */
._sign.modal {
    padding: 0 10px !important;
}

._sign .modal-dialog {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    min-height: calc(100vh - 100px);
    max-height: calc(100vh - 100px);
    height: calc(100vh - 100px);
}

@media (max-width: 767px) {
    ._sign .modal-dialog {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    ._sign .modal-dialog {
        margin-top: 62px;
    }
}

._sign .modal-content {
    height: auto;
    max-height: fit-content;
}

._sign .modal-close {
    top: 30px;
    transform: translateX(-50%);
    left: 0;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 4px 3px 10px rgba(0, 0, 0, 0.16)
}

@media (max-width: 575px) {
    ._sign .modal-close {
        right: 0;
        left: auto;
        transform: translateY(-100%);
        top: -8px;
    }
}

._sign .modal-close svg {
    width: 100%;
    height: 100%;
    fill: #AAB0BE;
    transition: 0.3s ease;
}

._sign .modal-close:hover svg {
    fill: var(--black)
}

._sign .modal-body {
    padding: 35px 35px 30px;
}

@media (max-width: 575px) {
    ._sign .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.modal-auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    height: 60px;
}

.modal-auth-logo img {
    height: 100%;
    max-width: 100%;
}

.modal-auth-title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: var(--black);
    margin-bottom: 40px;
}

.modal-auth-form {
    margin-bottom: 26px;
}

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

.modal-auth-form-group:last-child {
    margin-bottom: 0;
}

.modal-auth-form-reset {
    display: flex;
    justify-content: flex-end;
}

.reset-password-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1946B4;
    font-size: 14px;
    border-bottom: 1px solid var(--color);
}

.modal-auth-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-auth-btns .btn {
    border-radius: 7px;
    padding: 9px;
    font-size: 14px;
}

.modal-auth-reg {
    background: var(--white);
    border: 1px solid #CCCCCC;
    color: var(--black);
}

.modal-auth-reg:hover {
    background: #CCCCCC;
    color: var(--black);
}

.modal-auth-login {
    margin-top: 90px;
}

@media (max-width: 575px) {
    .modal-auth-login {
        margin-top: 40px;
    }
}

.modal-auth-login-title {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: var(--black);
    margin-bottom: 20px;
}

.modal-auth-login-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

.modal-auth-login-list a {
    display: flex;
}

.modal-auth-login-list svg {
    width: 44px;
    height: 44px;
    fill: var(--main);
    transition: 0.3s ease;
}

.modal-auth-login-list a:hover svg {
    fill: var(--gray)
}

/* About */
.about {
    margin-bottom: 50px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .about {
        margin-bottom: 25px;
    }
}

.about-body {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 40px 50px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .about-body {
        margin-bottom: 10px;
        padding: 25px 26px 27px 30px;
        border-radius: 12px;
    }
}

.about-body h3 {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--black);
    font-weight: 600;
}

@media (max-width: 1199px) {
    .about-body h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .about-body h3 {
        font-size: 16px;
    }
}

.about-body p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 1em;
}

@media (max-width: 1199px) {
    .about-body p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .about-body p {
        font-size: 14px;
    }
}

.about-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .swiper-pagination {
        display: flex;
        justify-content: center;
        column-gap: 4px;
        margin-top: 15px !important;
        position: relative;
        bottom: 0 !important;
    }

    .swiper-pagination span {
        display: block;
        margin: 0 !important;
        width: 10px;
        flex: 0 0 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--white) !important;
        transition: 0.3s ease;
        opacity: 1;
    }

    .swiper-pagination span.swiper-pagination-bullet-active {
        background: var(--main) !important;
    }
}

.about-contacts {
    display: flex;
    margin: 0 -10px;
}

@media (max-width: 767px) {
    .about-contacts {
        flex-wrap: wrap;
    }
}

.about-contacts-content {
    flex: 0 0 calc((570 / 1310) * 100%);
    width: calc((570 / 1310) * 100%);
    padding: 0 10px;
}

@media (max-width: 767px) {
    .about-contacts-content {
        flex: 0 0 100%;
        width: 100%;
    }
}

.about-contacts-body {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 25px 30px 38px;
}

@media (max-width: 767px) {
    .about-contacts-body {
        margin-bottom: 10px;
        padding: 25px 26px 27px 30px;
        border-radius: 12px;
    }
}

.about-contacts-body h3 {
    margin-bottom: 1em;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--black);
    font-weight: 600;
}

@media (max-width: 1199px) {
    .about-contacts-body h3 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .about-contacts-body h3 {
        font-size: 16px;
    }
}

.about-contacts-body p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .about-contacts-body p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .about-contacts-body p {
        font-size: 14px;
    }
}

.about-contacts-body p:last-child {
    margin-bottom: 0;
}

.about-contacts-map {
    padding: 0 10px;
    flex-grow: 1;
}

@media (max-width: 767px) {
    .about-contacts-map {
        width: 100%;
    }
}

.about-contacts-iframe {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

@media (max-width: 767px) {
    .about-contacts-iframe {
        height: 240px;
        border-radius: 12px;
    }
}

.about-contacts-iframe>* {
    width: 100%;
    height: 100%;
}

/* Contacts */
.contacts {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .contacts {
        margin-bottom: 30px;
    }
}

.contacts-body {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    row-gap: 30px;
}

@media (max-width: 991px) {
    .contacts-body {
        margin: 0 -10px;
        row-gap: 20px;
    }
}

@media (max-width: 767px) {
    .contacts-body {
        margin: 0;
        row-gap: 10px;
    }
}

.contacts-item {
    flex: 0 0 33.3%;
    width: 33.3%;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .contacts-item {
        flex: 0 0 50%;
        width: 50%;
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .contacts-item {
        padding: 0;
        width: 100%;
        flex: 0 0 100%;
    }
}

.contacts-item-body {
    height: 100%;
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    column-gap: 30px;
}

@media (max-width: 767px) {
    .contacts-item-body {
        padding: 25px 20px;
        column-gap: 20px;
    }
}

.contacts-item-body svg {
    width: 40px;
    height: 40px;
    fill: var(--main)
}

.contacts-item-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts-item-list li {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

@media (max-width: 767px) {
    .contacts-item-list li {
        font-size: 14px;
    }
}

/* Delivery */
.delivery {
    min-height: 40vh;
    margin-bottom: 30px;
}

.delivery-body {
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .delivery-body {
        margin-bottom: 50px;
    }
}

.delivery-left-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.21;
}

@media (max-width: 767px) {
    .delivery-left-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.delivery-left-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.delivery-left-list li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
}

@media (max-width: 767px) {
    .delivery-left-list li {
        font-size: 14px;
    }
}

.delivery-right-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-right-list li {
    position: relative;
    padding-left: 23px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

@media (max-width: 767px) {
    .delivery-right-list li {
        font-size: 16px;
    }
}

.delivery-right-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--main);
}

.delivery-map-title {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
}

.delivery-map-title svg {
    width: 24px;
    height: 24px;
    fill: var(--black)
}

.delivery-map-map {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 390px;
}

@media (max-width: 991px) {
    .delivery-map-map {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .delivery-map-map {
        height: 240px;
    }
}

.delivery-map-map iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* Sales */
.sales {
    margin-bottom: 30px;
}

.sales-item {
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .sales-item {
        margin-bottom: 20px;
    }
}

.sales-item-img {
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: 10px;
    padding-top: 44%;
    position: relative;
}

.sales-item-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.sales-item-title {
    line-height: 1.35;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.page-category {
    margin-bottom: 90px;
}

@media (max-width: 991px) {
    .page-category {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .page-category {
        margin-bottom: 35px;
    }
}

.page-category-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    row-gap: 24px;
}

@media (max-width: 991px) {
    .page-category-list {
        margin: 0 -8px;
    }
}

@media (max-width: 767px) {
    .page-category-list {
        margin: 0 -5px;
    }
}

.page-category-item {
    flex: 0 0 calc(100% / 6);
    padding: 0 12px;
}

@media (max-width: 991px) {
    .page-category-item {
        padding: 0 8px;
    }
}

@media (max-width: 767px) {
    .page-category-item {
        padding: 0 5px;
        flex: 0 0 33.3%
    }
}

@media (max-width: 575px) {
    .page-category-item {
        flex: 0 0 50%
    }
}

.page-category-item a {
    display: flex;
    flex-direction: column;
}

.page-category-item a figure {
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .page-category-item a figure {
        margin-bottom: 10px;
    }
}

.page-category-item a figure img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.page-category-item a h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    transition: 0.3s ease;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.page-category-item a:hover h5 {
    color: var(--main);
}

.catalog-row {
    display: flex;
    align-items: flex-start;
    margin: 0 -15px;
}

.catalog-content {
    flex-grow: 1;
    padding: 0 15px;
}

.catalog-row .filter {
    padding: 0 15px;
    flex: 0 0 calc((330 / 1320) * 100%);
    width: calc((330 / 1320) * 100%);
}

@media (max-width: 991px) {
    .catalog-row .filter {
        display: none;
    }
}

.filter-wrapper {
    border-radius: 12px;
    background: var(--white);
    padding: 30px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .filter-wrapper {
        padding: 24px 20px;
    }
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.filter-title {
    font-size: 18px;
    line-height: calc(20 / 18);
    letter-spacing: 0.02em;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--black);
}

.filter-reset {
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: calc(20 / 14);
    letter-spacing: 0.02em;
    color: #ABABAB;
}

.filter-body {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.filter-item-title {
    font-size: 14px;
    line-height: calc(20 / 14);
    letter-spacing: 0.02em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.filter-item-inputs {
    display: flex;
    column-gap: 10px;
}

.filter-item-input {
    flex: 0 0 calc(50% - 5px);
    width: calc(50% - 5px);
}

@media (max-width: 1199px) and (min-width: 992px) {
    .filter-item-inputs {
        flex-direction: column;
        gap: 5px;
    }

    .filter-item-input {
        flex: 0 0 100%;
        width: 100%;
    }
}

.filter-item-input .form-control {
    font-size: 13px;
    line-height: calc(20 / 13);
    padding: 6px 10px;
    background: #EFF3F5;
    border-color: #EFF3F5
}

.filter-item-input .form-control:focus {
    border-color: var(--main)
}

.filter-item-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.filter-item-list li label {
    display: flex;
    margin-bottom: 0;
    align-items: center;
    cursor: pointer;
    column-gap: 15px;
}

.filter-item-list li label span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #EFF3F5;
}

.filter-item-list li label span svg {
    width: 12px;
    height: 9px;
    opacity: 0;
    transition: 0.3s ease;
    fill: var(--black)
}

.filter-item-list li label input:checked+span svg {
    opacity: 1;
}

.filter-item-list li label p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: calc(20 / 14);
    letter-spacing: 0.02em;
    color: var(--black);
}

.catalog-pagination {
    margin-top: 40px;
}

.catalog-pagination ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.catalog-pagination ul li {
    line-height: 0;
    font-size: 0;
}

.catalog-pagination ul li a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main);
    font-weight: 500;
    font-size: 14px;
    line-height: calc(17 / 14);
    letter-spacing: 0.02em;
}

.catalog-pagination ul li a:hover,
.catalog-pagination ul li.active a {
    background: var(--main);
    color: var(--white);
}

/* Modal callback */
#callback .modal-content {
    overflow: hidden;
    border-radius: 10px;
}

#callback .modal-header {
    border-bottom: 0;
    background: var(--main);
    position: relative;
    padding: 15px 20px;
}

#callback .modal-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: calc(20 / 16);
}

#callback .modal-close {
    left: auto;
    transform: translateY(-50%);
    right: 10px;
    top: 50%;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

#callback .modal-close svg {
    width: 11px;
    height: 11px;
    fill: #a7a7a7;
}

#callback .modal-close:hover svg {
    fill: var(--white)
}

#callback .textarea {
    min-height: 120px;
}

#callback .modal-body {
    padding: 20px 25px;
}

/* Product page */
.product-page {
    padding-top: 30px;
    margin-bottom: 40px;
}

.product-page-body {
    display: flex;
    /* align-items: flex-start; */
    margin: 0 -15px;
}

@media (max-width: 991px) {
    .product-page-body {
        margin: 0 -8px;
    }
}

@media (max-width: 767px) {
    .product-page-body {
        flex-wrap: wrap;
    }
}

.product-page-thumb {
    padding: 0 15px;
    flex: 0 0 50%;
    width: 50%;
}

@media (max-width: 1199px) {
    .product-page-thumb {
        flex: 0 0 40%;
        width: 40%;
    }
}

@media (max-width: 991px) {
    .product-page-thumb {
        padding: 0 8px;
    }
}

@media (max-width: 767px) {
    .product-page-thumb {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 10px;
    }
}

.product-page-thumb-content {
    background: var(--white);
    border-radius: 4px;
    padding: 20px;
}

@media (max-width: 767px) {
    .product-page-thumb-content {
        padding: 10px;
        padding-top: 30px;
        display: flex;
        flex-direction: column-reverse;
        gap: 20px
    }
}

.product-page-thumb-label {
    display: flex;
    align-items: center;
    column-gap: 5px;
    color: #5D636F;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .product-page-thumb-label {
        margin-bottom: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .product-page-thumb-label {
        margin-bottom: 0;
        font-size: 10px;
        align-items: center;
    }
}

.product-page-thumb-label svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

@media (max-width: 991px) {
    .product-page-thumb-label svg {
        position: relative;
        top: 2px;
        width: 14px;
        height: 14px;
        flex: 0 0 14px;
    }
}

@media (max-width: 767px) {
    .product-page-thumb-label svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        top: 0;
    }
}

.product-page-thumb-slider {
    overflow: hidden;
}

.product-page-thumb-slider a {
    display: flex;
    justify-content: center;
}

.product-page-thumb-slider a figure {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .product-page-thumb-slider a figure {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .product-page-thumb-slider a figure {
        height: 200px;
    }
}

.product-page-thumb-slider a figure img {
    max-width: 100%;
    max-height: 100%;
}

.product-page-thumb-slider .swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .product-page-thumb-slider .swiper-pagination {
        margin-top: 20px;
        column-gap: 6px;
    }
}

.product-page-thumb-slider .swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: 14px !important;
    height: 14px !important;
    flex: 0 0 14px;
    border-radius: 50%;
    opacity: 1 !important;
    background: #D9D9D9 !important;
    transition: 0.3s ease;
}

@media (max-width: 991px) {
    .product-page-thumb-slider .swiper-pagination .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        flex: 0 0 8px;
    }
}

.product-page-thumb-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main) !important;
}

.product-page-product {
    padding: 0 15px;
    flex: 0 0 50%;
    width: 50%;
}

@media (max-width: 1199px) {
    .product-page-product {
        flex-grow: 1;
        width: auto;
    }
}

@media (max-width: 991px) {
    .product-page-product {
        padding: 0 8px;
    }
}

.product-page-product-content {
    background: var(--white);
    border-radius: 4px;
    padding: 30px 45px 35px 45px;
}

@media (max-width: 991px) {
    .product-page-product-content {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .product-page-product-content {
        padding: 25px;
        position: relative;
    }
}

.product-page-product-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 600;
}

@media (max-width: 991px) {
    .product-page-product-title {
        font-size: 28px;
        margin-bottom: 5px;
    }
}

@media (max-width: 575px) {
    .product-page-product-title {
        font-size: 16px;
        line-height: calc(20 / 16);
    }
}

.product-page-product-label {
    color: var(--main);
    font-size: 16px;
    font-weight: 500;
    line-height: calc(20 / 16);
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .product-page-product-label {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .product-page-product-label {
        font-size: 12px;
        margin-bottom: 25px;
    }
}

.product-page-product-type {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 575px) {
    .product-page-product-type {
        margin-bottom: 30px;
    }
}

.product-page-product-type label {
    display: block;
    max-width: 110px;
    margin-bottom: 0;
    cursor: pointer;
}

.product-page-product-type label span {
    display: block;
    border: 1px solid #B3B3B3;
    border-radius: 4px;
    padding: 8px 12px;
    transition: 0.3s ease;
    font-weight: 500;
    color: #8E8E8E;
    font-size: 14px;
}

@media (max-width: 991px) {
    .product-page-product-type label span {
        padding: 6px 10px;
        font-size: 12px;
    }
}
.product-page-product-type label:hover,
.product-page-product-type label:hover span {
    border-color: var(--main);
    color: var(--main);
}
.product-page-product-type input:checked + label,
.product-page-product-type li.active label:hover span,
.product-page-product-type li.active label span {
    background: var(--main);
    border-color: var(--main);
    color: var(--white);
    font-weight: 600;
}

.product-page-product-info {
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .product-page-product-info {
        margin-bottom: 20px;
    }
}

.product-page-product-info._mob {
    display: none;
}

@media (max-width: 575px) {
    .product-page-product-info {
        display: none;
    }

    .product-page-product-info._mob {
        display: block;
        margin-bottom: 0;
        margin-top: 30px;
    }
}

.product-page-product-nav {
    background: #EFF3F5;
    border-radius: 6px;
    padding: 2px;
    display: flex;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .product-page-product-nav {
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .product-page-product-nav {
        margin-bottom: 15px;
    }
}

.product-page-product-nav-btn {
    letter-spacing: 0.02em;
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
    padding: 6px;
    text-align: center;
    flex: 0 0 50%;
    width: 50%;
}

@media (max-width: 575px) {
    .product-page-product-nav-btn {
        font-size: 10px;
    }
}

.product-page-product-nav-btn.active {
    background: var(--main);
    color: var(--white);
    font-weight: 600;
}

.product-page-product-tab {
    padding: 20px;
    background: #FAFAFA;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .product-page-product-tab {
        padding: 10px;
    }
}

.product-page-product-tab .table {
    margin-bottom: 0;
}

.product-page-product-tab .table td {
    border-bottom: 0;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: var(--black);
    padding: 6px;
}

@media (max-width: 575px) {
    .product-page-product-tab .table td {
        font-size: 10px;
        padding: 10px;
        line-height: 1.35;
    }
}

.product-page-product-tab .table td:first-child {
    color: #888888;
    padding-left: 20px;
}

@media (max-width: 575px) {
    .product-page-product-tab .table td:first-child {
        padding-left: 10px;
    }
}

.product-page-product-tab .table tr:nth-child(2n+1) td {
    background: #EFF3F5;
}

.product-page-product-tab .table tr:nth-child(2n+1) td:first-child {
    border-radius: 6px 6px 0 0;
}

.product-page-product-tab .table tr:nth-child(2n+1) td:last-child {
    border-radius: 0 6px 6px 0;
}

.product-page-product-footer {
    display: flex;
    align-items: center;
    column-gap: 6px;
    row-gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-page-product-price {
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 0;
    color: var(--black);
    letter-spacing: 0.02em;
}

@media (max-width: 991px) {
    .product-page-product-price {
        font-size: 20px;
    }
}

.product-page-product-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .product-page-product-actions {
        gap: 10px
    }
}

.product-page-product-qnt {
    border-color: #E0E0E0;
    background: #E0E0E0;
    border-radius: 8px;
}

.product-page-product-qnt .qnt-btn svg {
    width: 14px;
    height: 14px;
    fill: #343434
}

@media (max-width: 991px) {
    .product-page-product-qnt .qnt-btn svg {
        width: 12px;
        height: 12px;
    }
}

.product-page-product-qnt .qnt-input {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 991px) {
    .product-page-product-qnt .qnt-input {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .product-page-product-qnt .qnt-input {
        font-size: 20px;
    }
}

.product-page-product-actions .btn-main {
    padding: 10px 16px;
    display: flex;
    column-gap: 8px;
    align-items: center;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .product-page-product-actions .btn-main:last-child {
        display: none;
    }
}

@media (max-width: 575px) {
    .product-page-product-actions .btn-main {
        flex-grow: 1;
        justify-content: center;
    }
}

.product-page-product-actions .btn-main svg {
    width: 14px;
    height: 14px;
    fill: var(--white)
}

.product-related-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .product-related-title {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .product-related-title {
        margin-bottom: 25px;
    }
}

.drow {
    display: flex;
    flex-direction: row;
    min-height: 60vh;
    flex-wrap: wrap;
}

.drow>#content {
    padding: 2rem;
}

.drow>.account-actions {
    padding-top: 5vh;
}

.drow .form-horizontal {
    background: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
}

.drow legend {
    margin-bottom: 1.5rem;
}

.drow .form-group>label {
    margin-bottom: .7rem
}

.drow .form-group {
    margin-top: 2rem
}

.drow .buttons {
    display: flex;
    margin-top: 2rem
}

.drow .pull-left>a {
    padding: .8rem 2rem;
    background: #f5f5f5;
    border-radius: .4rem;
}

.drow .pull-right>button {
    padding: .8rem 2rem;
    background: #3A0071;
    margin-left: 1rem;
    color: #fff;
    border-radius: .4rem;
}

@media screen and (max-width: 1000px) {

    .drow>.account-actions,
    .drow>#content {
        width: 100%;
    }
}

@media screen and (max-width: 470px) {
    .drow .buttons {
        flex-direction: column;
    }

    .drow .pull-left a,
    .drow .pull-right button {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-left: 0 !important;
    }
}


#scale-price {
    width: calc(100% - 23px);
    margin: 0 auto;
    height: 1px;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: #E8E8E8;
    margin-top: 20px;
    margin-bottom: 10px;
}
.noUi-connect{
    box-shadow: none !important;
    background: var(--main) !important;
}
.noUi-handle{
    width: 23px !important;
    height: 23px !important;
    border-radius: 50% !important;
    border: 1px solid var(--main) !important;
    box-shadow: none !important;
    background: #fff !important;
}
.noUi-handle:before,
.noUi-handle:after{
    display: none !important;
}
.noUi-horizontal .noUi-handle-upper{
    top: 50% !important;
    transform: translateY(-50%) translateX(-50%) !important;
    right: 0 !important;
    left: auto !important;
}
.noUi-horizontal .noUi-handle-lower{
    top: 50% !important;
    transform: translateY(-50%) translateX(-50%) !important;
    left: 0 !important;
}
.noUi-pips-horizontal {
    display: none !important;
}

.ocfilter-btn.disabled {
    opacity: 0 !important;
}

.buttons-reset {
    display: flex;
    column-gap: 8px;
}
.buttons-reset .btn {
    max-width: 100%;
    border-radius: 11px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .buttons-reset .btn {
        padding: 11px;
        width: 100%;
        font-size: 12px;
    }
}

#account-voucher {
    margin: 15vh auto 5vh;
}

#account-voucher .account-actions {
    width: 28%;
}

#account-voucher #content {
    width: 70%;
}

#account-voucher .form-group label {
    width: auto;
    margin-top: 1rem;
}

#account-voucher .pull-right {
    margin-top: 1rem;
}

#account-voucher .btn-main {
    padding: .7rem 4rem;
    margin-top: 1rem;
}

#account-voucher > .breadcrumb > li:after {
    content: "/";
    color: #777;
    margin: 0 1rem;
}

#account-voucher > .breadcrumb > li:first-child:after, #account-voucher > .breadcrumb > li:last-child:after {
    content:none;
}

@media screen and (max-width: 800px) {
    #account-voucher .row {
        display:flex;
        flex-direction: column;
    }

    #account-voucher .account-actions {
        width: 100%;
    }
    
    #account-voucher #content {
        width: 100%;
    }
}

.delivery-payment-wrapper, .return-product-wrapper {
    margin-top: 2rem;
    font-size: 14px;
}

.delivery-payment-wrapper > p, .return-product-wrapper > p {
     font-size: 14px;
}

.delivery-payment-wrapper > h3, .return-product-wrapper > h3 {
    margin-bottom: 1.5rem;
}

.about-contacts-body > p {
    font-size: 14px;
}

.about-body p, .about-body ul > li {
    font-size: 14px;
}

.about-contacts-body__additional p, .about-contacts-body p {
    font-size: 14px;
}

@media screen and (max-width: 540px) {
    .about-contacts-body__additional {
        margin-top: 3rem;
    }

    .about-contacts-body__additional h3 {
        margin-top: 1.3rem;
    }
}

.product-layout {
    padding-bottom: 5vh;
}

.product-layout .product-thumb {
    padding: 1rem;
    background: #fff;
    border-radius: .4rem;
    height: 400px;
    width: 280px;
    margin: 30px 0 0;
}

.product-layout .product-thumb .image {
    width: calc(250px - 2rem);
    height: calc(250px - 2rem);
}

.news-list-wrapper {
    margin-top: 15vh;
}

.news-list-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.product-thumb .caption {
    word-wrap: break-word;
    width: 90%;
}

.button {
    padding: .4rem 1rem;
    border-radius: .4rem;
    transition: .15s;
    border:none;
}

.button-primary {
    background: var(--main);
    color: #fff;
}

.button-secondary {
    background: #f5f5f5;
}

.button-primary:hover {
    opacity: .8;
    cursor: pointer;
}

.button-secodary:hover {
    background: #f0f0f0;
    cursor: pointer;
}

#product-product {
    margin: 15vh auto;
}

.breadcrumb > span {
    margin: 0 .3rem;
    color: #555;
}

#product-product #tab-description {
    margin: 3vh 0 5vh;
    padding: 2rem;
    border-radius: .8rem;
    background: #fff;
}

#form-review {
    padding: 1rem;
    margin: 3vh 0;
    background: #fff;
    border-radius: .8rem;
}

#form-review h2 {
    margin: 5vh 0 3rem;
}

#product-product .form-group {
    margin: 1vh 0;
}

@media screen and (max-width: 1000px) {
    #account-voucher {
        background: #fff;
        padding: .8rem;
        border-radius: .6rem;
        margin: 15vh auto;
        max-width: 90%;
    }
}

.index-news-wrapper {
    padding: 4rem 0 2rem;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.index-news-wrapper > h2 {
    text-align:center;
}

.index-last-news {
    padding: 5rem 0;
    display: flex;
    flex-direction: row;
    max-width: 1250px;
    width: 95%;
    margin: 0 auto;
    flex-wrap:wrap;
    justify-content: space-around;
}

.last-news-article {
    padding: 12px;
    background: #fff;
    border-radius: 1.2rem;
    min-height: 320px;
    max-height: 360px;
    width: 250px;
    position:relative;
}

.last-news-article > .image-wrapper {
    width: 100%;
    height: 200px;
    min-height: 200px;
    background:#f0f0f0;
    border-radius: .9rem;
}

.last-news-article > img {
    width: 100%;
    height: 200px;
    min-height: 200px;
    background:#f0f0f0;
    border-radius: .9rem;
}

.last-news-article > h3 {
    font-size: 18px;
    word-wrap:break-word;
    max-height: 20px;
    overflow:hidden;
    margin: 1rem 0;
}

.last-news-article > a {
    bottom: 12px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    margin-top: 1rem;
    position:absolute;
}

.last-news-article > a:hover {
    color:#fff;
    cursor:pointer;
}