/* ══════════════════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════════════════ */
.toast-overlay {
    position: fixed;
    inset: 0;
    z-index: 1998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: rgba(180, 220, 220, 0);
}

.toast-overlay.show {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(140, 200, 200, 0.55);
}

.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(16px);
    z-index: 1999;
    text-align: center;
    padding: 0 48px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
    pointer-events: auto;
}

.toast-icon { display: none; }

.toast-msg {
    font-family: 'Syne', sans-serif;
    font-size: clamp(18px, 5vw, 26px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.5px;
}
