.wc-category-sidebar {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
}

.category-item {
    margin-bottom: 10px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap:20px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.category-header:hover {
    background: #f5f5f5;
}

.category-title {
    font-weight: 600;
    font-size: 16px;
}

.dropdown-toggle {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.subcategories {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.subcategories li {
    margin: 5px 0;
}

.subcategories li a {
    color: #333;
    text-decoration: none;
}

.subcategories li a:hover {
    color: #0073aa;
}
