

/* Start:/local/templates/main/components/bitrix/catalog/catalog/style.css?178643826256*/
.find-section,.credit-section{
	margin-bottom : 30px;	}

/* End */


/* Start:/css/catalog.css?178643826234004*/
 .catalog-layout {
      display: flex;
      gap: 30px;
      align-items: flex-start;
      margin-top: 20px;
    }

/* ========================================
   ФИЛЬТР (ЛЕВЫЙ САЙДБАР)
   ======================================== */

.filter-sidebar {
  flex: 0 0 280px;
  min-width: 240px;
  padding-right: 24px;
  background:#fff;
  border-radius:30px;
  padding:20px;
  margin-top:40px;
}

/* ----- ГРУППЫ ФИЛЬТРА ----- */
.filter-group {
  margin-bottom: 12px;
}

/* ----- ПОЛЯ ВВОДА ----- */
.filter-input {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  font-size: 14px;
  color: #8a9aa8;
  background: #f8f9fb;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}

.filter-input::placeholder {
  color: #8a9aa8;
  font-weight: 400;
}

.filter-input:hover {
  background-color: #f0f2f5;
  border-color: #d0d6de;
}

.filter-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #1a1a2e;
  box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.08);
  color: #1a1a2e;
}

.filter-input:focus::placeholder {
  opacity: 0.5;
}

/* ----- ВЫПАДАЮЩИЕ СПИСКИ (СЕЛЕКТЫ) ----- */
.filter-select {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  font-size: 14px;
  color: #8a9aa8;
  background: #f8f9fb;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}

.filter-select:hover {
  background-color: #f0f2f5;
  border-color: #d0d6de;
}

.filter-select:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #1a1a2e;
  box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.08);
  color: #1a1a2e;
}

/* Стиль для опций внутри выпадающего списка */
.filter-select option {
  padding: 10px 16px;
  color: #1a1a2e;
  background: #ffffff;
}

.filter-select option:disabled {
  color: #8a9aa8;
  background: #f8f9fb;
}

/* Убираем стандартную стрелку в IE */
.filter-select::-ms-expand {
  display: none;
}

/* ----- ОБЁРТКА ДЛЯ СТРЕЛКИ ----- */
.filter-select-wrapper {
  position: relative;
  width: 100%;
}

/* Стрелка-шеврон через ::after на обёртке */
.filter-select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #8a9aa8;
  border-bottom: 1.5px solid #8a9aa8;
  pointer-events: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.filter-select-wrapper:hover::after {
  border-color: #5a6874;
}

.filter-select-wrapper:focus-within::after {
  border-color: #1a1a2e;
  transform: translateY(-50%) rotate(225deg);
}

/* ----- РЯД ДЛЯ ПОЛЕЙ "ОТ — ДО" ----- */
.filter-row {
  display: flex;
  align-items: center;
  /* gap: 8px; */
  gap: 3px;
}

.filter-row > :first-child {
  border-radius: 10px 0 0 10px;
}

.filter-row > :last-child {
  border-radius: 0 10px 10px 0;
}

.filter-row .filter-input {
  /* width: calc(50% - 4px); */
  flex: 1;
}

.filter-sep {
  color: #b0b8c0;
  font-size: 14px;
  font-weight: 300;
  flex-shrink: 0;
  display:none;
}

/* ----- ЧЕКБОКСЫ ----- */
.filter-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1a2e;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #dce0e5;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.custom-checkbox:hover .checkmark {
  border-color: #b0b8c0;
}

.custom-checkbox input:checked + .checkmark {
  background: #1a1a2e;
  border-color: #1a1a2e;
}

.custom-checkbox input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
/* ========================================
   ПЕРЕКЛЮЧАТЕЛЬ (TOGGLE SWITCH)
   ======================================== */



.filter-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  padding: 2px 0;
}

.toggle-switch input[type="radio"] {
  display: none;
}

/* Текст слева */
.toggle-label {
  font-size: 14px;
  color: #1a1a2e;
  font-weight: 400;
  transition: font-weight 0.2s;
}

/* Активный текст — жирный */
.toggle-switch input:checked ~ .toggle-label {
  font-weight: 600;
}

/* Слайдер справа */
.toggle-slider {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  background: #727C83;
  border-radius: 14px;
  transition: background 0.3s ease;
  border: 1px solid #727C83;
}

.toggle-slider::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Активное состояние */
.toggle-switch input:checked + .toggle-slider {
    

}

.toggle-switch input:checked + .toggle-slider::after {
  transform: translateX(20px);
}

/* Ховер */
.toggle-switch:hover .toggle-slider {
  background: #dce0e5;
  border-color: #b0b8c0;
}

.toggle-switch input:checked:hover + .toggle-slider {
  
}

/* Фокус для доступности */
.toggle-switch input:focus-visible + .toggle-slider {
  outline: 2px solid #4a90d9;
  outline-offset: 2px;
}

/* ========================================
   АДАПТИВ
   ======================================== */

@media (max-width: 480px) {
  .filter-toggle-group {
    gap: 10px;
  }

  .toggle-switch {
    padding: 1px 0;
  }

  .toggle-label {
    font-size: 13px;
  }

  .toggle-slider {
    width: 42px;
    height: 24px;
  }

  .toggle-slider::after {
    width: 18px;
    height: 18px;
    top: 2px;
    left: 2px;
  }

  .toggle-switch input:checked + .toggle-slider::after {
    transform: translateX(18px);
  }
}

/* ========================================
   АДАПТИВ
   ======================================== */

@media (max-width: 480px) {
  .filter-toggle-group {
    gap: 12px;
    flex-wrap: wrap;
  }

  .toggle-slider {
    width: 36px;
    height: 20px;
  }

  .toggle-slider::after {
    width: 16px;
    height: 16px;
  }

  .toggle-switch input:checked + .toggle-slider::after {
    transform: translateX(16px);
  }

  .toggle-label {
    font-size: 13px;
  }
}
/* ========================================
   АДАПТИВ
   ======================================== */

@media (max-width: 820px) {
  .filter-sidebar {
    flex: 1 1 auto;
    width: 100%;
    padding-right: 0;
  }

  .filter-tags {
    gap: 4px;
  }

  .filter-tag {
    font-size: 12px;
    padding: 4px 12px;
  }

  .filter-row {
    gap: 6px;
  }

  .filter-checkbox-group {
    flex-direction: row;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .filter-sidebar {
    padding: 0;
  }

  .filter-group label {
    font-size: 13px;
  }

  .filter-input,
  .filter-select {
    padding: 8px 10px;
    font-size: 13px;
  }

  .filter-checkbox-group {
    flex-direction: column;
    gap: 6px;
  }

  .filter-tags {
    gap: 4px;
  }
}

    /* ---------- Правая часть (результаты) ---------- */
    .catalog-results {
      flex: 1;
      min-width: 0;
    }

    .catalog-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 20px;
    }

    .catalog-header h1 {
      font-size: 28px;
      font-weight: 700;
      color: #1a1a2e;
      margin: 0;
    }

    .catalog-header .found-count {
      font-size: 15px;
      color: #5a6874;
    }

    .catalog-header .sort-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .catalog-header .sort-wrap span {
      font-size: 14px;
      color: #5a6874;
    }

    .sort-select {
      padding: 8px 16px;
      border: 1px solid #e5e7eb;
      border-radius: 30px;
      background: #fff;
      font-size: 14px;
      color: #1a1a2e;
      outline: none;
      cursor: pointer;
    }
