/* Stili personalizzati a complemento di Tailwind (caricato via CDN).
   Tailwind CDN non processa le direttive @apply, quindi qui usiamo CSS puro. */

/* Nasconde gli elementi gestiti da Alpine finché il framework non è pronto. */
[x-cloak] { display: none !important; }

/* Campi dei form (registrazione, login, profilo, reset password). */
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1px solid #EDE6DB;
  border-radius: 2px;
  background: #FAF7F2;
  color: #2B2724;
}
.auth-form input:focus,
.auth-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #B08D57;
  border-color: #B08D57;
}

/* Area di testo (es. recensioni): stesso stile degli input dei form. */
.auth-form textarea {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1px solid #EDE6DB;
  border-radius: 2px;
  background: #FAF7F2;
  color: #2B2724;
  font-family: inherit;
  line-height: 1.6;
}

/* Stelle delle recensioni (sola lettura). */
.stars { color: #B08D57; letter-spacing: 2px; }   /* oro */
.stars .star-empty { color: #EDE6DB; }             /* sabbia */

/* Selettore voto a stelle (input interattivo). */
.star-input {
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  color: #EDE6DB;
  transition: color 0.15s;
  user-select: none;
}
.star-input.is-on { color: #B08D57; }

/* Contenuto generato da CKEditor: spaziatura leggibile per articoli e pagine. */
.ck-content h2 { font-family: "Cormorant Garamond", serif; font-size: 1.75rem; margin: 1.5rem 0 0.75rem; }
.ck-content h3 { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; margin: 1.25rem 0 0.5rem; }
.ck-content p { margin-bottom: 1rem; line-height: 1.8; }
.ck-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.ck-content ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.ck-content a { color: #B08D57; text-decoration: underline; }
.ck-content img { border-radius: 2px; margin: 1rem 0; max-width: 100%; height: auto; }
.ck-content blockquote { border-left: 3px solid #B08D57; padding-left: 1rem; font-style: italic; color: #555; margin: 1rem 0; }
