/* Live Sales Notification Popup (Electric Purple & Neon Cyan) */
.live-sales-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(14, 11, 26, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.45);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.85), 0 0 25px rgba(139, 92, 246, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9999;
    backdrop-filter: blur(14px);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 370px;
}
.live-sales-toast.show {
    transform: translateY(0);
    opacity: 1;
}
.live-sales-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.18);
    border: 1px solid #8B5CF6;
    color: #A78BFA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}
.live-sales-details {
    display: flex;
    flex-direction: column;
}
.live-sales-title {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
}
.live-sales-title span {
    color: #00E5FF;
    font-weight: 800;
}
.live-sales-meta {
    font-size: 11.5px;
    color: #A1A1AA;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.live-sales-verified {
    color: #8B5CF6;
    font-weight: 700;
}
