/* ══════════════════════════════════════
   TOAST — toast.css
   Block: Fixed notification popup
   ══════════════════════════════════════ */

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--ink);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: all .25s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ── Lead notifications (top-right) ── */
.lead-notif-wrap {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.lead-notif {
    width: 316px;
    background: #fff;
    border: 1px solid rgba(17,18,23,.08);
    border-radius: 22px;
    box-shadow: 0 20px 56px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.07);
    overflow: hidden;
    pointer-events: all;
    opacity: 0;
    transform: translateX(40px) scale(.95);
    transition: opacity .28s ease, transform .38s cubic-bezier(.34,1.56,.64,1);
}

.lead-notif.lead-notif--show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.lead-notif.lead-notif--hide {
    opacity: 0;
    transform: translateX(40px) scale(.95);
    transition: opacity .2s ease, transform .2s ease;
}

.lead-notif-bar { display: none; }

.lead-notif-inner {
    padding: 14px 14px 15px;
    display: flex;
    gap: 11px;
    align-items: flex-start;
}

.lead-notif-ava {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.lead-notif-body { flex: 1; min-width: 0; }

.lead-notif-label {
    font-family: 'Unbounded', sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #22a347;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lead-notif-label::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #A8E76A;
    animation: wan-pulse 1.6s ease infinite;
    flex-shrink: 0;
}

.lead-notif-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #111217;
    margin-bottom: 2px;
    line-height: 1.3;
}

.lead-notif-msg {
    font-size: 12px;
    color: #8d919d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lead-notif-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 11px;
}

.lead-notif-btn {
    padding: 6px 15px;
    background: rgba(168,231,106,.25);
    color: #1e5c10;
    border: none;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s;
}
.lead-notif-btn:hover { background: rgba(168,231,106,.45); }

.lead-notif-close {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    border: 1px solid rgba(17,18,23,.08);
    background: rgba(17,18,23,.04);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8d919d;
    flex-shrink: 0;
    transition: background .13s, color .13s;
    align-self: flex-start;
}
.lead-notif-close:hover { background: rgba(17,18,23,.09); color: #111217; }
