.products {
  padding: 40px 20px;
  background-color: #fafafa;
}

.products h2 {
  text-align: center;
  margin-bottom: 30px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 15px;
  padding: 15px;
  text-align: center;
  width: 280px;
  background-color: white;
}

.product img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.status {
  margin: 10px 0;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
}

.disponible {
  background-color: #d4edda;
  color: #155724;
}

.indisponible {
  background-color: #f8d7da;
  color: #721c24;
}

.order-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 10px;
  transition: background 0.3s;
}

.order-btn:hover {
  background-color: #128C7E;
}

.price {
  font-size: 1em;
  margin: 8px 0;
  font-weight: bold;
  color: #444;
}