/* ======= Хлебные крошки (современный микс) ======= */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 30px;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fafafa, #fff);
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.3px;
}

.breadcrumbs a {
  color: #333;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.breadcrumbs a:hover {
  background-color: #f3f3f3;
  color: #000;
}

.breadcrumbs span {
  color: #999;
  font-weight: 500;
  margin: 0 6px;
}


.catalog-wrapper {
  display: flex;
  gap: 20px;
}
.catalog-filters {
  position: sticky;
  top: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.catalog-filters button {
  margin: 6px 6px 6px 0;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #ccc;
  background: #f2f2f2;
  cursor: pointer;
  transition: 0.3s;
}

.catalog-filters button.active {
  background: #ff5a00;
  color: #fff;
  border-color: #ff5a00;
}


.catalog-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.catalog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.catalog-card:hover img {
  transform: scale(1.05);
}

.catalog-card h4 {
  font-size: 18px;
  margin: 12px 0 8px;
  color: #222;
}

.catalog-card p {
  font-size: 14px;
  color: #555;
  flex: 1;
}

.catalog-card .btn-more {
  margin-top: 10px;
  padding: 10px;
  background: #ff5a00;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.catalog-card .btn-more:hover {
  background: #e04e00;
}

.catalog-switcher a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  margin-right: 10px;
  border: 1px solid #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.catalog-switcher a.active {
  background: #ff5a00;
  color: #fff;
  border-color: #ff5a00;
}

#resetFilters {
  margin-top: 15px;
  padding: 8px 12px;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}