/* ----- ЗАГОЛОВОК СТРАНИЦЫ (на всю ширину) ----- */
.page-header {
  padding: 24px 0 28px;
  margin-bottom: 8px;

}

.page-title {
  font-size: 35px;
  font-weight: 700;
  color: #1A2B4C;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.page-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 12px;
  font-size: 15px;
}

.page-meta__count {
  font-weight: 600;
  color: #1a1a2e;
}

.page-meta__location {
  color: #5a6874;
}

.page-description {
  font-size: 17px;
  color: #1A2B4C;
  
  margin: 0;
 
}
    /* ---------- Сетка карточек ---------- */
    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }

    .catalog-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      transition: box-shadow 0.25s ease, transform 0.25s ease;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
    }

    .catalog-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
      transform: translateY(-4px);
    }

  

    .catalog-card-img img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .catalog-card-body {
      padding: 14px 16px 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .catalog-card-name {
      font-size: 15px;
      font-weight: 600;
      color: #2E333D;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .catalog-card-price {
      font-size: 22px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px;
    }

    .catalog-card-price small {
      font-size: 14px;
      font-weight: 400;
      color: #888;
      margin-left: 4px;
    }

    .catalog-card-actions {
      display: flex;
      gap: 8px;
      margin-top: auto;
    }

    .btn-catalog {
      flex: 1;
      padding: 10px 0;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.2s;
      text-align: center;
    }

    .btn-catalog-primary {
      background: linear-gradient(to bottom, #FFBB00, #FF5900);
      color: #fff;
    }

    .btn-catalog-primary:hover {
      opacity: 0.85;
    }

    .btn-catalog-outline {
      background: transparent;
      border: 1.5px solid #d0d5dd;
      color: #2E333D;
    }

    .btn-catalog-outline:hover {
      border-color: #F5A623;
      color: #F5A623;
    }

    /* ---------- Пагинация ---------- */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin: 30px 0 20px;
    }

    .pagination a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      border-radius: 30px;
      border: 1px solid #e5e7eb;
      background: #fff;
      color: #2E333D;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.2s;
      text-decoration: none;
    }

    .pagination a.active {
      background: linear-gradient(to bottom, #FFBB00, #FF5900);
      border-color: #F5A623;
      color: #fff;
    }

    .pagination a:hover:not(.active) {
      border-color: #F5A623;
      color: #F5A623;
    }

    /* ---------- Адаптив ---------- */
    @media (max-width: 1200px) {
      .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .filter-sidebar {
        flex: 0 0 240px;
      }
    }

    @media (max-width: 992px) {
      .catalog-layout {
        flex-direction: column;
      }
      .filter-sidebar {
        flex: 1 1 auto;
        width: 100%;
        position: relative;
        top: 0;
      }
      .filter-row {
        flex-wrap: wrap;
      }
      .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .catalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .catalog-card-img {
        height: 120px;
      }
      .catalog-card-price {
        font-size: 18px;
      }
      .btn-catalog {
        font-size: 11px;
        padding: 8px 0;
      }
      .filter-sidebar {
        padding: 16px;
      }
    }
	
/* ========================================
   ПРАВАЯ ЧАСТЬ — РЕЗУЛЬТАТЫ
   ======================================== */

.catalog-results {
  flex: 1;
  min-width: 0;
}

/* ========================================
   РЕЗУЛЬТАТЫ — СОРТИРОВКА
   ======================================== */

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
}

.results-found {
  font-size: 16px;
  color: #5a6874;
}

.results-found strong {
  color: #1a1a2e;
  font-weight: 700;
}

/* ----- КНОПКА СОРТИРОВКИ С ВЫПАДАЮЩИМ СПИСКОМ ----- */
.results-sort {
  position: relative;
  display: inline-block;
}

.sort-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 0px solid #e8edf2;
  border-radius: 30px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  min-width: 180px;
  justify-content: space-between;
}

.sort-dropdown:hover {
  border-color: #b0b8c0;
  background: #f8f9fb;
}

.sort-dropdown:focus {
  outline: none;
  border-color: #1a1a2e;
  
}

.sort-dropdown svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.sort-dropdown.active svg {
  transform: rotate(180deg);
}

/* ----- ВЫПАДАЮЩЕЕ МЕНЮ ----- */
.sort-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}

.sort-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sort-menu li {
  padding: 10px 18px;
  font-size: 14px;
  color: #5a6874;
  cursor: pointer;
  transition: all 0.15s ease;
}

.sort-menu li:hover {
  background: #f5f7fa;
  color: #1a1a2e;
}

.sort-menu li.active {
  color: #1a1a2e;
  font-weight: 600;
  background: #f5f7fa;
}

.sort-menu li.active::after {
  content: "✓";
  float: right;
  color: #1a1a2e;
}

/* ========================================
   АДАПТИВ
   ======================================== */

@media (max-width: 576px) {
  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .results-found {
    font-size: 14px;
  }

  .sort-dropdown {
    font-size: 13px;
    padding: 6px 14px;
    min-width: 160px;
  }

  .sort-menu {
    min-width: 190px;
    right: 0;
    left: auto;
  }

  .sort-menu li {
    font-size: 13px;
    padding: 8px 14px;
  }
}
/* ----- ФИЛЬТРЫ-ТЕГИ (горизонтальные) ----- */
.filter-tags-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8edf2;
}

.filter-tags-row .filter-tag {
  padding: 6px 16px;
     border: 0px solid;
  border-radius: 20px;
  font-size: 13px;
  color: #fff;
  background: #727C83;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-tags-row .filter-tag:hover {
   background: #96a4ae;
  color: #fff;
}

.filter-tags-row .filter-tag--active {
  background: #727C83;
  color: #fff;
      border: 0px solid;
}

.filter-tags-row .filter-tag--active:hover {
  background: #727C83; color: #fff;
      border: 0px solid;      

}

/* Кнопка "Сравнить" в строке тегов */
.filter-compare-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px dashed #dce0e5;
  border-radius: 20px;
  background: transparent;
  color: #5a6874;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  margin-left: auto;
}

.filter-compare-btn:hover {
  border-color: #1a1a2e;
  color: #1a1a2e;
  background: #f5f7fa;
}

