.product-grid {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.product-card__image {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.product-card__title {
  margin: 1rem 0 0.5rem;
}

.product-card__price {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}
