.jb-filter-form {
    padding:15px;
    background:#fff;
    border:1px solid #eee;
    font-size:14px;
}

.jb-filter-block { 
    margin-bottom:20px;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
}

.jb-accordion-title {
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.jb-accordion-content { 
    margin-top:10px; 
    display:none; 
}

.jb-checkbox-row {
    display:flex;
    align-items:center;
    gap:10px;
    margin:6px 0;
}

.jb-checkbox-row input { display:none; }

.jb-checkbox-square {
    width:16px;
    height:16px;
    border:1px solid #aaa;
    border-radius:3px;
    position:relative;
}

.jb-checkbox-row input:checked + .jb-checkbox-square {
    border-color:#000;
}

.jb-checkbox-row input:checked + .jb-checkbox-square::after {
    content:"";
    position:absolute;
    width:8px;
    height:8px;
    background:#000;
    top:3px; left:3px;
}

/* SLIDER */

.jb-price-container {
    position:relative;
    height:32px;
    margin-bottom:8px;
}

.jb-slider-track {
    position:absolute;
    width:100%;
    height:4px;
    background:#e5e5e5;
    border-radius:2px;
    top:50%;
    transform:translateY(-50%);
}

#jb-slider-active {
    position:absolute;
    height:4px;
    background:#222;
    border-radius:2px;
    top:50%;
    transform:translateY(-50%);
}

.jb-price-container input[type=range] {
    position:absolute;
    width:100%;
    background:transparent;
    pointer-events:none;
    -webkit-appearance:none;
    z-index:3;
}

.jb-price-container input[type=range]::-webkit-slider-thumb {
    -webkit-appearance:none;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#fff;
    border:2px solid #000;
    pointer-events:auto;
}

.jb-price-values {
    display:flex;
    justify-content:space-between;
    font-weight:600;
}



        /* ATTR COLOR */
        .jb-attr-item { display:flex; align-items:center; gap:10px; cursor:pointer; margin-bottom:8px; }
        .jb-attr-item input { display:none; }

        .jb-color-dot {
            width:22px; height:22px; border-radius:50%;
            border:1px solid #e3e3e3; box-shadow:0 0 0 4px #fff;
        }
        .jb-attr-color.active .jb-color-dot {
            border-color:#141c2c;
            box-shadow:0 0 0 2px rgba(0,0,0,0.15), 0 0 0 4px #fff;
        }
        .jb-attr-color.active .jb-color-label {
            font-weight:600; color:#141c2c;
        }

        /* ATTR LABEL (PILLS) */
        .jb-attr-label .jb-attr-pill {
            display:inline-flex; align-items:center; justify-content:center;
            padding:4px 10px; border-radius:999px;
            border:1px solid #d0d0d0; font-size:13px;
        }
        .jb-attr-label.active .jb-attr-pill {
            background:#141c2c; color:#fff; border-color:#141c2c;
        }
