.project-gallery img { cursor: zoom-in; }
.plx {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.plx.is-open { display: flex; }
.plx__img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 4px;
}
.plx__close,
.plx__prev,
.plx__next {
    position: fixed;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.plx__close:hover,
.plx__prev:hover,
.plx__next:hover { background: rgba(201, 151, 59, 0.85); }
.plx__close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 24px;
}
.plx__prev,
.plx__next {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 32px;
}
.plx__prev { left: 20px; }
.plx__next { right: 20px; }
.plx__meta {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}
