/* Estilos para la ventana modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    background-color: rgba(255, 255, 254, 0.849);
    margin: 20% auto;
    padding: 20px;
    width: 40%;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.slider-productos-modal img {
    width: 100%;
    height: auto;
}

.product-details-modal {
    text-align: center;
}

.product-title-modal {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    color: #9c058d;
}

.product-description-modal, .product-cantidad-modal {
    margin-top: 10px;
    font-size: 14px;
    height: 100px;
    text-align: justify;
}

.product-precio-modal {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #9c058d;
}

@media only screen and (max-width: 900px) {
      
    .modal {
        top: 120px;
    } 

    .modal-content {
        margin: 5% auto;
        width: 70%;
    }
    
}

@media only screen and (max-width: 600px) {
   
    .modal-content {
        width: 90%;
    }

    .product-description-modal, .product-cantidad-modal {
        margin-bottom: 20px;
    }
    
}

@media only screen and (max-width: 400px) {
   
    .product-cantidad-modal {
        padding-top: 20px;
    }
    
}