#woo-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#woo-modal-overlay.woo-modal-hidden {
    display: none;
}
#woo-modal-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
#woo-modal-img {
    display: block;
    max-width: 100%;
    height: auto;
}
#woo-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 20px;
    width: 30px; height: 30px;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
    z-index: 10001;
}
