/* General reset for product section */
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

/* Each product card */
.product-card {
  flex: 1 1 250px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

/* Product image */
.product-image {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.product-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

/* Product details */
.product-details {
  text-align: center;
}

.product-details h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #333;
}

.product-details p {
  font-size: 0.95rem;
  color: #666;
  margin: 5px 0;
}

/* Price styling */
.product-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2a7a2a;
  margin-top: 10px;
}
