/* Gallery Lightbox - shared by gallery-fursuit & gallery-puppet */
.gal-lb-overlay{position:fixed;inset:0;z-index:900;background:rgba(0,0,0,.85);display:none;align-items:center;justify-content:center;opacity:0;transition:opacity .3s}
.gal-lb-overlay.show{display:flex;opacity:1}
.gal-lb-box{display:flex;width:90%;max-width:1100px;max-height:85vh;background:#1a1a1a;border-radius:12px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.5);flex-direction:row-reverse}
.gal-lb-left{width:340px;min-width:340px;padding:32px 24px;background:#222;color:#eee;overflow-y:auto;max-height:85vh;box-sizing:border-box;border-right:1px solid #333}
.gal-lb-right{flex:1;display:flex;align-items:center;justify-content:center;background:#111;min-height:400px;overflow:hidden}
.gal-lb-close{position:absolute;top:12px;right:16px;z-index:10;width:36px;height:36px;background:rgba(255,255,255,.15);border:none;border-radius:50%;color:#fff;font-size:22px;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1}
.gal-lb-close:hover{background:rgba(255,255,255,.3)}
.gal-lb-title{font-size:24px;font-weight:900;margin:0 0 8px;color:#fff}
.gal-lb-sub{font-size:14px;color:#aaa;margin:0 0 20px}
.gal-lb-desc{font-size:14px;color:#ccc;line-height:1.8;margin:0 0 20px}
.gal-lb-info p{font-size:13px;color:#bbb;padding:6px 0;border-bottom:1px solid #333;display:flex;justify-content:space-between}
.gal-lb-info p span:last-child{color:#e8a87c;font-weight:600}
.gal-lb-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:20px}
.gal-lb-tag{padding:4px 12px;border-radius:20px;font-size:11px;font-weight:700;background:#333;color:#aaa}

/* ---- Gallery Lightbox Mobile ---- */
@media(max-width:768px){
  .gal-lb-overlay{padding:10px}
  .gal-lb-box{flex-direction:column-reverse;width:95%;max-height:90vh;border-radius:8px}
  .gal-lb-left{width:100%;min-width:unset;max-height:40vh;border-right:none;border-top:1px solid #333;padding:20px 16px}
  .gal-lb-right{min-height:200px;max-height:50vh}
  .gal-lb-title{font-size:18px}
  .gal-lb-sub{font-size:12px;margin-bottom:12px}
  .gal-lb-desc{font-size:13px;line-height:1.6;margin-bottom:12px}
  .gal-lb-close{top:8px;right:8px;width:32px;height:32px;font-size:18px}
}
@media(max-width:480px){
  .gal-lb-overlay{padding:6px}
  .gal-lb-box{width:98%;max-height:92vh}
  .gal-lb-left{padding:16px 12px;max-height:45vh}
  .gal-lb-right{min-height:160px;max-height:45vh}
}
