.catalog-hero {
  padding: 140px 0 80px;
  background-size: cover;
  background-position: center;
}
.catalog-hero .section-title h1 {
  color: var(--white);
}
.catalog-hero .section-title p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.catalog-section {
  padding: 80px 0 120px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.catalog-card {
  grid-column: span 4;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
@media (max-width: 1199px){ .catalog-card{ grid-column: span 6; } }
@media (max-width: 575px){ .catalog-card{ grid-column: span 12; } }

.catalog-card .thumb img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.catalog-card .content{ padding: 18px; }
.catalog-card .content h5{ margin-bottom: 0; }
.catalog-card .content-header{ display:flex; align-items:center; justify-content:space-between; gap: 10px; margin-bottom: 8px; }
.catalog-card .price-badge{ display:inline-block; padding:8px 12px; border-radius:999px; background: var(--theme); color:#fff; font-weight:700; font-size:14px; line-height:1; white-space: nowrap; }
.catalog-card .meta{ display:flex; align-items:center; gap:14px; color: var(--text); font-size: 14px; }
.catalog-card:hover{ transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }

.catalog-filters{ margin-bottom: 24px; display:flex; gap:10px; flex-wrap: wrap; }
.catalog-filters .chip{ border:1px solid var(--border); padding:10px 16px; border-radius: 999px; background:#fff; font-weight:600; cursor:pointer; }
.catalog-filters .chip.active{ background: var(--theme); color:#fff; border-color: var(--theme); }


