.lmn-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
    justify-content: center;
}

.lmn-thumb {
    width: 174px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 40px;
    transition: transform 0.2s;
}

.lmn-thumb:hover {
    transform: scale(1.05);
}

/* Lightbox */
#lmn-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lmn-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 6px;
    display: block;
}

#lmn-close,
#lmn-prev,
#lmn-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    user-select: none;
    line-height: 1;
    padding: 0;
}

#lmn-close { top: 12px;  right: 32px; font-size: 3em; }
#lmn-prev  { left: 40px; font-size: 2em; top: 50%; transform: translateY(-50%); }
#lmn-next  { right: 40px; font-size: 2em; top: 50%; transform: translateY(-50%); }
