/* BAY-GU-KAB lightbox stilleri — ortak (anasayfa galeri + galeri sayfası) */
.bg-lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 16, 12, .88);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px 64px;
    cursor: zoom-out;
}
.bg-lb-overlay.is-open { display: flex; }

.bg-lb-stage {
    max-width: 1280px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: default;
}

.bg-lb-img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .5);
    background: #1a1a1a;
}

.bg-lb-caption {
    text-align: center;
    color: #fff;
    max-width: 760px;
}
.bg-lb-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .2px;
    line-height: 1.3;
}
.bg-lb-sub {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255, 217, 145, .92);
    margin-top: 6px;
}

.bg-lb-close,
.bg-lb-prev,
.bg-lb-next {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, .35);
    background: rgba(15, 31, 23, .55);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease, transform .15s ease;
    backdrop-filter: blur(4px);
}
.bg-lb-close:hover,
.bg-lb-prev:hover,
.bg-lb-next:hover {
    background: rgba(31, 138, 78, .85);
    border-color: rgba(255, 255, 255, .75);
}

.bg-lb-close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
}
.bg-lb-prev,
.bg-lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}
.bg-lb-prev { left: 22px; }
.bg-lb-next { right: 22px; }

.bg-lb-counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: rgba(15, 31, 23, .65);
    padding: 6px 14px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    letter-spacing: .04em;
}

/* Tıklanabilir cursor için yardımcı class */
[data-bg-lightbox] { cursor: zoom-in; }

@media (max-width: 760px) {
    .bg-lb-overlay { padding: 16px; }
    .bg-lb-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 22px; }
    .bg-lb-prev { left: 8px; width: 42px; height: 42px; font-size: 22px; }
    .bg-lb-next { right: 8px; width: 42px; height: 42px; font-size: 22px; }
    .bg-lb-title { font-size: 15px; }
    .bg-lb-sub { font-size: 11px; }
    .bg-lb-img { max-height: calc(100vh - 200px); }
}