.filter-compare-btn svg {
  flex-shrink: 0;
}

/* ----- СЕТКА КАРТОЧЕК ----- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* Карточка товара */
.catalog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f2f5;
}

.catalog-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.catalog-card-img {
 height: 180px;
    overflow: hidden;
    
}

.catalog-card-img img {
     width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;border-radius:15px;
}

/* Бейдж статуса на карточке */
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.card-badge--stock {
  background: #2e7d32;
}

.card-badge--order {
  background: #e65100;
}

.catalog-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card-name {
  font-size: 15px;
  font-weight: 600;
  color: #2E333D;
  margin-bottom: 6px;
  line-height: 1.3;
}

.catalog-card-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
      justify-content: space-between;
}

.price-current {
  font-size: 25px;
  font-weight: 700;
  color: #2E333D;
}

.price-old {
  font-size: 15px;
  color:#727C83;
  text-decoration: line-through;
}

.catalog-card .btn-orange {
  width: 100%;
    font-size: 17px;
    padding: 20px 10px;
}

.btn-detail:hover {
  background: #1a1a2e;
  color: #fff;
}

/* ========================================
   КНОПКА "ПОКАЗАТЬ ЕЩЕ"
   ======================================== */

.show-more-wrapper {
  width: 100%;
  margin-bottom: 24px;
}

.btn-show-more {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid #2E333D;
  border-radius: 12px;
  background: #f8f9fb;
  color: #2E333D;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-show-more:hover {
  background: #f0f2f5;
  border-color: #2E333D;
}

.btn-show-more:active {
  transform: scale(0.98);
}

/* ========================================
   АДАПТИВ
   ======================================== */

@media (max-width: 576px) {
  .btn-show-more {
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 10px;
  }

  .show-more-wrapper {
    margin-bottom: 16px;
  }
}}




/* ========================================
   АДАПТИВ
   ======================================== */

