.fsn-notification {
    background: #fff;
    color: #333;
    padding: 8px 12px;
    border: solid 1px #fefefe;
    border-radius: 6px;
    font-size: 12px;
    max-width: 260px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    position: fixed;
    bottom: 20px;
    left: 20px;
    animation: fadeIn 0.4s ease-in-out;
    text-align: left;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.fsn-notification.slide-out {
    transform: translateY(100px);
    opacity: 0;
}

.fsn-notification-inner {
    display: flex;
    align-items: center;
}

.fsn-product-image {
    width: 60px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 8px;
}

.fsn-notification-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fsn-customer-name {
    color: rgb(43, 172, 226);
    font-weight: bold;
}

.fsn-product-title {
    font-weight: normal;
}

.fsn-time {
    font-size: 11px;
    color: #777;
    margin-top: 4px;
}

.fsn-notification a {
    text-decoration: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile-specific tweaks */
@media (max-width: 768px) {
    .fsn-notification {
        bottom: 70px !important; /* push up on mobile to avoid bottom nav */
        left: 10px;
        right: 10px;
        font-size: 13px;
        padding: 10px; /* added padding for better spacing */
    }

    .fsn-product-image {
        width: 50px;
        height: 20px; /* Adjust height to maintain aspect ratio */
        max-width: auto; /* Ensure image fits container */
        margin-right: 6px;
    }
}
