.fd-catalog-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.fd-filter {
  border: 1px solid #dbc9bd;
  background: #fff;
  color: #6b3724;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.fd-filter.is-active {
  background: #6b3724;
  color: #fff;
  border-color: #6b3724;
}
.fd-catalog-panel { display: none; }
.fd-catalog-panel.is-active { display: block; }
.fd-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.fd-product-card {
  background: #fff;
  border: 1px solid #eadfd6;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(47, 27, 18, .06);
}
.fd-product-image-wrap { aspect-ratio: 1 / 1; background: #f3e5d7; }
.fd-product-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.fd-product-content { padding: 18px; }
.fd-product-content h3 {
  margin: 0 0 8px;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.15;
}
.fd-product-content p {
  margin: 0 0 14px;
  color: #6d584d;
  min-height: 48px;
}
.fd-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.fd-product-btn {
  background: #6b3724;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}
@media (max-width: 980px) {
  .fd-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .fd-product-grid { grid-template-columns: 1fr; }
}
