/* --- Sezione principale --- */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
    background-color: var(--tortora-chiaro);
  color: #333;
}

.gift-section {
  text-align: center;
  padding: 60px 20px;
}

.gift-title {
  font-size: 2.2em;
  color: #073312;
  margin-bottom: 10px;
}

.gift-subtitle {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 40px;
}

/* --- Card dei buoni --- */
.gift-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}


.gift-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.gift-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.gift-card h3 {
  color: #073312;
  margin-bottom: 8px;
}

.gift-card p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
}

/* --- Pulsanti --- */
.gift-btn {
  display: inline-block;
  background: #073312;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.gift-btn:hover {
  background: #073312;
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet */
@media (max-width: 900px) {
  .gift-cards {
    justify-content: space-evenly;
  }

  .gift-card {
    width: 45%;
  }
}

/* Smartphone */
@media (max-width: 600px) {
  .gift-cards {
    flex-direction: column;
    align-items: center;
  }

  .gift-card {
    width: 90%;
  }

  .gift-title {
    font-size: 1.8em;
  }

  .gift-subtitle {
    font-size: 1em;
  }
}
