html {
    interpolate-size: allow-keywords;
}

/* ARCHIVE PRODUCT */

.woocommerce__header {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, calc(8px + 0.625vw), 20px);
    margin-bottom: clamp(20px, calc(12px + 2.5vw), 60px);
    margin-top: clamp(30px, calc(-2.727px + 10.227vw), 20px);
}

.woocommerce__title {
    text-align: center;
}

.woocommerce__title span {
    color: var(--color-theme-200);
}

.woocommerce_subtitle {
    text-align: center;
}

.woocommerce_subtitle span {
    color: #dfdfdf;
}

.sub-cats-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(15px, calc(12px + 0.938vw), 30px);
    margin-bottom: clamp(15px, calc(12px + 0.938vw), 30px);
}

.product-subcategory {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 5px 20px 5px 5px;
    max-width: 360px;
    display: flex;
    gap: 25px;
    align-items: center;
}

@media screen and (max-width: 480px) {
    .product-subcategory {
        width: 100%;
    }
}

.category__img {
    width: 82px;
    height: auto;
    overflow: hidden;
    border-radius: 16px;
    flex-shrink: 0;
}

.archive__wrapper {
    display: flex;
    gap: clamp(10px, calc(6px + 1.25vw), 30px);
}

.archive__right {
    width: 100%;
    max-width: 1140px;
}


ul.products {
    display: grid;
    gap: 30px;
}

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

/* PRODUCT CARD */

li.product {
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-theme-800);
    display: flex;
    flex-direction: column;
}

.product-card__header {
    padding: clamp(15px, calc(12px + 0.938vw), 30px) clamp(15px, calc(12px + 0.938vw), 30px) clamp(15px, calc(13px + 0.625vw), 25px);
    display: flex;
    flex-direction: column;
    gap: clamp(10px, calc(9px + 0.313vw), 15px);
}

li.product .woocommerce-loop-product__title {
    color: #dfdfdf;
	min-height:65px;
}


@media(max-width:630px)
{
	li.product .woocommerce-loop-product__title {
	min-height:unset;
}
}

li.product .image-holder {
    width: 100%;
    height: 213px;
}

li.product .product__bottom-wrapper {
    margin-top: auto;
    padding: clamp(10px, calc(8px + 0.625vw), 20px) clamp(15px, calc(12px + 0.938vw), 30px) clamp(15px, calc(12px + 0.938vw), 30px);
}

li.product .price {
    color: rgba(255, 255, 255, 0.6);
}

li.product .card-attributes__wrapper {
    padding: 10px clamp(15px, calc(9.545px + 1.705vw), 30px) 0;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, calc(8.545px + 0.455vw), 14px);
    height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

li.product:hover .card-attributes__wrapper {
    height: calc-size(auto, size);
}

li.product .card-attributes__title {
    color: rgba(255, 255, 255, 0.6);
}

li.product .card-attributes__holder {
    display: flex;
    flex-direction: column;
    gap: clamp(5px, calc(3.182px + 0.568vw), 10px);
}

li.product .card__attribute {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}

li.product .card-attribute__name {
    color: rgba(255, 255, 255, 0.6);
}

li.product .card-attribute__value {
    color: #dfdfdf;
}

li.product .product_card_bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

li.product .product__link {
    position: relative;
    z-index: 1;
    display: flex;
    width: calc(var(--spacing) * 12);
    height: calc(var(--spacing) * 12);
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: calc(infinity * 1px);
    border-style: var(--tw-border-style);
    border-width: 1px;
    border-color: var(--color-theme-100);
    background-color: var(--color-theme-800);
    color: var(--color-theme-100);
    --tw-duration: 200ms;
    transition-duration: 200ms;
    --tw-ease: var(--ease-in);
    transition-timing-function: var(--ease-in);
}

/* SINGLE PRODUCT */

div.product {
    margin-top: clamp(20px, calc(12px + 2.5vw), 60px);
    margin-bottom: clamp(30px, calc(-2.727px + 10.227vw), 120px);
}

div.product .product__content {
    display: flex;
    gap: clamp(20px, calc(14px + 1.875vw), 50px);
}

div.product .product__gallery {
    display: grid;
    gap: clamp(15px, calc(12px + 0.938vw), 30px);
    width: 100%;
    max-width: 880px;
    grid-template-columns: repeat(2, 1fr);
}

