.wcpf-filters-container {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid grey;
}

.wcpf-filter-group {
    flex: 1;
    min-width: 200px;
	padding: 0 10px;
}

.wcpf-filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.wcpf-search-filter input,
.wcpf-sort-filter select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
	background-color: #000 !important;
    color: #fff !important;
}

.wcpf-sort-filter select option:hover {
    background-color: #d94f37 !important;
}

.wcpf-price-slider-container {
    padding: 10px 20px;
}

/* #wcpf-price-slider {
    margin: 15px 0;
    height: 8px;
	background: none;
} */

/* #wcpf-price-slider .ui-slider-handle {
    background: #0073aa;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
} */

#wcpf-price-slider {
    border: none;
	background: #eeeeee 50% top repeat-x;
}

#wcpf-price-slider .ui-slider-range {
    background: #d94f37 !important;
    border: none !important;
}

#wcpf-price-slider .ui-slider-handle {
    margin-left: 0px;
    background: none !important;
    border: none !important;
}

#wcpf-price-slider .ui-slider-handle:before {
    width: 0.7em;
    height: 0.7em;
    background-color: #727780;
    border-radius: 20%;
    box-shadow: 0 0 0 0.375em #727780;
}

.wcpf-price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.wcpf-filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.wcpf-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wcpf-btn-primary {
    background: #d94f37;
    color: white;
}

.wcpf-btn-primary:hover {
    background: #d94f37;
}

.wcpf-btn-secondary {
    background: #6c757d;
    color: white;
}

.wcpf-btn-secondary:hover {
    background: #545b62;
}

.wcpf-loading {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #666;
}

.wcpf-no-products {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

.wcpf-pagination {
    margin-top: 30px;
    text-align: center;
}

.wcpf-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
}

.wcpf-pagination .page-numbers:hover,
.wcpf-pagination .page-numbers.current {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

@media (max-width: 768px) {
    .wcpf-filters-container {
        flex-direction: column;
    }
    
    .wcpf-filter-group {
        min-width: 100%;
    }
    
    .wcpf-filter-actions {
        width: 100%;
        justify-content: center;
    }
}