/* PALETA "CLÁSICO VIBRANTE" */
:root {
    --bg-dark: #212121; /* Carbón Suave */
    --bg-card: #2C2C2C; /* Un tono más claro de Carbón */
    --text-light: #F2EFE8; /* Blanco Hueso */
    --text-muted: #bbbbbb;
    --accent-red: #D93B3B; /* Rojo Tomate */
    --accent-red-hover: #E84A4A; /* Rojo más brillante para hover */
    --accent-yellow: #F2C94C; /* Amarillo Mostaza */
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
}
.promo-envio {
  color: #FFD700;           /* amarillo dorado */
  font-weight: bold;
  background: black;
  padding: 10px 20px;
  border-radius: 50px;      /* forma de óvalo */
  display: inline-block;
}

.font-heading {
    font-family: 'Oswald', sans-serif;
}
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}
.toast-notification {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateY(100%);
    opacity: 0;
}
.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}