/* Range Filter Styles */
.range-filter {
    border-bottom: 1px solid #eee;
}

.range-filter:last-child {
    border-bottom: none;
}

.range-slider {
    position: relative;
    margin: 10px 0;
    height: 24px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
}

.range-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    transform: translateY(-50%);
    z-index: 0;
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 24px;
    top: 0;
    left: 0;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 2;
    margin: 0;
    padding: 0;
}

/* WebKit styles */
.range-slider input[type="range"]::-webkit-slider-track {
    height: 6px;
    background: transparent;
    border-radius: 3px;
    border: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b60911 0%, #8b0000 100%);
    cursor: pointer;
    pointer-events: all;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    position: relative;
    z-index: 3;
}

.range-slider input[type="range"]:hover::-webkit-slider-thumb {
    background: linear-gradient(135deg, #d10a14 0%, #a00000 100%);
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.range-slider input[type="range"]:active::-webkit-slider-thumb {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(182, 9, 17, 0.4);
}

/* Firefox styles */
.range-slider input[type="range"]::-moz-range-track {
    height: 6px;
    background: transparent;
    border-radius: 3px;
    border: none;
}

.range-slider input[type="range"]::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b60911 0%, #8b0000 100%);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    pointer-events: all;
    transition: all 0.2s ease;
    position: relative;
    z-index: 3;
}

.range-slider input[type="range"]:hover::-moz-range-thumb {
    background: linear-gradient(135deg, #d10a14 0%, #a00000 100%);
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.range-slider input[type="range"]:active::-moz-range-thumb {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(182, 9, 17, 0.4);
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
    gap: 10px;
}

.range-value-min,
.range-value-max {
    padding: 8px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 6px;
    min-width: 60px;
    text-align: center;
    font-family: monospace;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.range-value-min:hover,
.range-value-max:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #b60911;
}

/* Focus effects */
.range-slider input[type="range"]:focus {
    outline: none;
}

.range-slider input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(182, 9, 17, 0.2), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.range-slider input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 4px rgba(182, 9, 17, 0.2), 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Active range visualization */
.range-visualization {
    position: absolute;
    top: 50%;
    height: 6px;
    background: linear-gradient(90deg, #b60911 0%, #d10a14 100%);
    border-radius: 3px;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(182, 9, 17, 0.3);
}

/* Filters Bar Tags - оригінальна структура */








