/* NoStressBorders — Social Proof Toast */
#nosb-sp-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #D8E8E2;
    border-left: 4px solid #238470;
    border-radius: 10px;
    padding: 12px 36px 12px 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    max-width: 320px;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
#nosb-sp-toast.nosb-sp-toast--in {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#nosb-sp-toast.nosb-sp-toast--out {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}
#nosb-sp-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #238470;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
#nosb-sp-text {
    font-size: 12px;
    color: #44515C;
    line-height: 1.4;
}
#nosb-sp-name {
    font-weight: 600;
    color: #0D141A;
}
#nosb-sp-close {
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 16px;
    color: #7A8A94;
    cursor: pointer;
    line-height: 1;
    font-family: sans-serif;
}
#nosb-sp-close:hover { color: #44515C; }

@media (max-width: 480px) {
    #nosb-sp-toast {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
}
