:root {
    --B1: #222;
    --b1: #222;
    --B3: #C5C5C5;
    --b2: #4D4D4D;
    --BURGUNDY: #651C32;
    --burgundy: #651C32;
    --second-family: "Playfair Display", serif;
}

@font-face {
    font-family: "Helvetica";
    src: url("/catalog/view/theme/default/fonts/HelveticaLight/HelveticaLight.eot");
    src: url("/catalog/view/theme/default/fonts/HelveticaLight/HelveticaLight.eot?#iefix")format("embedded-opentype"),
        url("/catalog/view/theme/default/fonts/HelveticaLight/HelveticaLight.woff") format("woff"),
        url("/catalog/view/theme/default/fonts/HelveticaLight/HelveticaLight.ttf") format("truetype");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Helvetica";
    src: url("/catalog/view/theme/default/fonts/HelveticaRegular/HelveticaRegular.eot");
    src: url("/catalog/view/theme/default/fonts/HelveticaRegular/HelveticaRegular.eot?#iefix")format("embedded-opentype"),
        url("/catalog/view/theme/default/fonts/HelveticaRegular/HelveticaRegular.woff") format("woff"),
        url("/catalog/view/theme/default/fonts/HelveticaRegular/HelveticaRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}


@font-face {
    font-family: "Helvetica";
    src: url("/catalog/view/theme/default/fonts/HelveticaBold/HelveticaBold.eot");
    src: url("/catalog/view/theme/default/fonts/HelveticaBold/HelveticaBold.eot?#iefix")format("embedded-opentype"),
        url("/catalog/view/theme/default/fonts/HelveticaBold/HelveticaBold.woff") format("woff"),
        url("/catalog/view/theme/default/fonts/HelveticaBold/HelveticaBold.ttf") format("truetype");
    font-style: normal;
    font-weight: bold;
}


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding: 100px;
}


body {
    font-family: 'Helvetica';
    font-weight: 400;
    color: #1e1e1e;
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
    background: #ffffff;
    padding-right: 0 !important;
    padding-top: 130px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1e1e1e;
}

a:hover {
    text-decoration: none;
}

button {
    outline: none;
    cursor: pointer;
}

.d-flex {
    display: flex;
}

.flex-c {
    justify-content: center;
    align-items: center;
}

.grecaptcha-badge {
    opacity: 0;
    visibility: hidden;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: #651C32;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header_top {
    transition: 0.4s;
    max-height: 65px;
}

.header.sticky .header_top {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.overlay-cart {
    position: fixed;
    z-index: 450;
    inset: 0;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.wishlist-select-all {
    width: 100%;
    padding: 25px 0;
    border-top: 1px solid #E8E8E8;
}

.wishlist-select-all input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.wishlist-select-all label {
    font-weight: 400;
    font-size: 14px;
    color: #6B6B6B;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    cursor: pointer;
}

.select_all_custom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #6B6B6B;
    transition: 0.3s;
    margin-bottom: 2px;
}

.select_all_custom svg {
    opacity: 0;
    transition: 0.3s;
}

.wishlist-select-all label:has(input:checked) .select_all_custom,
.wishlist-checkbox:has(input:checked) .select_all_custom {
    background: var(--b1);
    border: 1px solid var(--b1);
}

.wishlist-select-all label:has(input:checked) .select_all_custom svg,
.wishlist-checkbox:has(input:checked) .select_all_custom svg {
    opacity: 1;
}

.header_wishlist_block_text {
    pointer-events: none;
}

.wishlist-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wishlist-checkbox input {
    opacity: 0;
    position: absolute;
    inset: 0;
}

.shoping-cart-products-item:has(input:checked) {
    border: 1px solid var(--b1);
}


.wish_remove {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.overlay-cart.open {
    opacity: 0.7;
    visibility: visible;
}

.overlay-cart.closeWishlist.open {
    opacity: 0;
}

.shoping-cart-products-loop {
    height: 340px;
    overflow: auto;
    margin-bottom: 22px;
    width: 100%;
}

.alert.alert-success.alert-dismissible {
    display: none !important;
}

.shoping-cart-products-loop::-webkit-scrollbar-thumb {
    background-color: rgb(179, 179, 179);
}

.shoping-cart-products-loop::-webkit-scrollbar-track {
    background-color: rgb(233, 233, 233);
}

.shoping-cart-products-loop::-webkit-scrollbar {
    width: 7px;
}

.shoping-cart {
    /* display: none; */
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5000;
    background: #fff;
    width: 100%;
    max-width: 750px;
    padding: 20px;
    padding-bottom: 35px;
    height: 102vh;
    overflow: hidden;
    transition: 0.7s cubic-bezier(.34, .88, .44, .95);
    opacity: 0;
    visibility: hidden;
    translate: 110% 0;
}

.shoping-cart.open {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
}

.shoping-cart-top {
    margin-bottom: 25px;
    justify-content: center;
}

.close-cart {
    position: absolute;
    top: 23px;
    right: 20px;
    padding: 0;
    background: transparent;
    border: unset;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    color: #6B6B6B;
}

.title-popup-cart {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: var(--b2);
}

.shoping-cart-products-item {
    padding: 16px;
    border: 1px solid #E8E8E8;
    margin-bottom: 10px;
    position: relative;
    width: 100%;
    gap: 14px;
}

#cart_remove_product {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.header_icon_wishlist {
    background: transparent;
    padding: 0;
    border: unset;
}

.wishlist-popup-wrapper.open .wishlist-cart {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
}

.shoping-cart-products-item-title {
    font-weight: 300;
    font-size: 14px;
    color: var(--b1);
    transition: 0.4s;
    padding-right: 20px;
}

.shoping-cart-products-item-title:hover {
    color: var(--burgundy);
}

.shoping-cart-products-item-image img {
    width: 86px;
    height: 86px;
    object-fit: cover;
}

.product_name_wrapper {
    flex-direction: column;
}

.shoping-cart-products-item-model {
    font-weight: 300;
    font-size: 12px;
    color: #6B6B6B;
    margin-top: 3px;
}

.recommended-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.recommended-products .product-image-card img {
    width: 100%;
}

.recommended-products .product_item {
    padding: 0 17px;
    border: unset;
    border-right: 1px solid #E8E8E8;
    border-left: 1px solid #E8E8E8;
}

.recommended-products .product-title-block a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* кількість рядків */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    margin-bottom: 0;
    border-bottom: unset;
}

.recommended-products .product-title-block {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #E8E8E8;
}

.cart_other_products {
    margin-top: 25px;
    padding-top: 20px;
    background: #f5f5f5;
    position: relative;
    isolation: isolate;
}

.cart_other_products:before {
    content: '';
    position: absolute;
    background: #f5f5f5;
    display: block;
    inset: -50px;
    z-index: -1;
    top: 0;
}

.recommended-title {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: var(--b2);
}

.shoping-cart-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.cart_price_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-block {
    background: transparent;
    text-align: center;
    border: unset;
    font-weight: 400;
    font-size: 17px;
    color: #171717;
    width: 70px;
}

.shoping-cart-products-item-quantity span {
    display: flex;
    align-items: center;
}

.shoping-cart-products-item-quantity i {
    cursor: pointer;
    display: flex;
}

.shoping-cart-products-item-price {
    font-weight: 400;
    font-size: 14px;
    color: var(--b1);
}

.cart__price-block {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-direction: row-reverse;
}

.old-price {
    font-weight: 300;
    font-size: 14px;
    color: #C5C5C5;
}

.shoping-cart-content {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%;
    align-items: center;
    justify-content: flex-start;
}

.icons-cart-block svg {
    width: 160px;
}

.icons-cart-block span {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #C5C5C5;
    margin: 25px 0 40px;
    display: block;
}

.cart-popup-empty a {
    position: relative;
    left: 50%;
    translate: -50% 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    padding: 0 20px;
    background: var(--burgundy);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    max-width: 330px;
    color: white;
}

.icons-cart-block {
    flex-direction: column;
    align-items: center;
}

.shoping-cart-container {
    height: 94%;
}

.shoping-cart-totals-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    margin-bottom: 22px;
}

.shoping-cart-totals-item:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    right: 0;
    width: 100%;
    border-top: 1px dashed #C5C5C5;
}

.shoping-cart-totals-item span {
    position: relative;
    z-index: 5;
    background: #fff;

}

.shoping-cart-totals-item-title {
    font-weight: 400;
    font-size: 16px;
    color: var(--b2);
    padding-right: 10px;
}

.shoping-cart-totals-item-value {
    font-weight: 400;
    font-size: 18px;
    color: var(--b1);
    padding-left: 10px;
}

.burger-menu {
    display: none;
}

.btn-checkout,
#wishlist-add-selected {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--burgundy);
    padding: 0 105px;
    height: 56px;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #E8E8E8;
    transition: 0.4s;
    border: unset;
    border-radius: 0;
}

.wishlist-bulk-actions {
    width: 100%;
}

.btn-checkout:hover {
    background: var(--b1);
    color: #E8E8E8;
}

.header_wrapper_block_logo {
    margin: auto;
}

.header_wrapper_block_locations {
    position: relative;
}

