With some chatgpt and a bit of digging managed to write this code which worked to move everything.
remove_action(‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 20);
add_action(‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 31);
remove_action(‘woocommerce_single_product_summary’, ‘woodmart_sguide_display’, 38);
add_action(‘woocommerce_single_product_summary’, ‘woodmart_sguide_display’, 30);
add_action(‘init’, ‘remove_woodmart_sguide_display’);
function remove_woodmart_sguide_display() {
remove_action(‘woocommerce_single_product_summary’, ‘woodmart_sguide_display’, 38);
}