/* Minimal vanilla JS lightbox */
.mp-lightbox-overlay{ position:fixed; inset:0; background:rgba(0,0,0,.9); display:flex; align-items:center; justify-content:center; z-index:99999; }
.mp-lightbox-overlay img{ max-width:90vw; max-height:90vh; }
.mp-lightbox-close, .mp-lightbox-prev, .mp-lightbox-next{
    position:fixed; top:50%; transform:translateY(-50%);
    background:rgba(255,255,255,.15); color:#fff; border:none; width:44px; height:60px; cursor:pointer; font-size:28px; border-radius:10px;
}
.mp-lightbox-close{ top:24px; right:24px; transform:none; width:36px; height:36px; border-radius:50%; }
.mp-lightbox-prev{ left:24px; }
.mp-lightbox-next{ right:24px; }
.mp-lightbox-counter{ position:fixed; bottom:24px; left:50%; transform:translateX(-50%); color:#fff; font: 500 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial; }
