
/* ==========================================
   1. СБРОС СТАРЫХ СТИЛЕЙ ТИЛЬДЫ
========================================== */
#rec1019167536 .t-store__filter,
#rec1019167536 .t-store__filter__search,
#rec1019167536 .t-store__search-wrapper,
#rec1019167536 .t-store__filter__item-wrapper,
#rec1019167536 .t-store__sort-select-wrapper {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#rec1019167536 .js-store-filter-item-title::after,
#rec1019167536 .t-store__filter__item-title::after,
#rec1019167536 .t-store__filter-item-title::after,
#rec1019167536 .t-store__sort-select-wrapper::after,
#rec1019167536 .t-store__sort-select::after {
  content: none !important;
  display: none !important;
}

/* ==========================================
   2. БАЗОВЫЙ ДИЗАЙН "СВЕТЛОЕ СТЕКЛО" (ОБЪЕМ, ПОИСК, СОРТИРОВКА)
========================================== */
#rec1019167536 input.js-store-filter-search,
#rec1019167536 .t-store__filter__item-title,
#rec1019167536 .js-store-filter-item-title,
#rec1019167536 select.t-store__sort-select {
  background: rgba(255, 255, 255, 0.1) !important; /* Светлое стекло */
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important; 
  height: 44px !important; 
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 15px !important;
  outline: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  transition: all 0.2s ease !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-sizing: border-box !important;
}

/* Эффект для самих выпадающих списков фильтров (как на вашем скриншоте) */
#rec1019167536 .t-store__filter__item-options,
#rec1019167536 .js-store-filter-item-options {
  background: rgba(25, 25, 25, 0.6) !important; /* Более темное стекло для читаемости списка */
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
}

/* ==========================================
   3. НАСТРОЙКИ ПОИСКА (Длинный)
========================================== */
#rec1019167536 input.js-store-filter-search {
  cursor: text !important;
  padding: 0 16px !important; 
  min-width: 420px !important;
  max-width: 700px !important;
  width: 100% !important;
}

@media (max-width: 640px){
  #rec1019167536 input.js-store-filter-search {
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

#rec1019167536 input.js-store-filter-search::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.6) !important;
}

#rec1019167536 input.js-store-filter-search:focus {
  background: rgba(255, 255, 255, 0.2) !important; /* Подсветка при вводе */
  border-color: #FFD400 !important;
}

/* Лупа поиска */
#rec1019167536 .t-store__filter__search svg path,
#rec1019167536 .t-store__filter__search svg circle,
#rec1019167536 .t-store__search-wrapper svg path,
#rec1019167536 .t-store__search-wrapper svg circle {
  stroke: #ffffff !important;
  fill: none !important;
  transition: stroke 0.2s ease !important;
}
#rec1019167536 input.js-store-filter-search:focus + svg path,
#rec1019167536 input.js-store-filter-search:focus + svg circle,
#rec1019167536 input.js-store-filter-search:focus ~ svg path,
#rec1019167536 input.js-store-filter-search:focus ~ svg circle {
  stroke: #FFD400 !important;
}

/* Черточка-разделитель перед лупой (делаем серой) */
#rec1019167536 .t-store__filter__search-icon,
#rec1019167536 .t-store__search-icon,
#rec1019167536 .t-store__search-icon-wrapper {
  border-left-color: rgba(255, 255, 255, 0.2) !important;
}

/* ==========================================
   4. НАСТРОЙКИ СОРТИРОВКИ И ФИЛЬТРОВ
========================================== */
#rec1019167536 .t-store__sort-select-wrapper {
  flex: 0 0 260px !important;
  width: 260px !important;
  max-width: 260px !important;
}
#rec1019167536 .t-store__sort {
  flex: 0 0 auto !important;
  width: auto !important;
}

#rec1019167536 select.t-store__sort-select,
#rec1019167536 .t-store__filter__item-title,
#rec1019167536 .js-store-filter-item-title {
  padding: 0 44px 0 16px !important;
  cursor: pointer !important;
  width: 100% !important;
  /* Белая SVG-стрелочка для списков */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5l3.5 3.8 3.5-3.8' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 12px 12px !important;
  display: flex !important;
  align-items: center !important;
}

/* Наведение мышкой */
#rec1019167536 .t-store__filter__item-title:hover,
#rec1019167536 .js-store-filter-item-title:hover,
#rec1019167536 select.t-store__sort-select:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ==========================================
   5. СЧЕТЧИК ТОВАРОВ (ТОЖЕ СТЕКЛО)
========================================== */
/* 1. Главная обертка счетчика */
#allrecords .t-store__prod__quantity {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important; 
  height: 44px !important; 
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important; 
  box-sizing: border-box !important;
  overflow: hidden !important; 
  padding: 0 !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  
  margin-top: -8px !important; 
  margin-right: 12px !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  
  vertical-align: middle !important; 
  position: relative !important;
}

