/* =======================
   PRODUCTS PAGE
   ======================= */

/* HERO */
.page-hero.product-hero {
  background: url('../images/banners/product_banner.jpg') center/cover no-repeat;
}

/* PAGE SECTION */
.products-page {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.products-page h2 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 12px;
  font-weight: 600;
}

.products-page p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
  text-align: center;
}

.product-card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  opacity: 0.97;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: #eee;
}

.product-card h3 {
  color: var(--green);
  margin: 15px 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.product-card p {
  color: #555;
  margin: 0 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .products-page h2 { font-size: 1.7rem; }
  .product-card img { height: 200px; }
}
