.woo-fake-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 10px;
    font-family: Arial, sans-serif;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    animation: slideIn 0.5s ease-out;
    z-index: 9999;
}

.woo-popup-product {
    display: flex;
    gap: 10px;
}

.woo-popup-product img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

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