@media (max-width: 960px) {
  #allrecords .t-store__prod__quantity {
    margin: 0 0 12px 0 !important; 
    width: 100% !important; 
    top: 0 !important;
  }
}

/* 2. Сама цифра количества посередине */
#allrecords .t-store__prod__quantity input,
#allrecords input.t-store__prod__quantity__input {
  background: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important; 
  opacity: 1 !important;
  visibility: visible !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  border: none !important;
  height: 100% !important; 
  line-height: 42px !important; 
  text-align: center !important;
  width: 40px !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  display: block !important;
}

/* 3. Зоны клика */
#allrecords .t-store__prod__quantity__minus-wrapper,
#allrecords .t-store__prod__quantity__plus-wrapper {
  background: transparent !important;
  border: none !important;
  height: 100% !important; 
  width: 40px !important; 
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background-color 0.2s !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

/* СКРЫВАЕМ НОВЫЕ SVG ИКОНКИ ТИЛЬДЫ */
#allrecords .t-store__prod__quantity__minus-wrapper svg,
#allrecords .t-store__prod__quantity__plus-wrapper svg {
  display: none !important;
}

/* 4. САМИ КНОПКИ (+ и -) */
#allrecords .t-store__prod__quantity__minus,
#allrecords .t-store__prod__quantity__plus {
  background: transparent !important;
  background-image: none !important; 
  border: none !important;
  position: relative !important;
  width: 14px !important; 
  height: 14px !important;
  display: block !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

#allrecords .t-store__prod__quantity__minus::before,
#allrecords .t-store__prod__quantity__plus::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background-color: #ffffff !important;
  transform: translateY(-50%) !important;
  transition: background-color 0.2s !important;
  display: block !important;
}

#allrecords .t-store__prod__quantity__plus::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: 2px !important;
  height: 100% !important;
  background-color: #ffffff !important;
  transform: translateX(-50%) !important;
  transition: background-color 0.2s !important;
  display: block !important;
}

/* 6. Подсветка фона кнопки при наведении мышкой */
#allrecords .t-store__prod__quantity__minus-wrapper:hover,
#allrecords .t-store__prod__quantity__plus-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

#allrecords .t-store__prod__quantity__minus-wrapper:hover .t-store__prod__quantity__minus::before,
#allrecords .t-store__prod__quantity__plus-wrapper:hover .t-store__prod__quantity__plus::before,
#allrecords .t-store__prod__quantity__plus-wrapper:hover .t-store__prod__quantity__plus::after {
  background-color: #FFD400 !important;
}

/* ==========================================
   6. БЕЛАЯ СТРЕЛКА ДЛЯ "ОБЪЕМА" НА САМОЙ КАРТОЧКЕ
========================================== */
#allrecords .t-product__option-select,
#allrecords .t-store__prod__select {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5l3.5 3.8 3.5-3.8' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 12px 12px !important;
}

#allrecords .t-product__option-variants::after,
#allrecords .t-store__prod__select-wrapper::after {
  content: none !important;
  display: none !important;
}

/* ==========================================
   7. БЕЛЫЙ ТЕКСТ ДЛЯ ВЫПАДАЮЩИХ СПИСКОВ (МОБИЛЬНЫЕ)
========================================== */
body .t-store__sort-popup,
body .t-store__filter__popup,
body .t-store__mobile-filter,
body .t-store__mobile-filter-container,
body .t-store__mobile-filter__wrap,
body .t-store__mobile-filter-window {
  background-color: rgba(25, 25, 25, 0.6) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body .t-store__sort-popup *,
body .t-store__filter__popup *,
body .t-store__mobile-filter * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body .t-store__sort-popup__title,
body .t-store__mobile-filter__title {
  color: #FFD400 !important;
  -webkit-text-fill-color: #FFD400 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body .t-store__sort-popup__item,
body .t-store__mobile-filter__item {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body .t-store__sort-popup__item_active,
body .t-store__sort-popup__item_active *,
body .t-store__mobile-filter__item_active,
body .t-store__mobile-filter__item_active * {
  color: #FFD400 !important;
  -webkit-text-fill-color: #FFD400 !important;
}

body .t-store__mobile-filter .t-store__filter__item-title {
  background: rgba(255, 255, 255, 0.1) !important; /* Стекло на мобильных */
  border-color: rgba(255, 255, 255, 0.2) !important;
}

select option {
  background-color: #1a1a1a !important; 
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.t-store__filter__prods-number {
  color: #ffffff !important;
}

/* ==========================================
   8. ВЫРАВНИВАНИЕ КНОПКИ ФИЛЬТРА ПО ВЫСОТЕ (ДЛЯ ПК)
========================================== */
@media (min-width: 960px) {
  #vendaCatsMount {
    position: relative !important;
    top: -3px !important;
    z-index: 99 !important; 
  }
}
</style>