    .slider-wrapper {
      position: relative;
      width: 100%;
    }

    .slider {
      -webkit-appearance: none;
      width: 100%;
      height: 8px;
      border-radius: 4px;
      background: linear-gradient(to right, #5ba191 0%, #5ba191 0%, #e0e0e0 0%);
      outline: none;
      margin: 60px 0 20px 0;
      position: relative;
      z-index: 2;
    }

    .slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: white;
      border: 4px solid #5ba191;
      cursor: pointer;
      position: relative;
      z-index: 3;
    }

    .value-bubble {
      position: absolute;
      top: 15px;
      transform: translateX(-50%);
      background: white;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      padding: 12px 20px;
      font-weight: bold;
      color: #333;
      z-index: 4;
    }

    .graduations {
      display: flex;
      justify-content: space-between;
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      z-index: 1;
    }

    .graduations span {
      width: 1px;
      height: 10px;
      background: #999;
    }

    .graduation-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      font-size: 13px;
      color: #555;
    }

    .price-display {
      margin-top: 30px;
      font-size: 22px;
      text-align: center;
      color: #10b981;
      font-weight: bold;
    }

    .price-sub {
      font-size: 14px;
      color: #666;
      margin-top: 4px;
    }