.category-tabs {
    display: flex;
    gap: 17px;
    margin-bottom: 55px;
    flex-wrap: wrap
}

@media (max-width:990px) {
    .category-tabs {
        margin-bottom: 30px;
        gap: 11px
    }
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 2px 10px 2px 20px;
    background: #fff;
    border: 0.75px solid #b5b5b5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: #6a645d;
    text-decoration: none;
    flex: 0 0 calc(25% - 14px)
}

.category-tab:hover {
    background: #f4f3ef
}

.category-tab.active {
    background: #f4f3ef
}

.category-tab .image {
    width: 68px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center
}

.category-tab .image img {
    object-fit: contain
}

@media (max-width:990px) {
    .category-tab {
        flex: 0 0 calc(50% - 5.5px);
        padding: 15px;
        flex-wrap: wrap;
        gap: 10px
    }

    .category-tab .image {
        width: 100%
    }

    .category-tab span {
        width: 100%;
        text-align: center
    }
}

.main-layout {
    display: flex;
    gap: 20px;
    margin-bottom: 80px
}

@media (max-width:990px) {
    .main-layout {
        margin-bottom: 50px;
        display: block
    }
}

.sidebar {
    padding: 0;
    height: fit-content;
    color: #6a645d;
    flex: 0 0 283px
}

.sidebar-section {
    margin-bottom: 30px;
    border-bottom: 0.5px solid #b5b5b5;
    padding-bottom: 30px
}

.sidebar-section:last-child {
    border-bottom: none
}

.sidebar-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    letter-spacing: 0.03em;
    color: #6a645d;
    padding: 23px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 16px
}

.sidebar-title:after {
    content: "";
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 15L12 9L6 15' stroke='%23989898' /%3E%3C/svg%3E") 50% no-repeat;
    transform: rotate(0);
    transition: transform 0.3s
}

.sidebar-title.collapsed:after {
    transform: rotate(180deg)
}

.sidebar-content {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.35s ease
}

.sidebar-content.collapsed {
    grid-template-rows: 0fr
}

.sidebar-content-inner {
    overflow: hidden
}

.sidebar-content .checkbox-list,
.sidebar-content .inner_b {
    padding-top: 20px
}

.sidebar-content .name {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    letter-spacing: 0.03em;
    color: #6a645d;
    margin: 0 0 20px
}

@media (max-width:990px) {
    .sidebar {
        margin-bottom: 17px
    }

    .sidebar-section {
        margin-bottom: 0px;
        padding-bottom: 0
    }

    .sidebar-content .checkbox-list,
    .sidebar-content .inner_b,
    .sidebar-content .toggle-list-inner {
        padding: 0 0 20px
    }

    .sidebar-title {
        padding: 12px 0;
        font-size: 20px;
    }

    .sidebar-content .name {
        font-size: 18px;
        margin-bottom: 26px;
    }

    .range-inputs input {
        height: 58px !important;
        font-size: 18px !important;
    }

    .range-inputs {
        margin-top: 25px;
    }
}

.sidebar-section-category {
    padding: 0 0 40px;
    margin-bottom: 30px;
    border-bottom: 0.5px solid #b5b5b5
}

.sidebar-section-category .title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 133%;
    letter-spacing: 0.03em;
    color: #6a645d;
    margin-bottom: 13px
}

.sidebar-section-category .sidebar-content ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.sidebar-section-category .sidebar-content ul li {
    margin-bottom: 3px
}

.sidebar-section-category .sidebar-content ul li a {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    letter-spacing: 0.03em;
    color: #6a645d;
    border-radius: 2px;
    padding: 4px 0;
    border: 0.5px solid transparent;
    transition: all 0.3s
}

.sidebar-section-category .sidebar-content ul li a.active {
    border-color: #b5b5b5;
    padding: 4px 9px;
    background: #f4f3ef
}

.sidebar-section-category .sidebar-content ul li a:hover {
    color: #989898
}

