/* Buying toast — bottom của cột content .ladi-wraper (420px) */
#ladipro-toast {
    position: fixed;
    bottom: 12px;
    /* Align với left edge của .ladi-wraper (420px centered hoặc full mobile) */
    left: max(10px, calc(50vw - 210px + 10px));
    z-index: 99998;
    width: 260px;
    max-width: calc(min(100vw, 420px) - 20px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    opacity: 0;
    transform: translateX(-120%);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(.34,1.56,.64,1);
    pointer-events: none;
}
#ladipro-toast.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
#ladipro-toast .ladipro-toast-avatar {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(46,125,50,0.3);
}
#ladipro-toast .ladipro-toast-body {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #333;
}
#ladipro-toast .ladipro-toast-name {
    font-weight: 700;
    color: #1a1a1a;
}
#ladipro-toast .ladipro-toast-action {
    color: #555;
}
#ladipro-toast .ladipro-toast-time {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}
#ladipro-toast .ladipro-toast-time::before {
    content: "🕐 ";
}
#ladipro-toast .ladipro-toast-close {
    position: absolute;
    top: 4px;
    right: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #bbb;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}
#ladipro-toast .ladipro-toast-close:hover {
    color: #333;
    background: #f0f0f0;
}
@media (max-width: 380px) {
    #ladipro-toast {
        width: calc(100vw - 16px);
        left: 8px;
        font-size: 11px;
    }
}