div.product .product__gallery .product__image {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

div.product .product__gallery .product__image:nth-child(3n+1) {
    grid-column: span 2;
    grid-row: span 2;
    max-height: 500px;
}

div.product .product__gallery .product__image:nth-child(3n+2),
div.product .product__gallery .product__image:nth-child(3n+3) {
    grid-row: span 3;
    max-height: 800px;
}

div.product .product__right {
    background: var(--color-theme-800);
    border-radius: 20px;
    padding: clamp(10px, calc(6px + 1.25vw), 30px);
    width: 100%;
    max-width: 600px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

div.product .product__price {
    font-size: clamp(1.25rem, 0.975rem + 1.375vw, 2.625rem);
}

div.product .product__btn {
    margin-top: clamp(10px, calc(6px + 1.25vw), 30px);

}

div.product .product-desc__wrapper {
    margin-top: clamp(20px, calc(14px + 1.875vw), 50px);
    display: flex;
    flex-direction: column;
    gap: clamp(10px, calc(8px + 0.625vw), 20px);
}

div.product .product__desc {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

div.product .product__desc.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

div.product .product__read-more {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    width: fit-content;
    transition: 0.3s ease-in-out;
}

div.product .product__read-more svg {
    transition: 0.3s ease-in-out;
}

div.product .product__read-more.clicked svg {
    transform: rotate(180deg);
}

div.product .product-attrs__wrapper {
    margin-top: clamp(15px, calc(11px + 1.25vw), 35px);
    display: flex;
    flex-direction: column;
    gap: clamp(10px, calc(8px + 0.625vw), 20px);
}

div.product .product-attrs__holder {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

div.product .product__attribute {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(5px, calc(4px + 0.313vw), 10px);
    position: relative;
}

div.product .product__attribute.hidden {
    display: none;
}

div.product .product-attribute__line {
    flex-grow: 1;
    align-self: flex-end;
    border-bottom: 1px dashed #2A2A2A
}


@media screen and (max-width: 600px) {
    div.product .product__content {
        flex-direction: column-reverse;
    }

    div.product .product__right {
        position: static;
    }

    div.product .product__gallery .product__image:nth-child(3n+1) {
        max-height: 300px;
    }
}

/* FILTER */

.archive__left {
    width: 100%;
    max-width: 360px;
}

.archive__left .sidebar {
    /* min-width: 276px; */
    max-width: 360px;
    width: 100%;
    position: sticky;
    top: 120px;
}

.archive__left .sidebar #open-filter {
    position: fixed;
    background: var(--color-theme-900);
    color: #fff;
    padding: 15px 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in;
    writing-mode: vertical-lr;
    left: 0;
    top: 50%;
    display: none;
    transform: translateX(300px);
}

.archive__left .sidebar #open-filter:hover {
    background-color: #fff;
    color: #07060b;
}

.archive__left .sidebar #open-filter.active {
    opacity: 0.9;
}

/* filter start */
/*! nouislider - 12.1.0 - 10/25/2018 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    touch-action: none;
    -moz-user-select: none;
    user-select: none;
    box-sizing: border-box;
    transition: unset;
}

.noUi-target {
    position: relative;
    direction: ltr;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 26px;
    margin-bottom: 6px;
}

.noUi-base,
.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Wrapper for all connect elements.
    */
.noUi-connects {
    overflow: visible;
    z-index: 0;
    background: #2a2a2a;
    border-radius: 5px;
}

.noUi-connect,
.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: -1px;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: 0 0;
}

/* Offset direction
    */
html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
    left: auto;
    right: 0;
}

/* Give origins 0 height/width so they don't interfere with clicking the
    * connect elements.
    */
.noUi-vertical .noUi-origin {
    width: 0;
}

.noUi-horizontal .noUi-origin {
    height: 0;
}

.noUi-handle {
    position: absolute;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
    transition: transform 0.3s;
}

.noUi-state-drag * {
    cursor: inherit !important;
}

/* Slider size and handle placement;
    */
.noUi-horizontal {
    height: 2px;
}

.noUi-handle.noUi-handle-lower {
    right: -7.5px !important;
}

.noUi-horizontal .noUi-handle {
    outline: none;
    width: 13px;
    height: 13px;
    left: -17px;
    top: -6px;
    background: var(--colors-main);
    box-shadow: unset;
    cursor: pointer;
}

.noUi-vertical {
    width: 1px;
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    left: -6px;
    top: -17px;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
    right: -0px;
    left: auto;
}

