/* Price Filter Widget Container */
.price-filter-widget {
    padding: 20px;
    text-align: center;
    background-color: #fff;
}

/* Title and Horizontal Line */
.price-filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.price-filter-title h3 {
    font-family: "Red Hat Display", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #080808;
    margin: 0;
}

.price-filter-title hr {
    flex-grow: 1;
    height: 1px;
    background: rgba(8, 8, 8, 0.2);
    border: none;
    margin-left: 10px;
}

/* Price Slider Styling */
.price-slider {
    position: relative;
    margin-bottom: 20px;
}

.price-slider input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #2D4821 0%, #ddd 100%);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: #2D4821;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

/* Price Values */
.price-slider .price-values {
    display: flex;
    justify-content: space-between;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #080808;
    margin-top: 10px;
}

/* Filter Button Styling */
.filter-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    background-color: #2D4821;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
}

.filter-button:hover {
    background-color: #213916;
}
