jQuery(document).ready(function($){
var $tabs = $(".woocommerce-tabs ul.tabs");
// Check if the tabs exist
if ($tabs.length) {
// Wrap first two tabs (Images & Videos) into a left-aligned div
$tabs.children("li:nth-child(1), li:nth-child(2)").wrapAll('');
// Wrap last two tabs (Description & Packing Accessories) into a right-aligned div
$tabs.children("li:nth-child(3), li:nth-child(4)").wrapAll('');
}
});