.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 14px 24px 14px 16px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s var(--transition);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 420px;
    pointer-events: none;
}

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

.toast-success {
    background: var(--d8-green-50);
    border: 1px solid var(--d8-green-200);
    color: var(--d8-green-600);
}

.toast-error {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: var(--red);
}

.toast-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        justify-content: center;
    }
}
