/* PRODUCT SECTION */
.products {
  padding: 80px 20px;
  background: #f8f5f2; /* soft neutral contrast */
  text-align: center;
}

.products-header h2 {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #1d0008;
}

.products-header p {
  color: #666;
  margin-bottom: 50px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.product-card {
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* TEXT */
.product-card h3 {
  margin: 15px 0 5px;
  color: #1d0008;
}

.product-card p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

/* CTA */
.products-cta {
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 280px;
  }
}