/* Simple Lightbox */
.lkv-lightbox-backdrop{position:fixed;inset:0;background:rgba(15,23,42,.8);display:flex;align-items:center;justify-content:center;z-index:9999;opacity:0;transition:opacity .15s ease;overflow:hidden}
.lkv-lightbox-backdrop.is-open{opacity:1}
.lkv-lightbox-figure{width:90vw;height:90vh;position:relative;display:flex;align-items:center;justify-content:center}
.lkv-lightbox-figure img{width:100%;height:100%;max-width:90vw;max-height:90vh;object-fit:contain;display:block;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.lkv-lightbox-close{position:absolute;top:-12px;right:-12px;background:#fff;border:none;border-radius:999px;width:36px;height:36px;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 6px 16px rgba(0,0,0,.2)}
.lkv-lightbox-nav{position:absolute;inset:0;display:flex;align-items:center;justify-content:space-between;pointer-events:none}
.lkv-lightbox-btn{pointer-events:auto;background:rgba(255,255,255,.9);border:none;border-radius:999px;width:40px;height:40px;margin:0 12px;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 6px 16px rgba(0,0,0,.2)}
@media (hover:hover){.lkv-lightbox-btn:hover{background:#fff}}
/* Prevent body scroll when lightbox is open */
.lkv-no-scroll{overflow:hidden}
