/* === PRODUCT PAGE FINAL === */

.product-page-container {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  justify-items: center;
  margin-top: 40px;
}

.product-card {
  width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

.product-card h3 {
  margin: 0;
}
