Produkter

Alle produkter
Pensler
Malerruller
Maletilbehør
Børstevarer

.filter-bar {
display: flex;
gap: 28px;
align-items: center;
margin-bottom: 40px;
border-bottom: 1px solid #eee;
padding-bottom: 12px;
overflow-x: auto;
}
.filter-item {
text-decoration: none;
color: #777;
font-size: 15px;
font-weight: 500;
position: relative;
padding-bottom: 6px;
transition: all 0.2s ease;
white-space: nowrap;
}
.filter-item:hover {
color: #000;
}
.filter-item::after {
content: “”;
position: absolute;
left: 0;
bottom: 0;
width: 0%;
height: 2px;
background: #000;
transition: width 0.25s ease;
}
.filter-item:hover::after {
width: 100%;
}
.filter-item.active {
color: #000;
font-weight: 600;
}
.filter-item.active::after {
width: 100%;
}