/* Live Sales Notification Box */
#lsn-notification-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #ffffff;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: 'Poppins', sans-serif;
    border-left: 5px solid #1E4D45; /* Your theme's primary color */
}

/* The class that makes the notification visible */
#lsn-notification-box.lsn-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#lsn-notification-box .lsn-header {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

#lsn-notification-box .lsn-header .lsn-icon {
    color: #1E4D45; /* Your theme's primary color */
    margin-right: 10px;
    font-size: 16px;
}

#lsn-notification-box .lsn-body {
    font-size: 13px;
    color: #555;
    margin-top: 5px;
}

#lsn-notification-box .lsn-body strong {
    color: #000;
    font-weight: 600;
}

#lsn-notification-box .lsn-time {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
}

/* --- Mobile View --- */
@media (max-width: 767px) {
    #lsn-notification-box {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
        width: auto;
    }
}