Hello,
The .wd-entities-title class is used globally for both product titles and category titles, which is why your CSS affects product names as well.
To style only the category names inside the Product Categories element/widget, please use this css code:
.wd-cat .wd-entities-title {
background-color: #ff0000;
color: #fff !important;
padding: 10px;
border-radius: 15px;
}
The .wd-cat class is specific to category items, so this CSS will only affect category titles and will not modify product titles on your shop page.
Best Regards