@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .filter-tags-row {
    gap: 6px;
  }

  .filter-tags-row .filter-tag {
    font-size: 12px;
    padding: 4px 12px;
  }

  .filter-compare-btn {
    font-size: 12px;
    padding: 4px 10px;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .catalog-grid {
    grid-template-columns: 1fr ;
    gap: 12px;
  }

  .catalog-card-img {
    height: 220px;
    padding: 8px;
  }

  .catalog-card-name {
    font-size: 13px;
  }

  .price-current {
    font-size: 16px;
  }

  .price-old {
    font-size: 12px;
  }

  .btn-detail {
    font-size: 12px;
    padding: 8px;
  }

  .results-found {
    font-size: 14px;
  }

  .results-sort {
    font-size: 13px;
  }

  .filter-tags-row {
    gap: 4px;
    padding-bottom: 12px;
  }

  .filter-tags-row .filter-tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .filter-compare-btn {
    font-size: 11px;
    padding: 3px 8px;
  }

  .pagination a {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* ========================================
   КАРТОЧКА ТОВАРА
   ======================================== */

.product-card-section {
  padding: 20px 0 40px;
}

.product-card {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* ----- ЛЕВАЯ КОЛОНКА: ГАЛЕРЕЯ ----- */
.product-gallery {
  flex: 0 0 45%;
}

.product-image-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f9fb;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.product-badge--stock {
  background: #2e7d32;
}

.product-badge--order {
  background: #e65100;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product-thumbnails img {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: #f8f9fb;
}

.product-thumbnails img:hover {
  border-color: #dce0e5;
}

.product-thumbnails img.active {
  border-color: #1a1a2e;
}

/* ----- ПРАВАЯ КОЛОНКА: ИНФОРМАЦИЯ ----- */
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.2;
}

/* Мета: локация + теги */
.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.product-location {
  font-size: 14px;
  color: #5a6874;
}

.product-tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.product-tag--nav {
  background: #e3f2fd;
  color: #1565c0;
}

.product-tag--docs {
  background: #e8f5e9;
  color: #2e7d32;
}

.product-tag--warranty {
  background: #fff3e0;
  color: #e65100;
}

/* Цены */
.product-prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 12px 0 4px;
}

.product-price-current {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
}

.product-price-old {
  font-size: 18px;
  color: #b0b8c0;
  text-decoration: line-through;
}

.product-price-month {
  font-size: 16px;
  color: #5a6874;
  font-weight: 500;
}

/* Кнопки Кредит / Лизинг */
.product-finance {
  display: flex;
  gap: 10px;
}

.btn-finance {
  padding: 8px 24px;
  border: 1.5px solid #dce0e5;
  border-radius: 30px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #5a6874;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-finance:hover {
  border-color: #b0b8c0;
  color: #1a1a2e;
}

.btn-finance--credit {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}

.btn-finance--credit:hover {
  background: #2a2a4e;
  border-color: #2a2a4e;
  color: #fff;
}

/* Основные кнопки */
.product-actions {
  display: flex;
  gap: 10px;
}

.btn-primary {
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-book {
  background: linear-gradient(to bottom, #FFBB00, #FF5900);
  color: #fff;
  flex: 1;
}

.btn-book:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 14px 28px;
  border: 1.5px solid #dce0e5;
  border-radius: 30px;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-calc {
  flex: 1;
}

.btn-calc:hover {
  border-color: #1a1a2e;
  background: #f5f7fa;
}

/* Контакты */
.product-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.contacts-label {
  font-size: 14px;
  color: #5a6874;
}

.contacts-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-chat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid #dce0e5;
  border-radius: 30px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-chat:hover {
  border-color: #1a1a2e;
  background: #f5f7fa;
}

.btn-chat svg {
  flex-shrink: 0;
}

.btn-email {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid #dce0e5;
  border-radius: 30px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-email:hover {
  border-color: #1a1a2e;
  background: #f5f7fa;
}

.btn-email svg {
  flex-shrink: 0;
}

/* Характеристики */
.product-specs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #e8edf2;
  margin-top: 4px;
}

.specs-label {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
}

.btn-specs-show {
  padding: 8px 20px;
  border: 1.5px solid #dce0e5;
  border-radius: 30px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #5a6874;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-specs-show:hover {
  border-color: #1a1a2e;
  color: #1a1a2e;
  background: #f5f7fa;
}

/* ========================================
   АДАПТИВ
   ======================================== */

@media (max-width: 992px) {
  .product-card {
    flex-direction: column;
    padding: 20px;
    gap: 24px;
  }

  .product-gallery {
    flex: 1 1 auto;
  }

  .product-image-main {
    aspect-ratio: 16/10;
  }

  .product-title {
    font-size: 24px;
  }

  .product-price-current {
    font-size: 28px;
  }

  .product-thumbnails img {
    width: 60px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .product-card {
    padding: 16px;
    border-radius: 12px;
    gap: 16px;
  }

  .product-title {
    font-size: 20px;
  }

  .product-price-current {
    font-size: 24px;
  }

  .product-price-old {
    font-size: 15px;
  }

  .product-price-month {
    font-size: 14px;
  }

  .product-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn-finance {
    padding: 6px 16px;
    font-size: 13px;
  }

  .product-meta {
    gap: 6px 8px;
  }

  .product-tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .contacts-buttons {
    flex-direction: column;
  }

  .btn-chat,
  .btn-email {
    justify-content: center;
  }

  .product-thumbnails img {
    width: 50px;
    height: 40px;
  }

  .product-specs {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .btn-specs-show {
    text-align: center;
  }
} 

/* ========================================
   КАСТОМНЫЙ ДРОПДАУН ДЛЯ ФИЛЬТРОВ
   ======================================== */

/* Триггер */
.custom-select-trigger {
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  padding-right: 35px; /* Место для шеврона */
}

.custom-select-trigger__text {
  flex: 1;
}

/* Шеврон на триггере */
.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #8a9aa8;
  border-bottom: 1.5px solid #8a9aa8;
  transform: translateY(-70%) rotate(45deg); /* Шеврон вниз */
  transition: transform 0.2s ease, border-color 0.2s ease;
  pointer-events: none;
}

/* Ховер на триггере */
.custom-select-trigger:hover::after {
  border-color: #5a6874;
}

/* Активный триггер - шеврон вверх */
.custom-select-trigger.active::after {
  transform: translateY(-30%) rotate(225deg); /* Шеврон вверх */
  border-color: #1a1a2e;
}

/* Меню в стиле sort-menu */
.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
}

.custom-select-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Элементы списка */
.custom-select-menu li {
  padding: 10px 18px;
  font-size: 14px;
  color: #5a6874;
  cursor: pointer;
  transition: all 0.15s ease;
}

.custom-select-menu li:hover {
  background: #f5f7fa;
  color: #1a1a2e;
}

.custom-select-menu li.active {
  color: #1a1a2e;
  font-weight: 600;
  background: #f5f7fa;
  position: relative;
}

.custom-select-menu li.active::after {
  content: "✓";
  float: right;
  color: #1a1a2e;
}

/* Скроллбар */
.custom-select-menu::-webkit-scrollbar {
  width: 4px;
}

.custom-select-menu::-webkit-scrollbar-track {
  background: transparent;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  background: #dce0e5;
  border-radius: 10px;
}

.custom-select-menu::-webkit-scrollbar-thumb:hover {
  background: #b0b8c0;
}

/* ========================================
   КНОПКА ОТКРЫТИЯ/ЗАКРЫТИЯ ФИЛЬТРОВ (МОБИЛЬНАЯ)
   ======================================== */

.filter-toggle-btn {
  display: none; /* Скрыта по умолчанию */
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #F5F7FA;
  color: #2E333D;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 16px;
  font-family: inherit;
  border:10px #fff solid;
}

.filter-toggle-btn:hover {
  background: #F5F7FA;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.2);
}

.filter-toggle-btn:active {
  transform: translateY(0);
}

.filter-toggle-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Иконка поворачивается когда фильтры открыты */
.filter-toggle-btn.active .filter-toggle-icon {
  transform: rotate(180deg);
}

.filter-toggle-text {
  white-space: nowrap;
}

/* ========================================
   ПОВЕДЕНИЕ САЙДБАРА НА МОБИЛЬНЫХ
   ======================================== */

@media (max-width: 767px) {
	.page-title, .page-description{text-align:Center;}
  /* Показываем кнопку */
  .filter-toggle-btn {
    display: flex;
    margin-bottom: 0;
  }
  
  /* Скрываем сайдбар по умолчанию */
  .filter-sidebar {
    display: none;
  }
  
  /* Показываем сайдбар когда он открыт */
  .filter-sidebar.visible {
    display: block;
    margin-top: 0;
  }
}
/* End */


/* Start:/local/templates/main/components/bitrix/catalog.smart.filter/.default/style.css?178763893825560*/
.bx-filter {
}

.bx-filter .bx-filter-section {
    /*background: #edf6fc; /* color */
    position    : relative;
    padding-top : 26px
}

.bx-filter .bx-filter-section > .row {
    padding : 0 5px;
}

.bx-filter .bx-filter-title {
    font-size     : 18px;
    margin-bottom : 10px;
    color         : #000;
}

/*Sections*/

.bx-filter .bx-filter-parameters-box {
    position : relative;
}

.bx-filter .bx-filter-parameters-box-title {
    font-size      : 13px;
    padding-bottom : 7px;
}

@media (min-width : 992px) {
    .bx-filter .bx-filter-section .col-md-4:nth-child(3n+1) {
        clear : both;
    }
}

@media (min-width : 768px) and (max-width : 991px) {
    .bx-filter .bx-filter-section .col-md-4:nth-child(2n+1) {
        clear : both;
    }
}

.bx-filter .bx-filter-parameters-box-title span {
    color         : #039be5;
    border-bottom : 1px solid transparent;
    cursor        : pointer;
}

.bx-filter .bx-filter-parameters-box-title span:hover {
    border-color : #039be5;
}

.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-parameters-box-title span {
    /*color: #95a1a8;*/
}

.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-parameters-box-title span:hover {
    /*color: #758087;*/
    border-color : transparent;
}

.bx-filter .bx-filter-block {
    display            : none;
    -webkit-transition : padding .3s ease;
    -moz-transition    : padding .3s ease;
    -ms-transition     : padding .3s ease;
    -o-transition      : padding .3s ease;
    transition         : padding .3s ease;
    -webkit-box-sizing : content-box;
    -moz-box-sizing    : content-box;
    box-sizing         : content-box;
}

.bx-filter .bx-filter-button-box .bx-filter-block,
.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block {
    display : block;
}

.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block i.bx-ft-sub {
    font-size      : 14px;
    font-style     : normal;
    display        : block;
    padding-bottom : 5px;
}

.bx-filter-parameters-box-container {
    padding-bottom : 20px;
}

.bx-filter-parameters-box-container .checkbox:first-child {
    margin-top : 0;
}

.bx-filter .bx-filter-parameters-box-container-block {
    font-size : 11px;
    color     : #3f3f3f;
}

/*
* INPUTS
*
*/

.bx-filter .bx-filter-input-container {
}

.bx-filter .bx-filter-input-container input {
    display       : block;
    width         : 100%;
    font-size     : 18px;
    height        : 38px;
    margin        : 0;
    padding       : 0 4px;
    border        : 1px solid #ccd5db;
    border-radius : 2px;
    background    : #fff;
    outline       : none
}

.bx-retina .bx-filter .bx-filter-input-container input {
    border-style         : solid;
    border-width         : 1px;
    -webkit-border-image : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
    -moz-border-image    : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
    -o-border-image      : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
    border-image         : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
}

/*.bx-filter .bx-filter-input-container input:focus {
	border-color: #499fd8;
}
.bx-retina .bx-filter .bx-filter-input-container input:focus {
	-webkit-border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
	   -moz-border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
		 -o-border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
			border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
}

/*
COLOR
*/
.bx-ios .bx-filter .bx-filter-input-container input {
    /* Fix of input shadow for IOS browsers. */

    background-image : -webkit-linear-gradient(#ffffff 0%, #ffffff 100%);
    background-image : linear-gradient(#ffffff 0%, #ffffff 100%);
}

.bx-filter .bx-filter-button-box {
    clear : both;
}

/*
*Track
*
*/

.bx-filter .bx-ui-slider-track-container {
    padding-top    : 35px;
    padding-bottom : 25px;
}

.bx-filter .bx-ui-slider-track {
    position : relative;
    height   : 7px;
    /*background: #d8e9f0;/* COLOR */
}

.bx-filter .bx-ui-slider-part {
    position   : absolute;
    top        : -6px;
    width      : 1px;
    height     : 17px;
    background : #a2bfc7;
}

.bx-filter .bx-ui-slider-part.p1 {
    left : -1px;
}

.bx-filter .bx-ui-slider-part.p2 {
    left : 25%;
}

.bx-filter .bx-ui-slider-part.p3 {
    left : 50%;
}

.bx-filter .bx-ui-slider-part.p4 {
    left : 75%;
}

.bx-filter .bx-ui-slider-part.p5 {
    right : -1px;
}

.bx-filter .bx-ui-slider-part span {
    font-size   : 11px;
    /*font-weight: var(--ui-font-weight-bold);*/

    position    : absolute;
    top         : -16px;
    left        : 50%;
    display     : block;
    width       : 100px;
    margin-left : -50px;
    text-align  : center;
    color       : #000;
}

.bx-filter .bx-ui-slider-part.p2 span,
.bx-filter .bx-ui-slider-part.p3 span,
.bx-filter .bx-ui-slider-part.p4 span {
    color : #6b8086;
}

.bx-filter .bx-ui-slider-range,
.bx-filter .bx-ui-slider-pricebar,
.bx-filter .bx-ui-slider-pricebar-vd,
.bx-filter .bx-ui-slider-pricebar-vn,
.bx-filter .bx-ui-slider-pricebar-v {
    position : absolute;
    top      : 0;
    bottom   : 0;
}

.bx-filter .bx-ui-slider-range {
    z-index : 50;
}

.bx-filter .bx-ui-slider-pricebar {
    z-index : 100;
}

.bx-filter .bx-ui-slider-pricebar-vd {
    z-index : 60;
    /*background: #849da4;/* COLOR */
}

.bx-filter .bx-ui-slider-pricebar-vn {
    z-index : 70;
    /*background: #a8dff3;/* COLOR */
}

.bx-filter .bx-ui-slider-pricebar-v {
    z-index : 80;
    /*background: #499fd8;/* COLOR */
}

.bx-filter .bx-ui-slider-handle {
    position      : absolute;
    top           : 100%;
    width         : 22px;
    height        : 22px;
    border-bottom : none;
}

.bx-filter .bx-ui-slider-handle:hover {
    -webkit-cursor : grab;
    -ms-cursor     : grab;
    -o-cursor      : grab;
    cursor         : grab;
}

.bx-filter .bx-ui-slider-handle:active {
    -webkit-cursor : grabbing;
    -ms-cursor     : grabbing;
    -o-cursor      : grabbing;
    cursor         : grabbing;
}

.bx-filter .bx-ui-slider-handle.left {
    left        : 0;
    margin-left : -21px;
    /* COLOR */
    /*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAArUlEQVQ4y6WSQQ6FMAhEXbjyXwzOpBdx5bXKbYRWLFSJ2m8ysVHfzGA7DH9cuKVfNwwM40ZzZzJlmE3WTjjNfF9Fn2EwMH5pUGYWOJ3w6wZ4wDKz6rUBumQPPxrUmT0IxuxpqxYLQ7MOG5TaHtbk1iza5+VauW5dfdcYSDKcMLkP7wxdA5sMQWV/BkwDTY7mtAfHjpJ/Ihj4DoIgXZ9J+siaimi6rimLgSw87qod+1BRTwMJRYoAAAAASUVORK5CIIA=) no-repeat right top;*/
}

.bx-filter .bx-ui-slider-handle.right {
    right        : 0;
    margin-right : -21px;
    /* COLOR */
    /*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAq0lEQVQ4y6WSQRKDIAxFXXSlF0vOZC+SlddKblMUUhKCraIzX9Ahj58PE268TE8e3GSFJ5BUTDskaRl1QFk8BsHs4BCMQMruVEe+l4kWglFu5yLEZKDFXyeXIFoEpg3z738mJTzXhncj75+QtqjnJENO2sG4I1VXDtR3ogv7O1dHxV10gi75EGILiE78RRKy33AOq07i+Us4kRamkOPGptesQjeXIjZjO+fXB+hjUU/S3Z+WAAAAAElFTkSuQmCC) no-repeat left top;*/
}

/*
*	Select
*
*/

.bx-filter .bx-filter-select-container {
    display            : block;
    -webkit-box-sizing : border-box;
    -moz-box-sizing    : border-box;
    box-sizing         : border-box;
    height             : 35px;
    border-radius      : 3px;
    border             : 1px solid #ccd5db;
}

.bx-retina .bx-filter .bx-filter-select-container {
    border-style         : solid;
    border-width         : 1px;
    -webkit-border-image : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
    -moz-border-image    : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
    -o-border-image      : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
    border-image         : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
}

/* COLOR */
/*.bx-filter .bx-filter-select-container.bx-active,
.bx-filter .bx-filter-select-container:focus {
	border-color: #499fd8;
}
.bx-retina .bx-filter .bx-filter-select-container.bx-active,
.bx-retina .bx-filter .bx-filter-select-container:focus {
	-webkit-border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
	   -moz-border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
		 -o-border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
			border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
}*/
.bx-filter .bx-filter-select-block {
    position           : relative;
    display            : block;
    -webkit-box-sizing : border-box;
    -moz-box-sizing    : border-box;
    box-sizing         : border-box;
    width              : 100%;
    height             : 33px;
    margin             : 0;
    padding            : 0 33px 0 10px;
    border             : none;
    border-radius      : 2px;
    background         : #fff;
}

.bx-filter .bx-filter-select-text {
    font-size         : 15px;
    line-height       : 33px;
    overflow          : hidden;
    max-width         : 100%;
    height            : 33px;
    cursor            : pointer;
    vertical-align    : middle;
    white-space       : nowrap;
    text-overflow     : ellipsis;
    -ms-text-overflow : ellipsis;
}

.bx-filter .bx-filter-select-text.fix {
    min-width : 120px;
}

.bx-filter .bx-filter-select-text label {
    cursor : pointer;
}

.bx-filter .bx-filter-select-arrow {
    position   : absolute;
    top        : 0;
    right      : 0;
    width      : 34px;
    height     : 33px;
    cursor     : pointer;
    background : url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAYAAABCxiV9AAAAG0lEQVQY02OYOXPmf1yYAQRwSsAATglkBch8ADy7LKHqFrgoAAAAAElFTkSuQmCC') no-repeat center;
}

/*
*	Select popup
*
*/

.bx-filter-select-popup {
    background : #fff;
    padding    : 0;
    min-width  : 173px;
}

.bx-filter-select-popup ul {
    margin     : 0;
    padding    : 0;
    list-style : none;
}

.bx-filter-select-popup ul li {
    display        : block;
    text-align     : left;
    vertical-align : middle;
}

.bx-filter-select-popup ul li:first-child {
    border-bottom  : 1px solid #e5e5e5;
    padding-bottom : 5px;
    margin-bottom  : 5px;
}

.bx-filter-select-popup ul li label {
    font-size          : 14px;
    line-height        : 26px;
    display            : block;
    text-align         : left !important;
    overflow           : hidden;
    -webkit-box-sizing : border-box;
    -moz-box-sizing    : border-box;
    box-sizing         : border-box;
    width              : 100%;
    height             : 26px;
    padding            : 0 5px;
    cursor             : pointer;
    vertical-align     : middle;
    white-space        : nowrap;
    text-overflow      : ellipsis;
    -ms-text-overflow  : ellipsis;
    color              : #575757;
}

.bx-filter-select-popup ul li label.selected,
.bx-filter-select-popup ul li label:hover {
    color      : #000;
    background : #f3f8fa;
}

.bx-filter-select-popup ul li label.disabled {
    color      : #b8b8b8;
    background : transparent;
}

.bx-filter-select-popup ul li .bx-filter-param-text {
    line-height : 34px !important;
}

/*
* TAGS
*
*/

.bx-filter .bx-filter-tag {
    padding : 18px;
    /*border-top: 1px solid #d7eaf7;/* COLOR */
    /*border-bottom: 1px solid #d7eaf7;/* COLOR */
}

.bx-filter .bx-tag-link {
    font-size       : 12px;
    text-decoration : none;
    /*color: #68939e;/* COLOR */
    text-shadow     : none;
}

.bx-filter .bx-tag-link.bx-active,
.bx-filter .bx-tag-link:hover {
    color : #1d3d46;
}

/*
*	LABEL
*
*/
.bx-filter .bx-filter-param-label {
    min-height  : 20px;
    font-weight : normal;
    cursor      : pointer;
}

.bx-filter .bx-filter-param-btn-inline .bx-filter-param-label {
    float        : left;
    display      : block;
    margin-right : 5px;
}

.bx-filter .bx-filter-param-btn-block .bx-filter-param-label {
    display : block;
}

.bx-filter .bx-filter-param-label {
    /*font-size: 13px;*/
}

.bx-filter .bx-filter-param-label.dib {
    display : inline-block;
}

.bx-filter .bx-filter-param-text {
    font-weight : normal;
}

.bx-filter .bx-filter-param-label.disabled .bx-filter-param-text {
    color : #6c6c6c;
}

.bx-filter-select-popup .bx-filter-param-label.bx-active {
    background : #f3f8fa;
}

/*
*	Checkbox / Radio
*
*/

.bx-filter .bx-filter-input-checkbox {
}

.bx-filter .bx-filter-input-checkbox input[type=radio],
.bx-filter .bx-filter-input-checkbox input[type=checkbox] {
}

.bx-filter .bx-filter-input-checkbox .bx-filter-param-text {
    display    : block;
    text-align : left;
}

/*
* 	BTN
*
*/

.bx-filter .bx-filter-param-btn {
    font-weight        : normal;
    display            : inline-block;
    width              : 38px;
    height             : 38px;
    padding            : 6px;
    text-align         : center;
    text-decoration    : none;
    color              : #000;
    vertical-align     : middle;
    border             : 1px solid #ccd5db;
    border-radius      : 2px;
    background         : #fff;
    position           : relative;
    -webkit-transition : border .3s ease, box-shadow .1s ease, color .3s ease;
    -moz-transition    : border .3s ease, box-shadow .1s ease, color .3s ease;
    -ms-transition     : border .3s ease, box-shadow .1s ease, color .3s ease;
    -o-transition      : border .3s ease, box-shadow .1s ease, color .3s ease;
    transition         : border .3s ease, box-shadow .1s ease, color .3s ease;
    cursor             : pointer;
}

.bx-retina .bx-filter .bx-filter-param-btn {
    border-style         : solid;
    border-width         : 1px;
    -webkit-border-image : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
    -moz-border-image    : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
    -o-border-image      : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
    border-image         : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
}

/* COLOR */
/*.bx-filter .bx-filter-param-label.bx-active .bx-filter-param-btn,
.bx-filter .bx-filter-param-btn:hover,
.bx-filter .bx-filter-param-btn:active,
.bx-filter .bx-filter-param-btn:focus {
	border-color: #499fd8;
}
.bx-retina .bx-filter .bx-filter-param-label.bx-active .bx-filter-param-btn,
.bx-retina .bx-filter .bx-filter-param-btn:hover,
.bx-retina .bx-filter .bx-filter-param-btn:active,
.bx-retina .bx-filter .bx-filter-select-container:focus {
	-webkit-border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
	   -moz-border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
		 -o-border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
			border-image: url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
}*/
/* --- colors */
.bx-filter .bx-filter-param-btn.bx-color-sl {
}

.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl {
    background : transparent;
    box-shadow : none
}

.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl {
    position : relative;
}

.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl:before {
    position   : absolute;
    bottom     : 0;
    right      : 0;
    top        : 0;
    left       : 0;
    content    : ' ';
    display    : block;
    z-index    : 100;
    background : url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAA/UlEQVQ4y5WSQQ6CQAxFOSBuwAtoAitc4R6MkKgYJULUi8Ax4DgKm9o/45BxBBNJmkB/33T6qUVEHkfDUXHY1sQD7V2DWg+JJox3lOZ3enYdf5IzAjnQkvxGa64Fg2S9PV3JXa4ozoovWEGbY0nOIqDkfIVeQ5hBAOQsAy5guO8FbEJxVqqDZ+rUuQ6rziJ3VLkBcs05BBxlF1nIADrJESYgE0YhAER0KH5DphEKFDNPuG1AhTAi4jnRWV17FNYhcT3NHLzLzuUnjI0YHP203EWY8ENqNsAq5Y3Qf4NuhIT7wTBsDxgIbRjvCfCUe6ozoFCuXIukj5c/lhy1/gvSDM3b8PrjegAAAABJRU5ErkJggg==") no-repeat center;
    opacity    : .7;
}

.bx-filter .bx-filter-param-btn .bx-filter-param-text {
    line-height : 26px;
}

/*
* BTN P/M
*
*/

.bx-filter .bx-filter-param-btn.bx-spm {
    width            : 23px;
    min-width        : 23px;
    height           : 23px;
    line-height      : 23px;
    font-weight      : normal;
    padding          : 0;
    font-size        : 17px;
    color            : #767b7e;
    vertical-align   : top;
    border-radius    : 50%;
    background-color : transparent;
}

.bx-filter .bx-filter-param-btn.bx-spm.bx-plus {
    background : url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAANUlEQVQoz2NgwAQsQMzJQCSwAeKGQa7YFKoAhmOgim3QsAxIcSFUkhC2GaqhgQ4UgNgFmwQAij8OUFmBFssAAAAASUVORK5CIIA=") no-repeat center;
}

.bx-filter .bx-filter-param-btn.bx-spm.bx-minus {
    background : url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAACCAYAAABhYU3QAAAAG0lEQVQYV2NgYGDgBuI4AlgGiBn4gLicAFYGAAFkBwE95V42AAAAAElFTkSuQmCC") no-repeat center;
}

.bx-filter .bx-filter-param-btn.bx-spm:active {
    outline    : none !important;
    box-shadow : inset 0 2px 3px rgba(0, 0, 0, .12);
}

.bx-filter span.bx-spm {
    font-size      : 18px;
    /*font-weight:var(--ui-font-weight-bold);*/

    line-height    : 23px;
    display        : inline-block;
    height         : 23px;
    margin         : 0 10px;
    vertical-align : middle;
    color          : #000;
}

/*
*	icon
*
*/

.bx-filter-select-popup .bx-filter-select-text-icon,
.bx-filter .bx-filter-select-text-icon {
    line-height    : 33px;
    position       : relative;
    display        : inline-block;
    width          : 23px;
    height         : 23px;
    margin-top     : -4px;
    margin-right   : 2px;
    vertical-align : middle;
    border-radius  : 2px;
}

.bx-filter-select-popup .bx-filter-btn-color-icon,
.bx-filter .bx-filter-btn-color-icon {
    line-height             : 24px;
    /*position:relative;*/
    /*top:4px;*/

    border-radius           : 2px;
    display                 : inline-block;
    width                   : 24px;
    height                  : 24px;
    vertical-align          : middle;
    box-shadow              : inset 0 0 0 1px rgba(0, 0, 0, .05);
    -webkit-background-size : cover;
    background-size         : cover;
}

.bx-filter-select-popup .bx-filter-btn-color-icon {
    width  : 20px;
    height : 20px;
    margin : 2px 0;
    top    : 0 !important;
}

.bx-filter .bx-filter-select-block .bx-filter-btn-color-icon {
    top : -1px !important;
}

.bx-filter-btn-color-icon.all {
    position   : relative;
    border     : none;
    box-shadow : none
}

.bx-filter-btn-color-icon.all:after,
.bx-filter-btn-color-icon.all:before {
    position   : absolute;
    width      : 60%;
    height     : 60%;
    background : #fff;
    content    : " ";
    box-shadow : inset 0 0 0 1px rgba(0, 0, 0, .2);
}

.bx-filter-btn-color-icon.all:after {
    right  : 0;
    bottom : 0;
}

.bx-filter-btn-color-icon.all:before {
    top  : 0;
    left : 0;
}

.bx-filter .bx-filter-param-label.disabled .bx-filter-btn-color-icon {
    opacity : .2;
}

/*
* 	BIZ
*
*/

.bx-filter .bx-filter-parameter-biz {
    font-size       : 14px;
    line-height     : 15px;
    display         : inline-block;
    margin-right    : 10px;
    text-decoration : none;
    color           : #1485ce;
    border-bottom   : 1px dashed;
}

.bx-filter .bx-filter-parameter-biz:hover {
    text-decoration : none;
    border-bottom   : 1px solid;
}

.bx-filter .bx-filter-parameter-biz.bx-active {
    position     : relative;
    /*padding-left:20px;*/

    color        : #000;
    border-color : transparent;
}

/*
*	BTN result and reset
*
*/

.btn-themes {
    /*background-color: #1485CE;/* COLOR */
    /*border-color: #1485CE;/* COLOR */
    color : #FFF
}

.btn-themes.bx-active,
.btn-themes.focus,
.btn-themes:active,
.btn-themes:focus,
.btn-themes:hover {
    /*background-color: #53A4D8;/* COLOR */
    /*border-color: #53A4D8;/* COLOR */
    color : #FFF
}

/*
* 	Result Popup
*
*/

.bx-filter .bx-filter-popup-result {
    font-size    : 13px;
    font-weight  : normal;
    position     : absolute;
    z-index      : 915;
    display      : none;
    line-height  : normal;
    margin-top   : -7px;
    margin-left  : 10px;
    padding      : 0 10px;
    white-space  : nowrap;
    color        : #3f3f3f;
    min-height   : 37px;
    line-height  : 18px;
    border-style : solid;
    border       : 1px solid #C6DCE7;
}

.bx-filter .bx-filter-popup-result.left {
    border-width         : 2px 10px 2px 2px;
    -webkit-border-image : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/result_popup_left.png) 4 20 4 4 repeat;
    -moz-border-image    : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/result_popup_left.png) 4 20 4 4 repeat;
    -o-border-image      : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/result_popup_left.png) 4 20 4 4 repeat;
    border-image         : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/result_popup_left.png) 4 20 4 4 fill repeat;
}

.bx-filter .bx-filter-popup-result.right {
    border-width         : 2px 2px 2px 10px;
    -webkit-border-image : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/result_popup_right.png) 4 4 4 20 repeat;
    -moz-border-image    : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/result_popup_right.png) 4 4 4 20 repeat;
    -o-border-image      : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/result_popup_right.png) 4 4 4 20 repeat;
    border-image         : url(/local/templates/main/components/bitrix/catalog.smart.filter/.default/images/result_popup_right.png) 4 4 4 20 fill repeat;
}

