.navbar-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: .5em;
}

.navbar-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.navbar-line{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.navbar-chip{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 8px 10px;
    gap: .2em;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: rgba(18, 18, 18, 0.7);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.navbar-chip:hover{
    border: 2px solid rgba(0, 0, 0);
    color: #000;
}

.navbar-chip--active{
    border: 2px solid #e41d2f;
    color: #000;
}

.navbar-count {
    display: none;
}

.navbar-chip {
    transition: all 0.2s ease;
}

.navbar-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .navbar-line {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .navbar-chip {
        font-size: 14px;
        padding: 6px 8px;
    }
    
    .navbar-count {
        display: none;
    }
    
    .filter-results-header {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .filter-results-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .navbar-title {
        font-size: 20px;
    }
    
    .navbar-chip {
        font-size: 12px;
        padding: 4px 6px;
    }
    
    .navbar-chip img {
        width: 12px;
        height: 12px;
    }
}