.categories-wrapper {
    margin: 15px 0 25px 0; /* yuxarı və alt boşluq */
}

.categories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 5px;
    background: var(--bg-color);
    border-radius: 12px;
    position: relative;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 11px;
    width: 60px;
    transition: transform 0.2s;
    position: relative;
    margin: 5px 0;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.icon-circle img {
    width: 28px;
    height: 28px;
}

/* Hover effekti */
.category-card:hover .icon-circle {
    background: var(--card-hover);
}

/* Aktiv kateqoriya (alt xətt) */
.category-card.active-category::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Alt separator */
.categories-separator {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin-top: 10px;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Dark mod */
body.dark .icon-circle {
    background: #2c2c2c;
}
body.dark .category-card:hover .icon-circle {
    background: #333;
}
body.dark .category-card.active-category::after {
    background: #ff6b6b;
}
body.dark .categories-separator {
    background: rgba(255,255,255,0.1);
    box-shadow: 0 1px 2px rgba(255,255,255,0.05);
}