/* CSS Document */     
//background-color: #F4E4C1; /* beige caldo */
body {
  background-color: #fff; /* beige caldo */
  font-family: 'Arial', sans-serif;
  color: #545454;
}
.header {
  background-color: #F7C746; /* giallo logo */
  padding: 20px;
  text-align: center;
  color: #000;
  font-weight: bold;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-card {
  width: 260px; /* larghezza fissa per colonna */
  background-color: #fff8f0;
  border: 1px solid #e0d5c0;
  border-radius: 4px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

.img-wrapper {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 4px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-title {
  font-size: 16px;
  margin: 10px 0 5px;
  color: #B85C00;
}

.product-price {
  font-size: 14px;
  margin: 0 0 15px;
  color: #C6913D;
}

.btn-disponibilita {
  background-color: #F7C746; /* giallo */
  color: #000;
  border: 2px solid #C98C3A;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-disponibilita:hover {
  background-color: #C98C3A; /* hover ocra */
  color: #fff;
}
@media (max-width: 600px) {
  .product-card {
    width: 100%;
  }
 .site-footer {
  background-color: #F7C746; /* giallo caldo */
  color: #4B2B15; /* marrone scuro per contrasto */
  padding: 40px 20px;
  text-align: center;
  border-top: 3px solid #C98C3A; /* ocra */
  font-family: 'Arial', sans-serif;
}

.footer-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #9E4F3C; /* richiamo al mattone */
}

.footer-content p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-links {
  margin: 15px 0;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #4B2B15;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #9E4F3C; /* mattone scuro */
}

.footer-copy {
  font-size: 12px;
  margin-top: 20px;
  color: #333;
}
 