.mk-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.mk-lightbox.is-open {
    display: flex;
}

.mk-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-lightbox-inner img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    display: block;
}

.mk-lightbox-iframe-wrap {
    width: 80vw;
    max-width: 960px;
    aspect-ratio: 16 / 9;
}

.mk-lightbox-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.mk-lightbox-close {
    position: fixed;
    top: 20px;
    right: 28px;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10000;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.mk-lightbox-close:hover {
    opacity: 1;
}

.mk-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.mk-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mk-lightbox-prev {
    left: 20px;
}

.mk-lightbox-next {
    right: 20px;
}

.mk-lightbox-caption {
    position: fixed;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    white-space: nowrap;
}

.mk-lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
}
