/* Modal estilos */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.18);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 400px;
    width: 90vw;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(35,135,103,0.12);
    position: relative;
    text-align: left;
}
.close-modal {
    position: absolute;
    top: 18px; right: 18px;
    font-size: 1.8rem;
    color: #ca1a1ae5;
    cursor: pointer;
    font-weight: bold;
}
.modal-product-info p {
    margin: 12px 0;
    font-size: 1.1rem;
    color: #220b93e5;
}
#modal-product-nombre {
    font-size: 1.15rem;
    font-weight: bold;
    color: #2649e6e5;
    margin-bottom: 12px;
    word-break: break-word;
}
#modal-product-img-container {
    text-align: center;
    margin-bottom: 14px;
}
#modal-product-img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(35,135,103,0.10);
    object-fit: contain;
    background: #f7fdfc;
    display: inline-block;
}
@media (max-width: 600px) {
    .modal-content {
        padding: 18px 8px;
        max-width: 98vw;
    }
    .modal-product-info p {
        font-size: 1rem;
    }
    #modal-product-img {
        max-width: 80px;
        max-height: 80px;
    }
}