.yews-fls-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center; /* Vertically center everything */
    width: 380px; /* Slightly wider to fit the badge comfortably */
    max-width: 90vw;
    padding: 15px;
    z-index: 9999;
    font-family: inherit; /* Matches your site font */
    font-size: 14px;
    line-height: 1.4;
    border-left: 5px solid #008b85;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
    
    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.yews-fls-notification:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.yews-fls-notification.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.yews-fls-img {
    width: 60px; /* Slightly larger image for visibility */
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    background: #fff;
    flex-shrink: 0;
}

.yews-fls-text {
    flex-grow: 1;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- New Badge Styles --- */
.yews-fls-badge {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700; /* Bolder for readability */
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.yews-fls-badge .icon {
    font-size: 14px;
    margin-right: 4px;
    line-height: 1;
}

/* Colors for specific badges */
.yews-fls-badge.verified { color: #27ae60; } /* Green */
.yews-fls-badge.verified .icon { color: #27ae60; }

.yews-fls-badge.shopper { color: #2980b9; } /* Blue */
.yews-fls-badge.shopper .icon { color: #2980b9; }

.yews-fls-badge.visitor { color: #e67e22; } /* Orange */
.yews-fls-badge.visitor .icon { color: #e67e22; }


/* --- Content Styling --- */
.yews-fls-content {
    font-size: 13px;
    color: #444;
}

.yews-fls-text strong {
    color: #000;
    font-weight: 600;
}

.yews-fls-text .product-name {
    color: #008b85; /* Your brand teal */
    font-weight: 600;
    display: block; /* Forces product name to its own line if needed */
    margin-top: 1px;
}

.yews-fls-close {
    background: transparent;
    border: none;
    color: #bbb;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 0 0 10px;
    align-self: flex-start;
    margin-top: -8px; /* Pulled up slightly to align top-right */
}

.yews-fls-close:hover {
    color: #000;
}

@media (max-width: 480px) {
    .yews-fls-notification {
        bottom: 10px;
        left: 10px;
        width: calc(100% - 20px);
    }
}