/* Sticky Filter Sidebar — desktop only */
/* @media (min-width: 992px) { */
/* .shop-filter-sticky { */
/* position: sticky; */
/* top: 80px; */
/* align-self: flex-start; */
/* REQUIRED: lets sticky work inside a flex row */
/* } */
/* } */

/* Mobile filter offcanvas */
@media (max-width: 991.98px) {
    .mobile-filter-offcanvas {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        z-index: 100000;
        background: #fff;
        padding: 20px;
        overflow-y: auto;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
    }

    .mobile-filter-offcanvas.show {
        left: 0;
    }

    .offcanvas-backdrop-custom {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99999;
        display: none;
    }

    .offcanvas-backdrop-custom.show {
        display: block;
    }
}

/* Fix mobile horizontal overflow */
@media (max-width: 767.98px) {
    .shop-page-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .shop-page-container .row {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }

    .shop-page-container .row>[class*="col-"] {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}