/* Stile generale */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #ff9900, #ffcc66);
  color: #222;
}

header .logo {
  max-height: 250px;
}

header h1 {
  margin: 10px 0;
  font-size: 2em;
}

header .intro {
  font-size: 1em;
  max-width: 600px;
  margin: 0 auto;
}

/* Filtri */
.filters {
  text-align: center;
  margin: 20px 0;
}

.filters label {
  margin: 0 5px;
  font-weight: bold;
}

.filters select {
  padding: 8px;
  margin: 0 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Prodotti */
#products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;    /* larghezza massima della griglia (almeno il doppio rispetto a prima) */
  margin: 0 auto;
}

.product {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  margin: 10px;
  width: 220px;              /* più piccolo (prima era 320px) */
  font-size: 0.9em;          /* testo leggermente ridotto */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product img {
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto; /* centra dentro al contenitore */
}

.product-info {
  padding: 10px;             /* meno spazio interno */
}

.product-info h2 {
  margin: 0 0 6px;
  font-size: 1em;            /* titolo più compatto */
}

.product-info p {
  margin: 3px 0;
  font-size: 0.85em;
}

.product-info .meta {
  font-size: 0.75em;
  color: #777;
}



/* ---- BOTTONE AMAZON ---- */
.btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #ff9900;  /* colore Amazon (puoi cambiare in bianco se preferisci) */
  color: #fff;                /* testo bianco */
  text-decoration: none;      /* niente sottolineatura */
  font-weight: bold;
  border-radius: 6px;
}

.btn:hover {
  background: #e68a00;
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 15px;
  text-align: center;
  font-size: 0.9em;
  color: #555;
  background: #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .product {
    width: 90%;
  }
}
