#popup-imagen-container {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 9999;
    width: 300px;
    height: auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: none; /* Oculto por defecto */

}

#popup-imagen-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

#popup-cerrar {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 18px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    cursor: pointer;
    z-index: 10000;
}

/* En móviles: centrar horizontalmente y ajustar tamaño */
@media (max-width: 768px) {
    #popup-imagen-container {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: 200px; /* Lo suficientemente alto para no tapar botones flotantes */
        width: 90%;   /* O puedes usar un valor fijo como 280px */
        max-width: 300px;
    }
}
