.zs-filter-group {
  margin-bottom: 16px;
}

.zs-filter-group.zs-hidden {
  display: none;
}

.zs-filter-label {
  font-weight: 600;
  margin-bottom: 6px;
}

.zs-filter-hint {
  font-weight: 400;
  font-size: 13px;
  color: #777;
  margin-left: 6px;
}

/* === кнопки === */

.zs-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  opacity: 0;
  transition: opacity .25s ease;
}

.zs-filter-buttons.is-ready {
  opacity: 1;
}

.zs-filter-buttons button {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 10px;
  border: 1px solid #ccc;
  background: #f6f6f6;
  color: #333;

  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  line-height: 1;
}

.zs-filter-buttons button:hover {
  background: #eee;
}

.zs-filter-buttons button.active {
  background: #1c2c4c;
  color: #fff;
  border-color: #1c2c4c;
}

.zs-filter-buttons button.disabled {
  opacity: .4;
  pointer-events: none;
}

/* === бренды как в расходке === */

.zs-brand-btn .zs-brand-icon {
  height: 16px;
  width: auto;
  margin-right: 4px;
  object-fit: contain;
}

/* =========================
   СКРЫВАЕМ КОЛОНКИ ТАБЛИЦЫ
   (ТОЛЬКО ВИЗУАЛЬНО)
   ========================= */

/* Назначение (4 колонка) */
#tablepress-40 th:nth-child(4),
#tablepress-40 td:nth-child(4),
#tablepress-40 col:nth-child(4) {
  display: none !important;
  visibility: collapse;
}

/* Тип запчасти (5 колонка) */
#tablepress-40 th:nth-child(5),
#tablepress-40 td:nth-child(5),
#tablepress-40 col:nth-child(5) {
  display: none !important;
  visibility: collapse;
}


/* Таблица скрыта до готовности DataTables */
.tablepress {
  opacity: 0;
  transition: opacity .15s ease;
}

/* Когда готово — показываем */
.tablepress.is-ready {
  opacity: 1;
}