/* wishlist styling */

.results .search-card-wishlist.wishlist {
    margin: 0;
}

.results .search-card-wishlist.wishlist .yith-wcwl-add-to-wishlist {
    margin: 0;
}

.results .search-card-wishlist.wishlist a,
.results .search-card-wishlist.wishlist button {
    width: 100%;
    height: 100%;
    min-height: unset;
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results .search-card-wishlist.wishlist .yith-wcwl-add-to-wishlist-button__label,
.results .search-card-wishlist.wishlist .yith-wcwl-add-button span:not(.feedback),
.results .search-card-wishlist.wishlist .feedback {
    display: none !important;
}

/* end of wishlist styling */


/* loader */

.bsp-global-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.bsp-global-loader-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.bsp-global-loader-overlay .loader-bsp {
    width: 48px;
    height: 48px;
    border: 5px solid;
    border-color: var(--blue-primary) transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: bspShopLoaderRotation 1s linear infinite;
}

@keyframes bspShopLoaderRotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* end of loader */


/* breadcrumbs */

.breadcrumbs {
    width: 100%;
    border-top: 1px solid var(--blue-light);
    border-bottom: 1px solid var(--blue-light);
    padding: 12px 16px;
    display: flex;
    justify-content: center;
}

.breadcrumbs .wrapper {
    width: 100%;
    max-width: 1200px;
}

.breadcrumbs .wrapper .path {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
    align-items: center;
    list-style-type: none;
}

.breadcrumbs .wrapper .path li {
    display: flex;
    align-items: center;
}

.breadcrumbs .wrapper .path li a {
    color: var(--black);
}

.breadcrumbs .wrapper .path li a:hover {
    text-decoration: none;
}

.breadcrumbs .wrapper .path li.chevron svg {
    width: 16px;
    height: auto;
    max-width: 100%;
    color: var(--black);
    transform: rotate(270deg);
}

.breadcrumbs .wrapper .path li.chevron svg * {
    stroke: var(--black);
}

/* end of breadcrumbs */


/* intro */

.shop-results-intro {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px 16px 28px;
}

.shop-results-intro .wrapper {
    max-width: 1200px;
    text-align: center;
    width: 100%;
}

.shop-results-intro .wrapper h1 {
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    text-transform: none;
}

.shop-results-intro .shop-description {
    width: 100%;
    max-width: 840px;
    margin: 16px auto 0;
    color: var(--black);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
}

.shop-results-intro .shop-description p {
    margin-top: 0;
    margin-bottom: 12px;
}

.shop-results-intro .shop-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .shop-results-intro {
        padding: 20px 12px 24px;
    }

    .shop-results-intro .wrapper h1 {
        font-size: 32px;
    }

    .shop-results-intro .shop-description {
        font-size: 15px;
        line-height: 1.55;
    }
}

/* end of intro */


/* results */

.results.shop-results {
    background-color: var(--off-white);
    width: 100%;
    padding: 32px 16px;
    display: flex;
    justify-content: center;
}

.results.shop-results .wrapper,
.results .wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.results .wrapper .products {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.results .wrapper .products .product-filters {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.results .wrapper .products .product-filters .product-grid-view-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
}

.results .wrapper .products .product-filters .product-grid-view-wrapper .mobile-filters-btn {
    height: 54px;
    width: max-content;
    background-color: var(--orange-primary);
    padding: 24px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 2px solid var(--orange-primary);
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
}

.results .wrapper .products .product-filters .product-grid-view-wrapper .mobile-filters-btn svg {
    width: 24px;
    min-width: 24px;
    height: 24px;
    max-width: 100%;
}

.results .wrapper .products .product-filters .product-grid-view-wrapper .mobile-filters-btn:hover {
    background-color: transparent;
    color: var(--black);
}

.results .wrapper .products .product-filters .product-grid-view-wrapper .mobile-filters-btn:hover svg * {
    fill: var(--black);
}

.results .wrapper .products .product-filters .product-grid-view-wrapper .grid-style-wrapper {
    display: flex;
}

.results .wrapper .products .product-filters .product-grid-view-wrapper .grid-style-wrapper span {
    width: max-content;
}

.results .wrapper .products .product-filters .sort-by-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--white);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    border: 2px solid var(--black);
    border-radius: 6px;
    height: 54px;
    padding: 0 12px;
}

