  /* Сохраняем фиксированное позиционирование */
/*  .t951__sidebar.t951__sidebar_sticky {*/
/*    position: sticky !important;*/
    top: 20px !important; /* Или ваше значение */
/*    border-radius: 24px !important;*/
    overflow: visible !important; /* Меняем на visible */
/*  }*/
  
  /* Создаем псевдоэлемент для скруглений */
/*  .t951__sidebar.t951__sidebar_sticky::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    border-radius: 24px;*/
/*    background: inherit;*/
/*    z-index: -1;*/
/*  }*/



  
 
  
 
 
  
 
  
  /* Переопределяем ВСЕ части линии сразу */
/*  .t-store__filter__item-price-slider div {*/
    background-color: #E43436 !important; /* Сначала все красные */
/*    height: 4px !important;*/
/*    border-radius: 2px !important;*/
/*  }*/
  
  /* А теперь серая фоновая линия */
/*  .t-store__filter__range_bg {*/
/*    background-color: #CCCCCC !important;*/
/*  }*/
  
  /* И делаем ЛЕВУЮ часть (до левого бегунка) серой */
/*  .t-store__filter__item-price-slider div:first-child {*/
/*    background-color: #CCCCCC !important;*/
/*  }*/
  
  /* Бегунки */
/*  .t-store__filter__range::-webkit-slider-thumb {*/
/*    width: 20px !important;*/
/*    height: 20px !important;*/
/*    background: #FFDCDC !important;*/
/*    border: 2px solid #E43436 !important;*/
/*    border-radius: 50% !important;*/
/*    margin-top: -8px !important;*/
/*    box-shadow: none !important;*/
/*  }*/



/*document.addEventListener('DOMContentLoaded', function() {*/
/*  console.log('=== ДИАГНОСТИКА СЛАЙДЕРА ===');*/
  
/*  const slider = document.querySelector('.t-store__filter__item-price-slider');*/
/*  if (!slider) {*/
/*    console.error('Слайдер не найден!');*/
/*    return;*/
/*  }*/
  
/*  console.log('Найден слайдер:', slider);*/
  
/*  // Выводим ВСЕ div внутри слайдера*/
/*  const allDivs = slider.querySelectorAll('div');*/
/*  console.log(`Всего div: ${allDivs.length}`);*/
  
/*  allDivs.forEach((div, index) => {*/
/*    console.log(`Div ${index}:`, {*/
/*      className: div.className,*/
/*      style: div.style.cssText,*/
/*      computedStyle: window.getComputedStyle(div)*/
/*    });*/
/*  });*/
  
/*  // Принудительно красим ВСЕ div*/
/*  allDivs.forEach(div => {*/
/*    // Если это фоновая линия или первый элемент - серый*/
/*    if (div.className.includes('range_bg') || */
/*        div.className.includes('price-outer_start') ||*/
/*        div === allDivs[0]) {*/
/*      div.style.cssText += 'background-color: #CCCCCC !important;';*/
/*    } */
/*    // Если это второй или price-outer_end - красный*/
/*    else if (div.className.includes('price-outer_end') || */
/*             div === allDivs[1]) {*/
/*      div.style.cssText += 'background-color: #E43436 !important;';*/
/*    }*/
/*    // Все остальные - серые*/
/*    else {*/
/*      div.style.cssText += 'background-color: #CCCCCC !important;';*/
/*    }*/
/*  });*/
  
/*  console.log('=== СТИЛИ ПРИМЕНЕНЫ ===');*/
/*});*/






  

  /* Вариант 1: Точные селекторы */
/*  input.t-store__filter__input.js-store-filter-pricemin,*/
/*  input.t-store__filter__input.js-store-filter-pricemax {*/
/*    border: none !important;*/
/*    border-radius: 8px !important;*/
/*    background-color: #ffffff !important;*/
/*    padding: 8px 12px !important;*/
/*    outline: none !important;*/
/*    box-shadow: none !important;*/
/*  }*/
  
  /* Вариант 2: Атрибутные селекторы */
/*  input[name="price:min"],*/
/*  input[name="price:max"] {*/
/*    border: none !important;*/
/*    border-radius: 8px !important;*/
/*    background: #ffffff !important;*/
/*    padding: 10px 15px !important;*/
/*    outline: none !important;*/
/*  }*/
  
  /* Вариант 3: Через родительский контейнер */
/*  .t-store__filter__item-controls-wrap input[type="text"] {*/
/*    border: none !important;*/
/*    border-radius: 8px !important;*/
/*    background: #ffffff !important;*/
/*    padding: 8px 12px !important;*/
/*    outline: none !important;*/
/*  }*/
