/* Price Range Slider Styles - Black Theme */
.price-val-range {
    position: relative;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin: 20px 0;
}

.price-val-range .ui-slider-range {
    background: #000000 !important;
    border-radius: 3px;
    height: 100%;
}

.price-val-range .ui-slider-handle {
    width: 18px;
    height: 18px;
    background: #000000 !important;
    border: 2px solid #ffffff !important;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    top: -6px;
}

.price-val-range .ui-slider-handle:hover {
    background: #333333 !important;
}

.price-val-range .ui-slider-handle:focus {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

/* Filter Item Styles */
.facet-content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facet-content li {
    margin-bottom: 8px;
}

.categories-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.categories-item:hover {
    background-color: #f5f5f5;
    color: #000;
    text-decoration: none;
}

.categories-item.active {
    background-color: #000;
    color: white;
}

.count-cate {
    font-size: 0.9em;
    color: #666;
}

.categories-item.active .count-cate {
    color: #ccc;
}

/* Color Filter Styles */
.facet-color-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.color-item:hover {
    border-color: #000;
}

.color-item.active {
    border-color: #000;
    background-color: #f9f9f9;
}

.color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.color.line-black {
    border: 1px solid #ccc;
}

/* Size Filter Styles */
.facet-size-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-item {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
    min-width: 40px;
}

.size-item:hover {
    border-color: #000;
}

.size-item.active {
    border-color: #000;
    background-color: #000;
    color: white;
}

.size-item.free-size {
    min-width: auto;
    padding: 8px 12px;
}

/* Filter Reset Button */
.tf-btn.btn-reset {
    width: 100%;
    padding: 12px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tf-btn.btn-reset:hover {
    background-color: #000;
    color: white;
    border-color: #000;
}

/* Loading State */
.filter-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Color definitions */
.bg-light-pink-2 { background-color: #ffc0cb; }
.bg-red { background-color: #ff0000; }
.bg-beige-2 { background-color: #f5f5dc; }
.bg-orange-2 { background-color: #ffa500; }
.bg-light-green { background-color: #90ee90; }
.bg-main { background-color: #000000; }
.bg-white { background-color: #ffffff; }
.bg-purple-3 { background-color: #9370db; }
.bg-grey { background-color: #808080; }
.bg-light-blue-5 { background-color: #add8e6; }
.bg-dark-blue { background-color: #00008b; }