/* ========================================
   INSTANT LIFT — LANDING A (WHITE/COMPLIANCE)
   Minimal, clean, semplice
   ======================================== */

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background: #FFFFFF;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3 {
  margin-bottom: 15px;
  color: #2C1810;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
  border-bottom: 2px solid #E8956D;
  padding-bottom: 8px;
  margin-top: 30px;
}

h3 {
  font-size: 22px;
  margin-top: 20px;
}

p {
  margin-bottom: 12px;
}

ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}

section {
  margin-bottom: 30px;
}

/* HEADER */
.header {
  text-align: center;
  padding: 20px 0;
  border-bottom: 3px solid #E8956D;
  margin-bottom: 30px;
}

.header h1 {
  color: #E8956D;
  font-size: 42px;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 18px;
  color: #2C1810;
  margin: 0;
}

/* PRODOTTO SECTION */
.prodotto-section {
  text-align: center;
  margin-bottom: 30px;
}

.prodotto-img {
  max-width: 600px;
  margin: 0 auto;
}

.prodotto-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.img-placeholder {
  background: #FFF8F3;
  border: 2px dashed #E8956D;
  padding: 80px 40px;
  text-align: center;
  font-size: 16px;
  color: #2C1810;
  line-height: 1.6;
}

/* DESCRIZIONE */
.descrizione {
  margin-bottom: 30px;
}

.inci {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  background: #FFF8F3;
  padding: 15px;
  border-left: 3px solid #E8956D;
}

/* OFFERTA */
.offerta {
  background: #FFF8F3;
  padding: 25px;
  border: 3px solid #E8956D;
  margin-bottom: 30px;
  text-align: center;
}

.offerta h2 {
  border-bottom: none;
  margin-top: 0;
  color: #E8956D;
}

.prezzo-box {
  margin: 20px 0;
}

.prezzo-vecchio {
  font-size: 18px;
  color: #666666;
  margin-bottom: 8px;
}

.barrato {
  text-decoration: line-through;
  color: #999999;
}

.prezzo-offerta {
  font-size: 24px;
  font-weight: bold;
  color: #2C1810;
  margin-bottom: 8px;
}

.nuovo {
  color: #28A745;
  font-size: 32px;
}

.risparmio {
  font-size: 18px;
  font-weight: bold;
  color: #C0392B;
}

.dettaglio-offerta {
  font-size: 16px;
  color: #2C1810;
  margin-top: 15px;
}

/* FORM SECTION */
.form-section {
  background: #FFF8F3;
  padding: 25px;
  border: 3px solid #E8956D;
  margin-bottom: 30px;
}

.form-section h2 {
  border-bottom: none;
  margin-top: 0;
  color: #E8956D;
  text-align: center;
}

.form-slot {
  background: #FFFFFF;
  border: 2px dashed #E8956D;
  padding: 40px;
  text-align: center;
  font-size: 16px;
  color: #666666;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* INFO SPEDIZIONE */
.info-spedizione {
  background: #FFFFFF;
  padding: 20px;
  border: 2px solid #C9A96E;
  margin-bottom: 30px;
}

.info-spedizione h3 {
  color: #E8956D;
  margin-top: 0;
}

.info-spedizione ul {
  list-style: none;
  margin-left: 0;
}

.info-spedizione li {
  padding: 8px 0;
  border-bottom: 1px solid #FFF8F3;
  font-size: 16px;
  color: #2C1810;
}

.info-spedizione li:last-child {
  border-bottom: none;
}

/* FOOTER */
.footer {
  background: #FFF8F3;
  padding: 25px;
  border-top: 2px solid #E8956D;
  text-align: center;
}

.footer-disclaimer {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #E8956D;
  text-decoration: none;
  font-size: 14px;
  margin: 0 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .header h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 16px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .img-placeholder {
    padding: 60px 20px;
  }

  .nuovo {
    font-size: 28px;
  }
}
