.products {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.products h2 {
  font-family: "Vast Shadow", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #2f5d3a;
}

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

.product-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.img-wrap {
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.img-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.1rem;
  font-family: "Poiret One", sans-serif;
  padding: 0.75rem 1rem;
  text-align: center;
  color: #2f2f2f;
}