/* Galerija Filter Kategorija — frontend stilovi */

.gf-filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    font-family: inherit;
}

.gf-filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gf-filter-label {
    font-weight: 700;
    font-size: 15px;
    color: #1a2e5a;
    white-space: nowrap;
    margin-right: 4px;
}

.gf-filter-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid #1a2e5a;
    color: #1A2E5A !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.3;
}

.gf-filter-item:hover {
    background: #1a2e5a;
    color: #ffffff !important;
    text-decoration: none;
}

/* Aktivna stavka (aria-pressed="true") */
.gf-filter-item[aria-pressed="true"] {
    background: #1a2e5a;
    color: #ffffff !important;
    font-weight: 700;
    border-color: #1a2e5a;
}

/* Mobilni uređaji */
@media (max-width: 768px) {
    .gf-filter-row {
        gap: 8px;
    }

    .gf-filter-item {
        padding: 6px 16px;
        font-size: 13px;
    }

    .gf-filter-label {
        font-size: 14px;
    }
}
