 .range-slider {
    position: relative;
    height: 36px;
  }

  .range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    appearance: none;
    height: 6px;
    background: transparent;
    top: 15px;
    pointer-events: auto;
    margin: 0;
    z-index: 2;
  }

  .range-slider input[type="range"]::-webkit-slider-thumb,
  .range-slider input[type="range"]::-moz-range-thumb {
    appearance: none;
    pointer-events: auto;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #007bff;
    border: none;
    margin-top: -6px;
    position: relative;
    z-index: 3;
    cursor: pointer;
  }

  .discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: red;
    color: white;
    padding: 5px 8px;
    font-size: 0.8rem;
    border-radius: 5px;
    z-index: 10;
  }