/* ---------- Hero Section ---------- */
.hero-section {
background: linear-gradient(rgba(22,45,76,0.78), rgba(22,45,76,0.82)),
              url("/static/img/product-hero.jpg") center/cover no-repeat;
  min-height: 50vh;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ---------- Product Grid ---------- */
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.product-card h3 {
  color: #111;
}

.product-card p {
  color: #666;
}

/* ---------- Order Button ---------- */
.btn-order {
  background-color: #c9a552; /* gold tone */
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-order:hover {
  background-color: #b8933f;
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-section {
    min-height: 40vh;
    padding: 60px 15px;
  }
}
