/* ─── LIGHTBOX ─── */
.kk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.kk-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.kk-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: var(--kk-overlay-bg, rgba(0,0,0,0.92));
}

.kk-lightbox__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.kk-lightbox__img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    display: block;
    border-radius: 2px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transition: opacity 0.2s ease;
    user-select: none;
}

.kk-lightbox__img.is-loading {
    opacity: 0.2;
}

.kk-lightbox__caption {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
}

/* ─── NUPUD ─── */
.kk-lightbox__btn {
    position: fixed;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    z-index: 2;
    line-height: 1;
    /* Eemalda kõik brauseri vaikestiilid */
    outline: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.kk-lightbox__btn:hover {
    background: rgba(255,255,255,0.25);
}

.kk-lightbox__btn:focus {
    outline: none;
    box-shadow: none;
}

.kk-lightbox__close {
    top: 16px;
    right: 16px;
    font-size: 16px;
    /* Eemalda roosa WP admin taust */
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
}

.kk-lightbox__prev {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.kk-lightbox__next {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.kk-lightbox__counter {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    letter-spacing: 0.08em;
    z-index: 2;
    pointer-events: none;
}

/* Gutenbergi galerii pildid klikitavaks */
.wp-block-gallery figure.wp-block-image {
    cursor: pointer;
}

@media (max-width: 600px) {
    .kk-lightbox__prev { left: 6px; }
    .kk-lightbox__next { right: 6px; }
    .kk-lightbox__btn  { width: 40px; height: 40px; }
}
