/* Product Filters Styles */

.fatbikes-filters__color-swatch {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin-right: 8px;
    vertical-align: middle;
}

.fatbikes-filters__stars {
    color: #ffa500;
    margin-right: 5px;
}

/* Price Range Slider */
.price-range-slider {
    position: relative;
    height: 6px;
    margin: 20px 0;
}

.price-input {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    z-index: 2;
}

.price-input::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
    pointer-events: all;
    -webkit-appearance: none;
    z-index: 3;
}

.price-input::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
    pointer-events: all;
}

.slider-track {
    position: absolute;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    width: 100%;
}

.slider-range {
    position: absolute;
    height: 6px;
    background: #007bff;
    border-radius: 3px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* Loading Overlay */
.fatbikes-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 8px;
}

.fatbikes-spinner-container {
    text-align: center;
}

.fatbikes-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0d6efd;
    border-radius: 50%;
    animation: fatbikes-spin 1s linear infinite;
    margin: 0 auto 10px;
}

.fatbikes-loading-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

@keyframes fatbikes-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}