.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}
.gallery-filters-container {
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 15px 0;
    margin-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    min-width: 0;
}
.gallery-filters-container::-webkit-scrollbar {
    display: none;
}
.gallery-chip {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 6px;
    border-radius: 25px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-family: "opensansSemiBold", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
    scroll-snap-align: start;
}
.gallery-chip.active {
    background-color: #16a343;
    color: #ffffff;
    border-color: #16a343;
    box-shadow: 0 4px 6px rgba(22, 163, 67, 0.3);
}
.gallery-chip:hover:not(.active) {
    background-color: #16a343;
    color: #fff;
    border-color: #16a343;
}
.gallery-chip:last-child {
    margin-right: 0;
}
.gallery-nav-btn {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    color: #333;
}
.gallery-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}
