/* FOMO Popup Styles */
.rvl-fomo-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    max-width: 320px;
    border-left: 4px solid #28a745;
    animation: rvlSlideIn 0.5s ease-out forwards;
}

.rvl-fomo-image img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.rvl-fomo-content {
    flex: 1;
    line-height: 1.3;
}

.rvl-fomo-title {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.rvl-fomo-name {
    font-weight: 700;
    color: #333;
}

.rvl-fomo-product {
    margin: 2px 0;
    font-size: 13px;
    font-weight: 700;
    color: #007bff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rvl-fomo-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.rvl-fomo-time {
    font-size: 11px;
    color: #888;
}

.rvl-fomo-bank-badge {
    background-color: #e6f9f0;
    color: #28a745;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    line-height: 1.4;
}

.rvl-verified-badge {
    color: #28a745;
    margin-left: 5px;
    font-weight: 500;
}

.rvl-fomo-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #ccc;
    cursor: pointer;
    align-self: flex-start;
    padding: 0;
    line-height: 1;
    margin-top: -5px;
}
.rvl-fomo-close:hover {
    color: #333;
}

@keyframes rvlSlideIn {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
    
@media (max-width: 480px) {
    .rvl-fomo-popup {
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        width: 90%;
        border-radius: 8px;
    }
    @keyframes rvlSlideIn {
        from { transform: translate(-50%, 100px); opacity: 0; }
        to { transform: translate(-50%, 0); opacity: 1; }
    }
}