.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.product {
  width: 280px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(238, 166, 65, 0.2);
  transition: all 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(238, 166, 65, 0.3);
}

.product img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 15px;
  background: #f5f5f5;
}

.product h3 {
  text-align: center;
  padding: 10px;
  color: #04203f;
  font-size: 1.1rem;
  margin: 0;
}

.product p {
  text-align: center;
  padding: 0 10px 15px 10px;
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}