#woo-image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.woo-image-popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    top: 0;
    left: 0;
    z-index: 1;
}

.woo-image-popup-content {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    border-radius: 8px;
    text-align: center;
}

.woo-image-popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 3;
}

.woo-loader {
    color: #000;
    font-size: 20px;
    text-align: center;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.woo-slider {
    position: relative;
    width: 100%;
    height: auto;
}

.woo-slide {
    display: none;
}

.woo-slide img {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.woo-prev, .woo-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 24px;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 4;
}

.woo-prev { left: 0; }
.woo-next { right: 0; }