.bx-filter .bx-filter-popup-result.right {
    left : 97%;
}

.bx-filter .bx-filter-popup-result.left {
    right : 97%;
}

.bx-filter-horizontal .bx-filter-popup-result {
    display  : inline-block;
    position : relative;
    left     : auto;
    right    : auto;
    bottom   : -7px;
}

.bx-filter .bx-filter-popup-result a {
    color       : #0073a3;
    line-height : 10px;
}

.bx-filter .bx-filter-popup-result a:hover {
    text-decoration : none;
}

.bx-filter .bx-filter-popup-result-close {
    display : none;
}

@media (max-width : 767px) {
    .bx-filter-container-modef {
        position : relative;
        display  : block;
    }

    .bx-touch .bx-filter .bx-filter-popup-result {
        position    : relative;
        z-index     : 1001;
        top         : inherit;
        right       : inherit !important;
        bottom      : inherit;
        left        : inherit;
        margin-top  : inherit;
        margin-left : 0;
        width       : auto;
        height      : auto;
        transform   : none;
        min-height  : fit-content;
        box-shadow  : none;
        text-align  : right;
        width       : 100%;
        padding     : 0;

    }

    .bx-touch .bx-filter .bx-filter-popup-result br {
        display : none;
    }

    .bx-filter .bx-filter-popup-result .arrow {
        display : none;
    }
}


