/* BEYTÜŞŞEBAPLILAR — Components (lightbox, modal overlay) */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: var(--z-modal);
    background: rgba(0,0,0,0.85); align-items: center; justify-content: center; padding: var(--space-xl);
}
.lightbox.active { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-lg); }
.lightbox__close {
    position: absolute; top: var(--space-lg); right: var(--space-lg);
    width: 40px; height: 40px; border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1); border: none; color: var(--color-white);
    font-size: var(--text-lg); cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
