/* Fake Sales Notification Styles */
.fsn-notification-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 12px;
    display: flex;
    align-items: center;
    z-index: 99999; 
    max-width: 400px; 
    display: none; 
    font-family: sans-serif; 
    border: 1px solid #eee;
    box-sizing: border-box;
}

.fsn-notification-wrapper .fsn-product-image {
    flex-shrink: 0; /* Prevent image from shrinking */
    margin-right: 15px;
}

.fsn-notification-wrapper .fsn-product-image img {
    width: 80px; 
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.fsn-notification-wrapper .fsn-notification-content {
    flex-grow: 1; 
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.fsn-notification-wrapper .fsn-title {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #d9a630;
    font-weight: 600;
}

.fsn-notification-wrapper .fsn-text {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.fsn-notification-wrapper .fsn-text a:hover {
    text-decoration: underline;
}


.fsn-notification-wrapper .fsn-text span {
    color: #333; 
    font-weight: 700;
}

.fsn-notification-wrapper .fsn-close-btn {
    position: absolute;
    top: 0px;
    right: -5px;
    background: none;
    border: none;
    font-size: 14px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 0 5px;
    font-weight: bold;
}

.fsn-notification-wrapper .fsn-close-btn:hover {
    color: #333;
}

/* Responsive adjustments (optional) */
@media (max-width: 480px) {
    .fsn-notification-wrapper {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        width: calc(100% - 20px);
        padding: 10px 15px;
    }
     .fsn-notification-wrapper .fsn-product-image img {
        width: 50px;
        height: 50px;
    }
    .fsn-notification-wrapper .fsn-notification-content {
        font-size: 13px;
    }
     .fsn-notification-wrapper .fsn-title {
        font-size: 14px;
    }
      .fsn-notification-wrapper .fsn-text {
        font-size: 12px;
    }
}