@media (max-width:990px) {
    .sidebar-section-category {
        padding-bottom: 0;
        margin-bottom: 24px;
        border: none
    }

    .sidebar-section-category .title {
        border: 0.94px solid #b5b5b5;
        border-radius: 5px;
        padding: 18px 25px;
        width: 100%;
        height: 60px;
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6a645d;
        margin-bottom: 0;
        cursor: pointer;
        gap: 12px
    }

    .sidebar-section-category .title:before {
        content: "";
        flex: 0 0 22px;
        height: 12px;
        background: url("data:image/svg+xml,%3Csvg width='22' height='12' viewBox='0 0 22 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.5508 10.5879L10.588 0.625121L0.625244 10.5879' stroke='%23929292' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E") 50% no-repeat;
        transition: all 0.3s;
        transform: rotate(0deg)
    }

    .sidebar-section-category .title.close:before {
        transform: rotate(180deg)
    }

    .sidebar-section-category .sidebar-content {
        display: grid;
        grid-template-rows: 1fr;
        transition: grid-template-rows 0.35s ease
    }

    .sidebar-section-category .sidebar-content.close {
        grid-template-rows: 0fr
    }

    .sidebar-section-category .sidebar-content ul {
        overflow: hidden;
        margin: 0;
        padding: 0 0 0;
        list-style: none
    }

    .sidebar-section-category .sidebar-content ul li {
        margin-bottom: 6px
    }

    .sidebar-section-category .sidebar-content ul li:first-child {
        margin-top: 20px
    }

    .sidebar-section-category .sidebar-content ul li a {
        display: block;
        font-size: 20px;
        padding: 7px 28px
    }

    .sidebar-section-category .sidebar-content ul li a.active {
        padding: 7px 28px
    }
}

.toggle-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px
}

.toggle-list:last-child {
    margin-bottom: 0
}

.toggle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 133%;
    letter-spacing: 0.03em
}

.toggle-label {
    color: #6a645d
}

.toggle-switch {
    position: relative;
    width: 49px;
    height: 24px;
    background: #fff;
    border: 0.5px solid #989898;
    border-radius: 2px;
    transition: all 0.3s;
    flex-shrink: 0
}

.toggle-switch:after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0;
    margin: auto;
    left: 5px;
    border-radius: 1px;
    width: 17px;
    height: 14px;
    background: #989898;
    transition: transform 0.3s
}

.toggle-input {
    display: none
}

.toggle-input:checked+.toggle-switch {
    background: #afb087
}

.toggle-input:checked+.toggle-switch:after {
    transform: translateX(21px);
    background: #fff
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    position: relative
}

.checkbox-item i {
    flex: 0 0 16px;
    height: 16px;
    border-radius: 1px;
    border: 1px solid #d3d3d3;
    transition: all 0.3s;
    background-position: 62% 50%;
    background-repeat: no-repeat
}

.checkbox-item input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.checkbox-item input[type=checkbox]:checked+i {
    border-color: #6a645d;
    background-color: #6a645d;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.77317 0.0996895C8.05136 0.283099 8.12819 0.6573 7.94478 0.93549L4.23949 6.55555C3.88816 7.08844 3.13568 7.16339 2.68614 6.71028L0.175028 4.17924C-0.0596535 3.94269 -0.0581436 3.56069 0.178401 3.32601C0.414945 3.09132 0.79695 3.09283 1.03163 3.32938L3.36836 5.68465L6.93737 0.271304C7.12078 -0.00688608 7.49498 -0.0837205 7.77317 0.0996895Z' fill='white' /%3E%3C/svg%3E")
}

.checkbox-item .color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #acacac;
    display: inline-block;
    flex-shrink: 0;
    margin-left: 7px
}

.checkbox-item.disabled {
    pointer-events: none;
    opacity: 0.4
}

.range-slider {
    margin: 20px 0;
    padding: 0 10px
}

.range-inputs {
    display: flex;
    gap: 13px;
    margin-top: 20px
}

.range-inputs input {
    width: calc(50% - 6.5px);
    height: 40px;
    padding: 0 16px;
    border: 0.5px solid #989898;
    border-radius: 4px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    color: #6a645d
}

.noUi-connect {
    background: #b5b5b5 !important
}

.noUi-horizontal {
    height: 2px;
    border: none;
    background: #e0e0e0;
    box-shadow: none
}

.noUi-handle {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50%;
    background: #989898;
    box-shadow: none;
    cursor: grab;
    top: -8px !important;
    right: -9px !important
}

.noUi-handle:after,
.noUi-handle:before {
    display: none !important
}

.products-section {
    padding: 0 0.75px;
    flex: 0 0 calc(100% - 283px - 20px);
    width: calc(100% - 283px - 20px)
}

