.wc-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 16px;
}

.wc-popup-overlay.show {
    display: flex !important;
}

.wc-popup-content {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.wc-popup-content img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.wc-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;

    color: #fff;
    font-size: 32px;
    line-height: 1;

    cursor: pointer;
    z-index: 10;

    padding: 0;
}