.product-container{
    position: relative;
    pointer-events: auto;
}
.modal-container-hide {
    display: none;
    border: 1px solid rgb(221, 145, 145);
    pointer-events: none;
}

.modal-container-show {
    display: flex;
    position: absolute;
    top: 0;
    left: 25%;
    max-width: 800px;
    pointer-events: none;
    z-index: 5;
}

.modal-container-show img {
    width: 400px;
    height: 400px;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: antiquewhite;
    padding: 12px;
    pointer-events: none;
}

.modal-infos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    pointer-events: auto;
}