@media (max-width:990px) {
    .products-section {
        width: 100%
    }

    .checkbox-list{
        gap: 10px;
    }

    .checkbox-item i {
        width: 21px;
        height: 21px;
        flex: 0 0 21px;
    }



    .checkbox-item {
        font-size: 20px;
    }


}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px
}

@media (max-width:990px) {
    .products-header {
        display: none
    }
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0
}

.per-page {
    display: flex;
    align-items: center;
    gap: 10px
}

.per-page span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    color: #656565;
    padding-left: 10px;
    opacity: 0.5
}

.per-page a {
    text-decoration: none;
    width: 42px;
    height: 32px;
    border: 0.5px solid #989898;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 31px;
    letter-spacing: 0.03em;
    text-align: center;
    color: #737373
}

.per-page a.active {
    background: #6a645d;
    color: #fff;
    border-color: #6a645d
}

.dropdown-wrapper {
    position: relative;
    user-select: none;
    min-width: 236px;
    max-width: 260px
}

.dropdown-wrapper .dropdown-trigger {
    padding: 10px 45px 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 13px;
    line-height: 139%;
    outline: none;
    color: rgba(101, 101, 101, 0.5);
    background: #fff;
    appearance: none;
    position: relative;
    border: 0.5px solid #989898
}

.dropdown-wrapper .dropdown-trigger svg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    width: 24px;
    height: 24px;
    margin: auto;
    transition: all 0.3s
}

.dropdown-wrapper .chevron {
    flex-shrink: 0;
    transition: transform 0.2s
}

.dropdown-wrapper .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 0.5px solid transparent;
    border-top: none;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    height: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    margin-top: -2px;
    transition: all 0.3s
}

.dropdown-wrapper .dropdown-menu.opened {
    height: 113px;
    border-color: #989898;
    opacity: 1;
    visibility: visible
}

.dropdown-wrapper .dropdown-menu:before {
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    background: #b4b1ae;
    opacity: 0.3;
    height: 1px
}

.dropdown-wrapper .dropdown-menu .dropdown-header {
    border-bottom: 1px solid #eee
}

.dropdown-wrapper .dropdown-menu .dropdown-options {
    padding: 4px 0
}

.dropdown-wrapper .dropdown-menu .option {
    padding: 4px 16px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 13px;
    line-height: 129%;
    color: #656565;
    cursor: pointer;
    opacity: 0.5
}

.dropdown-wrapper .dropdown-menu .option:hover {
    opacity: 1
}

.product-card {
    border: 0.75px solid #b5b5b5;
    padding: 16px 16px 40px;
    position: relative;
    transition: box-shadow 0.3s;
    background: #fff;
    display: flex;
    flex-direction: column;
    flex: 0 0 33.5%;
    width: 33.5%;
    margin: 0 -0.75px -1px
}

@media (max-width:767px) {
    .product-card {
        flex: 0 0 50%;
        width: 50%
    }
}

@media (max-width:600px) {
    .product-card {
        padding: 12px 10px 24px
    }
}

.product-badges {
    position: absolute;
    bottom: 5px;
    right: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10
}

@media (max-width:600px) {
    .product-badges {
        right: 0
    }
}

.product-wishlist {
    position: absolute;
    top: 15px;
    right: 34px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    background: none;
    border: none;
    outline: none;
    padding: 0
}

.product-wishlist svg {
    transition: all 0.3s
}

.product-wishlist svg path {
    transition: all 0.3s
}

.product-wishlist.active svg {
    fill: #e74c3c
}

.product-wishlist.active svg path {
    stroke: #e74c3c
}

@media (max-width:600px) {
    .product-wishlist {
        top: 8px;
        right: 11px
    }
}

.product-slider {
    width: 100%;
    margin-bottom: 12px;
    position: relative
}

.product-slider .swiper-pagination {
    position: absolute;
    bottom: auto !important;
    left: 18px;
    right: auto !important;
    width: auto !important;
    top: 0px
}

.product-slider .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    width: 11px;
    height: 11px;
    border: 0.83px solid #d3d3d3;
    margin: 0 4px 0 0;
    text-align: left;
    background: none
}

.product-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #6a645d;
    background: #6a645d
}

.product-slider .swiper-slide {
    padding-top: 100%;
    position: relative
}

.product-slider .swiper-slide span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-self: center;
    overflow: hidden
}

.product-slider img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

@media (max-width:600px) {
    .product-slider {
        margin-bottom: 15px
    }

    .product-slider .swiper-pagination {
        left: 11px
    }

    .product-slider .swiper-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        margin: 0 3px 0 0
    }
}

