.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.filter-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn.active {
    font-weight: bold;
}
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.gallery-item {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}
.gallery-item.show {
    display: block;
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}
.gallery-grid.square .gallery-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.gallery-grid.uniform .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.gallery-grid.masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 10px;
}
.gallery-grid.masonry .gallery-item img {
    width: 100%;
    height: auto;
}
.gpro-load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