.header_locations_lists {
    position: absolute;
    right: 0;
    background: #fff;
    padding: 20px 25px;
    width: 370px;
    top: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

span.header_locations_block_text {
    font-family: Helvetica;
    font-weight: 300;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
    color: rgb(255 255 255 / 80%);
    letter-spacing: 0.5px;
}

.header_locations_block {
    display: flex;
    align-items: center;
}

span.location_item_address_text_title {
    display: block;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 5px;
}

.header_location_item {
    margin-bottom: 15px;
}

.header_location_item:last-child {
    margin-bottom: 0;
}

span.location_item_address_text_title a {
    color: #000;
    font-weight: 400;
    text-decoration: underline;
    margin-left: 3px;
}

span.location_item_address_text_address {
    font-size: 14px;
}

.header_wrapper_block_locations {
    position: relative;
}

.header_locations_lists {
    position: absolute;
    right: 0;
    background: #fff;
    padding: 20px 25px;
    width: 370px;
    top: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 10;
    translate: 0 10px;
}

.header_wrapper_block_locations:hover .header_locations_lists {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
}

span.header_locations_block_text {
    font-family: Helvetica;
    font-weight: 300;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
    color: rgb(255 255 255 / 80%);
    letter-spacing: 0.5px;
}

.header_locations_block {
    display: flex;
    align-items: center;
}

span.header_icon_location {
    margin-right: 8px;
    display: flex;
    position: relative;
    top: -2px;
}

span.header_arrow_down {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="5" viewBox="0 0 8 5" fill="none"><path d="M3.32809 4.03553C3.52335 4.23079 3.83993 4.23079 4.03519 4.03553L7.21717 0.853549C7.41244 0.658287 7.41244 0.341705 7.21717 0.146443C7.02191 -0.0488196 6.70533 -0.0488196 6.51007 0.146443L3.68164 2.97487L0.853214 0.146442C0.657951 -0.0488199 0.341369 -0.0488199 0.146107 0.146442C-0.0491554 0.341704 -0.0491554 0.658287 0.146107 0.853549L3.32809 4.03553ZM3.68164 2.68198L3.18164 2.68198L3.18164 3.68198L3.68164 3.68198L4.18164 3.68198L4.18164 2.68198L3.68164 2.68198Z" fill="white" fill-opacity="0.8"/></svg>');
    width: 8px;
    height: 5px;
    margin-left: 5px;
    position: relative;
}

span.location_item_address_text_title {
    display: block;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 5px;
}

.header_location_item {
    margin-bottom: 15px;
}

.header_location_item:last-child {
    margin-bottom: 0;
}

span.location_item_address_text_title a {
    color: #000;
    font-weight: 400;
    text-decoration: underline;
    margin-left: 3px;
}

span.location_item_address_text_address {
    font-size: 14px;
}

.header_phone_lists {
    background: #fff;
    padding: 15px 25px;
    position: absolute;
    left: 0;
    top: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    translate: 0 15px;
}

.header_phone_lists ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header_phone_lists ul li a {
    color: #000;
    white-space: nowrap;
}

.header_phone_lists ul li {
    margin-bottom: 5px;
}

.header_phone_lists ul li:last-child {
    margin-bottom: 0;
}

span.header_phone_block_text {
    font-family: Helvetica;
    font-weight: 300;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
    color: rgb(255 255 255 / 80%);
    letter-spacing: 0.5px;
}

.header_phone_block_icon {
    display: flex;
    align-items: center;
}

.header_phone_block {
    position: relative;
}

.header_phone_block:hover .header_phone_lists {
    translate: 0 0;
    opacity: 1;
    visibility: visible;
}

span.header_icon_phone {
    margin-right: 8px;
    display: flex;
    position: relative;
    top: -2px;
}

.header_phone_block_text {
    color: #fff !important;
}

.header_phone_lists li a:hover {
    color: var(--burgundy);
}

.header_wrapper {
    align-items: center;
}

.header_bottom_menu {
    border-top: 1px solid #FFFFFF1F;
    padding: 20px 0px;
}

.header_block_main_menu {
    margin: auto;
}

nav.header_main_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav.header_main_menu ul li a {
    font-family: Helvetica;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: rgb(255 255 255 / 75%);
    margin: 0px 20px;
}

button.header_main_catalog_button {
    background: transparent;
    padding: 0;
    border: none;
    color: rgb(255 255 255 / 75%);
    display: flex;
    align-items: center;
}

.align-items-center {
    align-items: center;
}

span.header_main_catalog_button_icon svg path {
    fill: #fff;
    stroke: #fff;
}

span.sum-prod {
    display: none;
}

span.header_main_catalog_button_text {
    font-size: 14px;
    color: rgb(255 255 255 / 75%);
    font-weight: 300;
    line-height: 1.2;
}

span.header_main_catalog_button_icon svg rect {
    stroke: rgb(255 255 255 / 75%);
}

span.header_main_catalog_button_icon {
    margin-right: 9px;
}

.search_input_wrapper {
    position: absolute;
    right: 0;
    background: #fff;
    padding: 20px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    top: 30px;
    translate: 0 10px;
    border: 1px solid var(--burgundy);
    z-index: 1000;
}

.live-search {
    display: none !important;
}

.mobile_icon svg {
    pointer-events: none;
}

.mobile_icon {
    cursor: pointer;
}


.search_input_wrapper.open-search {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
}

.search_input_wrapper input {
    border-radius: 0px !important;
    border: 1px solid #000;
    padding: 7px 10px;
    font-family: 'Helvetica' !important;
    padding-right: 30px;
}

.search_input_wrapper .input-group-btn button {
    background: transparent;
    border: none;
    padding: 0;
    position: absolute;
    right: 25px;
    top: 27px;
}

.search_input_wrapper span.input-group-btn {
    position: unset;
}

.header_bottom_right>div>div {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.header_wishlist_block {
    position: relative;
}

span.header_wishlist_block_text_count {
    min-width: 14px;
    height: 14px;
    border-radius: 100%;
    background: #AF8D3D;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 300;
    color: #fff;
    font-size: 11px;
    line-height: 1.1;
}

.header_wishlist_block_text {
    position: absolute;
    right: -3px;
    top: -6px;
}

span.count-product {
    min-width: 14px;
    height: 14px;
    border-radius: 100%;
    background: #AF8D3D;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 300;
    color: #fff;
    font-size: 11px;
    line-height: 1.1;
}

button.btn-show-cart {
    background: transparent;
    border: none;
    padding: 0;
}

span#cart-total {
    position: absolute;
    right: -5px;
    top: -6px;
}

.banner_carousel-0-container {
    background-color: #F5F5F5;
    padding: 25px 0px;
}

.banner_carousel-content-logo img {
    width: auto !important;
    max-width: 150px;
}

.banner_carousel-content-logo {
    margin-bottom: 70px;
}

.banner_carousel-content-title {
    color: var(--B1, #222);
    font-family: Playfair;
    font-size: 43px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
}

a.btn-default {
    border: 1px solid var(--BURGUNDY, #651C32);
    color: var(--BURGUNDY, #651C32);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding: 20px 20px 16px;
    display: inline-block;
    background: transparent;
    transition: all 0.4s ease-in-out;
    text-align: center;
}

.banner_carousel-content a {
    width: 250px;
}

.banner_carousel-0-container {
    background-image: url(/image/catalog/pattern_bg.png);
    background-repeat: no-repeat;
}

.banner_carousel-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: -20px;
    z-index: 999;
    position: relative;
}

.banner_carousel-nav-prev,
.banner_carousel-nav-next {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.banner_carousel-nav-next img {
    transform: rotate(180deg);
}

.banner_carousel-current,
.banner_carousel-next {
    color: var(--B1, #222);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    top: 1px;
}

.banner_carousel-progress {
    flex: 1;
    height: 1px;
    background-color: #6B6B6B;
    position: relative;
    /* overflow: hidden; */
}

.banner_carousel-progress-bar {
    height: 2px;
    width: 0%;
    background-color: #4D4D4D;
    transition: width 0.1s linear;
}

.banner_carousel-progress-bar {
    position: relative;
    top: -1px;
}

a.btn-default:after {
    content: "";
}

a.btn-default {
    position: relative;
}

a.btn-default:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    background: var(--BURGUNDY);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover:after {
    top: 0;
}

a.btn-default span {
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
}

a.btn-default:hover span {
    color: #fff;
}

.product_item {
    border: 1px solid #E8E8E8;
    padding: 15px;
}

.heading-title-module h2 {
    color: var(--B1, #222);
    font-family: Playfair;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.heading-title-module {
    display: flex;
    align-items: baseline;
}

.owl-featured-nav-wrapper button {
    background: transparent;
    border: none;
    padding: 0;
}

.owl-featured-nav-wrapper {
    display: flex;
    align-items: center;
    margin-left: 20px;
    position: relative;
    top: -3px;
}

.owl-featured-nav-next {
    transform: rotate(180deg);
    position: relative;
    top: 0;
    margin-left: 12px;
    height: 20px;
}

.flex-row-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 30px;
}

a.default-link {
    color: var(--BURGUNDY, #651C32);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 8%;
    /* 1.12px */
    text-underline-offset: 18%;
    /* 2.52px */
    text-underline-position: from-font;
    text-transform: uppercase;
}

.product-title-block a {
    color: var(--B1, #222);
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0;
    border-bottom: 1px dashed #E8E8E8;
    margin-bottom: 20px;
    height: 66px;
    align-items: center;
    display: flex;
}

.default-section {
    padding: 80px 0px;
}

p.price {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 38px;
    justify-content: center;
}

.button-group-on-card {
    justify-content: space-between;
}

.price-product {
    color: var(--B1, #222);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.price-old {
    color: var(--B2, #4D4D4D);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: line-through;
    margin-top: 3px;
}

button.btn-wishlist {
    background: transparent;
    border: none;
    padding: 0;
    align-items: center;
}

.block-btns-on-card {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

button.btn-addcart {
    background: transparent;
    color: var(--BURGUNDY, #651C32);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    border: none;
    margin-left: 18px;
    padding: 0;
}

button.btn-addcart svg {
    margin-right: 6px;
    position: relative;
    top: -3px;
}

section.section-location {
    background-color: var(--BURGUNDY, #651C32);
    padding: 90px 0px;
    /* background-image: url('/image/catalog/bg-location.png'); */
}

.location-wrapper {
    display: flex;
    gap: 60px;
}

.location-item {
    flex-basis: 50%;
}

.location-item-image img {
    width: 100%;
    object-fit: cover;
}

.location-item-main {
    margin-right: 60px;
}

.location-item-main h2 {
    color: rgba(255, 255, 255, 0.80);
    font-family: Playfair;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 80px;
}

.location-item-main-logo {
    margin-left: -30px;
}

.location-item-caption h3 {
    color: rgba(255, 255, 255, 0.80);
    font-family: Playfair;
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 16px;
    margin-bottom: 16px;
}

.location-item-caption p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
    display: flex;
    margin-bottom: 16px;
}

.location-item-caption p svg {
    margin-right: 7px;
    min-width: 12px;
}

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

.location-item-caption p:last-child {
    margin-bottom: 0;
}

a.location-link {
    color: rgba(255, 255, 255, 0.80);
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 17px;
    min-width: 230px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
    transition: all 0.4s ease-in-out;
}

.product-image-card {
    position: relative;
}

.product-image-card-sticker {
    position: absolute;
    left: 0;
    top: 8px;
    background: #F0F0F0;
    color: var(--BURGUNDY, #651C32);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 7px 5px 4px;
}

.categories-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.categories-main-col {
    flex: 0 0 auto;
    min-width: 200px;
}

.categories-main-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-main-item {
    margin: 40px 0px;
    transition: all 0.4s ease-in-out;
}

.category-main-item:last-child {
    margin-bottom: 0;
}

.category-main-item:first-child {
    margin-top: 0;
}

.category-main-link {
    text-decoration: none;
    display: block;
    transition: all 0.4s ease-in-out;
    position: relative;
    color: var(--B1, #222);
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
    font-weight: 400;
}

.category-main-item.category-active .category-main-link {
    color: var(--BURGUNDY, #651C32);
}

.categories-sub-col {
    flex: 0 0 auto;
    min-width: 250px;
    position: relative;
}

.categories-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    opacity: 1;
    visibility: visible;
}

.categories-sub-list.category-sub-hidden {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.categories-sub-list:empty {
    display: none;
}

.category-sub-item {
    margin-bottom: 22px;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.category-sub-link {
    text-decoration: none;
    display: block;
    transition: all 0.4s ease-in-out;
    color: var(--B2, #4D4D4D);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
}

.category-sub-more {
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.category-sub-more-text {
    color: var(--B2, #4D4D4D);
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
}

.category-sub-more-btn {
    color: var(--BURGUNDY, #651C32);
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--BURGUNDY, #651C32);
    padding: 15px 50px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    text-align: center;
    width: fit-content;
}

.category-sub-more-btn:hover {
    background: var(--BURGUNDY, #651C32);
    color: #fff;
}

.categories-image-col {
    flex: 0 0 55%;
    max-width: 55%;
    position: relative;
}

.category-image-wrapper {
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    background: #F5F5F5;
    opacity: 1;
    visibility: visible;
}

.category-image-wrapper.category-image-hidden {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.category-image-wrapper:empty {
    display: none;
}

.category-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 400px;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease-in-out;
}

ul.categories-sub-list.category-sub-hidden {
    opacity: 0;
    visibility: hidden;
}

.category-image-wrapper.category-image-hidden {
    opacity: 0;
    visibility: hidden;
}

.categories-image-col {
    position: relative;
}

a.category-main-link:before {
    width: 20px;
    height: 1px;
    background: #C5C5C5;
    content: "";
    display: block;
    margin-right: 5px;
    transition: all 0.4s ease-in-out;
}

a.category-main-link {
    display: flex;
    align-items: center;
}

.category-active a.category-main-link::before {
    background: var(--BURGUNDY);
    width: 32px;
}

a.category-sub-link {
    position: relative;
}

a.category-sub-link:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 1px;
    background: var(--B3, #6B6B6B);
    left: -40px;
    top: 8px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

a.category-sub-link:hover:before {
    opacity: 1;
}

.default-title {
    font-family: Playfair;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 50px;
}

.text-black {
    color: var(--B1, #222);
}

.category-sub-link:hover {
    color: var(--B2, #4D4D4D);
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
}

.section-newsletter {
    background-image: url('/image/catalog/newsletter_bg.jpg');
    position: relative;
    z-index: 100;
}

.newsletter-image img {
    width: 100%;
}

.newsletter-image {
    width: 55%;
    margin-top: -45px;
    margin-bottom: -39px;
}

.newsletter-content {
    width: 45%;
}

.text-white {
    color: #fff;
}

.subtitle {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.newsletter-content h2 {
    margin-bottom: 10px;
}

.subtitle:before {
    content: "";
    width: 23px;
    height: 1px;
    background: rgba(255, 255, 255, 0.46);
    display: block;
    position: relative;
    top: -2px;
    margin-right: 8px;
}

.newsletter-desc {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 50px;
}

form#form-newsletter {
    display: flex;
}

form#form-newsletter input {
    height: 43px;
    background: #895161;
    border: none;
    padding: 12px 16px 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: 'Helvetica';
    width: 270px;
}

form#form-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

form#form-newsletter input:focus {
    box-shadow: none;
    outline: none;
}

form#form-newsletter button {
    color: var(--B1, #222) !important;
    font-family: Helvetica;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    border: none;
    border-radius: 0px;
    padding: 12px 40px 8px;
    background: #fff !important;
}

button.btn-wishlist {
    position: relative;
    top: -1px;
}

.section-exclusive {
    background: #F5F5F5;
}

.section-exclusive .product-layout.product_item {
    background: #FFF;
    border: none;
    padding: 6px;
}

.section-exclusive .product-layout.product_item .product-thumb {
    display: flex;
    flex-direction: row-reverse;
}

.section-exclusive .product-layout.product_item .product-thumb .product-image-card {
    width: 55%;
    min-width: 55%;
}

.section-exclusive .product-layout.product_item .product-thumb .product_bottom {
    padding: 19px 12px;
    display: flex;
    flex-direction: column;
}

.section-exclusive .product-title-block a {
    color: var(--B1, #222);
    font-family: Helvetica;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    height: auto;
    border: none;
}

.section-exclusive .product-thumb .product_bottom .button-group-on-card {
    margin-top: auto;
}

.section-exclusive a.default-link {
    margin-left: 24px;
    position: relative;
    top: -4px;
}

.section-exclusive .product-description {
    color: var(--B3, #6B6B6B);
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section-exclusive .product-thumb .product_bottom p.price {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
}

.section-exclusive .product-thumb .product_bottom p.price span {
    margin-right: 10px;
    margin-top: 0;
}

.section-exclusive .product-thumb .product_bottom span.price-old {
    font-weight: 300;
}

.section-exclusive .product-thumb button.btn-addcart {
    border: 1px solid var(--BURGUNDY, #651C32);
    margin-left: 0;
    margin-right: 8px;
    padding: 16px 20px 13px;
    width: 100% !important;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.section-exclusive .product-thumb .block-btns-on-card {
    width: 100%;
}

.section-exclusive .product-thumb button.btn-addcart:hover {
    background: #651C32;
    color: #fff;
}

.section-exclusive .product-thumb button.btn-addcart:hover svg path {
    stroke: #fff;
}

.section-exclusive .product-thumb button.btn-addcart svg path {
    transition: all 0.4s ease-in-out;
}

.section-exclusive .product-thumb button.btn-wishlist {
    width: 50px;
    border: 1px solid #C5C5C5;
    height: 50px;
    top: 0;
    min-width: 50px;
    transition: all 0.4s ease-in-out;
}

.section-exclusive .product-thumb button.btn-wishlist svg {
    position: relative;
    top: 2px;
}

.section-news a.default-link {
    margin-left: 24px;
    position: relative;
    top: -5px;
}

a.articles_home_img {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}

.section-news .caption.caption-portfolio {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 26.12%, #000 100%);
    padding: 30px;
}


span.article_name {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 20px;
}

span.article_date {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

p.article_short_description {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
}

span.article_date:before {
    width: 14px;
    height: 1px;
    content: "";
    display: block;
    background: #FFF;
    position: relative;
    top: -2px;
    margin-right: 10px;
}

script {}

section.default-section.section-seo-text {
    background: #F5F5F5;
    padding-bottom: 20px;
}

.seo-text-content h1 {
    color: var(--B1, #222);
    font-family: Playfair;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
    margin-top: 0;
}

.seo-text-content * {
    color: var(--B3, #6B6B6B);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    line-height: 1.3;
}

.seo-text-content:before {
    content: "";
    max-height: 280px;
    /* overflow: hidden; */
    background: linear-gradient(0deg, #f5f5f5 0%, rgba(115, 115, 115, 0.00) 97.74%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.seo-text-content {
    max-height: 280px;
    overflow: hidden;
    position: relative;
    transition: 0.6s;
}

.seo-text-content.show {
    max-height: 1000px;
}

.seo-text-content.show:before {
    display: none;
}

.text-read-more.active .text-arrow-down {
    rotate: 180deg;
}

footer {
    background: #F5F5F5;
    padding-top: 25px;
}

.footer-top-logo:before {
    content: "";
    height: 1px;
    background: #6B6B6B;
    width: 100%;
    display: block;
}

.footer-top-logo:after {
    content: "";
    height: 1px;
    background: #6B6B6B;
    width: 100%;
    display: block;
}

.footer-top-logo {
    display: flex;
    align-items: center;
}

.footer-flex-container {
    display: flex;
    gap: 30px;
    margin-top: 38px;
    padding-bottom: 50px;
}

.footer-flex-item.footer-contact {
    flex-basis: 20%;
    max-width: 222px;
    margin-left: auto;
}

.footer-flex-item.footer-locations {
    flex-basis: 50%;
}

.footer-flex-item.footer-menu {
    flex-basis: 30%;
}

.footer-flex-item.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.footer-flex-item.footer-menu ul li {
    flex-basis: 60%;
}

.footer-flex-item.footer-menu ul li:nth-child(odd) {
    flex-basis: 40%;
}

.footer-flex-item.footer-menu ul li a {
    color: var(--B1, #222);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
    display: block;
}

.footer-flex-item.footer-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 530px;
}

.footer-flex-item.footer-locations>div {
    flex-basis: calc(50% - 10px);
}

.footer-locations-item-title h3 {
    color: var(--B1, #222);
    font-family: Playfair;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 0;
}

.footer-locations-item-title {
    margin-bottom: 20px;
}

.footer-locations-item-value {
    display: flex;
    margin-bottom: 10px;
}

span.footer-location-item-text {
    color: var(--B1, #222);
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
    max-width: 250px;
}

span.footer-location-item-text a {
    color: var(--B1, #222);
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 8.5%;
    /* 1.02px */
    text-underline-offset: 12.5%;
    /* 1.5px */
    text-underline-position: from-font;
    text-transform: uppercase;
}

span.footer-location-item-icon {
    margin-right: 8px;
    position: relative;
    top: 2px;
}

ul.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.footer-contact-list li {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
}

ul.footer-contact-list li a {
    color: var(--B1, #222);
    font-family: Helvetica;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-right: 10px;
}

ul.footer-contact-list li:last-child a {
    font-size: 16px;
}

ul.footer-contact-list li:last-child {
    margin-top: 15px;
}

.footer-contact-newsletter {
    border-top: 1px dashed #C5C5C5;
    margin-top: 18px;
    padding-top: 15px;
}

.footer-contact-newsletter-title {
    color: var(--B3, #6B6B6B);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 5px;
}

.footer-contact-newsletter-content {
    display: flex;
    align-items: center;
}

.footer-contact-newsletter-content form {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-contact-newsletter-content form button {
    width: 32px;
    height: 32px;
    background: var(--B1, #222);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
}

.footer-contact-newsletter-content form input {
    width: 100%;
    height: 32px;
}

.footer-contact-newsletter-content form input {
    color: #000;
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 6px 10px;
    border: none;
    border-radius: 0px;
}

.footer_powered span {
    color: var(--B3, #6B6B6B);
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    display: block;
    white-space: nowrap;
    margin: 0px 30px;
}

.footer_powered:before,
.footer_powered:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #C5C5C5;
}

.footer_powered {
    display: flex;
    align-items: center;
    padding: 0px 0px 20px;
}

.text-read-more {
    background: #FFF;
    border: none;
    padding: 20px 40px 16px;
    color: var(--BURGUNDY, #651C32);
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin: auto;
    transition: all 0.4s ease-in-out;
}

.text-arrow-down {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="6" viewBox="0 0 8 6" fill="none"><path d="M3.32809 5.35355C3.52335 5.54882 3.83993 5.54882 4.03519 5.35355L7.21717 2.17157C7.41244 1.97631 7.41244 1.65973 7.21717 1.46447C7.02191 1.2692 6.70533 1.2692 6.51007 1.46447L3.68164 4.29289L0.853214 1.46447C0.657951 1.2692 0.341369 1.2692 0.146107 1.46447C-0.0491554 1.65973 -0.0491554 1.97631 0.146107 2.17157L3.32809 5.35355ZM3.68164 0L3.18164 2.18557e-08L3.18164 5L3.68164 5L4.18164 5L4.18164 -2.18557e-08L3.68164 0Z" fill="%23651C32"/></svg>');
    width: 8px;
    height: 6px;
    background-size: cover;
    display: block;
    position: relative;
    top: -1px;
    margin-left: 5px;
}

.product_wrapper.product_wrapper_cat {
    display: flex;
    flex-wrap: wrap;
}

.product_wrapper.product_wrapper_cat>div {
    flex-basis: 33.33%;
}

.product_wrapper_cat.product_wrapper_cat_search {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 60px;
}

ul.breadcrumb_list {
    padding: 0;
    list-style: none;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
}

span.breadcrumb-separator {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="5" height="8" viewBox="0 0 5 8" fill="none"><path d="M4.03519 4.03556C4.23046 3.8403 4.23046 3.52372 4.03519 3.32845L0.853214 0.146473C0.657951 -0.0487893 0.341369 -0.0487893 0.146107 0.146473C-0.0491555 0.341735 -0.0491555 0.658318 0.146107 0.85358L2.97453 3.68201L0.146107 6.51043C-0.0491555 6.7057 -0.0491555 7.02228 0.146107 7.21754C0.341369 7.4128 0.657951 7.4128 0.853214 7.21754L4.03519 4.03556ZM2.68164 3.68201V4.18201H3.68164V3.68201V3.18201H2.68164V3.68201Z" fill="%23C5C5C5"/></svg>');
    margin: 0px 9px;
    width: 5px;
    height: 8px;
}

ul.breadcrumb_list>li a {
    color: #C5C5C5;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.42px;
}

ul.breadcrumb_list>li>span {
    color: #6B6B6B;
}

h1.category-title {
    color: var(--B1, #222);
    font-family: Playfair;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.category_title_wrapper {
    margin-bottom: 25px;
}

.subcategory-list-wrapper {
    display: flex;
    align-items: center;
}

.subcategory-list {
    display: flex;
}

.subcategory-list>div a {
    color: var(--B2, #4D4D4D);
    text-align: center;
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    padding: 10px 20px;
    white-space: nowrap;
    display: block;
}

.subcategory-list {
    width: 100%;
    /* overflow-x: scroll; */
    /* padding: 10px 0px; */
    margin: 0px 20px;
    position: relative;
}

span.slider-arrow-right {
    transform: rotate(180deg);
}

.subcategory-wrapper {
    padding: 25px 0px;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
}

.subcategory-swiper:before {
    content: "";
    position: absolute;
    left: -15px;
    z-index: 10;
    top: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(90deg, #fff -60%, transparent);
}

.subcategory-swiper:after {
    content: "";
    position: absolute;
    right: -15px;
    z-index: 10;
    top: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(270deg, #fff 30%, transparent);
}

.thumbnails {
    list-style: unset;
    margin: 0;
    padding: 0;
}

.thumb-flex {
    width: 58%;
}

.desc-flex {
    width: 42%;
    position: relative;
    z-index: 100;
    padding: 40px 45px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thumbnails img {
    height: 75vh;
    width: 100%;
    object-fit: cover;
}

.flex-row-thumb {
    display: flex;
}

.flex-row-thumb .slick-arrow {
    font-size: 0;
    padding: 0;
    border: unset;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    background: #fff;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    z-index: 5;
    background-image: url(/image/catalog/arrow-slider.svg);
    background-size: 26px;
    background-position: center;
    background-repeat: no-repeat;
}

.flex-row-thumb .slick-prev {
    left: 18px;
    rotate: 180deg;
}

.flex-row-thumb .slick-next {
    right: 18px;
}

.flex-row-thumb .slick-list {
    overflow: unset;
    margin: 0 -10px;
}

.slick-track li {
    margin: 0 10px;
    opacity: 1;
    transition: 0.4s;
}

.slick-track li.slick-active {
    opacity: 1;
}

.bg-row-block {
    overflow: hidden;
}

.flex-stock-sku {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.sku-item,
.sku-item span {
    font-weight: 300;
    opacity: 0.9;
    font-size: 16px;
    color: #6B6B6B;
}


.product-title {
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    color: #222;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 130%;
    font-family: "Playfair Display", serif;
}

.product-manufacturer {
    font-weight: 300;
    opacity: 0.7;
    font-size: 16px;
    border-bottom: 1px dotted #6B6B6B;
    text-align: center;
    color: #6B6B6B;
    display: inline-block;
    position: relative;
    left: 50%;
    translate: -50% 0;
}

.product_price_wrapper {
    margin: 30px 0;
    justify-content: center;
}

.item-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.special-text {
    font-weight: 400;
    font-size: 22px;
    color: #222;
}

.price-text.price-text-old {
    font-weight: 300;
    font-size: 18px;
    text-decoration: line-through;
    color: #4D4D4D;
}

.stock_wrapper {
    display: flex;
    gap: 13px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.stock_wrapper span {
    font-weight: 300;
    font-size: 16px;
    color: #4D4D4D;
    display: flex;
    align-items: center;
    gap: 7px;
}

#button-cart {
    background: #651C32;
    width: 100%;
    border: 1px solid #651C32;
    padding: 0 105px;
    height: 50px;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    transition: 0.4s;
}

#button-cart:hover {
    background: var(--b1);
}

#quick-buy-form {
    display: flex;
    align-items: center;
    margin-top: 14px;
}

.input_tel_wrapper,
.quick-buy {
    flex-basis: 50%;
    height: 50px;
}

.input_tel_wrapper {
    border: 1px solid #C5C5C5;
    border-right: unset;
    position: relative;
}

.input_tel_wrapper svg {
    position: absolute;
    left: 18px;
    top: 50%;
    translate: 0 -50%;
}

.input-tel {
    padding: 0;
    padding-left: 42px;
    height: 100%;
    width: 100%;
    border: unset;
}

#product-search .product_wrapper {
    margin-bottom: 60px;
}

.input-tel:focus-visible {
    border: unset !important;
    outline: unset !important;
    outline: 1px solid #000 !important;
}


.quick-buy {
    border: 1px solid #6B6B6B;
    background: transparent;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #4D4D4D;
    transition: 0.4s;
}

.quick-buy:hover {
    background: var(--b1);
    border: 1px solid var(--b1);
    color: #fff;
}

.faq_cat_item {
    padding: 13px 0;
    border-bottom: 1px dashed var(--B3);
}

#product-product .price-text,
#product-product .price-product {
    font-size: 22px;
}

.faq_ques.product_descr_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    color: var(--b1);
    text-transform: uppercase;
}

.faq_answ.product_dop_info_t {
    max-height: 0;
    transition: 0.5s;
    overflow: hidden;
    opacity: 0;
}

.faq_ques.product_descr_title.active+.product_dop_info_t {
    margin-top: 25px;
    margin-bottom: 15px;
    opacity: 1;
}

.faq_ques.product_descr_title.active svg {
    rotate: 45deg;
}

.faq_ques.product_descr_title svg {
    transition: 0.3s;
}

.faq_wrapper {
    margin-top: 15px;
}

.flex-row-main {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.flex-row-main:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: block;
    border-bottom: 1px dashed var(--B3);
    z-index: 1;
}

.flex-row-main:last-child {
    margin-bottom: 0;
}

.name-item-main {
    min-width: 40%;
    width: 40%;
}

.name-item-main span {
    font-weight: 300;
    font-size: 16px;
    color: var(--b2);
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 10;
    padding-bottom: 2px;
    padding-right: 10px;
}

.value-item-main {
    width: 60%;
    font-weight: 400;
    font-size: 16px;
    color: var(--b1);
    background: #fff;
    position: relative;
    z-index: 10;
    padding-bottom: 2px;
    padding-left: 10px;
}

.product_section_similar .owl-nav {
    display: none;
}

#product-product .section-newsletter {
    margin-top: 30px;
}

body:has(.product-title) footer {
    padding-top: 50px;
}

#information-information {
    overflow: hidden;
}

.pages_title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    color: var(--b1);
    margin-top: 0;
    margin-bottom: 55px;
}

.about_top {
    background: #f5f5f5;
    padding: 111px 0 80px;
    position: relative;
    isolation: isolate;
}

.about_top_wrapper {
    width: 100%;
    max-width: 815px;
    margin: 0 auto;
    border: 1px solid #AF8D3D;
    position: relative;
    padding: 75px 15px 40px;
}

.about_top_txt {
    font-family: var(--second-family);
    font-weight: 300;
    font-size: 26px;
    text-align: center;
    color: var(--b1);
    max-width: 670px;
    width: 100%;
    margin: 0 auto;
}

.about_top_icon {
    position: absolute;
    left: 50%;
    translate: -50% 0;
    top: -68px;
    z-index: 5;
}

.about_top_bg {
    position: absolute;
    top: -20px;
    left: 50%;
    translate: -50% 0;
    z-index: -1;
}

.imtext_section {
    background: #f5f5f5;
}

.imtext_wrapper {
    display: flex;
}

.imtext_img {
    flex-basis: 53%;
}

.imtext_txt {
    flex-basis: 47%;
}

.imtext_img img {
    width: 100%;
}

.imtext_txt_descr {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 30px 0 30px 60px;
    max-width: 545px;
    position: relative;
    isolation: isolate;
}

.imtext_txt_descr:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 150%;
    background: #fff;
    z-index: -1;
}

.imtext_txt_descr p {
    font-weight: 300;
    font-size: 23px;
    line-height: 165%;
    color: var(--b1);
    margin-bottom: 0;
    font-family: var(--second-family);
}

.imtext_txt_descr p:first-child {
    margin-bottom: 30px;
}

.imtext_txt_icon {
    margin-top: 30px;
    display: flex;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 40px;
    color: var(--b1);
}

.asort_section {
    background: #f5f5f5;
    position: relative;
    isolation: isolate;
    padding: 90px 0;
    overflow: hidden;
}

.asort_section_bg {
    position: absolute;
    z-index: -2;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.asort_section_title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 26px;
    text-align: center;
    color: var(--b1);
    margin-top: 0;
    margin-bottom: 34px;
}

.asort_txt {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
}

.asort_txt p {
    font-weight: 300;
    font-size: 20px;
    color: var(--b1);
    margin-bottom: 30px;
}

.asort_section_bg_round {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
}

.asort_wrapper .btn-default {
    left: 50%;
    translate: -50%;
    margin-top: 15px;
    max-width: 260px;
    width: 100%;
}

.imtext_section_rev .imtext_txt_descr:before {
    left: unset;
    right: 0;
}

.imtext_section_rev .imtext_txt_descr {
    padding-left: 0;
    padding-right: 60px;
    max-width: 100%;
}

.imtext_txt {
    background: #fff;
}

.imtext_section_rev h2 {
    text-align: left;
}

.imtext_section_rev .imtext_txt_descr p:not(:last-child) {
    margin-bottom: 34px;
}

.about_num {
    background: #f5f5f5;
    padding: 90px 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.about_num_wrapper {
    max-width: 890px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about_num_item_v {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 90px;
    color: var(--burgundy);
}

.about_num_item_t {
    font-weight: 400;
    font-size: 20px;
    color: var(--b2);
    margin-top: 10px;
}

.about_num_bottom {
    max-width: 815px;
    width: 100%;
    margin: 90px auto 0;
    font-weight: 400;
    font-size: 20px;
    color: var(--b1);
}

.about_num_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
}

.about_soc {
    padding: 90px 0;
    background: #f5f5f5;
}

.about_soc_descr {
    max-width: 815px;
    width: 100%;
    margin: 0 auto 90px;
}

.about_soc_descr p {
    font-weight: 300;
    font-size: 20px;
    color: var(--b1);
    margin-bottom: 25px;
}

.about_soc_descr p:last-child {
    margin-bottom: 0;
}

.about_soc_bottom {
    width: 100%;
    max-width: 478px;
    margin: 0 auto;
    border: 1px solid #AF8D3D;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 75px;
    justify-content: space-between;
}

.about_soc_bottom_title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 26px;
    text-align: center;
    color: var(--b1);
    position: relative;
    background: #f5f5f5;
    z-index: 10;
    top: -20px;
    width: 366px;
}

.about_soc_bottom_links {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    position: relative;
    background: #f5f5f5;
    z-index: 10;
    width: 366px;
    bottom: -16px;
}


.section-newsletter-about-wrapper {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.about_num_item {
    width: 260px;
}

.blog_section_wrapper {
    border-top: 1px solid #C5C5C5;
    padding-top: 40px;
}

.blog_cat_tabs {
    margin-bottom: 28px;
    display: flex;
}

.blog_cat_tab {
    height: 51px;
    border-top: 1px solid #C5C5C5;
    border-bottom: 1px solid #C5C5C5;
    border-right: 1px solid #C5C5C5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    font-weight: 400;
    font-size: 14px;
    color: #C5C5C5;
    transition: 0.4s;
}

.blog_cat_tab:first-child {
    border-left: 1px solid #C5C5C5;
}

.blog_cat_tab.active,
.blog_cat_tab:hover {
    color: #fff;
    background: var(--BURGUNDY);
}

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

.image_blog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.category_item:hover .image_blog img {
    scale: 1.1;
}

.image_blog {
    height: 100%;
    overflow: hidden;
}

.image_blog a {
    display: block;
    height: 100%;
}

.category_item {
    position: relative;
    height: 460px;
}

.caption_blog {
    position: absolute;
    z-index: 5;
    left: 20px;
    right: 20px;
    bottom: 32px;
}

.caption_blog_category {
    background: rgba(255, 255, 255, 0.11);
    padding: 0 14px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.blog_section_title {
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    display: block;
    margin: 23px 0;
    transition: 0.4s;
}

.blog_section_title:hover {
    text-decoration: underline;
    color: #fff;
}

.caption_blog_date {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    padding-left: 22px;
    position: relative;
}

.caption_blog_date:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    width: 14px;
    border-top: 1px solid #fff;
    display: block;
}

.caption_blog_short_descr {
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 23px;
}

@media(min-width: 992px) {
    .category_item:nth-child(5) {
        grid-column: 2 / 4;
    }

    .category_item:nth-child(6) {
        grid-column: 1 / 3;
    }
}

.blog_category_wrapper {
    overflow: hidden;
}

.blog_pagin_wrapper {
    margin: 57px 0 125px;
}

.pagination {
    display: flex;
    justify-content: center;
    border-radius: 0;
}

.pagination a,
.pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 0 !important;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    border-right: 1px solid #E8E8E8;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: var(--b2);
}

.pagination .active span {
    border: unset;
    border: 1px solid #6B6B6B;
    pointer-events: none;
    background: white;
    color: #000;
}

.pagination>li>a,
.pagination>li>span {
    color: #222;
}

.wrapper-btn-pagination a {
    color: transparent !important;
    font-size: 0;
    position: relative;
    background-image: url(/image/catalog/arrow-slider.svg) !important;
    background-size: 20px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.wrapper-btn-pagination-prev {
    rotate: 180deg;
}

.wrapper-btn-pagination a span {
    display: none !important;
}


.checkout-profile {
    background: #f6f6f6;
    border-radius: 0;
    max-width: 100%;
    padding: 36px 23px;
}

#checkout-form {
    margin-bottom: 100px;
}

span.check-validate {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    position: absolute;
    right: -16px;
    background: #F4F5F6;
    padding: 4px;
}

span.inside-check-validate {
    border: 2px solid #DBDBDB;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 100%;
}

span.inside-check-validate:before {
    content: "...";
    font-weight: bold;
    font-size: 10px;
    line-height: 19px;
    color: #B3B3B3;
    position: relative;
    left: 6px;
    top: -4px;
}

.checkout-profile-user {
    position: relative;
}

.checkout-profile-address {
    position: relative;
}

.checkout-profile-payment {
    position: relative;
}

.checkout-profile-user {}

.breadcrumb_list svg {
    min-width: 5px;
}

.checkout-profile-title {
    line-height: 27px;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--b1);
}

.checkout-profile-user-fields input {
    border: 1px solid #E8E8E8;
    box-sizing: border-box;
    border-radius: 0;
    height: 56px;
    padding-left: 15px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: var(--b2);
}

.checkout-profile-user-fields input:focus-visible {
    border-radius: 0 !important;
    border: unset !important;
    outline: 1px solid #000 !important;
}

.checkout-profile-user-fields input::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: var(--b2);
}

.checkout-profile-user-fields {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
}

.checkout-profile-user-fields label {
    flex-basis: calc(50% - 20px);
    margin: 10px;
    width: 100%;
}

.checkout-profile-user-fields span {
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
    color: #545457;
}

.checkout-profile-address {
    margin-top: 40px;
}

.cab-inputs {
    margin-top: 10px;
}

.cab-inputs label {
    width: 100%;
}

.checkout-profile-address-inputs input,
.cab-inputs input {
    border: 1px solid white;
    box-sizing: border-box;
    border-radius: 0;
    height: 43px;
    padding-left: 15px;
    width: 100%;
}

.checkout-profile-address-inputs {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
}

.checkout-profile-address-inputs label {
    flex-basis: calc(50% - 20px);
    margin: 10px;
}

.checkout-profile-address-inputs span,
.cab-inputs span {
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
    color: #545457;
    display: block;
}

.checkout-profile-payment {
    margin-top: 40px;
}

.comment-block {
    margin-top: 40px;
}

.comment-block textarea {
    border: 1px solid white;
    box-sizing: border-box;
    border-radius: 0;
    width: 100%;
    display: block;
    height: 60px;
    resize: none;
    padding-top: 17px;
    padding-left: 20px;
}

.inside-comment-block label {
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
    color: #545457;
}


.checkout-cart-product-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #E8E8E8;
    position: relative;
    margin-bottom: 10px;
    gap: 14px;
}

.checkout-cart-product-item-r {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    gap: 17px;
}

.checkout-cart-product-item-image img {
    border: 1px solid #F4F4F4;
    box-sizing: border-box;
    border-radius: 0;
    width: 86px;
    height: 86px;
    object-fit: cover;
}


.checkout-cart-product-item-name-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    /* or 100% */
    color: #2E3230;
}

.checkout-cart-product-item-image {
    flex-basis: 73px;
}

.checkout-cart-product-item-name small {
    font-size: 12px;
    line-height: 14px;
    color: #8E9591;
}

.quantity-checkout-cart {
    flex-basis: 12%;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    color: #2E3230;
}

.checkout__old-price {
    font-weight: 400;
    font-size: 14px !important;
    color: #C5C5C5;
}

.checkout-submit-title-summ {}

.checkout-submit-title {
    border-radius: 0;
}



button.submit-checkout-form {
    background: var(--burgundy);
    border-radius: 0;
    height: 66px;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    width: 100%;
    border: none;
    margin-top: 17px;
    transition: 0.3s;
    border: 1px solid black;
}

button.submit-checkout-form:hover {
    color: black;
    border: 1px solid black;
    background: white;
}

.totals_order {
    padding: 23px;
    text-align: center;
}

span.text_order {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #747C82;
}

span.value_order {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: black;
}

span.title-for-sub {
    font-weight: 400;
    font-size: 16px;
    color: var(--b2);
    position: relative;
    background: #fff;
    padding-right: 15px;
}

span.sum-for-sub {
    font-weight: 400;
    font-size: 18px;
    color: var(--b1);
    padding-left: 15px;
    position: relative;
    background: #fff;
}

.row-subsums {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
    display: none;
}

.row-subsums:nth-child(1) {
    display: flex;
}

.row-subsums>span {
    position: relative;
    padding: 0px 2px;
}

.wrapper-shipping-method {
    display: flex;
    flex-direction: column;
}


.inside-ship-item {
    width: 100%;
}


.item-shipping-method label {
    padding: 0px;
    position: relative;
    border-radius: 12px;
    width: 100%;
    min-height: unset;
}

.item-shipping-method label input {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin-left: 0px !important;
    margin-top: 0 !important;
}

span.title-ship-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    /* identical to box height, or 136% */
    color: #2E3230;
    display: block;
}

.del_addr {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.6s;
    margin-left: 60px;
    margin-right: 20px;
    border-top: 1px solid #C5C5C5;
}

.inside-ship-item {
    border: 1px solid transparent;
    background: #fff;

}

.inside-ship-item-top {
    height: 95px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    position: relative;
}

.radio.item-shipping-method {
    margin: 0;
    margin-bottom: 10px;
}

.radio.item-shipping-method:last-child .inside-ship-item:first-child {
    margin-bottom: 10px;
}

.check_custom {
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #6B6B6B;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-profile-user-fields label {
    margin: 5px 10px;
}

.inside-ship-item-top label {
    position: unset;
}

.inside-ship-item:has(input:checked) {
    border: 1px solid #6B6B6B;
}

.inside-ship-item:has(input:checked) .check_custom {
    border: 1px solid #222222;
    background-color: #222222;
}

.inside-ship-item:has(input:checked) .check_custom svg {
    opacity: 1;
}

.check_custom svg {
    margin-left: 1px;
    transition: 0.3s;
    opacity: 0;
}

.title-ship-item {
    font-weight: 400;
    font-size: 16px;
    color: var(--b1);
    transition: 0.3s;
}

.price-method-shipp {
    font-weight: 300;
    font-size: 14px;
    color: var(--b2);
    display: block;
    margin-top: 10px;
}

.inside-ship-item:has(input:checked) .del_addr {
    max-height: 500px;
    opacity: 1;
    padding-top: 24px;
    margin-bottom: 15px;
}

.del_addr_title {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 14px;
    color: var(--b1);
}

.del_addr fieldset {
    display: flex;
    align-items: center;
    gap: 8px;
}

.del_addr fieldset>div {
    flex: 1;
}

.del_addr fieldset input {
    background: #fff;
    border: 1px solid #E8E8E8;
    padding: 0 20px;
    width: 100%;
    height: 56px;
}

.np_doors_info {
    font-weight: 400;
    font-size: 14px;
    color: var(--b1);
    padding-top: 17px;
    margin-top: 10px;
    border-top: 1px dashed #C5C5C5;
    margin-bottom: 10px;
}

.checkout-profile-payment-fields .inside-ship-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 66px;
    gap: 20px;
    padding: 0 20px;
}

.title-ship-item br {
    display: none;
}

.title-ship-item .title-ship-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #2E3230;
    display: block;
}

.item-shipping-method label {
    position: unset !important;
}

.row_subsums_top_wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}

.row_subsums_top_wrapper_title {
    font-weight: 400;
    font-size: 22px;
    color: var(--b2);
}

.row_subsums_top span {
    font-weight: 400;
    font-size: 14px;
    text-align: right;
    color: var(--b2);
}

.checkout-cart-product-item-name-text {
    font-weight: 400;
    font-size: 16px;
    color: var(--b1);
}

.checkout-cart-product-item-price {
    font-weight: 400;
    font-size: 14px;
    color: var(--b1) !important;
}

.checkout__price-block {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 7px;
}

.cart_promocod {
    margin: 25px 0;
}

.cart_promocod .input-group {
    display: flex;
    align-items: center;
    border-radius: 0 !important;
    position: relative;
}

.cart_promocod .input-group svg {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    left: 18px;
    z-index: 10;
}

.cart_promocod input {
    flex-basis: 60%;
    border: 1px solid #C5C5C5;
    border-right: 0;
    padding: 0;
    padding-left: 45px;
    height: 56px;
    border-radius: 0 !important;
}

.cart_promocod button {
    flex-basis: 40%;
    border: 1px solid #6B6B6B;
    padding: 0;
    height: 56px;
    border-radius: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: var(--b2);
    transition: 0.3s;
}

.cart_promocod button:hover {
    color: #fff;
    background: var(--b2);
}




.subcategory-swiper .swiper-slide {
    width: auto !important;
    height: auto;
    flex-shrink: 0;
}

.subcategory-item {
    white-space: nowrap;
    padding: 10px 20px;
}



.select-sort {
    position: relative;
    display: inline-block;
    min-width: unset;
}

.selected-sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    cursor: pointer;
    user-select: none;
    gap: 6px;
}

.arrow-down {
    display: flex;
}

.dropdown-select {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
}

.dropdown-select.open {
    display: block;
}

.item-select {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    display: block;
    white-space: nowrap;
    color: #222 !important;
}

.item-select:hover {
    background: #f5f5f5;
}

.item-select.selected-block {
    /* background: #f0f0f0; */
    font-weight: bold;
}

.item-select a {
    display: block;
    color: inherit;
    text-decoration: none;
    color: #222 !important;
}

.top_info_wrapper {
    justify-content: flex-end;
    margin: 35px 0 20px;
}

.category-content .alert.alert-success.alert-dismissible {
    display: none !important;
}










.filter_choosen .ocf-selected-filter {
    margin-bottom: 0 !important;
    padding: 0 !important;
    gap: 6px;
}

.filter_choosen .ocf-selected-discard {
    background-color: #f4f4f4 !important;
    border-radius: 33px !important;
    padding: 0 15px;
    height: 38px;
    padding-right: 22px;
    position: relative;
    border: 1px solid transparent;
}

.filter_choosen .ocf-selected-discard span {
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    text-align: center;
    color: #252322;
    white-space: nowrap;
    overflow: unset !important;
    text-overflow: unset !important;
}

.ocf-selected-discard svg {
    position: absolute;
    right: 10px;
}

.ocf-products-count {
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    text-align: center;
    color: #252322;
    white-space: nowrap;
}

.ocf-body {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
}

.category_descr_check {
    margin: 25px 0 35px;
}

#product-search .ocf-body {
    margin-top: 0;
}


.ocf-value-input::before {
    background-color: transparent !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 5px !important;
}

.ocf-selected-discard:hover {
    border-color: #000 !important;
    border: 1px solid #000;
}

.ocf-selected .ocf-value-input-checkbox::after {
    /* filter: invert(1); */
    background-color: #d7e4f5 !important;
    border: 1px solid #acc6e8 !important;
    background-image: url('/image/filter-check.svg') !important;
    border-radius: 5px !important;
}

.ocf-value-name {
    font-weight: 500;
    font-size: 14px !important;
    color: #252322;
    font-variant-numeric: lining-nums proportional-nums !important;
    white-space: nowrap;
}

.ocf-filter-name {
    font-size: 16px !important;
    font-weight: 500 !important;
}

.ocf-theme-light .ocf-filter-header {
    font-weight: 500;
    font-size: 16px;
    color: #252322;
    text-transform: unset !important;
}

.noUi-pips-horizontal {
    display: none;
}

.oc_price_title {
    font-weight: 400;
    font-size: 16px;
    color: var(--b1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.price-block-option .ocf-option-values {
    opacity: 0;
    max-height: 0;
    margin-top: 0 !important;
}

.price-block-option .ocf-option-name {
    transition: 0.4s;
    max-height: 0;
    overflow: hidden;
}

.price-block-option:has(.open_filter) .ocf-option-values,
.price-block-option:has(.open_filter) .ocf-option-name {
    max-height: 1000px;
}

.price-block-option:has(.open_filter) .ocf-option-values {
    margin-top: 22px !important;
}

.list-group-item {
    border: unset;
    padding: 0 !important;
    margin-bottom: 40px;
}

.noUi-connect {
    background: var(--b1) !important;
}

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

.noUi-horizontal .noUi-handle {
    width: 20px !important;
    height: 20px !important;
    border: unset !important;
    border-radius: unset !important;
    /* background: transparent !important; */
    box-shadow: unset !important;
    background-image: url(/image/catalog/Polygon-ui.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    top: -7px !important;
    left: 0 !important;
}

.noUi-horizontal {
    height: 7px !important;
}

.noUi-target,
.noUi-background {
    box-shadow: unset !important;
    border: unset !important;
    background: #d9d9d9 !important;
    border-radius: 0 !important;
}

.scale {
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding-right: 15px;
    margin-bottom: 25px !important;
}

.form-inline.flex-price-block {
    display: flex;
    border: 1px solid #E8E8E8;
    height: 46px;
    width: 100%;
}

.form-inline.flex-price-block .item-price-block {
    width: 50%;
}

.form-group.item-price-block input {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: var(--b1);
    background: transparent !important;
    border: unset !important;
    padding: 0 !important;
    box-shadow: unset !important;
    height: 100%;
}

.ocfilter-option .ocf-option-name:has(.flex-price-block) {
    margin-bottom: 50px !important;
    position: relative;
}

.ocf-option-name-m {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    height: 12px;
    border-right: 1px solid #C5C5C5;
}

.ocf-option-name-m:before,
.ocf-option-name-m:after {
    content: '';
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    display: block;
    width: 8px;
    border-top: 1px solid #C5C5C5;
}

.ocf-option-name-m:before {
    left: -15px;
}

.ocf-option-name-m:after {
    right: -15px;
}

.ocf-option-name {
    font-weight: 400 !important;
    font-size: 16px !important;
    color: var(--b1);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.ocf-option-values {
    overflow: hidden;
    transition: 0.4s;
    max-height: 0;
    opacity: 0;
}

.ocf-option-values.open_filter {
    opacity: 1;
    max-height: 1000px;
    margin-top: 14px;
}

.list-group-item:has(.open_filter) .filter_acc_btn:before {
    rotate: 0deg;
}

.ocfilter-option label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    position: relative;
}

.custom-check {
    /* display: none; */
    width: 18px;
    height: 18px;
    border: 1px solid var(--b1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-check svg {
    opacity: 0;
}

.ocf-selected .custom-check svg {
    opacity: 1;
}

.ocfilter-option label input {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
}

.name-option {
    font-weight: 400 !important;
    font-size: 16px !important;
    color: var(--b1) !important;
}

.success_reg_wrapper {
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success_reg_wrapper .col-md-6 {
    width: 100%;
}

.title-success-form {
    display: none;
}

.section-newsletter-cat {
    margin-top: 120px;
}

.ocfilter_title {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--b1);
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 40px;
}

.product-image-card img {
    width: 100%;
}

.selected-options .ocfilter-option {
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 3px;
}

.list-group-item.selected-options {
    margin-bottom: 40px;
}

.del-block {
    display: none !important;
}

.filter_acc_btn {
    position: relative;
    display: block;
    width: 10px;
    border-top: 2px solid #000;
}

.filter_acc_btn:before {
    content: '';
    position: absolute;
    left: 50%;
    top: -0.9px;
    translate: -50% 0;
    display: block;
    width: 10px;
    border-top: 2px solid #000;
    rotate: 90deg;
    transition: 0.3s;
}

.list-group-item.selected-options button {
    padding: 0 5px !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: 1px solid var(--b2);
    color: #222;
}

.pagin_ajax {
    display: none;
}

.contacts_top {
    height: auto;
    position: relative;
    isolation: isolate;
    padding: 23px 0;
    margin-bottom: 70px;
}

.contacts_map {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    bottom: 0;
}

.contacts_map iframe {
    width: 100%;
    height: 100%;
}

.contacts_block {
    background: #fff;
    height: 100%;
    width: 100%;
    max-width: 410px;
    padding: 45px;
    position: relative;
}

.contacts_top .container {
    height: 100%;
}

.contact_item {
    margin-bottom: 40px;
}

.contact_item_top {
    display: flex;
    align-items: center;
    /* gap: 16px; */
    margin-bottom: 10px;
}

.contact_item_top span {
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--b1);
}

.contact_item_bottom span {
    font-weight: 300;
    font-size: 16px;
    color: var(--b1);
    display: block;
    margin-bottom: 5px;
}

.contact_item_bottom a {
    font-weight: 400;
    font-size: 16px;
    color: var(--b1);
    display: block;
    margin-bottom: 5px;
}

.contact_item_bottom {
    padding-left: 25px;
}

.contact_item_top_img {
    flex-basis: 25px;
    height: 23px;
}

.contacts_block .about_soc_bottom_links {
    width: 100%;
    background: transparent;
    padding-top: 25px;
    border-top: 1px dashed #C5C5C5;
}

.deliv_section {
    background: #f5f5f5;
    padding: 50px 0 60px;
}

.deliv_block {
    background: #fff;
    margin-bottom: 38px;
    padding: 65px 55px;
    display: flex;
    gap: 55px;
}

.deliv_block_l {
    flex-basis: 45%;
}

.deliv_block_r {
    flex-basis: 55%;
}

.deliv_block_title {
    font-weight: 400;
    font-size: 26px;
    color: var(--b1);
    margin-bottom: 18px;
}

.deliv_block_l p {
    font-weight: 300;
    font-size: 16px;
    color: var(--b1);
    margin-bottom: 20px;
}

.deliv_block_r h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 20px;
    color: var(--b1);
}

.deliv_block_r h3 {
    font-weight: bold;
    font-size: 18px;
    color: var(--b1);
    margin: 20px 0;
}

.deliv_block_r p {
    font-weight: 300;
    font-size: 16px;
    color: var(--b2);
}

.deliv_block_r ul {
    margin: 20px 0;
    list-style: none;
    padding-left: 27px;
}

.deliv_block_r ul li {
    font-weight: 300;
    font-size: 16px;
    color: var(--b2);
    margin-bottom: 20px;
    position: relative;
}

.deliv_block_r ul li:before {
    content: '';
    position: absolute;
    top: 9px;
    left: -26px;
    width: 16px;
    border-top: 2px solid #222;
}

.deliv_block_r h2.deliv_block_r_title_bottom {
    margin-top: 40px;
}

.deliv_block_r ol {
    padding-left: 27px;
}

.deliv_block_r ol li {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    color: var(--b2);
}

.deliv_block_r ol li p {
    margin-top: 20px;
}

.brands_block {
    background: #f5f5f5;
    padding: 60px 0;
}

.brand_tabs {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-bottom: 58px;
}

.brand_block_wrapper {
    margin-bottom: 100px;
}

.brand_tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid #C5C5C5;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--b1);
    transition: 0.3s;
}

.brand_tabs a:hover {
    border: 1px solid var(--burgundy);
    color: var(--burgundy);
}

.brand_block_item {
    margin-bottom: 45px;
}

.brand_block_item h2 {
    font-weight: 400;
    font-size: 25px;
    text-transform: uppercase;
    color: var(--b1);
}

.brand_block_item_links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 11px;
}

.brand_block_item a {
    background: #fff;
    height: 111px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    border: 1px solid transparent;
    padding: 0 10px;
}

.brand_block_item a:hover {
    border: 1px solid var(--burgundy);
}

.manu_name {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: var(--b2);
}

.manu_num {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #C5C5C5;
}

.brand_search_wrapper {
    margin-bottom: 58px;
}

.brand_search_wrapper label {
    display: block;
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--b1);
}

.brand_search_wrapper input {
    height: 66px;
    width: 100%;
    border: 1px solid #C5C5C5;
    font-weight: 400;
    font-size: 16px;
    color: var(--b2);
    padding-left: 60px;
    background: transparent;
}

.brand_search_wrapper svg {
    position: absolute;
    left: 25px;
    top: 50%;
    translate: 0 -50%;
    z-index: 10;
}

.brand_search_input {
    position: relative;
}

#product-manufacturer {
    overflow: hidden;
}

.row_manu {
    margin: 0 !important;
}

.item_search_block_mobile {
    display: none;
}

.header_logo_mob {
    display: none;
}

.owl-featured-nav-prev-button {
    position: relative;
    /* bottom: 4.5px; */
}

.wish_empty {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wishlist-cart:has(.wish_empty) .wishlist-select-all {
    display: none;
}

.cart-popup-empty {
    height: 53vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}


.cart_bottom {
    width: 100%;
}

.black_btn.black_btn_empty {
    display: none;
}

#content:has(.black_btn_empty) p {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
}


.burger-menu.burger-menu_active .burger-menu_lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    /* верхня лінія повертається і піднімається */
}

.burger-menu.burger-menu_active .burger-menu_lines span:nth-child(2) {
    opacity: 0;
    /* середня лінія зникає */
    transform: scale(0);
}

.burger-menu.burger-menu_active .burger-menu_lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    /* нижня лінія повертається і опускається */
}

.success-message {
    text-align: center;
    padding: 1rem 1rem;
    font-size: 16px;
    display: none;

    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    justify-content: center;
}

#product-manufacturer {
    margin-bottom: 60px;
}


body:has(#product-category) .seo-text-content h1 {
    display: none;
}

.article_content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.image-reviews-section {
    justify-content: center;
}

.article-title {
    text-align: center;
}


.all_articles .owl-item img {
    height: 350px;
}

.blog_article {
    overflow: hidden;
}

.banner_btn_mob {
    display: none !important;
}



















































@media (max-width: 1200px) {



    .imtext_txt_descr p {
        font-size: 20px;
    }

    .location-wrapper {
        gap: 20px;
    }

    a.location-link {
        margin-left: 10px;
        min-width: 160px;
    }

    .location-item-caption h3 {
        font-size: 21px;
    }

    .location-item-main h2 {
        font-size: 32px;
        margin-top: 40px;
    }

    .latest-section .owl-nav {
        display: none;
    }

    .category-image-wrapper img {
        max-width: 100%;
    }

    .category-image-wrapper.category-image-hidden {
        width: 100%;
    }

    .category-image-wrapper.category-image-hidden img {
        max-width: 100%;
    }

    .category-image-wrapper {
        max-width: 100%;
    }

    .categories-wrapper {
        width: 100%;
        gap: 0;
    }

    .category-sub-item {
        margin-bottom: 15px;
    }

    .category-sub-link {
        font-size: 14px;
    }

    .category-main-link {
        font-size: 13px;
    }

    .category-main-item {
        margin: 30px 0px;
    }

    .default-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .newsletter-image {
        margin: 0px;
        margin-bottom: 10px;
    }

    form#form-newsletter button {
        padding: 12px 20px 8px;
        white-space: nowrap;
    }

    form#form-newsletter input {
        width: 220px;
    }

    .section-exclusive .product-description {
        text-overflow: ellipsis;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .section-exclusive .product-title-block a {
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


@media (max-width: 991px) {



    .brand_block_item_links {
        grid-template-columns: repeat(4, 1fr);
    }

    .deliv_block {
        padding: 50px 33px;
    }

    body {
        padding-top: 64px;
    }

    #checkout-form>.row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .manu_name {
        font-size: 16px;
    }

    .pages_title {
        margin-bottom: 30px;
    }

    #checkout-form>.row .col-sm-6 {
        width: 100%;
    }

    .imtext_wrapper {
        flex-direction: column;
    }

    .imtext_section_rev .imtext_wrapper {
        flex-direction: column-reverse;
    }

    .imtext_txt_descr {
        padding-left: 20px;
        padding-right: 20px;
    }

    .imtext_txt_descr:before {
        display: none;
    }

    .about_num_item_v {
        font-size: 66px;
    }

    .imtext_section_rev .imtext_txt_descr {
        padding-left: 20px;
        padding-right: 20px;
    }

    .thumb-flex {
        width: 50%;
    }

    .thumbnails img {
        height: 56vh;
    }

    .desc-flex {
        width: 50%;
        padding: 20px 24px;
    }

    .product-title {
        font-size: 20px;
    }

    .flex-stock-sku {
        margin-bottom: 10px;
    }

    .product_price_wrapper {
        margin: 15px 0;
    }

    #button-cart {
        height: 43px;
    }

    .input_tel_wrapper,
    .quick-buy {
        height: 43px;
    }

    .flex-row-thumb .slick-arrow {
        width: 40px;
        height: 40px;
        background-size: 20px;
    }

    .banner_carousel-content-logo {
        margin-bottom: 30px;
    }

    .banner_carousel-content-title {
        font-size: 33px;
        margin-bottom: 30px;
    }

    .banner_carousel-content a {
        width: 200px;
        margin-bottom: 30px;
    }

    nav.header_main_menu ul li a {
        margin: 0px 10px;
    }

    a.btn-default {
        padding: 15px 20px 12px;
    }

    .banner_carousel-pagination {
        margin-top: 20px;
    }

    .default-section {
        padding: 40px 0px 70px;
        position: relative;
    }

    .heading-title-module h2 {
        font-size: 26px;
    }

    a.default-link {}

    .owl-featured-nav-next {
        top: -2px;
    }

    .flex-row-header {
        margin-bottom: 20px;
    }

    .category-image-wrapper {
        min-height: 300px;
    }

    .category-image-wrapper img {
        min-height: 300px;
        max-height: 300px;
    }

    .categories-image-col {
        max-width: calc(100% - 250px - 200px);
    }

    .category-main-link {
        font-size: 12px;
    }

    .category-main-item {
        margin: 20px 0px;
    }

    .default-title {
        font-size: 28px;
    }

    .newsletter-content h2 {
        margin-bottom: 20px;
    }

    section.section-newsletter {
        padding: 30px 0px;
    }

    .subtitle {
        font-weight: 300;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .newsletter-desc {
        font-size: 13px;
        font-weight: 300;
        line-height: 1.4;
        margin-bottom: 30px;
        opacity: 0.75;
    }



    .section-exclusive .product-title-block a {
        font-size: 16px;
    }

    .section-exclusive .product-layout.product_item .product-thumb .product-image-card {
        width: 45%;
        min-width: 45%;
    }

    .section-exclusive .product-thumb button.btn-addcart {
        padding: 11px 20px 9px;
    }

    .section-exclusive .product-thumb button.btn-wishlist {
        width: 41px;
        height: 41px;
        min-width: 41px;
    }

    .product-image-card a {
        height: 100%;
        display: block;
    }

    .product-image-card a img {
        height: 100%;
        object-fit: cover;
    }

    button.text-read-more {
        padding: 16px 20px 12px;
    }

    .category-article-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .category_item {
        height: 380px;
    }

    .category_item:last-child {
        grid-column: 1 / 3;
    }

    .brand_block_wrapper {
        margin-bottom: 60px;
    }

    .burger-menu {
        display: block;
    }

    .burger-menu_lines {
        display: flex;
        flex-direction: column;
        height: 16px;
        justify-content: space-between;
    }

    .burger-menu_lines span {
        display: block;
        width: 25px;
        border-top: 2px solid #fff;
        transition: 0.4s;
    }

    .overlay_search_mob {
        display: block !important;
        position: fixed;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        background: #000;
        z-index: 999;
    }

    .overlay_search_mob.open-search {
        opacity: 0.5;
        visibility: visible;
    }

    .search_input_wrapper {
        top: 69px;
        left: 0;
        position: fixed;
        border: unset;
    }

    .search_input_wrapper input {
        width: 100%;
    }

    .header_main_catalog {
        display: none;
    }

    .item_search_block {
        display: none !important;
    }

    .item_search_block_mobile {
        display: block !important;
    }

    .mobile_icon {
        display: flex;
    }

    .header_bottom_menu_wrapper {
        gap: 20px;
        position: relative;
    }

    .header_logo_mob {
        position: absolute;
        left: 50%;
        top: 50%;
        translate: -50% -50%;
        display: block;
    }

    .header_bottom_menu {
        padding: 22px 0;
    }

    .cart_other_products {
        width: 100%;
    }

    .quantity-block {
        width: 40px;
    }

    .cart__price-block {
        flex-direction: column;
        gap: 0;
    }

    .shoping-cart-products-item-title {
        margin-bottom: 3px;
    }

    .owl-featured-nav-wrapper {
        position: absolute;
        width: auto;
        bottom: 34px;
        left: 15px;
        right: 15px;
        margin-left: unset !important;
        justify-content: space-between;
        top: unset;
    }

    .flex-row-header .default-link {
        position: absolute !important;
        top: unset !important;
        margin-left: 0 !important;
        bottom: 34px;
        left: 50%;
        translate: -50% 0;
    }
}

@media (max-width: 900px) {
    .header_top {
        display: none;
    }

    .header_block_main_menu {
        position: fixed;
        background: #fff;
        left: 0;
        right: 0;
        top: 68px;
        bottom: 0;
        z-index: 3000;
        display: block;
        transition: 0.5s;
        opacity: 0;
        visibility: hidden;
        translate: -110% 0;
    }

    .header_bottom_menu_wrapper:has(.burger-menu_active) .header_block_main_menu {
        opacity: 1;
        visibility: visible;
        translate: 0 0;
    }

    nav.header_main_menu ul li a {
        color: #222;
        width: 100%;
        font-size: 20px;
        padding: 10px 0;
        border-bottom: 1px solid #e3e3e3;
        display: block;
    }

    nav.header_main_menu ul {
        width: 100%;
    }

    nav.header_main_menu ul {
        flex-direction: column;
        padding-top: 30px;
        align-items: unset;
    }

    .header_bottom_right {
        position: relative;
        margin-left: auto;
        top: 2px;
    }

    .header_wishlist_block {
        /* display: none !important; */
    }

    section.section-location.default-section {
        padding: 40px 0px;
    }

    .location-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .location-item-main-logo img {
        max-width: 100px;
    }

    .location-item-main-logo {
        margin-left: -20px;
    }

    .location-item-main {
        margin-right: 0;
        display: flex;
        /* align-items: center; */
    }

    .location-item-main h2 {
        margin-top: 30px;
        font-size: 25px;
    }

    .location-item-main h2 br {
        display: none;
    }

    .location-item-caption h3 {
        font-size: 18px;
        margin-top: 20px;
    }

    .location-item-content {
        flex-direction: column;
        align-items: baseline;
    }

    a.location-link {
        width: 100%;
        margin-top: 25px;
        margin-left: 0;
        padding: 15px;
    }

    .banner_carousel-content-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .banner_carousel-content-logo img {
        max-width: 100px;
    }

    .banner_carousel-content-logo {
        margin-bottom: 5px;
    }

    a.btn-default {
        padding: 17px 20px 13px;
    }

    .categories-sub-col {
        display: none;
    }

    button.show_product.black_btn.btn-addcart span {
        display: none;
    }

    .heading-title-module {
        flex-direction: column;
        align-items: unset;
    }

    .owl-featured-nav-wrapper {
        margin-left: auto;
    }

    .default-title {
        font-size: 25px;
    }

    .category-main-link {
        font-size: 14px;
    }

    .category-main-item {
        margin: 40px 0px;
    }

    .newsletter-wrapper {
        flex-direction: column;
        align-items: unset;
    }

    .newsletter-content {
        width: 100%;
    }

    form#form-newsletter {
        flex-direction: column;
    }

    form#form-newsletter button {
        height: 44px;
    }

    form#form-newsletter input {
        width: 100%;
    }

    .newsletter-content h2 {
        letter-spacing: 1px;
    }

    .newsletter-image {
        margin: 20px 0 0px;
        width: 100%;
    }

    .newsletter-image img {
        width: 120%;
        margin-left: -10%;
    }

    section.section-newsletter {
        overflow: hidden;
    }

    .section-exclusive .product-layout.product_item .product-thumb {
        flex-direction: column-reverse;
    }

    .section-exclusive .product-layout.product_item .product-thumb .product-image-card {
        width: 100%;
    }

    .section-exclusive .product-thumb button.btn-addcart span {
        display: block;
    }

    .section-exclusive .product-description {
        margin: 10px 0px;
    }

    .section-exclusive .product-title-block a {
        margin-bottom: 10px;
    }

    .footer-flex-container {
        flex-direction: column;
    }

    .footer-flex-item.footer-menu {
        border-bottom: 1px solid #C5C5C5;
        padding-bottom: 10px;
    }

    .footer-flex-item.footer-locations {
        flex-direction: column;
        border-bottom: 1px solid #C5C5C5;
        padding-bottom: 15px;
    }

    .footer-flex-item.footer-contact {
        margin-left: 0;
        text-align: left;
        max-width: 100%;
    }

    ul.footer-contact-list li {
        flex-direction: row-reverse;
    }

    ul.footer-contact-list li a {
        margin-right: 0;
        margin-left: 10px;
    }

    .footer-contact-newsletter-content form input {
        height: 36px;
    }

    .footer-contact-newsletter-title {
        margin-bottom: 10px;
    }

    .footer-flex-container {
        padding-bottom: 28px;
    }

    .seo-text-content h1 {
        font-size: 25px;
    }

    .seo-text-content * {
        font-size: 14px;
    }
}

@media (max-width: 600px) {

    .brand_block_item_links {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliv_section {
        padding: 50px 0 13px;
    }

    .deliv_block {
        padding: 30px 15px;
        flex-direction: column;
        gap: 25px;
    }

    .contacts_block {
        padding: 40px 15px;
        padding-top: 0;
    }

    .contact_item {
        margin-bottom: 25px;
    }

    .pages_title {
        font-size: 25px;
        margin-bottom: 17px;
    }

    .checkout-profile-title {
        margin-bottom: 22px;
    }

    .checkout-profile-user-fields label {
        flex-basis: 100%;
    }

    #checkout-form>.row .col-sm-6 {
        padding: 0;
    }

    .wrapper-cart-checkout {
        padding: 0 15px;
    }

    .checkout-profile {
        padding: 30px 15px;
    }

    .about_top_txt {
        font-size: 20px;
    }

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

    ul.breadcrumb_list>li>span {
        white-space: nowrap;
    }

    ul.breadcrumb_list {
        overflow: auto;
        /* justify-content: flex-start; */
    }

    .thumb-flex {
        width: 100%;
    }

    .thumbnails img {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .desc-flex {
        width: 100%;
        padding: 20px 0;
    }

    .flex-row-thumb .slick-list {
        margin: 0 -5px;
    }

    .slick-track li {
        margin: 0 5px;
    }

    .sku-item,
    .sku-item span {
        font-size: 14px;
    }

    .flex-stock-sku {
        margin-bottom: 6px;
    }

    .product-title {
        font-size: 25px;
    }

    .product-manufacturer {
        font-size: 14px;
    }

    .special-text {
        font-size: 18px;
    }

    .price-text.price-text-old {
        font-size: 16px;
    }

    .stock_wrapper span {
        font-size: 14px;
    }

    #button-cart {
        height: 56px;
    }

    #quick-buy-form {
        flex-direction: column;
    }

    .input_tel_wrapper,
    .quick-buy {
        min-height: 56px;
        width: 100%;
    }

    .input_tel_wrapper {
        border-right: 1px solid #C5C5C5;
        border-bottom: unset;
    }

    .input-tel {
        min-height: 56px;
    }

    .faq_wrapper {
        margin-top: 30px;
    }

    #information-information h1 {
        margin-bottom: 25px;
    }

    .about_top {
        padding: 75px 0 42px;
    }

    .imtext_txt_icon {
        font-size: 30px;
    }

    .asort_section {
        padding: 50px 0;
    }

    .asort_section_title {
        margin-bottom: 20px;
    }

    .imtext_section_rev .imtext_txt_descr p:not(:last-child) {
        margin-bottom: 15px;
    }

    .about_num {
        padding: 50px 0;
    }

    .about_num_wrapper {
        flex-direction: column;
        align-items: center;
    }

    .about_num_item {
        text-align: center;
    }

    .about_num_bottom {
        text-align: center;
        margin: 50px auto 0;
    }

    .about_soc {
        padding: 44px 0;
    }

    .category-article-items {
        grid-template-columns: repeat(1, 1fr);
    }

    .category_item:last-child {
        grid-column: 1 / 2;
    }

    .category_item {
        height: 290px;
    }

    .caption_blog_category {
        font-size: 10px;
        height: 25px;
    }

    .blog_section_title {
        font-size: 14px;
        margin: 6px 0;
    }

    .caption_blog_date {
        font-size: 10px;
    }

    .caption_blog_short_descr {
        font-size: 12px;
        margin-top: 6px;
    }

    .caption_blog {
        left: 10px;
        bottom: 16px;
    }

    .blog_pagin_wrapper {
        margin: 31px 0 57px;
    }

    .blog_cat_tabs {
        display: none;
    }

    .del_addr fieldset {
        flex-direction: column;
    }

    .del_addr fieldset>div {
        width: 100%;
        margin-bottom: 5px;
    }

    .checkout-cart-product-item {
        align-items: flex-start;
    }

    .subcategory-wrapper {
        padding: 0;
    }

    .top_info_wrapper {
        margin-top: 23px;
        justify-content: unset;
    }

    .flex-btn-ocfilter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .sort_wrapper {
        width: 100%;
    }

    .show-filter-block {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border-radius: 0;
        background: var(--burgundy);
        color: #fff;
        border: unset;
        height: 35px;
        padding: 0 20px;
        width: 100%;
    }

    .show-filter-block svg path,
    .show-filter-block svg circle {
        stroke: #fff;
    }

    .flex-btn-ocfilter .visible-xs {
        width: 50%;
    }

    .product_wrapper.product_wrapper_cat {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-title-block a {
        height: 100px;
    }

    .ocfilter_title {
        display: none;
    }

    .close-filter-mobile {
        background: transparent;
        border: unset;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .close-filter-mobile svg {
        width: 20px;
        height: 20px;
    }

    .list-group-widget {
        padding: 0 15px;
    }

    .shoping-cart {
        height: 100vh;
    }

    .shoping-cart-products-loop {
        height: 290px;
    }

    .shoping-cart-content {
        justify-content: unset;
    }

    .cart_bottom {
        width: 100%;
    }

    .btn-checkout {
        padding: 0 20px;
    }

    .recommended-products {
        height: auto;
        overflow-y: auto;
    }

    .recommended-products .product_item {
        padding: 0 10px;
        min-width: 160px;
    }

    body {
        padding-top: 64px;
    }

    .contacts_top {
        margin-bottom: 48px;
    }

    .contacts_map {
        position: relative;
    }

    .contacts_top {
        display: flex;
        flex-direction: column-reverse;
    }

    .form-inline.flex-price-block .item-price-block {
        margin-bottom: 0;
    }

    .ocf-option-values {
        max-height: unset !important;
        opacity: 1 !important;
        margin-top: 20px !important;
    }

    .ocf-offcanvas .ocfilter-mobile-handle {
        margin-bottom: 20px;
    }

    .filter_acc_btn {
        display: none;
    }

    #product-search .show-filter-block {
        display: none;
    }

    #product-manufacturer {
        margin-bottom: 40px;
    }

    .seo-text-content.show {
        max-height: 5000px;
    }

    .seo-text-content * {
        color: #545454;
    }

    .article-title {
        font-size: 24px;
    }

    #tab-description {
        padding: 0 15px;
    }

    .banner_carousel-content .btn-default {
        display: none !important;
    }

    .owl-stage-outer .banner_btn_mob {
        display: flex !important;
        margin: 70px 15px 10px 15px;
        justify-content: center;
    }

    .banner_carousel-pagination {
        margin-top: -95px;
    }

    .section-newsletter {
        background-image: unset;
        background: var(--burgundy);
    }

}