.price-range-bar {
  position: relative;
  height: 4px;
  background: #e0e0e0;
  margin: 10px 0;
  border-radius: 2px;
}

.range-current {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #4CAF50;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease;
}

.range-low,
.range-high {
  position: absolute;
  top: 15px;
  font-size: 0.9em;
  color: #666;
}

.range-low {
  left: 0;
}

.range-high {
  right: 0;
}

.range-label {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}
