
.price-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #333;
    font-size: 14px;
  }
  
  .price-label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 8px;
  }
  
  .price-value {
    font-weight: bold;
    color: #333;
  }
  
  .range-container {
    position: relative;
    height: 40px;
    margin-bottom: 10px;
  }
  
  .range-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .range-fill {
    position: absolute;
    height: 6px;
    background: linear-gradient(to right, #ec8922, #ec8922);
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    -webkit-appearance: none;
  }
  
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    background: #ec8922;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
  }
  
  input[type="range"]::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: #ec8922;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  #minRange {
    z-index: 2;
  }
  
  #maxRange {
    z-index: 2;
  }
  