/* ==== FacetWP — Professional UI with Accordion (RTL) ==== */

:root {
    --hsa-facet-gap: 12px;
    --hsa-facet-radius: 10px;
    --hsa-facet-border: 1px;
    --hsa-facet-color: #111;
    --hsa-facet-muted: #6b7280;
    --hsa-facet-bg: #ffffff;
    --hsa-facet-pill-bg: #f3f4f6;
    --hsa-facet-pill-bg-active: #111827;
    --hsa-facet-pill-color: #111827;
    --hsa-facet-pill-color-active: #ffffff;
    --hsa-facet-accent: #2563eb;
    --hsa-facet-shadow: 0 1px 2px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
}
.facetwp-facet {
    margin-bottom: 10px !important;
}
.facetwp-checkbox.checked {
    background: none !important;
}
/* کانتینر عمومی فیلتر */
.facetwp-facet {
    background: var(--hsa-facet-bg);
    direction: rtl;
    overflow: hidden;
}

/* ===== Accordion Header (عنوان داخل آیتم) ===== */
.facetwp-facet .hsa-acc__header {
    width: 100%;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #f3f4f6;
    margin: 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.facetwp-facet .hsa-acc__title {
    font-size: 18px;
    font-weight: 400;
    color: #353535;
}
.hsa-acc__header {
    font-family: inherit;
}
.facetwp-facet .hsa-acc__chev {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    transition: transform .18s ease;
}
.facetwp-facet.is-open .hsa-acc__chev { transform: rotate(180deg); }

/* ===== Accordion Panel ===== */
.facetwp-facet .hsa-acc__panel {
    padding: 8px 5px;
}
.facetwp-facet .hsa-acc__panel[hidden] {
    display: none;
}

/* ===== Checkboxes as Pills ===== */
.facetwp-facet.facetwp-type-checkboxes .facetwp-checkbox {
    align-items: center;
    padding: 5px;
    color: var(--hsa-facet-pill-color);
    font-size: 15px !important;
    cursor: pointer;
    user-select: none;
    transition: all .18s ease;
    border-bottom: 1px solid #ececec;
}


/* نشانگر تعداد */
.facetwp-counter {
    margin-inline-start: 8px;
    color: var(--hsa-facet-muted);
    font-size: 12px;
}

/* وضعیت انتخاب‌شده */
.facetwp-checkbox.checked {
    background: var(--hsa-facet-pill-bg-active);
    color: var(--hsa-facet-pill-color-active);
    border-color: var(--hsa-facet-pill-bg-active);
}
.facetwp-checkbox.checked .facetwp-counter { color: #dbeafe; }

/* رادیو / دراپ‌داون */
.facetwp-facet.facetwp-type-radio .facetwp-radio { margin: 6px 0; }
.facetwp-facet.facetwp-type-dropdown select {
    width: 100%; height: 38px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 0 10px;
    background: #fff;
}

/* اسلایدر قیمت (noUiSlider) */
.facetwp-facet.facetwp-type-slider .noUi-target {
    box-shadow: none;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}
.facetwp-facet.facetwp-type-slider .noUi-connect { background: var(--hsa-facet-accent); }
.facetwp-facet.facetwp-type-slider .noUi-handle {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

/* نمایش بیشتر/کمتر */
.hsa-facet__more {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--hsa-facet-accent);
    cursor: pointer;
    user-select: none;
}
.hsa-facet--collapsed .hsa-acc__panel .facetwp-checkbox:nth-of-type(n+8) { display: none; }

/* نوار چیپ‌های انتخاب‌شده */
.hsa-facet-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 14px;
    direction: rtl;
}
.hsa-facet-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
}
.hsa-facet-chip .hsa-chip-x {
    display: inline-flex;
    width: 18px; height: 18px;
    border-radius: 50%;
    align-items: center; justify-content: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    font-weight: 700; line-height: 1;
    cursor: pointer;
}
.hsa-facet-chip--clear {
    background: #111827; color: #fff;
    border-color: #111827;
}

/* حالت لودینگ اسکلتی */
body.hsa-facet-loading .facetwp-template,
body.hsa-facet-loading .facetwp-facet {
    position: relative;
}
body.hsa-facet-loading .facetwp-template::after,
body.hsa-facet-loading .facetwp-facet::after {
    content: ' ';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,#f3f4f6 0,#f9fafb 50%,#f3f4f6 100%);
    background-size: 200% 100%;
    animation: hsa-shimmer 1.2s infinite;
    border-radius: 10px;
    opacity: .6;
}
@keyframes hsa-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* موبایل: چسبان بودن نوار چیپ‌ها (اختیاری) */
.hsa-facet-chips--sticky {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fbfbfb;
}

/* دسترس‌پذیری */
.facetwp-facet .hsa-acc__header:focus { outline: 2px solid #93c5fd; outline-offset: 2px; }