.results .wrapper .products .product-filters .sort-by-wrap .sort-prefix {
    white-space: nowrap;
}

.results .wrapper .products .product-filters .sort-by-wrap .sort-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.results .wrapper .products .product-filters .sort-by-wrap .sort-by {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    background: var(--white);
    font: inherit;
    color: inherit;
    padding: 0 22px 0 0;
    cursor: pointer;
    outline: none;
}

.results .wrapper .products .product-filters .sort-by-wrap .sort-arrow {
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    color: var(--black);
}

.results .wrapper .products .product-filters .shop-sort-form {
    margin: 0;
}

@media (max-width: 1024px) {
    .results .wrapper .products .product-filters {
        position: sticky;
        top: 72px;
        padding: 12px;
        border-radius: 4px;
        background: var(--white);
        z-index: 10;
    }

    .results .wrapper .filters {
        display: none;
    }
}

@media (min-width: 1025px) {
    .results .wrapper .products .product-filters .product-grid-view-wrapper .mobile-filters-btn {
        display: none;
    }

    .results.shop-results .filters {
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}

@media (max-width: 767px) {
    .results .wrapper .products .product-filters {
        flex-wrap: wrap;
    }

    .results .wrapper .products .product-filters .product-grid-view-wrapper .grid-style-wrapper {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .results {
        padding: 32px 8px !important;
    }

    .results .wrapper .products .product-filters {
        gap: 8px !important;
    }

    .results .wrapper .products .product-filters .sort-by-wrap .sort-prefix {
        display: none;
    }

    .results .wrapper .products .product-filters .sort-by-wrap,
    .results .wrapper .products .product-filters .product-grid-view-wrapper .mobile-filters-btn {
        font-size: 12px !important;
    }

    .results .wrapper .products .product-filters .product-grid-view-wrapper {
        flex-wrap: wrap;
    }
}

/* end of results */


/* product grid */

.results .wrapper .products .products-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.results .wrapper .products .products-grid > p,
.results.shop-results .products-grid > p {
    grid-column: 1 / -1;
    margin: 0;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--blue-light);
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

.results .wrapper .products .products-grid .product-item {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--blue-light);
    background-color: var(--white);
    padding: 16px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--black);
    gap: 20px;
}

.results .wrapper .products .products-grid .product-item:hover {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 12px #cbc9c5;
}

.results .wrapper .products .products-grid .product-item .product-image {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.results .wrapper .products .products-grid .product-item .product-image:hover img {
    transform: scale(1.05);
}

.results .wrapper .products .products-grid .product-item .product-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-width: 100%;
    transition: 0.2s ease-in-out;
}

.results .wrapper .products .products-grid .product-item .product-info {
    display: flex;
    flex-direction: column;
}

.results .wrapper .products .products-grid .product-item .product-info .category {
    font-size: 14px;
    color: var(--blue-primary);
    font-weight: bold;
    text-decoration: none;
}

.results .wrapper .products .products-grid .product-item .product-info .category a {
    color: inherit;
    text-decoration: none;
}

.results .wrapper .products .products-grid .product-item .product-info .category a:hover {
    text-decoration: underline;
}

.results .wrapper .products .products-grid .product-item .product-info .product-name {
    font-size: 18px;
    text-decoration: none;
    color: var(--black);
    margin-top: 8px;
}

.results .wrapper .products .products-grid .product-item .product-info .product-name:hover {
    color: var(--blue-primary);
}

.results .wrapper .products .products-grid .product-item .product-info .product-reviews {
    width: 100%;
}

.results .wrapper .products .products-grid .product-item .product-info .price-wishlist-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.results .wrapper .products .products-grid .product-item .product-info .price-wishlist-wrapper .product-price {
    font-size: 26px;
    font-weight: bold;
}

.results .wrapper .products .products-grid .product-item .product-info .price-wishlist-wrapper .wishlist {
    border-radius: 4px;
    border: 2px solid var(--blue-light);
    width: 40px;
    min-width: 40px;
    background-color: var(--blue-light);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 40px;
}

.results .wrapper .products .products-grid .product-item .product-info .price-wishlist-wrapper .wishlist:hover {
    background-color: var(--blue-primary);
}

.results .wrapper .products .products-grid .product-item .product-info .price-wishlist-wrapper .wishlist:hover svg * {
    fill: var(--white);
}