.bx-filter .bx-filter-select-container {
    cursor        : pointer;
    user-select   : none;
    position      : relative;
    z-index       : 10;
    display       : flex;
    align-items   : center;

    width         : 100%;
    border        : 1px solid #e8edf2;
    border-radius : 10px;
    font-size     : 14px;
    color         : #8a9aa8;
    background    : #f8f9fb;
    appearance    : none;
    transition    : border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing    : border-box;
    padding-right : calc(var(--bs-gutter-x) * 0.5);
    padding-left  : calc(var(--bs-gutter-x) * 0.5);
}

.bx-filter .bx-filter-select-arrow,
.bx-filter .bx-filter-select-block {
    background : transparent !important;;
}

.bx-filter .bx-filter-select-arrow::after {
    content        : "";
    position       : absolute;
    right          : 16px;
    top            : 50%;
    width          : 7px;
    height         : 7px;
    border-right   : 1.5px solid #8a9aa8;
    border-bottom  : 1.5px solid #8a9aa8;
    transform      : translateY(-70%) rotate(45deg);
    transition     : transform 0.2s ease, border-color 0.2s ease;
    pointer-events : none;

}

.popup-window {

    padding       : 8px 0;
    margin        : 0;
    list-style    : none;
    background    : #fff;
    border        : 1px solid #e8edf2;
    border-radius : 12px;
    box-shadow    : 0 8px 32px rgba(0, 0, 0, 0.10);
    /* opacity: 0; */
    /* visibility: hidden; */
    transform     : translateY(-8px);
    transition    : opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index       : 1000;
    max-height    : 250px;
    overflow-y    : auto;
}

