/* Подсветка магаза */
.maqazikkk {
position: relative;
display: inline-block;
color: yellow;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.maqazikkk::after {
content: "";
position: absolute;
left: 50%;
bottom: -4px;
width: 0;
height: 2px;
background: linear-gradient(90deg, #ffff00, #ffff00);
transition: all 0.35s ease;
transform: translateX(-50%);
border-radius: 2px;
}
.maqazikkk:hover {
color: yellow;
}
.maqazikkk:hover::after {
width: 100%;
}