.results .wrapper .products .products-grid .product-item .product-info .price-wishlist-wrapper .wishlist svg {
    width: 24px;
    height: 24px;
    max-width: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .results .wrapper .products .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .results .wrapper .products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .results .wrapper .products .products-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}

/* end of product grid */


/* pagination / load more */

.results .wrapper .products .pagination .pagination-wrapper .pagination-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.results .wrapper .products .pagination .pagination-wrapper .go-back-btn {
    height: 54px;
    width: 240px;
    text-decoration: none;
    background-color: transparent;
    padding: 24px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    gap: 8px;
    color: var(--black);
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid var(--blue-primary);
}

.results .wrapper .products .pagination .pagination-wrapper .go-back-btn:hover {
    background-color: var(--blue-primary);
    color: var(--white);
}

.results .wrapper .products .pagination {
    width: 100%;
    display: flex;
    justify-content: center;
}

.results .wrapper .products .pagination .pagination-wrapper {
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 20px;
    text-align: center;
}

.results .wrapper .products .pagination .pagination-wrapper .load-more-btn {
    height: 54px;
    width: 240px;
    text-decoration: none;
    background-color: var(--orange-primary);
    padding: 24px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid var(--orange-primary);
}

.results .wrapper .products .pagination .pagination-wrapper .load-more-btn:hover {
    background-color: transparent;
    color: var(--black);
}

/* end of pagination / load more */


/* filters */

.results .wrapper .filters {
    min-width: 320px;
    width: 320px;
}

.results .wrapper .filters .filters-wrapper {
    width: 100%;
}

.results .wrapper .filters .filters-wrapper .filter-intro {
    width: 100%;
    font-size: 32px;
    font-weight: bold;
    color: var(--black);
}