/* Styling;
    * Giving the connect element a border radius causes issues with using transform: scale
    */
.noUi-target {
    background: #2a2a2a;
    /* background: #FAFAFA;
       border-radius: 4px;
       border: 1px solid #D3D3D3;
       box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB; */
}

.noUi-connects {
    height: 2px;
    top: 0px;
}

.noUi-connect {
    background: var(--color-theme-100);
    height: 2px;
    top: -1px;
}

/* Handles and cursors;
    */
.noUi-draggable {
    cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize;
}

.noUi-handle {
    border-radius: 3px;
    background: #fff;
    cursor: default;
    box-shadow:
        inset 0 0 1px #fff,
        inset 0 1px 7px #ebebeb,
        0 3px 6px -3px #bbb;
}

.noUi-active {
    box-shadow:
        inset 0 0 1px #fff,
        inset 0 1px 7px #ddd,
        0 3px 6px -3px #bbb;
}

/* Handle stripes;
    */
/* .noUi-handle:before,
   .noUi-handle:after {
       content: "";
       display: block;
       position: absolute;
       height: 14px;
       width: 1px;
       background: #E8E7E6;
       left: 14px;
       top: 6px;
   } */
/* .noUi-handle:after {
       left: 17px;
   } */
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px;
}

.noUi-vertical .noUi-handle:after {
    top: 17px;
}

/* Disabled state;
    */
[disabled] .noUi-connect {
    background: #b8b8b8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
    cursor: not-allowed;
}

/* Base;
    *
    */
.noUi-pips,
.noUi-pips * {
    box-sizing: border-box;
}

.noUi-pips {
    position: absolute;
    color: #999;
}

/* Values;
    *
    */
.noUi-value {
    position: absolute;
    card-space: nowrap;
    text-align: center;
}

.noUi-value-sub {
    color: #ccc;
    font-size: 10px;
}

/* Markings;
    *
    */
.noUi-marker {
    position: absolute;
    background: #ccc;
}

.noUi-marker-sub {
    background: #aaa;
}

.noUi-marker-large {
    background: #aaa;
}

/* Horizontal layout;
    *
    */
.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%;
}

.noUi-value-horizontal {
    transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
    transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
}

/* Vertical layout;
    *
    */
.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
}

.noUi-value-vertical {
    transform: translate(0, -50%, 0);
    padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
    transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px;
}

.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
    color: #000;
    padding: 5px;
    text-align: center;
    card-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
    transform: translate(0, -50%);
    top: 50%;
    right: 120%;
}

.filters-widget {
    display: flex;
    flex-direction: column;
    background: var(--bg-primary-main);
}

.filters-widget .filters-form {
    display: flex;
    flex-direction: column;
    /* display: none; */
}

.filters-widget .filter-block {
    margin: 0px;
}

.filters-widget .local-search input {
    width: 100%;
}

.filters-widget .filter-block+.filter-block {
    margin-top: 30px;
}

.filters-widget .filter-block .filter-block-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-align: center;
    align-items: center;
    padding: 0px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0px 0px 15px 0px;
}

