.container {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
.intro { color: #6b7280; margin-bottom: 2rem; }

.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1rem;
  transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-5px); }

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
}
.product-card h3 { margin: 1rem 0 0.5rem; }
