/**
 * GLOBAL LIGHTBOX STYLES
 */
#pm-lightbox {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    display: none; align-items: center; justify-content: center;
    padding: 40px; cursor: zoom-out;
    animation: pmFadeIn 0.3s ease;
}

#pm-lightbox img {
    max-width: 90%; max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    object-fit: contain;
    animation: pmZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#pm-lightbox .close-lightbox {
    position: absolute; top: 30px; right: 30px;
    background: white; color: #0f172a;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#pm-lightbox .close-lightbox:hover { transform: rotate(90deg) scale(1.1); }

@keyframes pmFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pmZoomIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
