/* Mall Toast 样式 - 简洁优雅 */
#global-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    max-width: 90vw;
}

.mall-toast {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 6px;
    background: rgba(50, 50, 50, 0.92);
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
    min-width: 200px;
    max-width: 480px;
}
.mall-toast--in    { opacity: 1; transform: translateY(0); }
.mall-toast--out   { opacity: 0; transform: translateY(-12px); }
.mall-toast__icon  { font-size: 18px; line-height: 1; flex: 0 0 auto; }
.mall-toast__msg   { word-break: break-all; }

.mall-toast--success { background: rgba(34, 197, 94, 0.95); }
.mall-toast--info    { background: rgba(59, 130, 246, 0.95); }
.mall-toast--warn    { background: rgba(245, 158, 11, 0.95); }
.mall-toast--error   { background: rgba(239, 68, 68, 0.95); }