.bx-filter-select-popup ul li {
    padding    : 10px 8px;
    font-size  : 14px;
    color      : #5a6874;
    cursor     : pointer;
    transition : all 0.15s ease;
}

.bx-filter-select-popup ul li label {
    font-size   : 14px;
    line-height : 1;
    width       : 100%;
    height      : auto;
    padding     : 0;
    color       : #575757;
    font-weight : normal;
}

.bx-filter-parameters-box-container {
    display         : flex;
    gap             : 10px;
    align-items     : center;
    justify-content : center;
}

.bx-filter .bx-filter-select-container {
    height  : auto;
    padding : 12px 10px;
}

.bx-filter-parameters-box-container {
    padding-bottom : 0;
}

.bx-filter .bx-filter-popup-result {
    border        : none;
    right         : 0;
    transform     : translateX(100%);
    background    : #fff;
    top           : 24px;

    border-radius : 16px;
    box-shadow    : 0 8px 32px rgba(0, 0, 0, 0.10);
    padding       : 6px 15px;
}

.bx-filter .bx-filter-popup-result a {
    color : #ff7a00;
}

.bx-filter-select-popup ul li {
    padding : 0;
}

.bx-filter-select-popup ul li label {
    padding     : 10px 8px;
    overflow    : visible;
    white-space : normal;
    line-height : 1.2;
}

