/* ============================================================
   Toast palette
   Loaded after toastr's own stylesheet, which ships a green
   success toast (#51A351) that belongs to no part of this site.
   Dékolé is a blue system, so a confirmation is blue.
   ============================================================ */
#toast-container > .toast-success,
.toast-success {
    background-color: #2563EB;
}
#toast-container > .toast-success:hover,
.toast-success:hover {
    background-color: #1D4ED8;
}

/* toastr's info toast is a teal that sits oddly beside the brand blue. */
#toast-container > .toast-info,
.toast-info {
    background-color: #0F172A;
}
#toast-container > .toast-info:hover,
.toast-info:hover {
    background-color: #1E293B;
}

/* Errors and warnings keep their meaning — a red stop and an amber caution. */
#toast-container > .toast-error,
.toast-error { background-color: #DC2626; }
#toast-container > .toast-warning,
.toast-warning { background-color: #B45309; }

/* The link the cart toast carries has to stay legible on the new ground. */
#toast-container > .toast a,
#toast-container > .toast a:hover { color: #fff; }