.results .wrapper .filters .filters-wrapper .filter-cats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category {
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--blue-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.clear-filter,
.fs-clear-filter {
    display: none;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .clear-filter {
    text-decoration: underline;
    cursor: pointer;
    color: var(--blue-primary);
    margin-left: auto;
    font-size: 16px;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .applied-filters-list li {
    display: flex;
    gap: 8px;
    align-items: center;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .applied-filters-list li .clear-button-wrapper {
    width: 24px;
    min-width: 24px;
    height: 24px;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .applied-filters-list li .clear-button-wrapper button {
    width: 100%;
    height: 100%;
    border-radius: 1000px;
    background-color: var(--blue-dark);
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .applied-filters-list li .clear-button-wrapper button:hover {
    background-color: transparent;
    border: 2px solid var(--blue-dark);
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .applied-filters-list li .clear-button-wrapper button svg {
    width: 12px;
    min-width: 12px;
    height: 12px;
    color: var(--white);
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .applied-filters-list li .clear-button-wrapper button:hover svg {
    color: var(--black);
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .applied-filters-list li .apply-cat {
    font-weight: 400;
    margin: 0;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .applied-filters-list li .apply-cat span {
    padding-left: 8px;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-head {
    padding: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: var(--white);
    border: unset;
    border-radius: unset;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    justify-content: space-between;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-head svg {
    width: 16px;
    min-width: 16px;
    height: auto;
    max-width: 100%;
    transition: 0.2s ease-in-out;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category.active .filter-cat-head svg {
    transform: rotate(180deg);
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s ease-in-out;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category.active .filter-cat-body {
    grid-template-rows: 1fr;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body > * {
    min-height: 0;
    overflow: hidden;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body #price-range {
    padding: 10px 12px;
    border-top: 1px solid var(--blue-light);
    width: 100%;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body #price-range .price-range-form-inner {
    display: flex;
    gap: 8px;
    align-items: center;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body #price-range fieldset {
    position: relative;
    margin: 0;
    padding: 0;
    border: unset;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body #price-range fieldset input {
    width: 64px;
    padding-left: 16px;
    height: 48px;
    border: 1px solid var(--blue-light);
    border-radius: 4px;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body #price-range fieldset label {
    position: absolute;
    font-size: 14px;
    background-color: var(--white);
    top: -9px;
    padding: 0 4px;
    left: 50%;
    transform: translateX(-50%);
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body #price-range button {
    height: 48px;
    flex-grow: 1;
    background-color: var(--orange-primary);
    padding: 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 2px solid var(--orange-primary);
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body #price-range button:hover {
    background-color: transparent;
    color: var(--black);
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body .filter-show-more {
    width: 100%;
    text-decoration: none;
    background-color: var(--orange-primary);
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    border-radius: 0;
    border: 2px solid var(--orange-primary);
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body .filter-show-more:hover {
    background-color: transparent;
    color: var(--black);
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body ul {
    padding: 0 12px;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    font-size: 15px;
    transition: padding 0.2s ease-in-out, max-height 0.2s ease-in-out;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category.active .filter-cat-body ul {
    padding: 12px;
    border-top: 1px solid var(--blue-light);
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body ul li {
    width: 100%;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body ul li.is-hidden {
    display: none;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body ul li label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body ul li label .checkbox-wrapper {
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 4px;
}

.results .wrapper .filters .filters-wrapper .filter-cats .filter-category .filter-cat-body ul li label .checkbox-wrapper input {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--blue-light);
    accent-color: var(--orange-primary);
}

/* end of filters */


/* filter sidebar */

#filter-backdrop {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s;
}

#filter-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

#filter-sidebar {
    position: fixed;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    max-width: 400px;
    visibility: hidden;
    pointer-events: none;
    background-color: var(--white);
    z-index: 9999;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: left 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s;
}

#filter-sidebar.active {
    left: 0;
    visibility: visible;
    pointer-events: all;
}

#filter-sidebar .filter-sidebar-inner {
    padding: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#filter-sidebar .filter-sidebar-inner > .fs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

#filter-sidebar .filter-sidebar-inner > .fs-head span {
    font-size: 20px;
    font-weight: bold;
}

#filter-sidebar .filter-sidebar-inner > .fs-head .close-filter-sidebar-btn {
    border-radius: 1000px;
    background-color: var(--blue-dark);
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    cursor: pointer;
}

#filter-sidebar .filter-sidebar-inner > .fs-head .close-filter-sidebar-btn svg {
    color: var(--white);
    width: 16px;
    height: 16px;
}

#filter-sidebar .filter-sidebar-inner > .fs-head .close-filter-sidebar-btn:hover {
    background-color: transparent;
    border: 2px solid var(--blue-dark);
}

#filter-sidebar .filter-sidebar-inner > .fs-head .close-filter-sidebar-btn:hover svg * {
    color: var(--black);
}

#filter-sidebar .filter-sidebar-inner .fs-body {
    width: 100%;
}

#filter-sidebar .filter-sidebar-inner .fs-body form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#filter-sidebar .filter-sidebar-inner .fs-body form #filter-sidebar-submit-button {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background-color: var(--off-white);
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

#filter-sidebar .filter-sidebar-inner .fs-body form #filter-sidebar-submit-button button {
    width: 100%;
    height: 54px;
    text-decoration: none;
    background-color: var(--orange-primary);
    padding: 24px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid var(--orange-primary);
}

#filter-sidebar .filter-sidebar-inner .fs-body form #filter-sidebar-submit-button button:hover {
    background-color: transparent;
    color: var(--black);
}

#filter-sidebar .filter-sidebar-inner .fs-body form #filter-sidebar-submit-button button:disabled {
    opacity: 0.7;
    cursor: wait;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper {
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--blue-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-clear-filter {
    text-decoration: underline;
    cursor: pointer;
    color: var(--blue-primary);
    margin-left: auto;
    font-size: 16px;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-head {
    padding: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: var(--white);
    border: unset;
    border-radius: unset;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 0;
    justify-content: space-between;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-head svg {
    width: 16px;
    min-width: 16px;
    height: auto;
    max-width: 100%;
    transition: 0.2s ease-in-out;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper.active .fs-head svg {
    transform: rotate(180deg);
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s ease-in-out;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper.active .fs-cat-body {
    grid-template-rows: 1fr;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body > * {
    min-height: 0;
    overflow: hidden;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body .fs-cat-body-inner {
    width: 100%;
}

#filter-sidebar .filter-sidebar-inner #sidebar-price-range {
    padding: 10px 12px;
    border-top: 1px solid var(--blue-light);
    width: 100%;
}

#filter-sidebar .filter-sidebar-inner #sidebar-price-range .sidebar-price-range-inner-wrapper {
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: center;
}

#filter-sidebar .filter-sidebar-inner #sidebar-price-range .sidebar-price-range-inner-wrapper fieldset {
    position: relative;
    margin: 0;
    padding: 0;
    border: unset;
}

#filter-sidebar .filter-sidebar-inner #sidebar-price-range .sidebar-price-range-inner-wrapper fieldset input {
    width: 64px;
    padding-left: 16px;
    height: 48px;
    border: 1px solid var(--blue-light);
    border-radius: 4px;
}

#filter-sidebar .filter-sidebar-inner #sidebar-price-range .sidebar-price-range-inner-wrapper fieldset label {
    position: absolute;
    font-size: 14px;
    background-color: var(--white);
    top: -9px;
    padding: 0 4px;
    left: 50%;
    transform: translateX(-50%);
}

#filter-sidebar .filter-sidebar-inner #sidebar-price-range .sidebar-price-range-inner-wrapper button {
    height: 48px;
    flex-grow: 1;
    background-color: var(--orange-primary);
    padding: 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 2px solid var(--orange-primary);
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
}

#filter-sidebar .filter-sidebar-inner #sidebar-price-range .sidebar-price-range-inner-wrapper button:hover {
    background-color: transparent;
    color: var(--black);
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body .fs-cat-body-inner ul {
    padding: 0 12px;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    font-size: 15px;
    transition: padding 0.2s ease-in-out, max-height 0.2s ease-in-out;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper.active .fs-cat-body .fs-cat-body-inner ul {
    padding: 12px;
    border-top: 1px solid var(--blue-light);
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body .fs-cat-body-inner ul li {
    width: 100%;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body .fs-cat-body-inner ul li.is-hidden {
    display: none;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body .fs-cat-body-inner ul li label {
    display: flex;
    align-items: center;
    gap: 8px;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body .fs-cat-body-inner ul li label .checkbox-wrapper {
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 4px;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body .fs-cat-body-inner ul li label .checkbox-wrapper input {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--blue-light);
    accent-color: var(--orange-primary);
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body .fs-cat-body-inner .fs-show-more-btn {
    width: 100%;
    text-decoration: none;
    background-color: var(--orange-primary);
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    border-radius: 0;
    border: 2px solid var(--orange-primary);
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper .fs-cat-body .fs-cat-body-inner .fs-show-more-btn:hover {
    background-color: transparent;
    color: var(--black);
}

/* applied filters in sidebar */

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper#applied-filters-sidebar .fs-cat-body .fs-cat-body-inner .fs-applied-filters-list li {
    display: flex;
    gap: 8px;
    align-items: center;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper#applied-filters-sidebar .fs-cat-body .fs-cat-body-inner .fs-applied-filters-list li .fs-button-clear-applied-wrapper {
    width: 24px;
    min-width: 24px;
    height: 24px;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper#applied-filters-sidebar .fs-cat-body .fs-cat-body-inner .fs-applied-filters-list li .fs-button-clear-applied-wrapper button {
    width: 100%;
    height: 100%;
    border-radius: 1000px;
    background-color: var(--blue-dark);
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper#applied-filters-sidebar .fs-cat-body .fs-cat-body-inner .fs-applied-filters-list li .fs-button-clear-applied-wrapper button:hover {
    background-color: transparent;
    border: 2px solid var(--blue-dark);
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper#applied-filters-sidebar .fs-cat-body .fs-cat-body-inner .fs-applied-filters-list li .fs-button-clear-applied-wrapper button svg {
    width: 12px;
    min-width: 12px;
    height: 12px;
    color: var(--white);
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper#applied-filters-sidebar .fs-cat-body .fs-cat-body-inner .fs-applied-filters-list li .fs-button-clear-applied-wrapper button:hover svg {
    color: var(--black);
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper#applied-filters-sidebar .fs-cat-body .fs-cat-body-inner .fs-applied-filters-list li .fs-applied-cats {
    font-weight: 400;
    margin: 0;
}

#filter-sidebar .filter-sidebar-inner .fs-body form .sidebar-category-wrapper#applied-filters-sidebar .fs-cat-body .fs-cat-body-inner .fs-applied-filters-list li .fs-applied-cats span {
    padding-left: 8px;
}

/* end of applied filters in sidebar */

@media (max-width: 767px) {
    #filter-sidebar {
        max-width: 95%;
    }
}

/* end of filter sidebar */