/* ─── Woaly Global Toast ──────────────────────────────────── */

.woaly-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0.92);
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out, filter 0.35s ease-out;
    pointer-events: none;
    white-space: nowrap;
}

.woaly-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
}

.woaly-toast--error {
    background: #dc2626;
}

.woaly-toast--success {
    background: #16a34a;
}

.woaly-toast--info {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .woaly-toast {
        bottom: 80px;
    }
}
