.gold-products {
  padding: 60px 20px;
  background: #fffbea;
  text-align: center;
}

.gold-products h2 {
  font-size: 2rem;
  color: #b78c0a;
  margin-bottom: 40px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.product-card {
  background: white;
  border: 1px solid #f1e6c1;
  border-radius: 16px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.price {
  color: #b78c0a;
  font-size: 1.1rem;
  font-weight: 700;
}
