.gallery-grid-fe1ff467 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item-fe1ff467 {
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item-fe1ff467 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-fe1ff467:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox-fe1ff467 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.lightbox-fe1ff467.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img-fe1ff467 {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close-fe1ff467,
.lightbox-prev-fe1ff467,
.lightbox-next-fe1ff467 {
    position: absolute;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 1000000;
}

.lightbox-close-fe1ff467:hover,
.lightbox-prev-fe1ff467:hover,
.lightbox-next-fe1ff467:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-close-fe1ff467 {
    top: 20px;
    right: 20px;
}

.lightbox-prev-fe1ff467 {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next-fe1ff467 {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .gallery-grid-fe1ff467 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .gallery-grid-fe1ff467 {
        grid-template-columns: 1fr;
    }
}