.product-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #000;
    padding-top: 16px;
    margin: 0 0 16px;
    border-top: 0.75px solid #b5b5b5;
    flex-grow: 1
}

.product-title a {
    text-decoration: none;
    color: inherit
}

@media (max-width:600px) {
    .product-title {
        padding-top: 15px;
        margin-bottom: 15px;
        font-size: 12px;
        line-height: 121%
    }
}

.product-dimensions {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 200%;
    color: #929292;
    margin-bottom: 20px;
    width: 100%;
    text-align: center
}

@media (max-width:600px) {
    .product-dimensions {
        font-size: 11px;
        line-height: 132%;
        margin-bottom: 12px
    }
}

.product-price {
    text-align: center;
    margin-bottom: 20px
}

.product-price .current-price {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 22px;
    color: #808080;
    display: block
}

.product-price .old-price {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    color: #808080;
    display: inline-block;
    position: relative
}

.product-price .old-price:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #fc1359;
    margin: auto;
    transform: rotate(-10deg)
}

@media (max-width:600px) {
    .product-price {
        margin-bottom: 12px
    }

    .product-price .current-price {
        font-size: 18px
    }

    .product-price .old-price {
        font-size: 12px
    }
}

.product-sku {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 200%;
    color: #929292;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    cursor: pointer
}

@media (max-width:600px) {
    .product-sku {
        font-size: 12px
    }
}

.badge {
    padding: 4px 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px
}

@media (max-width:600px) {
    .badge {
        padding: 3px 7px;
        font-size: 8px
    }
}

.badge.hit {
    background: #795c67;
    color: #fff
}

.badge.new {
    background: #cd7f7f;
    color: #fff
}

.badge.sale {
    background: #afb087;
    color: #fff
}

.badge.clearance {
    background: #dab687;
    color: #fff
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 40px
}

.pagination button {
    min-width: 32px;
    height: 32px;
    border: 0.5px solid #989898;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.03em;
    text-align: center;
    color: #737373;
    padding: 0 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center
}

.pagination button.active {
    background: #6a645d;
    color: #fff;
    border-color: #6a645d
}

.pagination-dots {
    background: url("data:image/svg+xml,%3Csvg width='24' height='6' viewBox='0 0 24 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23737373' /%3E%3Ccircle cx='8.5' cy='1.5' r='1.5' fill='%23737373' /%3E%3Ccircle cx='15.5' cy='1.5' r='1.5' fill='%23737373' /%3E%3Ccircle cx='22.5' cy='1.5' r='1.5' fill='%23737373' /%3E%3C/svg%3E") 50% 100% no-repeat;
    border: none;
    height: 32px;
    width: 24px
}

.pagination .next,
.pagination .prev {
    border: none
}

.filter-mobile-btn {
    display: none;
    border-radius: 4px;
    padding: 15px 20px;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #fff;
    background: #6a645d;
    display: none
}

@media (max-width:990px) {
    .filter-mobile-btn {
        display: flex
    }
}

.sidebar-filter .products-header {
    display: none
}

.sidebar-filter .close_filter {
    display: none;
    position: absolute;
    top: 55px;
    right: 26px;
    width: 32px;
    height: 32px;
    cursor: pointer
}

.sidebar-filter .filter-go {
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 24px 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #fff;
    background: #6a645d;
    width: 100%;
    border: none;
    outline: none;
    gap: 10px
}

