.fsn-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    max-width: 350px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    font-family: 'Inter', sans-serif;
    /* Assuming Woodmart uses a nice font or we fallback */
    border-left: 4px solid #7aa93c;
    /* Woodmart green-ish accent */
}

.fsn-notification.fsn-show {
    transform: translateY(0);
    opacity: 1;
}

.fsn-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.fsn-content {
    font-size: 13px;
    line-height: 1.4;
    color: #333;
}

.fsn-name,
.fsn-city {
    font-weight: 600;
    color: #2d2d2d;
}

.fsn-product-link {
    color: #7aa93c;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.fsn-product-link:hover {
    text-decoration: underline;
}

.fsn-time {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.fsn-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.fsn-close:hover {
    color: #333;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .fsn-notification {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}