/* Category Sidebar Widget */
.widget-box {
    background: hsl(var(--white) / 0.05);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
}

.widget-title {
    color: hsl(var(--white));
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid hsl(var(--base));
}

.category-widget {
    margin-top: 16px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: hsl(var(--white) / 0.03);
    border-radius: 6px;
    color: hsl(var(--white) / 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-list li a:hover {
    background: hsl(var(--base) / 0.1);
    color: hsl(var(--white));
    transform: translateX(4px);
}

.category-list li.active a {
    background: hsl(var(--base));
    color: hsl(var(--white));
    font-weight: 500;
}

.category-list .count {
    background: hsl(var(--white) / 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.category-list li.active .count {
    background: hsl(var(--white) / 0.2);
}

@media (max-width: 991px) {
    .widget-box {
        margin-bottom: 20px;
    }
}
