/* درج فلتر المنتجات — الشاشات الصغيرة فقط */
#ahlmall-filter-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147483644;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

#ahlmall-filter-drawer-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

#ahlmall-filter-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 2147483645;
    width: min(400px, 100vw);
    max-width: 100%;
    background: #fff;
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
}

html[dir="rtl"] #ahlmall-filter-drawer,
body[dir="rtl"] #ahlmall-filter-drawer {
    left: 0;
    right: auto;
    transform: translateX(-100%);
    box-shadow: 8px 0 32px rgba(15, 23, 42, 0.15);
}

html[dir="ltr"] #ahlmall-filter-drawer,
body[dir="ltr"] #ahlmall-filter-drawer {
    right: 0;
    left: auto;
}

#ahlmall-filter-drawer.is-open {
    transform: translateX(0) !important;
    visibility: visible;
    pointer-events: auto;
}

body.ahlmall-filter-open {
    overflow: hidden;
}

.ahlmall-filter-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #e8ecf1;
    flex-shrink: 0;
}

.ahlmall-filter-drawer__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.ahlmall-filter-drawer__close {
    border: 0;
    background: #f1f5f9;
    color: #334155;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.ahlmall-filter-drawer__body {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 16px 20px;
}

#ahlmall-filter-drawer .ahlmall-catalog-filters {
    padding: 0;
}

#ahlmall-filter-drawer .widget {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef2f6;
}

#ahlmall-filter-drawer .widget:last-child {
    border-bottom: 0;
}

.ahlmall-filter-drawer__footer {
    flex-shrink: 0;
    padding: 12px 16px 16px;
    border-top: 1px solid #e8ecf1;
    background: #fff;
}

@media (max-width: 991.98px) {
    .product_header_right {
        flex-wrap: wrap;
        gap: 10px;
    }

    .product_header_right .ahlmall-filter-toggle {
        order: 1;
        flex: 0 0 auto;
    }

    .product_header_right .products_view {
        order: 3;
        flex: 0 0 auto;
    }

    .product_header_right .custom_select {
        order: 2;
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 120px);
    }

    .product_header_right .ahlmall-filter-open-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-weight: 600;
        white-space: nowrap;
        padding: 8px 12px;
    }

    .product_header_right .ahlmall-filter-open-btn i {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    #ahlmall-filter-drawer,
    #ahlmall-filter-drawer-backdrop,
    .ahlmall-filter-toggle {
        display: none !important;
    }
}
