Hello,
Unfortunately, changing the “Additional Information” tab title via CSS isn’t possible as CSS is for styling, not content. The title text can only be modified through PHP or using a plugin like Loco Translate.
Try to add the following code in the function.php of the child theme to rename the products tabs.
function woo_rename_tabs( $tabs ) {
$tabs['description']['title'] = __( 'More Information' ); // Rename the description tab
$tabs['reviews']['title'] = __( 'Ratings' ); // Rename the reviews tab
$tabs['additional_information']['title'] = __( 'Product Data' ); // Rename the additional information tab
return $tabs;
}
Best Regards