@media (max-width:990px) {
    .sidebar-filter {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        transform: translateY(100%);
        right: 0;
        background: #fff;
        padding-top: 100px;
        z-index: 100
    }

    .sidebar-filter.opened {
        opacity: 1;
        visibility: visible;
        transform: translateY(0%)
    }

    .sidebar-filter .filter-go {
        display: flex;
        font-size: 20px;
        margin-top: 40px;
    }

    .sidebar-filter .close_filter {
        display: block
    }

    .sidebar-filter .products-header {
        display: block;
        margin-bottom: 20px
    }

    .sidebar-filter .products-header .per-page {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 30px
    }

    .sidebar-filter .products-header .per-page span {
        margin-bottom: 20px;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 18px;
        line-height: 100%;
        color: #656565;
        display: block;
        padding: 0;
        width: 100%
    }

    .per-page a {
        flex: 0 0 calc(33.33% - 10px);
        width: auto;
        height: 50px;
        line-height: 50px;
        font-size: 21px;
    }

    .sidebar-filter .products-header .per-page button {
        flex: 0 0 calc(33.33% - 10px);
        height: 50px;
        font-size: 21px
    }

    .sidebar-filter .products-header .dropdown-wrapper {
        font-size: 18px;
        width: 100%;
        max-width: 100%
    }

    .sidebar-filter .products-header .dropdown-wrapper .dropdown-trigger {
        padding: 21px 45px 21px 15px;
        font-size: 18px
    }

    .sidebar-filter .products-header .dropdown-wrapper .dropdown-menu .option {
        font-size: 18px
    }

    .sidebar-filter .sidebar-filter-inner {
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0 30px 23px;
        overflow-y: auto
    }

    .sidebar-filter .products-header .dropdown-wrapper .dropdown-menu {
        position: relative;

    }

    .sidebar-filter .products-header .dropdown-wrapper .dropdown-menu.opened {
        height: 138px;
    }
}

.banner-bottom {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #E7E1D6;
    border-radius: 4px;
    padding: 38px 45px 32px 331px;
    min-height: 164px;
    box-sizing: border-box;
    position: relative
}

@media (max-width:1200px) {
    .banner-bottom {
        padding-left: 200px;
        padding-right: 20px
    }
}

@media (max-width:990px) {
    .banner-bottom {
        padding: 241px 20px 50px 174px;
        overflow: hidden;
        display: block;
        min-height: 760px;
        margin: 0 -32px
    }
}

.banner-bottom .banner__image {
    position: absolute;
    bottom: 0;
    left: 41px;
    width: 193px;
    font-size: 0
}

.banner-bottom .banner__image img {
    max-width: unset
}

@media (max-width:1200px) {
    .banner-bottom .banner__image {
        left: 16px;
        width: 160px
    }
}

@media (max-width:990px) {
    .banner-bottom .banner__image {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%
    }
}

.banner-bottom .banner__content {
    flex: 1;
    min-width: 0
}

.banner-bottom .banner__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 106%;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #645e56;
    margin: 0 0 19px
}

@media (max-width:990px) {
    .banner-bottom .banner__subtitle {
        margin-bottom: 15px
    }
}

.banner-bottom .banner__title-row {
    display: flex;
    align-items: flex-start;
    gap: 23px;
    flex-wrap: wrap
}

@media (max-width:990px) {
    .banner-bottom .banner__title-row {
        display: block
    }
}

.banner-bottom .banner__title {
    font-family: var(--second-family);
    font-weight: 200;
    font-size: 83px;
    text-transform: uppercase;
    color: #645e56;
    line-height: 0.8
}

@media (max-width:990px) {
    .banner-bottom .banner__title {
        font-size: 126px
    }
}

@media (max-width:425px) {
    .banner-bottom .banner__title {
        font-size: 100px
    }
}

.banner-bottom .banner__features {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.banner-bottom .banner__features li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    color: #645e56;
    position: relative;
    padding-left: 12px
}

.banner-bottom .banner__features li:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b79363;
    margin: auto
}

@media (max-width:990px) {
    .banner-bottom .banner__features {
        margin-top: 34px;
        margin-bottom: 47px;
        gap: 20px
    }

    .banner-bottom .banner__features li {
        font-size: 18px
    }
}

@media (max-width:425px) {
    .banner-bottom .banner__features {
        gap: 10px
    }

    .banner-bottom .banner__features li {
        font-size: 16px
    }
}

.banner-bottom .banner__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px
}

@media (max-width:425px) {
    .banner-bottom .banner__actions {
        flex-wrap: wrap
    }
}

.banner-bottom .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0.74px solid #645e56;
    border-radius: 4px;
    padding: 11px 16px;
    cursor: pointer;
    font-family: var(--font4);
    font-weight: 400;
    font-size: 16px;
    line-height: 114%;
    color: #645e56;
    transition: background 0.2s ease;
    text-decoration: none
}

.banner-bottom .btn:hover {
    background: rgba(138, 128, 112, 0.12)
}

