/* Stili per la sezione acquisto scontata */
.acquista-section.discounted {
  background-color: #fff7f7;
  border: 2px solid #e63946;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem auto;
  font-family: 'Noto Sans', sans-serif;
  color: #333;
  position: relative;
}

.acquista-section.discounted h1 {
  color: #e63946;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Dancing Script', cursive;
}

.acquista-section.discounted ul li strong {
  font-weight: 700;
}

.acquista-section.discounted .price-tag {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: 900;
  color: #e63946;
  cursor: default;
  position: relative;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* Prezzo barrato */
.acquista-section.discounted .price-tag .old-price {
  text-decoration: line-through;
  color: #a0a0a0;
  margin-right: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Prezzo nuovo */
.acquista-section.discounted .price-tag .new-price {
  color: #e63946;
  font-weight: 900;
  font-size: 1.8rem;
}

/* Badge "Offerta limitata" */
.acquista-section.discounted::before {
  content: "🎉 Offerta Limitata!";
  position: absolute;
  top: -30px;
  left: 0;
  background-color: #e63946;
  color: white;
  padding: 5px 15px;
  font-weight: 700;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Dancing Script', cursive;
  box-shadow: 0 2px 6px rgba(230, 57, 70, 0.5);
}

/* Hover leggero sul prezzo */
.acquista-section.discounted .price-tag:hover {
  background-color: #fce8e8;
}