/**
 * NKD WooCommerce Reviews — Lightbox Modal Styles
 */

.nkd-wr-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nkd-wr-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .85);
}
.nkd-wr-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nkd-wr-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

/* Navigation buttons */
.nkd-wr-lightbox-prev,
.nkd-wr-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: none;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    z-index: 2;
}
.nkd-wr-lightbox-prev:hover,
.nkd-wr-lightbox-next:hover { background: rgba(255, 255, 255, .3); }
.nkd-wr-lightbox-prev { left: -56px; }
.nkd-wr-lightbox-next { right: -56px; }

/* Close button */
.nkd-wr-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
}
.nkd-wr-lightbox-close:hover { opacity: .7; }

/* Counter */
.nkd-wr-lightbox-counter {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    white-space: nowrap;
}

/* ── Mobile ────────────────────────────────────────── */
@media (max-width: 549px) {
    .nkd-wr-lightbox-prev { left: 8px; }
    .nkd-wr-lightbox-next { right: 8px; }
    .nkd-wr-lightbox-prev,
    .nkd-wr-lightbox-next { width: 36px; height: 36px; font-size: 22px; background: rgba(0,0,0,.4); }
    .nkd-wr-lightbox-close { top: 8px; right: 8px; font-size: 28px; }
    .nkd-wr-lightbox-counter { bottom: 8px; }
}
