body {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 400;
    overflow-y: scroll;
}

.navigation::-webkit-scrollbar {
    height: 14px;
}

::-webkit-scrollbar-thumb {
    background-color: #d0a989;
    border-radius: 14px;
    border: 2px solid #ffffff !important;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    z-index: 2147483000; /* stay above any page elements */
    background-color: #fff;
}

.upper-header {
    height: 36px;
    width: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upper-header>p {
    font-size: 12px;
    text-align: center;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 32px 0 25px;
    height: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-search {
    margin-left: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    height: 40px;
    background: #fff;
    overflow: hidden;
}

.header-search:hover {
    border-color: #ccc;
}

.header-form {
    display: flex;
    flex-direction: row;
    width: 300px;
    align-items: center;
    height: 100%;
    border: none;
    background: transparent;
    box-shadow: none;
}

.header-input-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-input {
    border: none;
    background: transparent;
    padding: 0 12px;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-family: 'Sofia Pro', sans-serif;
    color: #333;
    box-shadow: none;
    outline: none;
}

.header-input:focus {
    outline: none;
    box-shadow: none;
}

.header-input::placeholder {
    color: #999;
    font-size: 14px;
}

.header-button-search {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-right>div>div {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-shopping-bag {
    margin-right: 4px;
}

.header-checkout {
    width: 120px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.header-checkout>a {
    text-align: center;
    padding: 7.5px 16px;
    color: #fff;
    font-size: 15px;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.navigation {
    height: 37px;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* align under logo */
    padding: 0 25px 0 25px;
    align-items: center;
    overflow-x: auto; /* prevent wrap, allow horizontal scroll */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.nav-inner {
    height: 100%;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.nav-inner>ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    height: 100%;
    flex-wrap: nowrap; /* single line */
}

.nav-inner>ul>li {
    cursor: pointer;
    padding-left: 8px;
    padding-right: 8px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    flex: 0 0 auto; /* don't shrink into two lines */
}

.nav-inner>ul>li:last-child>a {
    color: #ff0000;
}

.nav-inner>ul>li>a {
    color: #000;
    display: flex;
    justify-content: center;
}

.inner-link-text {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap; /* keep on one line */
}

.underline.active {
    display: flex;
    position: absolute;
    bottom: 0px;
    height: 2px;
    width: 100%;
    background: rgb(0, 0, 0);
}

.modal {
    visibility: hidden;

}

.modal-container {
    opacity: 0;
    position: fixed;
    z-index: 1050;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    animation-delay: 250ms;
    transition: opacity 0.2s;
}

.modal-inner {
    padding: 0 25px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.modal-catalog {
    position: relative;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: row;
}

.modal-catalog-left {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 16px 16px 0;
    gap: 16px;
    width: 100%;
}

.modal-catalog-column {
    display: flex;
    flex-direction: column;
    padding-right: 16px;
}

.modal-catalog-column-item {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}

.modal-catalog-column-item>ul>li {
    margin-bottom: 8px;
}

.modal-catalog-column-item>ul>li>a:hover {
    text-decoration: underline;
}

.main-word-in-catalog {
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 12px;
}

.main-word-in-catalog-without-margin {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.yellow-word-in-catalog {
    color: rgb(211, 187, 71);
}

.modal-catalog-right {
    padding: 16px;
}

.modal-catalog-right-container {
    width: 198px;
}

.modal-catalog-right-container>a {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.modal-catalog-right-container>a>img {
    margin-bottom: 16px;
}

.modal-catalog-right-container>a>span {
    font-size: 12px;
    font-weight: 400;
    display: flex;
    justify-content: center;

}

main {
    margin-top: 98px;
    background-color: #fff;
}

.category-single {
    position: relative;
}

.category-single>a {
    position: relative;
}

.category-single>a>img {
    width: 100%;
}

.category-title {
    text-decoration: underline;
    font-size: calc(13px + 0.4vw);
    position: absolute;
    left: 2.4vw;
    bottom: 2.2vw;
    color: #fff;
    white-space: nowrap;
}



.category-list-inner {
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 9px;
}

.category-list-item {
    /* min-width: calc(100% / 3); */
    width: calc(100% / 3);
    position: relative;
}

.scroll-items-title {
    padding: 50px 2.4vw 20px 2.4vw;
    font-size: calc(13px + 0.4vw);
    text-align: left;
}

.toggle-items:hover {
    cursor: pointer;
    text-decoration: underline;
}

.scroll-items-list-inner {
    padding: 0 30px 40px 30px;
    margin-bottom: 20px;
}

.scroll-items-list-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.item-link:hover {
    cursor: pointer;
    text-decoration: underline;
}

.item-content>h3 {
    color: #0f0f0f;
    font-weight: 400;
    margin-top: 16px;
    font-size: calc(13px + 0.4vw);
}

.item-content>p {
    color: #0f0f0f;
    font-weight: 400;
    margin-top: 8px;
    font-size: calc(13px + 0.4vw);
}

.category-single-inner {
    padding-bottom: 10px;
}

.title-placement-center {
    left: calc(2.4vw + 33.2vw);
    font-weight: 400;
}

.pin-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.pin {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 283.5'%3E%3Cpath fill='%23EEE3D8' d='M141.7 1.4C64.1 1.4 1.4 64.1 1.4 141.7c0 77.6 62.7 140.3 140.3 140.3 77.6 0 140.3-62.7 140.3-140.3C282 64.1 219.3 1.4 141.7 1.4zM141.7 256.6c-63.3 0-114.9-51.5-114.9-114.9S78.4 26.9 141.7 26.9c63.3 0 114.9 51.5 114.9 114.9S205.1 256.6 141.7 256.6z'/%3E%3Cpath fill='%23EEE3D8' d='M175.9 125.6c-9.9 0-18.6-8.1-18.6-18.6V57.3h-30.4v50.3c0 9.9-8.1 18.6-18.6 18.6H58.5v30.4h49.7c9.9 0 18.6 8.1 18.6 18.6v49.7h30.4v-49.7c0-9.9 8.1-18.6 18.6-18.6h49.7v-31h-49.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-x: center;
    background-position-y: center;
    cursor: pointer;
    width: 34px;
    height: 34px;
    padding: 0;
    position: absolute;
    z-index: 2;
    border: 5px solid rgb(15 15 15 / 0%);
    border-radius: 50%;
    background-color: rgb(15 15 15 / 10%);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
    pointer-events: auto;
}

.pin:nth-child(1) {
    /* background-color: red; */
    left: 13%;
    bottom: 43%;
}

.pin:nth-child(2) {
    /* background-color: blue; */
    left: 49%;
    bottom: 43%;
}

.pin:nth-child(3) {
    /* background-color: green; */
    right: 36%;
    bottom: 36%;
}

.pin:nth-child(4) {
    /* background-color: yellow; */
    right: 28%;
    bottom: 20%;
}

.pin:nth-child(5) {
    /* Desk Lamp */
    left: 55%;
    bottom: 65%;
}

.pin:nth-child(6) {
    /* Table Lamp 2 */
    right: 10%;
    bottom: 50%;
}

.pin:nth-child(7) {
    /* Chair */
    right: 7%;
    bottom: 25%;
}

.pin:hover {
    background-color: rgb(255 255 255 / 30%);
}

.pin.loading {
    opacity: 0.7;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.popup {
    position: absolute;
    background-color: #EEE3D8;
    padding: 15px 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 3;
    font-size: 14px;
    line-height: 1.4;
    min-width: 220px;
    white-space: nowrap;
}

.popup a {
    color: #0F0F0F;
    text-decoration: none;
    letter-spacing: 0.2px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.popup-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.popup-content {
    flex: 1;
}

.popup a>h3 {
    font-size: calc(13px + 0.4vw);
    font-weight: 400;
}

.popup a>span {
    margin-top: 6px;
    font-size: calc(11px + 0.2vw);
    text-decoration: underline;
}

.popup a:hover {
    text-decoration: underline;
}

.popup::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 10px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent #EEE3D8 transparent;
}

.category-double {
    padding-top: 10px;
    overflow: hidden;
}

.category-single-small {
    width: 50%;
    float: left;
    position: relative;
}

.category-single-small>a>img {
    width: 100%;
}

.category-single-desktop {
    position: relative;
}

.category-single-desktop>a>img {
    width: 100%;
}

.item-slider {
    width: 50%;
    float: left;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide>a {
    position: relative;
    display: block;
}

.swiper-slide>a>img {
    width: 100%;
}

.swiper-slide>a>p {
    font-size: calc(13px + 0.4vw);
    font-weight: 400;
    position: absolute;
    bottom: 4.8vw;
    text-align: center;
    color: #0f0f0f;
    left: 0px;
    right: 0px;
}

:root {
    --swiper-navigation-size: 60px;
    --swiper-navigation-top-offset: 50%;
    --swiper-navigation-sides-offset: 10px;
    --swiper-navigation-color: #0f0f0f;
    --swiper-pagination-color: #0f0f0f;
    --swiper-pagination-bullet-horizontal-gap: 8px;
    --swiper-scrollbar-size: 10px;
    --swiper-scrollbar-drag-bg-color: #d0a989;
}

.swiper-button-next::after {
    font-size: 30px;
}

.swiper-button-prev::after {
    font-size: 30px;
}

.swiper-pagination {
    bottom: 2.4vw !important;
    left: 0% !important;
    right: 0% !important;
    margin: auto !important;
    z-index: 0 !important; /* keep behind fixed header */
}

.category-list-slider-title {
    display: flex;
    flex-direction: space-between;
    align-items: center;
    padding: 30px 2.4vw 10px 2.4vw;
}

.category-list-slider-title>span:nth-child(1) {
    font-size: 3.2vw;
    font-weight: 400;
    width: 100%;
}

.category-list-slider-title>span:nth-child(2) {
    font-size: calc(9px + 0.3vw);
    font-weight: 400;
    text-align: right;
    width: 100%;
    color: #212121;
}

.category-list-slider-inner {
    padding-bottom: 25px;
    position: relative;
}

.swiper2 {
    overflow: hidden;
}

.swiper-slide-link>img {
    object-fit: contain;
    aspect-ratio: auto;
    height: 30vw;
}

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

.swiper-slide:nth-child(even) .category-title {
    color: #0f0f0f;
}

.swiper-category-title {
    left: 2.2vw;
    bottom: 2vw;
}

footer {
    margin-top: 30px;
    background-color: #000;
    background-color: rgba(247, 247, 247, 1);
    border-top: 0.0625rem solid rgba(238, 238, 238, 1);
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-column {
    padding-top: 16px;
}

.footer-title {
    font-size: 14px;
    font-weight: 500;
}

.footer-list {
    padding-top: 16px;
}

.footer-list>ul {
    list-style: none;
    padding-inline-start: 0px;
}

.footer-list>ul>li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 12px;
}

.footer-list>ul>li:hover {
    cursor: pointer;
    text-decoration: underline;
}

.lower-footer {
    border-top: 0.0625rem solid rgba(238, 238, 238, 1);
    padding: 12px 0;
    align-items: center;
    text-align: center;
    font-size: calc(13px + 0.4vw);
}

.hide {
    display: none;
}

.unhide {
    display: block !important;
}

.show {
    text-decoration: underline;
}

.visible {
    visibility: visible;
}

.display-inherit {
    display: inherit !important;
}

.main-word-in-catalog-arrow {
    display: none;
}

.main-word-in-catalog-arrow img {
    transition: transform 0.3s ease;
}

.rotate-arrow img {
    transform: rotate(180deg);
}

.mobile-slider {
    display: none;
}

.modal-catalog-line {
    display: none;
}

/* CATEGORY PAGE */

.category-page {
    position: relative;
    padding: 12px 16px 0px;
}

.breadcrumbs {
    width: 100%;
    position: fixed;
    z-index: 2147483570; /* above pagination dots */
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    border-top: 1px solid rgba(238, 238, 238, 1);
    top: 133px;
    background-color: #fff;
}

.breadcrumbs-container {
    display: flex;
    align-items: center;
    height: 36px;
    width: 100%;
    color: rgba(0, 0, 0, 0.6);
}

.breadcrumbs-ol {
    display: flex;
    list-style: none;
    align-items: center;
    padding-left: 30px;
}

.breadcrumbs-home-link {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.breadcrumbs-home-icon {
    margin-right: 6px;
}

.breadcrumbs-name {
    font-size: 12px;
    color: rgba(0, 0, 0, 1);
}

.category-page {
    padding-top: 48px;
}

.category-page-container {
    /* padding: 0 16px; */
    display: flex;
    flex-direction: column;
}

.category-page-top {
    position: fixed;
    z-index: 2;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
    transform: translateY(-10px);
    align-items: center;
    padding: 0 16px;
}

.category-page-title {
    display: flex;
    flex-direction: row;
}

.category-page-title>h1 {
    font-size: 18px;
    font-weight: 500;
}

.category-page-title-number {
    color: #616161;
    font-size: 18px;
    font-weight: 500;
}

/* SORT BUTTON */

.category-page-sort {
    padding-right: 32px;
    margin-top: 5px;
}

.category-page-sort-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
}

.category-page-sort-label {
    color: rgb(97, 97, 97);
    white-space: nowrap;
}

.category-page-sort-dropdown-container {
    position: relative;
}

.category-page-sort-dropdown-btn {
    width: 216px;
    padding: 5px 12px 5px 16px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    text-align: left;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.category-page-sort-dropdown-btn:hover,
.category-page-sort-dropdown-btn.open {
    border-color: black;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.arrow.rotate {
    transform: rotate(180deg);
}

.category-page-sort-dropdown-list {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px,
        rgba(0, 0, 0, 0.14) 0px 1px 1px 0px,
        rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
}

.category-page-sort-dropdown-list.show {
    max-height: 500px;
    opacity: 1;
    text-decoration: none;
}

.category-page-sort-dropdown-item {
    padding: 8px 16px;
    cursor: pointer;

}

.category-page-sort-dropdown-item:hover {
    background-color: black;
    color: white;
}

.category-page-sort-dropdown-item.active {
    background-color: #e0e0e0;
}

.category-page-sort-dropdown-item.active:hover {
    background-color: black;
    color: white;
}

.category-page-banner {
    display: flex;
    flex-direction: row;
    margin: 60px 16px 0;
    /* padding: 16px 0; */
    white-space: nowrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    
}


.category-page-banner-item {
    max-width: 157px;
    flex: 0 0 auto;
}

.category-page-banner-item-link {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.category-page-banner-item-link>img {
    background-color: rgba(247, 247, 247, 1);
    border: 1px solid #9e9e9e;
    border-color: transparent;
    border-radius: 0;
    margin-bottom: 4px;
    height: 105px;
    width: 157px;
}

.category-page-banner-item-link>p {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.15px;
    text-wrap: auto;
}

/* FILTER */

.category-page-filter {
    display: flex;
    flex: 1 0 80%;
    position: sticky;
    flex-direction: column;
    top: 222px;
    /* padding-top: 20px; */
    background-color: #fff;
    z-index: 1;
    padding: 20px 16px 0;
}

.category-page-filter-list-upper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(16.6666% - 1px), 1fr));
    grid-gap: 1px;
    outline: 1px solid #EEEEEE;
    width: 100%;
}

.category-page-filter-list-lower {
    grid-template-columns: repeat(auto-fill, minmax(calc(16.6666% - 1px), 1fr));
    grid-gap: 1px;
    outline: 1px solid #EEEEEE;
    width: 100%;
    display: none;
}

.category-page-filter-item {
    outline: 1px solid #EEEEEE;
}

.category-page-filter-item-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 44px;
    align-items: center;
    font-size: 14px;
}


/* CHECKBOX */

/* From Uiverse.io by 00Kubi */
.cyber-checkbox {
    --checkbox-size: 20px;
    --checkbox-color: #9e9e9e;
    --checkbox-check-color: #ffffff;
    --checkbox-hover-color: #000;
    --checkbox-spark-offset: -20px;

    position: relative;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding-left: 12px;
}


.cyber-checkbox input {
    display: none;
}

.cyber-checkbox-text-wrap {
    display: flex;
    align-items: center;
}

.cyber-checkbox-text-item {
    white-space: nowrap;
    max-width: 140px;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.cyber-checkbox__mark {
    position: relative;
    display: inline-block;
    width: var(--checkbox-size);
    height: var(--checkbox-size);
}

.cyber-checkbox__box {
    position: absolute;
    inset: 0;
    border: 2px solid var(--checkbox-color);
    border-radius: 4px;
    background: transparent;
    transition: all 0.2s ease;
}

.cyber-checkbox__check {
    position: absolute;
    inset: 0;
    padding: 2px;
    stroke: var(--checkbox-check-color);
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.cyber-checkbox__effects {
    position: absolute;
    inset: var(--checkbox-spark-offset);
    pointer-events: none;
}

.cyber-checkbox__spark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 2px;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    transform-origin: center center;
    animation: none !important;
}

/* Hover */
.cyber-checkbox:hover .cyber-checkbox__box {
    border-color: var(--checkbox-hover-color);
    box-shadow: 0 0 0 2px rgba(92, 103, 255, 0.1);
}

/* Checked */
.cyber-checkbox input:checked+.cyber-checkbox__mark .cyber-checkbox__box {
    background: #000;
    border-color: #000;
}

.cyber-checkbox input:checked+.cyber-checkbox__mark .cyber-checkbox__check {
    transform: scale(1);
}

/* Spark Animation */
.cyber-checkbox input:checked+.cyber-checkbox__mark .cyber-checkbox__spark {
    animation: spark 0.4s ease-out;
}

.cyber-checkbox__spark:nth-child(1) {
    transform: rotate(0deg) translateX(var(--checkbox-spark-offset));
}

.cyber-checkbox__spark:nth-child(2) {
    transform: rotate(90deg) translateX(var(--checkbox-spark-offset));
}

.cyber-checkbox__spark:nth-child(3) {
    transform: rotate(180deg) translateX(var(--checkbox-spark-offset));
}

.cyber-checkbox__spark:nth-child(4) {
    transform: rotate(270deg) translateX(var(--checkbox-spark-offset));
}

@keyframes spark {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg) translateX(var(--checkbox-spark-offset));
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1) rotate(0deg) translateX(calc(var(--checkbox-spark-offset) * 1.5));
    }
}

/* Active */
.cyber-checkbox:active .cyber-checkbox__box {
    transform: scale(0.9);
}

/* Focus */
.cyber-checkbox input:focus+.cyber-checkbox__mark .cyber-checkbox__box {
    box-shadow: 0 0 0 4px rgba(92, 103, 255, 0.2);
}

.cyber-checkbox__particles {
    position: absolute;
    inset: -50%;
    pointer-events: none;
}

.cyber-checkbox__particles div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--checkbox-color);
    opacity: 0;
}

/* Particle animations for check */
.cyber-checkbox input:checked+.cyber-checkbox__mark .particle-1 {
    animation: particle-1 0.4s ease-out forwards;
}

.cyber-checkbox input:checked+.cyber-checkbox__mark .particle-2 {
    animation: particle-2 0.4s ease-out forwards 0.1s;
}

.cyber-checkbox input:checked+.cyber-checkbox__mark .particle-3 {
    animation: particle-3 0.4s ease-out forwards 0.15s;
}

.cyber-checkbox input:checked+.cyber-checkbox__mark .particle-4 {
    animation: particle-4 0.4s ease-out forwards 0.05s;
}

.cyber-checkbox input:checked+.cyber-checkbox__mark .particle-5 {
    animation: particle-5 0.4s ease-out forwards 0.12s;
}

.cyber-checkbox input:checked+.cyber-checkbox__mark .particle-6 {
    animation: particle-6 0.4s ease-out forwards 0.08s;
}

.cyber-checkbox input:checked+.cyber-checkbox__mark .particle-7 {
    animation: particle-7 0.4s ease-out forwards 0.18s;
}

.cyber-checkbox input:checked+.cyber-checkbox__mark .particle-8 {
    animation: particle-8 0.4s ease-out forwards 0.15s;
}

/* Particle animations for uncheck */
.cyber-checkbox input:not(:checked)+.cyber-checkbox__mark .particle-1 {
    animation: particle-out-1 0.4s ease-out forwards;
}

.cyber-checkbox input:not(:checked)+.cyber-checkbox__mark .particle-2 {
    animation: particle-out-2 0.4s ease-out forwards 0.1s;
}

.cyber-checkbox input:not(:checked)+.cyber-checkbox__mark .particle-3 {
    animation: particle-out-3 0.4s ease-out forwards 0.15s;
}

.cyber-checkbox input:not(:checked)+.cyber-checkbox__mark .particle-4 {
    animation: particle-out-4 0.4s ease-out forwards 0.05s;
}

.cyber-checkbox input:not(:checked)+.cyber-checkbox__mark .particle-5 {
    animation: particle-out-5 0.4s ease-out forwards 0.12s;
}

.cyber-checkbox input:not(:checked)+.cyber-checkbox__mark .particle-6 {
    animation: particle-out-6 0.4s ease-out forwards 0.08s;
}

.cyber-checkbox input:not(:checked)+.cyber-checkbox__mark .particle-7 {
    animation: particle-out-7 0.4s ease-out forwards 0.18s;
}

.cyber-checkbox input:not(:checked)+.cyber-checkbox__mark .particle-8 {
    animation: particle-out-8 0.4s ease-out forwards 0.15s;
}

/* Particle keyframes for check */
@keyframes particle-1 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-20px, -20px) scale(1);
        opacity: 0;
    }
}

@keyframes particle-2 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(20px, -20px) scale(1);
        opacity: 0;
    }
}

@keyframes particle-3 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(20px, 20px) scale(1);
        opacity: 0;
    }
}

