body {
  background-color: #FFF5F7;
  padding: 20px;
}

h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #2A2B2D;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 16px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  font-size: 20px;
  color: #4A403A;
  margin: 10px 0 5px;
}

.product-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.product-card button {
  background-color: #2A2B2D;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card button:hover {
  background-color: #4A403A;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .product-card img {
    height: 200px;
  }

  h1 {
    font-size: 26px;
  }

  .banner-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}