.filters-widget .filter-block .filter-block-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.filters-widget .filter-block .filter-block-content input[type="number"] {
    appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.filters-widget .filter-block .filter-block-content input[type="number"]::-webkit-outer-spin-button,
.filters-widget .filter-block .filter-block-content input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.filters-widget .filter-block .filter-block-content .range-slider+.inputs {
    margin-top: 20px;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal {
    height: 1px;
    margin: 10px;
    border-radius: 2px;
    background-color: #e09542;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-base,
.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-connect,
.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: 0 0;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-connect {
    top: -2px;
    height: 2px;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-origin {
    left: auto;
    right: 0;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-handle {
    position: absolute;
    top: -6px !important;
    left: auto;
    right: -8px;
    width: 17px;
    height: 17px;
    background-color: var(--colors-main);
    outline: none;
    cursor: pointer;
}

.noUi-horizontal .noUi-handle {
    width: 14px !important;
    height: 14px !important;
    border-radius: 5px !important;
    background-color: white !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

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

.filters-widget .filter-block .filter-block-content .inputs.range {
    display: flex;
    flex-direction: row;
}

.filters-widget .filter-block .filter-block-content .inputs.range .group {
    display: inline-flex;
    flex-direction: column;
    flex-align: start;
    align-items: flex-start;
    width: calc(50% - 5px);
}

.filters-widget .filter-block .filter-block-content .inputs.range .group input {
    width: 100%;
    padding: 5px;
    color: #c4c4c4;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e09542;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.filters-widget .filter-block .filter-block-content .inputs.range .group input[name] {
    color: #000;
}

.filters-widget .filter-block .filter-block-content .inputs.range .group+.group {
    margin-left: 10px;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes {
    display: flex;
    flex-direction: column;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group {
    display: flex;
    flex-direction: column;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group label {
    display: flex;
    flex-align: center;
    align-items: center;
    padding-left: 35px;
    position: relative;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    min-height: 24px;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group label .indicator {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    margin: auto 0px;
    width: 20px;
    height: 20px;
    border: 2px solid #e09542;
    border-radius: 2px;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group label .indicator:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background-color: #e09542;
    opacity: 0;
    transition: opacity 0.1s linear;
    -o-transition: opacity 0.1s linear;
    -ms-transition: opacity 0.1s linear;
    -moz-transition: opacity 0.1s linear;
    -webkit-transition: opacity 0.1s linear;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group label:hover .indicator:before {
    opacity: 0.2;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group input {
    display: none;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group input:checked+label .indicator:before {
    opacity: 1;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group+.group {
    margin-top: 5px;
}

/* .filters-widget input {
  border: 1px solid var(--bg-primary-stroke);
  height: 35px;
  width: 91px;
  text-align: center;
  color: var(--text-primary-head);
} */

.filters-widget .inputs.price.range input {
    border: 1px solid #2A2A2A;
    border-radius: 30px;
    text-align: center;
    width: 123px;
    height: 35px;
    background: var(--color-theme-700);
    color: var(--color-theme-100);
}

.filters-widget .inputs.price.range .price-dep,
.filters-widget .inputs.price.range .range-dep {
    width: 14px;
    height: 2px;
    background: #2A2A2A;
}

.filters-widget .inputs.price.range {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.filters-widget .accordeon-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    margin-bottom: clamp(10px, calc(9px + 0.313vw), 15px);
}

.filters-widget .price__block .accordeon-block-header {
    margin-bottom: clamp(10px, calc(7px + 0.938vw), 25px);
}

.filters-widget .accordeon-block-header .filter__arrow svg {
    transition: 0.3s ease-in-out;
}

.filters-widget .accordeon-block-header .filter__arrow svg path {
    transition: 0.3s ease-in-out;
}

.filters-widget .accordeon-block-header.active .filter__arrow svg {
    transform: rotate(180deg);
}

.filters-widget .accordeon-block-header.active .filter__arrow svg path {
    stroke: var(--text-primary-second);
}

.filters-widget .group-label {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--text-primary-main);
    cursor: pointer;
    width: 100%;
}


.filters-widget .filter-holder {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, calc(15px + 1.563vw), 45px);
    padding: 30px;
    border-radius: 20px;
    background: var(--color-theme-800);
    overflow: auto;
}

@media (max-width: 900px) {
    .filters-widget .filter-holder {
        max-height: 100%;
    }
}

/* .filters-widget .accordeon-block.opend {
   background: var(--card);
   border: 1px solid var(--background-dark);
 } */
.filters-widget .accordeon-block svg {
    transition: all 0.5s;
    pointer-events: none;
}

.filters-widget .accordeon-block.opend svg {
    transform: rotate(180deg);
}

/* .filters-widget .accordeon-block-header:hover .accordeon-block-header-title {
  color: white;
} */
/* .filters-widget .accordeon-block-header:hover svg path {
  fill: white;
}

.filters-widget .accordeon-block-header:hover svg {
  transform: rotate(180deg);
} */
.filters-widget .accordeon-block-header-title {
    color: var(--color-theme-100);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    gap: 5px;
}


.filters-widget .buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.filters-widget .buttons .btn {
    margin: 0 auto;
    text-align: center;
    align-items: center;
    place-content: center;
    width: fit-content;
    min-width: 230px;
}

.filters-widget .content__toggler {
    display: flex;
    pointer-events: none;
}

.filters-widget .clear-btn {
    display: flex;
    gap: 5px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.filters-widget .clear-btn svg path {
    transition: 0.3s ease-in-out;
}

.filters-widget .accordeon-block .padding-box {
    transition: unset;
}

.filters-widget .inputs.checkboxes.list {
    display: flex;
    max-height: 175px;
    overflow-y: auto;
    flex-direction: column;
    gap: 10px;
}

.filters-widget .inputs.checkboxes.list::-webkit-scrollbar {
    width: 2px;
}

.filters-widget .inputs.checkboxes.list::-webkit-scrollbar-track {
    background: #dadddb;
}

.filters-widget .inputs.checkboxes.list::-webkit-scrollbar-thumb {
    background: #25ad59;
}

.filters-widget .inputs.checkboxes.list .group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.filters-widget .inputs.checkboxes.list .group input {
    all: initial;
    background: transparent;
    border: 1px solid var(--color-theme-200);
    width: 24px;
    height: 24px;
    display: flex;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.3s ease-in-out;
}

.filters-widget .inputs.checkboxes.list .group:hover input {
    border-color: var(--color-theme-100);
}

.filters-widget .inputs.checkboxes.list .group input::before {
    content: "✔";
    position: absolute;
    color: var(--color-accent-1);
    font-size: 12px;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.filters-widget .inputs.checkboxes.list .group input:checked {
    background: var(--color-theme-100);
    border-color: var(--color-theme-100);
}

.filters-widget .inputs.checkboxes.list .group input:checked+label {
    color: var(--color-theme-100);
}

.filters-widget .inputs.checkboxes.list .group input:checked::before {
    opacity: 1;
}

.archive__left #openFilter {
    width: clamp(2.8125rem, 2.625rem + 0.9375vw, 3.75rem);
    height: clamp(2.8125rem, 2.625rem + 0.9375vw, 3.75rem);
    display: flex;
    align-items: center;
    place-content: center;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    left: var(--thirty);
    cursor: pointer;
    z-index: 13000;
    display: none;
}

.archive__left #openFilter svg path {
    fill: black;
}

.archive__left #openFilter svg {
    max-width: 24px;
    max-height: 24px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    margin: auto auto;
    pointer-events: none;
}

.archive__left #openFilter.active {
    background: black;
    bottom: 80px;
}

.products-list__category-holder:has(.sidebar.active) #openFilter {
    bottom: 30px;
}

.archive__left #openFilter.active svg path {
    fill: white;
}

@media screen and (max-width: 1025px) {
    .archive__left .sidebar {
        min-width: 300px;
        position: fixed;
        left: 0;
        top: 0 !important;
        height: 100vh;
        width: 300px;
        transform: translateX(-300px);
        transition: transform 0.3s ease-in;
        background-color: var(--color-theme-800);
        padding: 0;
        z-index: 101;
    }

    .filters-widget .inputs.price.range {
        gap: 5px;
    }

    .filters-widget .inputs.price.range .price-dep,
    .filters-widget .inputs.price.range .range-dep {
        min-width: 14px;
        flex-shrink: 0;
    }

    .filters-widget .filter-holder {
        padding: 10px;
    }

    .archive__left {
        width: unset;
    }

    .archive__left .sidebar.active {
        transform: translateX(0);
    }

    .archive__left .sidebar .filters-widget {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px;
    }

    .archive__left .sidebar .filters-widget .filter-block.filter-block-price {
        border: none;
        padding: 0;
        background: #fff;
    }

    .archive__left .sidebar .filters-widget .filter-block .filter-block-header .filter-block-title {
        font-size: 16px;
        line-height: 20px;
    }

    .archive__left .sidebar .filters-widget .buttons {
        justify-content: center;
        align-items: center;
    }

    .filters-widget .buttons {
        margin-top: 15px;
        gap: 10px;
    }

    .archive__left .sidebar .filters-widget .buttons .btn {
        width: 100%;
    }

    .archive__left .sidebar .filters-widget .category__block .block__title {
        font-size: 16px;
        line-height: 20px;
    }

    .archive__left .sidebar #open-filter {
        display: block;
        margin-top: 210px;

    }
}

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

@media screen and (max-width: 1279px) {
    .columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .columns-3 {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 639px) {
    .projects-block .block-nav {
        justify-content: center;
    }
}

@media (min-width: 640px) {
    .container.mx-auto.px-4.max-w-\[108rem\] {
        transform: translateX(40px);
    }
}

.swiper.flex\!.size-full {
    min-height: 600px !important;
}

@media (max-width: 640px) {
    .swiper.flex\!.size-full {
        min-height: 300px !important;
        max-height: 300px;
    }
}

.tab-content.grow.grid {
    min-height: 650px;
}

@media (max-width: 639px) {

    /* Первый блок - центрируем всё */
    .flex.flex-col.sm\:items-center.gap-14.max-xl\:gap-8.container.mx-auto.px-4.reveal .flex.flex-col.sm\:items-center.gap-2\.5.reveal-item,
    .flex.flex-col.sm\:items-center.gap-14.max-xl\:gap-8.container.mx-auto.px-4.reveal .flex.flex-col.sm\:items-center.gap-14.max-xl\:gap-8.max-sm\:gap-4 {
        align-items: center !important;
        text-align: center !important;
    }

    /* Второй блок - центрируем */
    .flex.flex-col.sm\:items-center.gap-14.max-xl\:gap-8.max-sm\:gap-7.container.mx-auto.px-4.reveal .flex.flex-col.sm\:items-center.gap-6.max-sm\:gap-2.reveal-item.w-full,
    .flex.flex-col.sm\:items-center.gap-14.max-xl\:gap-8.max-sm\:gap-7.container.mx-auto.px-4.reveal .flex.flex-col.sm\:items-center.gap-14.max-xl\:gap-8.max-sm\:gap-4 {
        align-items: center !important;
        text-align: center !important;
    }

    /* Третий блок - центрируем */
    .flex.flex-col.gap-14.max-sm\:gap-8.reveal .flex.flex-col.gap-7.max-sm\:items-center.max-sm\:text-center.reveal-item,
    .flex.flex-col.gap-14.max-sm\:gap-8.reveal .flex.flex-wrap.max-sm\:flex-col.sm\:items-center.gap-8.max-sm\:gap-6 {
        align-items: center !important;
        text-align: center !important;
    }

    /* Фикс для section__description */
    .section__description.max-sm\:text-start\! {
        text-align: center !important;
    }
}

@media (max-width: 639px) {
    h2.max-sm\:text-\[72px\] {
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }
}

.swiper-slide:not(:has(a.size-14))>div {
    justify-content: flex-start !important;
}

@media (max-width: 639px) {
    .reveal-item h2.max-sm\:text-\[82px\] {
        font-size: 44px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .reveal-item .font-sans.text-\[clamp\(0\.875rem\2c 0\.754rem\+0\.52vw\2c 1\.375rem\)\] {
        text-align: center !important;
        padding: 0 10px;
    }

    /* Убираем лишние br на мобиле */
    .reveal-item .font-sans br+br {
        display: none;
    }
}

.hero-block,
.cta-v1-block,
.videos-block,
.cta-v2-block,
.project-offer-v1-block,
.cta-v3-block,
.projects-block,
.offer-block,
.about-block {
    .btn {
        padding: calc(var(--spacing) * 8) calc(var(--spacing) * 12);
        border-color: var(--color-accent-1);

        &::before,
        &::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #e82d1a 17.31%, #f3b503 100%);
            transition: 0.3s all ease-in-out;
            z-index: -1;
        }

        &:hover::before,
        &:hover::after {
            opacity: 0;
        }
    }
}

.header__btn {
    padding: calc(var(--spacing) * 5) calc(var(--spacing) * 3);
    border-color: var(--color-accent-1);
    color: var(--color-theme-100);

    &::before,
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #e82d1a 17.31%, #f3b503 100%);
        transition: 0.3s all ease-in-out;
        z-index: -1;
    }

    &:hover::before,
    &:hover::after {
        opacity: 0;
    }
}

.sm\:mb-14 {
    @media (width >= 40rem) {
        margin-bottom: calc(var(--spacing) * 4);
    }
}

.img-holder img {
	max-height: 215px;
}

.payment-block img {
	height: 100% !important;
}

.offer-block img {
	height: 100% !important;
}

.project-offer-v1-block img {
	height: 100% !important;
} 
.header__btn:hover
{
	color:black !important
}
.pagination__link span.page-numbers.current {
    color: var(--color-accent-1) !important;
    
}


/* Для мобильных устройств */
@media (max-width: 640px) {
    /* Кнопки одинаковой ширины */
    [data-js-slider-navigation] {
        flex-wrap: wrap;
    }
    
    [data-js-slider-navigation] .btn {
        flex: 1 1 0;
        min-width: 0;
        width: 100%;
    }
    
    /* Если две кнопки рядом, они будут по 50% */
    [data-js-slider-navigation] .btn + .btn {
        flex: 1 1 0;
    }
}

/* Запрет горизонтального скролла для body */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}