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

/* VARIABILI COLORE */
:root {
  --navy: #1A1B4B;
  --lavanda: #F5F3FF;
  --viola: #6B3FA0;
  --blu-stelle: #4A6BDB;
  --oro: #F5A623;
  --verde-cta: #28A745;
}

/* BODY */
body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #2C2C2C;
  background: #FFFFFF;
}

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

/* HEADER */
.product-header {
  text-align: center;
  padding: 15px 0;
  background: var(--navy);
  color: #FFFFFF;
  margin-bottom: 10px;
}

.product-header h1 {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.product-header .subtitle {
  font-size: 19px;
  font-weight: 600;
  color: var(--oro);
}

/* IMMAGINE PRODOTTO */
.product-image {
  text-align: center;
  padding: 15px 0;
  background: var(--lavanda);
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(107, 63, 160, 0.2);
}

/* SEZIONI INFO */
.product-info,
.price-section,
.order-section {
  padding: 10px 0;
  margin-bottom: 10px;
}

.product-info h2,
.price-section h2,
.order-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.product-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--viola);
  margin-top: 20px;
  margin-bottom: 10px;
}

.product-info p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.product-info ul {
  list-style: none;
  margin-bottom: 20px;
}

.product-info ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.product-info ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--viola);
  font-size: 22px;
  font-weight: 700;
}

.product-info .inci {
  font-size: 15px;
  color: #555;
  background: var(--lavanda);
  padding: 15px;
  border-left: 4px solid var(--viola);
  border-radius: 4px;
}

/* PREZZI */
.price-section {
  text-align: center;
  background: var(--lavanda);
  padding: 15px;
  border-radius: 8px;
  border: 3px solid var(--viola);
}

.price-old {
  font-size: 20px;
  margin-bottom: 8px;
}

.price-old span {
  text-decoration: line-through;
  color: var(--viola);
  font-weight: 600;
}

.price-new {
  font-size: 42px;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  color: var(--verde-cta);
  margin-bottom: 8px;
}

.price-detail {
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}

/* ORDER SECTION */
.order-section {
  background: #FFFFFF;
  padding: 15px;
  border: 3px solid var(--viola);
  border-radius: 8px;
}

.order-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-slot {
  min-height: 100px;
  padding: 20px;
  background: var(--lavanda);
  border-radius: 6px;
  text-align: center;
  font-size: 18px;
  color: var(--navy);
}

/* FOOTER */
.footer {
  padding: 15px 0;
  text-align: center;
  background: var(--navy);
  color: #FFFFFF;
  margin-top: 15px;
  font-size: 14px;
}

.footer p {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--oro);
  text-decoration: none;
  margin: 0 8px;
}

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

.footer .disclaimer {
  font-size: 12px;
  color: #CCCCCC;
  margin-top: 12px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  body {
    font-size: 23px !important;
  }

  .container {
    padding: 10px 15px;
  }

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

  .product-header .subtitle {
    font-size: 18px !important;
  }

  .product-info h2,
  .price-section h2,
  .order-section h2 {
    font-size: 28px !important;
  }

  .product-info h3 {
    font-size: 24px !important;
  }

  .product-info p {
    font-size: 23px !important;
  }

  .price-new {
    font-size: 38px !important;
  }

  .price-old {
    font-size: 20px !important;
  }

  .price-detail {
    font-size: 19px !important;
  }
}
