.woo-category-menu {
list-style: none;
padding: 0;
margin: 0;
width: 100%;
}
.woo-category-menu .category-item {
margin: 0;
width: 100%;
}
.woo-category-menu .category-header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.woo-category-menu .category-link {
display: block;
padding: 8px 0;
color: #333;
text-decoration: none;
transition: all 0.2s ease;
font-size: 14px;
flex-grow: 1;
text-align: left;
}
.woo-category-menu .toggle-btn {
background: none;
border: none;
color: #666;
font-weight: bold;
cursor: pointer;
padding: 0 8px;
}
.woo-category-menu .category-item.expanded > .category-header .toggle-btn {
content: "-";
}
.woo-category-menu .sub-categories {
display: none;
list-style: none;
padding-left: 15px;
margin: 0;
width: 100%;
}
.woo-category-menu .category-item.expanded > .sub-categories {
display: block;
}
.woo-category-menu .category-link:hover {
color: #000;
}