.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  overflow: hidden;
  background: #fff;
}

.product-card__body {
  padding: 1rem;
}

.product-card h3 {
  margin: 0 0 0.4rem;
}

.product-card .price {
  font-weight: 700;
  margin: 0.5rem 0;
}

.product-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 2rem;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 760px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}
