/* ============================
   Utilitaires supplémentaires
   ============================ */

/* Texte */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-muted {
  color: var(--gray);
}

.text-gold {
  color: var(--gold);
}

.text-red {
  color: var(--red);
}

.text-blue {
  color: var(--blue-mary);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

/* Largeurs & conteneurs */
.max-w-sm {
  max-width: 480px;
}

.max-w-md {
  max-width: 720px;
}

.max-w-lg {
  max-width: 960px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Espacements verticaux rapides */
.mt-xs {
  margin-top: 0.5rem;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 2rem;
}

.mt-lg {
  margin-top: 4rem;
}

.mb-xs {
  margin-bottom: 0.5rem;
}

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 2rem;
}

.mb-lg {
  margin-bottom: 4rem;
}

.pt-xs {
  padding-top: 0.5rem;
}

.pt-sm {
  padding-top: 1rem;
}

.pt-md {
  padding-top: 2rem;
}

.pt-lg {
  padding-top: 4rem;
}

.pb-xs {
  padding-bottom: 0.5rem;
}

.pb-sm {
  padding-bottom: 1rem;
}

.pb-md {
  padding-bottom: 2rem;
}

.pb-lg {
  padding-bottom: 4rem;
}

/* Alignement flex rapide */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

/* Ombres complémentaires */
.shadow-soft {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.shadow-strong {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* Bordures rapides */
.border {
  border: 1px solid var(--border-light);
}

.rounded-sm {
  border-radius: 4px;
}

.rounded-md {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-full {
  border-radius: 999px;
}

/* Affichage conditionnel */
.only-desktop {
  display: block;
}

.only-mobile {
  display: none;
}

@media (max-width: 768px) {
  .only-desktop {
    display: none;
  }

  .only-mobile {
    display: block;
  }
}
