/* Price Slider Enhancements */

/* Dual range slider styling */
.price-slider {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: linear-gradient(to right, #d3a03a 0%, #d3a03a 100%);
    outline: none;
    -webkit-appearance: none;
    margin: 8px 0;
    position: relative;
}

/* Webkit browsers (Chrome, Safari, etc) */
.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d3a03a;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    background: #c89633;
    box-shadow: 0 2px 12px rgba(211, 160, 58, 0.4);
    transform: scale(1.1);
}

/* Firefox */
.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d3a03a;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.price-slider::-moz-range-thumb:hover {
    background: #c89633;
    box-shadow: 0 2px 12px rgba(211, 160, 58, 0.4);
    transform: scale(1.1);
}

/* Track styling */
.price-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: #e9ecef;
    border-radius: 5px;
}

.price-slider::-moz-range-track {
    background: #e9ecef;
    border-radius: 5px;
}

/* Price inputs styling */
.price-input {
    border: 1px solid #d3a03a !important;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    background: white;
    transition: all 0.2s ease;
}

.price-input:focus {
    border-color: #c89633 !important;
    box-shadow: 0 0 0 3px rgba(211, 160, 58, 0.1);
    background: #fffef9;
}

/* Price range container */
.price-range {
    padding: 12px 0;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
}

.price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.price-inputs > div {
    display: flex;
    flex-direction: column;
}

.price-inputs label {
    margin-bottom: 4px;
    font-size: 0.75rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .price-inputs {
        gap: 8px;
    }
    
    .price-input {
        font-size: 0.85rem;
        padding: 6px 8px;
    }
}