@keyframes particle-4 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-20px, 20px) scale(1);
        opacity: 0;
    }
}

@keyframes particle-5 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-30px, 0px) scale(1);
        opacity: 0;
    }
}

@keyframes particle-6 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(30px, 0px) scale(1);
        opacity: 0;
    }
}

@keyframes particle-7 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0px, -30px) scale(1);
        opacity: 0;
    }
}

@keyframes particle-8 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0px, 30px) scale(1);
        opacity: 0;
    }
}

/* Particle keyframes for uncheck */
@keyframes particle-out-1 {
    0% {
        transform: translate(-20px, -20px) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
}

@keyframes particle-out-2 {
    0% {
        transform: translate(20px, -20px) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
}

@keyframes particle-out-3 {
    0% {
        transform: translate(20px, 20px) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
}

@keyframes particle-out-4 {
    0% {
        transform: translate(-20px, 20px) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
}

@keyframes particle-out-5 {
    0% {
        transform: translate(-30px, 0px) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
}

@keyframes particle-out-6 {
    0% {
        transform: translate(30px, 0px) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
}

@keyframes particle-out-7 {
    0% {
        transform: translate(0px, -30px) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
}

@keyframes particle-out-8 {
    0% {
        transform: translate(0px, 30px) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
}

/* FILTER DROPDOWN */

.category-page-filter-dropdown {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 100%;
}

.category-page-filter-dropdown-button {
    width: 100%;
    padding: 0 16px 3px;
    background-color: #ffffff;
    border-top: 3px solid transparent;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s;
    height: 100%;
    outline: 1px solid #EEEEEE;
}

.category-page-filter-dropdown-button:hover {
    border-top-color: #000000;
}

.category-page-filter-dropdown-button.active {
    background-color: rgb(247, 247, 247);
    border-top-color: #000000;
}

.category-page-filter-chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.category-page-filter-chevron.open {
    transform: rotate(180deg);
}

.category-page-filter-dropdown-panel {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: white;
    box-shadow: 0rem 0.0625rem 0.1875rem 0rem rgb(0 0 0 / 12%), 0rem 0.0625rem 0.0625rem 0rem rgb(0 0 0 / 14%), 0rem 0.125rem 0.0625rem -0.0625rem rgb(0 0 0 / 20%);
    min-width: 240px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.category-page-filter-dropdown-header {
    background-color: rgb(247, 247, 247);
    padding: 0 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;

}

.category-page-filter-clear-button {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    visibility: hidden;
}

.category-page-filter-clear-button img {
    width: 12px;
    height: 12px;
}

.category-page-filter-dropdown-content {
    max-height: 20vh;
    overflow-y: auto;
    font-weight: 300;
}

.category-page-filter-dropdown-content label {
    display: flex;
    align-items: center;
    height: 32px;
    cursor: pointer;
    margin-left: 8px;
}

.category-page-filter-dropdown-content label:hover {
    background-color: #f2f2f2;
}

.category-page-filter-checkbox {
    margin-right: 8px;
}

.r0 {
    left: auto;
    right: 0;
}

/* FILTER MORE BUTTON */
.category-page-filter-more-button {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border: 0;
    background-color: #ffffff;
    cursor: pointer;
}

/* FILTER PRICE RANGE */

.price-range-container {
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-range-container>span {
    text-align: center;
}

.d-col {
    flex-direction: column;
}

.category-page-filter-price-range-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
    margin-top: 10px;
}

.o-hidden {
    overflow: hidden;
}

.price-input {
    width: 100%;
    display: flex;
}

.price-input .field {
    display: flex;
    width: 100%;
    align-items: center;
}

.field input {
    width: 100%;
    height: 100%;
    outline: none;
    /* margin-left: 12px; */
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.slider .progress {
    height: 100%;
    left: 0%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    background: #000000;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 0;
    top: -18px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: white;
    border: 1px solid black;
    pointer-events: auto;
    cursor: pointer;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #17a2b8;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* CATEGORY PAGE CARDS */

.category-page-cards {
    margin-top: 24px;
    padding: 0 16px;
}

.category-page-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.category-page-cards-item-wrapper {
    flex: 1 1 25%;
    max-width: calc(25% - 12px);
    min-width: 200px;
    /* max-height: 450px; */
    margin-bottom: 24px;
}

.category-page-cards-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.category-page-cards-item>a {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.category-page-cards-item>a>img {
    margin-bottom: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.category-page-cards-item-container {
    overflow: hidden;
}

.category-page-cards-item-price {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.category-page-cards-item-price>span {
    font-size: 14px;
}

.category-page-cards-item-price>img {
    width: 22px;
    height: 22px;
}

.category-page-cards-item-title {
    width: 100%;
    overflow: hidden;
    margin-top: 8px;
}

.category-page-cards-item-title>span {
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: capitalize;
}

.category-page-cards-item-pagination {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 8px;
    overflow: visible;
    position: relative !important;
    z-index: 0 !important; /* force below header */
}

.category-page-cards-item-pagination>ul {
    display: flex;
    list-style: none;
    flex-direction: row;
    gap: 8px;
    position: relative !important;
    z-index: 0 !important;
}

.category-page-cards-item-pagination>ul>li>img {
    border-radius: 50%;
    height: 24px;
    width: 24px;
    transition: all 0.3s ease;
    position: relative !important;
    z-index: 0 !important;
}

.category-page-cards-item-pagination>ul>li>img:hover {
    transform: scale(1.1);
    /* прибл. +2px при размере 24px */
    box-shadow:
        0 0 0 2px white,
        /* внутренняя белая обводка */
        0 0 0 4px black;
    /* внешняя черная обводка */
    z-index: 0 !important; /* keep under header even on hover */
}

/* Absolutely ensure all pagination UI stays below header */
.swiper-pagination,
.swiper-pagination-bullets,
.swiper-pagination-horizontal,
.et-pb-controllers {
    position: static !important;
    z-index: 0 !important;
}

/* Create a higher stacking context for the header only */
section.header { isolation: isolate; }

.header-logo>a>img {
    height: 39px;
}

.category-page-cards-item-stars {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    margin-top: 8px;
}

.category-page-cards-item-stars>img {
    width: 12px;
    height: 12px;
}

.active-thumb {
    transform: scale(1.05);
    box-shadow:
        0 0 0 2px white,
        0 0 0 4px black;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#icon {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Анимация увеличения иконки при клике */
.icon-clicked {
    transform: scale(1.2);
    /* Увеличиваем иконку */
}

.swiper-pagination-bullet {
    border-radius: 50%;
    cursor: pointer;
}

.cky-box-bottom-left {
                bottom: 40px;
                left: 40px;
            }

            .cky-consent-container {
                position: fixed;
                width: 440px;
                box-sizing: border-box;
                z-index: 9999999;
                border-radius: 6px;
            }

            .cky-consent-container .cky-consent-bar {
    background: #ffffff;
    border: 1px solid;
    padding: 20px 26px;
    box-shadow: 0 -1px 10px 0 #acabab4d;
    border-radius: 6px;
}

p:not(.has-background):last-of-type {
    padding-bottom: 0;
}

.cky-notice .cky-title {
    color: #212121;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 12px 0;
}

.cky-notice-des *, .cky-preference-content-wrapper *, .cky-accordion-header-des *, .cky-gpc-wrapper .cky-gpc-desc * {
    font-size: 14px;
}

.cky-notice-group {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #212121;
}

.cky-notice-btn-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.cky-notice-btn-wrapper .cky-btn {
    text-shadow: none;
    box-shadow: none;
}

.cky-btn-customize {
    color: #1863dc;
    background: transparent;
    border: 2px solid #1863dc;
}
.cky-btn {
    flex: auto;
    max-width: 100%;
    font-size: 14px;
    font-family: inherit;
    line-height: 24px;
    padding: 8px;
    font-weight: 500;
    margin: 0 8px 0 0;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    text-transform: none;
    min-height: 0;
}

.cky-btn-reject {
    color: #1863dc;
    background: transparent;
    border: 2px solid #1863dc;
}

.cky-btn-accept {
    background: #1863dc;
    color: #ffffff;
    border: 2px solid #1863dc;
}

.cky-btn:last-child {
    margin-right: 0;
}

            
@media (max-width: 352px) {
    .cky-notice-des, .cky-btn {
        font-size: 12px;
    }
}
            
@media (max-width: 440px) {
                .cky-consent-container {
                    width: 100%;
                }
            

            

                .cky-box-bottom-left,
                .cky-box-bottom-right,
                .cky-box-top-left,
                .cky-box-top-right {
                    width: 100%;
                    max-width: 100%;
                }
            

           
                .cky-box-bottom-left {
                    bottom: 0;
                    left: 0;
                }

                .cky-notice-btn-wrapper .cky-btn-customize {
        order: 2;
    }

    .cky-btn {
        width: 100%;
        margin: 10px 0 0 0;
    }

        .cky-notice-btn-wrapper {
        flex-direction: column;
        margin-top: 0;
    }

    .cky-notice-btn-wrapper .cky-btn-reject {
        order: 3;
    }

        .cky-notice-btn-wrapper .cky-btn-accept {
        order: 1;
        margin-top: 16px;
    }
            
}
            
@media (max-width: 576px) {
    .cky-box-bottom-left {
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 768px) {

    .upper-header {
        height: 36px;
    }

    header {
        padding: 0 0 0 16px;
        height: 44px;
    }

    .header-logo>a>img {
        height: 30px;
    }

    .category-single-desktop {
        display: none;

    }

    .header-search {
        display: none;
    }

    .header-checkout {
        display: none;
    }

    .navigation {
        height: 44px;
        justify-content: start;
        overflow: scroll hidden;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding: 0;
    }

    .nav-inner>ul>li {
        flex-shrink: 0;
    }

    .inner-link-text {
        font-size: 14px;
    }

    main {
        margin-top: 80px; /* keep 50-100px gap under header on mobile */
    }

    .category-list {
        padding-bottom: 10px;
    }

    .category-title {
        left: calc(2.4vw * 2.8);
        bottom: calc(2.2vw * 2.8);
        font-size: calc(13px + 0.4vw);
    }

    .category-list-inner {
        flex-direction: column;
    }

    .category-list-item {
        width: 100%;
    }

    .scroll-items-title {
        padding: 20px calc(2.4vw * 2.8) 0 calc(2.4vw * 2.8);
    }

    .scroll-items-list-inner {
        padding: 20px 20px 10px 20px;
    }

    .scroll-items-list-content {
        overflow: scroll hidden;
        scroll-behavior: smooth;
        scrollbar-width: none;
        flex-wrap: nowrap; /* Ensure items stay in a row for horizontal scrolling */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .scroll-items-list-content::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }

    .item-link {
        min-width: calc(100% / 2.25);
        width: calc(100% / 2.25);
    }


    .category-single-mobile {
        position: relative;
    }

    .category-double {
        padding-top: 0px;
    }

    .category-single-small {
        width: 100%;
    }

    .item-slider {
        width: 100%;
    }

    .swiper-slide>a>p {
        bottom: 6vw;
    }

    .swiper-pagination {
        bottom: 1vw !important;
    }

    .mobile-slide>img {
        height: calc(30vw * 3);
    }

    footer {
        margin-top: 0;
    }

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

    .footer-column {
        cursor: pointer;
        text-align: left;
        padding: 12px 16px;
        border-bottom: 1px solid rgba(238, 238, 238, 1);
        transition: 0.4s;
    }

    .footer-list {
        display: none;
        transition: max-height 0.2s ease-out;
        overflow: hidden;
    }

    .swiper-slide>a>img {
        width: 100%;
        min-width: 100%;
    }

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

    .swiper2 {
        display: none;
    }

    .mobile-slider {
        display: flex;
        flex-direction: row;
        /* overflow-x: auto; */
        /* scroll-snap-type: x mandatory; */
        -webkit-overflow-scrolling: touch;
        overflow: scroll hidden;
        scroll-behavior: smooth;
    }

    .mobile-slide {
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .mobile-slide>a>img {
        object-fit: contain;
        aspect-ratio: auto;
        height: calc(30vw * 3);
    }

    .mobile-slide>a {
        position: relative;
        display: block;
    }

    .mobile-slide:nth-child(even) .category-title {
        color: #0f0f0f;
    }

    .nav-inner {
        padding: 0 8px 0 8px;
    }

    .modal-container {
        margin-top: 6px;
    }

    .modal-inner {
        padding: 0;
        width: calc(100% - 48px);
        margin: 0;
    }

    .modal-catalog {
        flex-direction: column;
    }

    .modal-catalog {
        max-height: 100%;
        /* или сколько нужно */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        /* плавный скролл на iOS */
    }

    .modal-catalog-left {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .modal-catalog-column {
        padding: 0;
    }

    .modal-catalog-column-item {
        padding-left: 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .modal-catalog-column-item>ul {
        width: 100%;
    }

    .modal-catalog-column-item>ul>li:first-child {
        font-weight: 500;
        margin: 0;
        justify-content: space-between;
    }

    .modal-catalog-column-item>ul>li:not(:first-child) {
        display: none;
    }

    .main-word-in-catalog-arrow {
        width: 44px;
        display: flex;
        justify-content: center;
        cursor: pointer;
    }

    .main-word-in-catalog-arrow-link {
        transform: rotateZ(-90deg);
    }

    .main-word-in-catalog-link {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }

    .main-word-in-catalog-link>span {
        font-weight: 500;
        font-size: 14px;
    }

    .main-word-in-catalog-without-margin {
        display: flex;
        cursor: pointer;
    }

    .modal-catalog-line {
        background: rgb(234, 234, 234);
        height: 1px;
        border: none;
        width: 100%;
        display: block;
    }

    .main-word-in-catalog {
        display: flex;
        flex-direction: row;
        align-items: center;
        cursor: pointer;
    }

    .main-word-in-catalog>span {
        padding: 10px 0;
    }

    .main-word-in-catalog-without-margin {
        padding: 10px 0;
    }


    .modal-catalog-right {
        margin-bottom: 150px;
    }

    .modal-catalog-right-container {
        width: 100%;
    }

    .mobile-hidden {
        display: none;
    }

    .mobile-filters {
        min-height: 44px;
        width: 100%;

        z-index: 4;
        height: 56px;
        background: #ffffff;
    border-bottom: 1px solid #9e9e9e;
    border-top: 1px solid #9e9e9e;
    border-bottom-color: #EEEEEE;
    border-top-color: #EEEEEE;
    border-radius: 0;
    display: flex;
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 162px;
    }

    .mobile-filters-inner {
        display: flex;
        width: 100%;
    }

    .mobile-filters-left {
        border-left: none;
        border-color: #EEEEEE;
        flex: 1;
    }

    .mobile-filters-right {
        border-left: 1px solid #9e9e9e;
        border-color: #EEEEEE;
        flex: 1;
    }


    .category-page-sort-dropdown-container {
        height: 100%;
    }

    .category-page-sort-dropdown-btn {
        height: 100%;
        width: 100%;
        justify-content: center;
        gap: 5px;
        border: none;
    }

    .mobile-filters-right-button {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100%;
        align-items: center;
        gap: 8px;
        background-color: #ffffff;
        border: none;
    }

    .mobile-filters-right-button > img {
        height: 16px;
    }

    .mobile-filters-right-button > span {
        color: #000000;
    }

    .breadcrumbs {
        top: 124px;
    }

    .breadcrumbs-ol {
        padding-left: 16px;
    }

    .category-page-top {
        position: relative;
        transform: none;
        margin-top: 8px;
        z-index: 0;
    }

    .category-page {
        padding: 12px 0 0 0;
    }

    .mobile-filters-modal {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100%;
        background-color: white;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 9999;
      }
      
      .mobile-filters-modal.active {
        transform: translateX(0);
      }
      
      .mobile-modal-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
      }

    .mobile-filters-modal-content {
        height: 100%;
    }

    .mobile-filters-modal-content-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgb(158, 158, 158);
        height: 44px;
        background-color: rgb(247, 247, 247);
        padding-right: 16px;
    }

    .mobile-filters-modal-content-header-left {
        display: flex;
        align-items: center;
    }

    .mobile-modal-close-btn-left {
        border: none;
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        cursor: pointer;
    }

    .mobile-modal-close-btn-left > img {
        width: 12px;
        height: 12px;
    }

    .mobile-filters-modal-content-header-title {
        font-size: 14px;
        color: #000000;
        font-weight: 500;
    }

    .mobile-modal-close-btn-right {
        border: none;
        background-color: transparent;
        cursor: pointer;
        color: #000000;
        font-size: 14px;
    }

    .mobile-filters-modal-content-main-inner {
        display: flex;
        flex-direction: column;
        /* width: 35%; */
        width: 100%;
    }

    .mobile-filters-modal-content-main-inner-header {
        display: flex;
        border-right: none;
        border-bottom: 1px solid rgb(158, 158, 158);
        background: rgb(255, 255, 255);
        flex-direction: column;
    }

    .mobile-filters-modal-content-main-inner-header-item {
        cursor: pointer;
        border: none;
        background: transparent;
        -webkit-tap-highlight-color: transparent;
        width: 100%;
        min-height: 44px;
        padding: 10px 16px;
        position: relative;
        text-align: left;
        display: flex;
        flex-direction: column;
        font-size: 14px;
        color: #000000;
    }

    .mobile-filters-modal-content-main-inner-header-item-num {
        font-size: 12px;
    }

    body.modal-open {
        overflow: hidden;
      }
    
    .mobile-filters-modal-content-main-inner-btn {
        width: 100%;
        border: none;
        background: transparent;
        width: 100%;
        min-height: 44px;
        padding: 0 16px;
        position: relative;
    }

    .mobile-filters-modal-content-main-inner-btn-text {
        border-bottom: 1px solid rgb(238, 238, 238);
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-filters-modal-content-main-inner-btn-text > h2 {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 14px;
        color: #000000;
        align-items: center;
        font-weight: 400;
    }

    .mobile-filters-modal-content-main {
        height: calc(100% - 120px);
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .mobile-filters-modal-content-main-right-panel {
        display: none;
        overflow-y: auto;
        display: flex;
        scrollbar-width: none;
        flex-direction: column;
        flex: 1 1 0%;
        height: 100%;
    }

    .mobile-filters-modal-content-main-right-panel-inner-item {
        border: none;
        cursor: pointer;
        background: transparent;
        width: 100%;
        min-height: 44px;
        padding: 10px 16px;
        position: relative;
        align-items: flex-start;
        text-align: left;
        color: #000000;
        font-weight: 400;
        font-size: 14px;
    }

    .mobile-filters-modal-content-main-right-panel-inner-item > span {
        text-align: left;
    }

    .mobile-filters-modal-content-main-inner-btn.active-item {
        border-right: none;
        border-top: 1px solid rgb(158, 158, 158);
        border-bottom:1px solid rgb(158, 158, 158);
        border-left: none;
        background: rgb(255, 255, 255);
    }

    .mobile-filters-modal-content-main-inner-btn.active-panel {
        border-right: 1px solid rgb(158, 158, 158);
        background: rgb(247, 247, 247);
    }

    .mobile-filters-modal-content-main-inner-header.active-panel {
        border-right: 1px solid rgb(158, 158, 158);
        border-bottom: 1px solid rgb(158, 158, 158);
        background: rgb(255, 255, 255);
    }

    .full-height-item {
        flex-grow: 1;
        border-right: 1px solid rgb(158, 158, 158);
        background: rgb(247, 247, 247);
        display: none;
    }

    .mobile-filters-modal-content-footer {
    align-items: center;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    background: rgb(247, 247, 247);
    border-top: 1px solid rgb(238, 238, 238);
    padding: 0px 16px;
    height: 76px;
    }

    .mobile-filters-modal-content-footer-inner {
        height: 44px;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .mobile-filters-modal-content-footer-inner-btn {
        width: 100%;
        height: 100%;
        border: 0px;
        color: rgb(255, 255, 255);
        opacity: 1;
        border-radius: 0px;
        background-color: rgb(0, 0, 0);
        padding: 7.5px 16px;
        text-align: center;
        font-weight: 400;
    }
    
    .category-page-cards-container {
        gap: 8px;
        justify-content: space-between;
    }

    .category-page-cards-item-wrapper {
        flex: 0 0 calc(50% - 4px); /* 50% ширины минус половина gap (8px / 2 = 4px) */
        max-width: calc(50% - 4px); /* Устанавливаем точную ширину */
        min-width: 0; /* Убираем min-width: 200px, чтобы карточки адаптировались */
        max-height: 100%;
    }

    .category-page-cards-item-pagination>ul>li>img:hover {
        transform: none;
        box-shadow: none;
    }

    

    /* main {
        margin-top: 0;
    } */
}

@media (min-width: 375px) {}

@media (min-width: 425px) {}

@media (min-width: 768px) {
    .navigation {
        padding-left: 30px !important; /* shift menu ~5px right on desktop */
    }
    .category-single-mobile {
        display: none;
    }

    .header-search-icon {
        display: none;
    }

    .desktop-hidden {
        display: none;
    }

    .category-page-banner-item:first-of-type {
        margin-inline-start: auto;
    }

    .category-page-banner-item:last-of-type {
        margin-inline-end: auto;
    }

    .category-page {
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
    }

    .breadcrumbs-container {
        max-width: 1280px;
        margin: 0 auto;
    }

    .category-page-top {
        max-width: 1280px;
    }

    .category-page-cards-item-wrapper {
        max-width: 33%;
    }
}

@media (min-width: 1024px) {
    .category-page-cards-item-wrapper {
        max-width: calc(25% - 12px);
    }
}

@media (min-width: 1280px) {
    
}

@media (min-width: 1440px) {}

@media (min-width: 2560px) {}

@media (min-width: 1280px) {
    header {
        padding: 0 12px 0 42px;
    }
}