.gallery-title
{
    font-size: 36px;
    color:white;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #5e5e5e;
}

.filter-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.filter-button
{
    font-size: 11px;
    text-align: center;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    background: none;
    border: none;
    padding: 4px 0;
    margin-bottom: 0;
    position: relative;
    transition: color 0.3s;
}
.filter-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #0069ff;
    transition: width 0.3s;
    border-radius: 1px;
}
.filter-button:hover
{
    color: #ffffff;
    background: none;
}
.filter-button:hover::after
{
    width: 100%;
}

.btn-default.filter-button:active
{
    color: #fff;
    background: none;
}
.filter-button.active
{
    color: #fff;
    background: none;
}
.filter-button.active::after
{
    width: 100%;
}

.port-image
{
    width: 100%;
}

.gallery_product
{
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .filter-menu {
        gap: 16px;
    }
    .filter-button {
        font-size: 10px;
        letter-spacing: 2px;
    }
}
