
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    font-size: 14px;
    max-width: 300px;
}
.notification-icon-wrapper {
    background-color: #000;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notification-icon-wrapper svg {
    color: #fff;
}
.notification-text {
    color: #333;
    line-height: 1.4;
}