#fomo-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;

    background: #a0cc63;                 /* 🌿 Ayurvedic green */
    border-radius: 14px;
    padding: 14px 16px;
    max-width: 320px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    box-shadow: 0 14px 35px rgba(0,0,0,0.25); /* more focus */
    font-size: 14px;
    line-height: 1.4;

    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    z-index: 9999;
    pointer-events: none;
}

#fomo-popup.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Icon */
#fomo-popup .fomo-icon img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;

    background: #ffffff;
    padding: 3px;                        /* white ring */
}

/* Text area */
#fomo-popup .fomo-text {
    max-width: 250px;
    color: #1f2d16;
}

#fomo-popup .fomo-text strong {
    color: #1f2d16;
    font-weight: 700;
}

#fomo-popup .fomo-text .product {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 2px;
    color: #2f4a1e;
    font-weight: 500;
}

#fomo-popup .fomo-text span:last-child {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    color: rgba(31,45,22,0.7);
}

/* Mobile */
@media (max-width: 480px) {
    #fomo-popup {
        left: 50%;
        transform: translate(-50%, 20px) scale(0.95);
    }

    #fomo-popup.show {
        transform: translate(-50%, 0) scale(1);
    }
}
