/* Keep product category dropdowns expanded */
.widget_product_categories .cat-parent > .children,
.product-categories .cat-parent > .children {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: none !important;
}

/* Remove toggle icon if present */
.widget_product_categories .cat-parent > a::after,
.product-categories .cat-parent > a::after {
    transform: rotate(90deg) !important;
}

/* Hide Uncategorized category - using the class I can see: cat-item-1128 */
.cat-item-1128 {
    display: none !important;
}

/* Alternative: hide any link containing "uncategorized" */
.product-categories .cat-item a[href*="uncategorized"] {
    display: none !important;
}
.product-categories .cat-item:has(a[href*="uncategorized"]) {
    display: none !important;
}