/* Slider Wrapper */
.housify-slider-wrapper {
    padding: 20px 0;
    width: 100%;
}

/* The Range Input */
.housify-range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

.housify-range-input:hover {
    opacity: 1;
}

/* The Slider Handle (Chrome/Safari) */
.housify-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #C5A572;
    /* Housify Gold */
    cursor: pointer;
    border: 4px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* The Slider Handle (Firefox) */
.housify-range-input::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #C5A572;
    cursor: pointer;
    border: 4px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Label below the slider */
.slider-value-label {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}