  /* Кастомный стиль для ползунков */
  .custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 30px;
    background: #4B4947; /* фон как у карточки */
    border-radius: 9999px;
    outline: none;
    position: relative;
    cursor: pointer;
  }

  /* След (заполнение) реализуется через отдельный div (.slider-track) */

  .custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #3366BD;
    border: 1px solid #fff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    /* margin-top: 10px; центрируем по вертикали */
  }

  .custom-slider::-moz-range-thumb {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #3366BD;
    border: 3px solid #fff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }

  .slider-track {
    position: absolute;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
    height: 33px;
    background: #3366BD;
    border-radius: 9999px;
    pointer-events: none;
    z-index: 1;
  }

  /* Подписи под ползунками */
  .slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 12px;
    color: #a0a0a0;
  }



  @media (max-width: 1023px) {
  .custom-slider {
    height: 20px;
    margin-top: 4px;
  }

  .slider-track {
    height: 20px;
  }



    .custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
  }
}