/* Основные стили каталога */
.catalog-page {
  background-color: #f8f9fa;
}

.catalog-header {
  background:
  linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
  url('/img/catalog-banner.webp') no-repeat center center/cover;
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Карточка фильтров */
.filters-card {
  position: sticky;
  top: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.filter-group {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group h6 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Специфичные стили карточки товара */
.product-card .price {
  font-size: 1.2rem;
}

/* Адаптивность */
@media (max-width: 991.98px) {
  .filters-card {
  position: static;
  margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .product-card .card-img-top {
  height: 150px;
  }
}