.banner-bottom .btn--outline {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.banner-bottom .btn--circle {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.path_wrap .path_btn {
    max-width: 74px;
    margin: 0 auto;
    cursor: pointer;
    height: 32px;
    display: none;
    overflow: hidden
}


.path_hidden__inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width:767px) {
    .path_wrap .path_btn {
        display: block;
        transition: opacity 0.25s ease
    }

    .path_wrap .path_btn.hide {
        opacity: 0;
        pointer-events: none;
        margin: 0;
        height: 0
    }
}

@media (max-width:767px) {
    .path_wrap .path_block .path_hidden {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.35s ease
    }

    .path_wrap .path_block .path_hidden__inner {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px
    }

    .path_wrap .path_block.opened .path_hidden {
        grid-template-rows: 1fr
    }
}

.wishlist_count {
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff url("data:image/svg+xml,%3Csvg width='42' height='37' viewBox='0 0 42 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.5968 5.84529C23.8879 -1.05022 33.29 -2.06268 37.9737 3.97406L38.628 4.81801C42.4693 9.76907 41.9151 16.8297 37.3478 21.1202L22.4728 35.0928C22.2328 35.3182 21.9739 35.5656 21.7284 35.7424C21.4564 35.9381 21.0792 36.1406 20.5889 36.1406C20.0991 36.1405 19.7229 35.9379 19.451 35.7424C19.2055 35.5656 18.945 35.3182 18.705 35.0928L3.83157 21.1202C-0.735666 16.8298 -1.29127 9.76906 2.54984 4.81801L3.20572 3.97406C7.88941 -2.06261 17.29 -1.0502 20.581 5.84529L20.5842 5.85004H20.5936L20.5968 5.84529Z' fill='%23FF9283' /%3E%3C/svg%3E") 50% no-repeat;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 50
}

@media (max-width:1200px) {
    .wishlist_count {
        right: 36px;
        bottom: 30px;
        width: 78px;
        height: 78px;
        background-size: 42px
    }
}

@media (max-width:990px) {
    /*.wishlist_count {*/
    /*    right: 16px;*/
    /*    bottom: 16px;*/
    /*    width: 40px;*/
    /*    height: 40px;*/
    /*    background-size: 20px*/
    /*}*/
}

.wishlist_count.opened {
    opacity: 1;
    visibility: visible
}

.wishlist_count .count {
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    width: 25px;
    text-align: center;
    height: 16px;
    background: #795c67;
    border-radius: 4px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin: auto
}

.cookies {
    display: none;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 9999
}

.cookies.visible {
    display: flex
}

.cookies {
    align-items: center;
    gap: 24px;
    padding: 13px 28px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 812px
}

.cookies .cookies__close {
    order: 5;
    margin-left: auto;
    flex-shrink: 0
}

.cookies .cookies__icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 24px;
    height: 24px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center
}

.cookies .cookies__icon svg {
    width: 24px;
    height: 24px
}

.cookies .cookies__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

@media (max-width:768px) {
    .cookies {
        flex-direction: column;
        align-items: flex-start;
        padding: 87px 22px 22px;
        bottom: 28px;
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
        transform: none;
        gap: 13px
    }

    .cookies .cookies__close {
        margin: 0;
        position: absolute;
        top: 24px;
        right: 10px
    }

    .cookies .cookies__icon {
        bottom: auto;
        margin: 0;
        width: 54px;
        height: 54px;
        box-shadow: 0 3px 6px 0 rgba(23, 27, 30, 0.15);
        border-radius: 50%;
        left: 22px;
        top: 22px
    }

    .cookies .cookies__icon svg {
        width: 31px;
        height: 31px
    }

    .cookies .cookies__text {
        font-size: 17px;
        padding: 0
    }

    .cookies .cookies__actions {
        flex-direction: column;
        width: 100%;
        gap: 11px
    }

    .cookies .cookies__actions .cookies__btn {
        width: 100%;
        padding: 12px;
        font-size: 18px;
        gap: 12px
    }

    .cookies .cookies__actions .cookies__btn svg {
        width: 18px;
        height: 18px
    }
}

.cookies__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 138%;
    letter-spacing: 0.02em;
    color: #37474f;
    margin: 0;
    padding-left: 40px;
    display: block;
    flex: 1 1 auto
}

.cookies__btn {
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 2px;
    padding: 7px 10px;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center
}

.cookies__btn:hover {
    opacity: 0.8
}

.cookies__btn--accept {
    background: #6a645d;
    color: #fff;
    border: none
}

.cookies__btn--decline {
    background: transparent;
    color: #6a645d;
    border: 1px solid #6a645d
}

.cookies__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s
}

.cookies__close:hover {
    opacity: 1
}