.popup-window {
    margin : 17px 0 0 -10px;
    width  : 240px;
}

.toggle-switch input:not(:checked) + .toggle-slider {
    background : #727c8366;
}

@media (max-width : 480px) {
    .bx-filter .bx-filter-select-container {
        padding   : 8px 10px;
        font-size : 13px;
    }

    .bx-filter .bx-filter-select-block {
        height : auto;
        padding: 0 33px 0 0px;
    }

    .bx-filter .bx-filter-select-text {
        font-size   : 13px;
        line-height : 1.2;
        height      : auto;
    }.bx-filter .bx-filter-select-arrow {
         position: absolute;
         top: -9px;}
}


.head{
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 400;
    transition: font-weight 0.2s;
text-align: left}

/* End */


/* Start:/local/templates/main/components/codeblogpro/sort.panel/.default/style.css?178643826244*/
.sort-menu.open {
    padding-left: 0;
}

/* End */


/* Start:/local/templates/main/components/bitrix/catalog.section/.default/style.css?17864382623808*/
@media (min-width: 1200px){
	/*lg*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6  > .row > .col-md-4:nth-child(3n+1),
	.product-item-list-col-6-1 > .col-sm-6  > .row > .col-md-4:nth-child(3n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (min-width: 992px) and (max-width:1199px){
	/*md*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
	.product-item-list-col-6-1 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (min-width: 768px) and (max-width: 991px){
	/*sm*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (max-width: 767px){
	/*xs*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}

.catalog-section-header{
	font-size:14px;
	font-weight: bold;
	text-align: left;
	margin:5px 0;
	padding:5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}

.row::before {
	display: initial;
}
/* End */


/* Start:/local/templates/main/components/bitrix/catalog.section/.default/themes/yellow/style.css?1786438262854*/
/* catalog.section */

/*
#f4b236
#f6c042
#f7c95e
#f9d857
*/

/* Slider */
.bx-yellow .product-item-image-slider-progress-bar { background-color: #f9a91d;}
.bx-yellow .product-item-image-slider-control:hover{ background-color: rgba(249,169,29,.8);}
.bx-yellow .product-item-image-slider-control.active,
.bx-yellow .product-item-image-slider-control:hover{ background-color: #f9a91d;}

/* SCU */
.bx-yellow .product-item-scu-item-text-block:hover,
.bx-yellow .product-item-scu-item-color-block:hover,
.bx-yellow .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,
.bx-yellow .product-item-scu-item-color-container.selected .product-item-scu-item-color-block{ outline-color: #f4b236;}

/* Amount */
.bx-yellow .product-item-amount-field:focus{border-color: #f4b236;}


.bx-yellow .catalog-section-header{border-color:#f4b236;}
/* End */
/* /local/templates/main/components/bitrix/catalog/catalog/style.css?178643826256 */
/* /css/catalog.css?178643826234004 */
/* /local/templates/main/components/bitrix/catalog.smart.filter/.default/style.css?178763893825560 */
/* /local/templates/main/components/codeblogpro/sort.panel/.default/style.css?178643826244 */
/* /local/templates/main/components/bitrix/catalog.section/.default/style.css?17864382623808 */
/* /local/templates/main/components/bitrix/catalog.section/.default/themes/yellow/style.css?1786438262854 */
