/* Cursor de lupa en las imágenes del producto */
#product-carousel .carousel-item img {
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}

/* Estilos para el visor Modal de Zoom */
#zoomModal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

#zoomModalContent {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

#zoomClose {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#zoomClose:hover {
    color: #007bff;
}

@media only screen and (max-width: 700px) {
    #zoomModalContent {
        max-width: 100%;
    }
}