#popup {
    position: fixed;
    bottom: 40px; /* Bajé la posición en escritorio */
    left: 20px;
    background-color: var(--popup-bg-color);
    color: white;
    padding: 12px;
    border-radius: 8px;
    display: none;
    z-index: 98;
    width: auto;
    max-width: 340px;
    animation: fadeIn 1s ease-in-out;
    font-size: var(--popup-message-size);
}

#popup:hover {
    background-color: rgba(0, 0, 0, 0.85);
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

#popup-link {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 40px;
}

#popup-product-image {
    background-color: white;
    width: 60px; /* Imagen más grande en escritorio */
    height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 12px;
    color: #333;
    flex-shrink: 0;
}

.popup-recently-purchased {
    color: var(--popup-text-color);
    font-size: var(--popup-message-size);
}

#popup-icon {
    font-size: calc(var(--popup-message-size) + 10px);
}

#popup-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

#popup-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

#popup:hover #popup-arrow {
    opacity: 1;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

#popup-product-name-wrapper {
    max-width: 200px;
}

#popup-product-name {
    color: var(--popup-text-color);
    font-size: var(--popup-product-name-size);
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.popup-time {
    color: var(--popup-text-color);
    margin: 0;
    font-size: var(--popup-time-size);
}

#popup-price {
    color: var(--popup-text-price-color);
    font-size: var(--popup-price-size);
}

/* Estilos para versión móvil */
@media (max-width: 600px) {
    :root {
        --popup-message-size: 12px;
        --popup-product-name-size: 12px;
        --popup-time-size: 10px;
        --popup-price-size: 12px;
    }

    #popup {
        left: 10px;
        right: 10px;
        max-width: 260px;
        padding: 8px;
        bottom: 50px; /* Mantiene un margen en móviles */
        font-size: var(--popup-message-size);
    }

    #popup-product-image {
        width: 40px; /* Imagen más pequeña en móvil */
        height: 40px;
        min-width: 40px;
    }

    #popup-icon {
        font-size: calc(var(--popup-message-size) + 8px);
    }

    #popup-arrow {
        width: 20px;
        height: 20px;
        right: 8px;
    }
    
    #popup-link {
        padding-right: 35px;
    }

    .popup-recently-purchased {
        font-size: var(--popup-message-size);
    }
}
