.gl-aae42e70-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gl-aae42e70-item {
    cursor: pointer;
    text-align: center;
}
.gl-aae42e70-image-wrap {
    overflow: hidden;
    margin-bottom: 10px;
}
.gl-aae42e70-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.gl-aae42e70-label {
    font-size: 14px;
    font-weight: 500;
}
/* Lightbox Styles */
.gl-aae42e70-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.gl-aae42e70-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.gl-aae42e70-lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}
.gl-aae42e70-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    object-fit: contain;
}
.gl-aae42e70-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}
