/* === PRODUCTS SECTION === */
.products-section {
  text-align: center;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.products-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 2rem;
}

/* Grid Produk */
.products {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.product {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 300px;
  flex: 1 1 280px;
  overflow: hidden;
  padding-bottom: 1rem;
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #2e7d32;
}

.product h3 {
  font-size: 18px;
  margin: 0.8rem 0 0.4rem;
  color: #2e7d32;
}

.product p {
  font-size: 14px;
  color: #555;
  padding: 0 15px 15px;
  line-height: 1.6;
  flex-grow: 1;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .products {
    flex-direction: column;
    align-items: center;
  }

  .product {
    max-width: 90%;
  }

  .product h3 {
    font-size: 16px;
  }

  .product p {
    font-size: 13px;
    padding: 0 10px 15px;
  }
}
