
.product-listing .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-btn {
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 12px;
}

.filter-btn.active,
.filter-btn:hover {
  color: #090909;
  background: var(--gold);
  border-color: var(--gold);
}

.catalog-card .catalog-media {
  height: 300px;
  display: grid;
  place-items: center;
  padding: 26px;
  background: #0e0e0e;
}

.catalog-media img {
  max-height: 250px;
  width: auto;
  object-fit: contain;
}

.catalog-body { padding: 28px; }

.catalog-body small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}

.catalog-body h3 {
  margin: 9px 0 12px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.catalog-body p { font-size: 14px; }

.detail-media {
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: linear-gradient(150deg, #141414, #0b0b0b);
}

.detail-media img {
  width: 100%;
  border-radius: 14px;
}

.detail-content h1 {
  font-family: Georgia, serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
}

.detail-content .eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.feature-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.spec-table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--muted);
  border-color: var(--line-soft);
}

.spec-table th {
  width: 36%;
  color: var(--text);
  font-weight: 600;
}
