The module adds a main category attribute to product.
- Magento >= 2.4.4
- PHP >= 8.0.0
composer require pixelopen/magento-product-main-category
$mainCategory = $product->getMainCategory();
// OR
$mainCategory = $product->getData('main_category');
// OR
$mainCategory = $product->getCustomAttribute('main_category')?->getValue();