Hi,
The related products on the bottom of your product details page already uses the full width made available by your Joomla template.
And if you want the content area of your template to use the full width of the browser window, then you can do it with CSS. For example:
.g-container {
width: 100% !important;
}
And if you want this only for the product pages, then you can use this CSS instead:
.com_hikashop.view-product.layout-show .g-container {
width: 100% !important;
}
As this is something relative to your template, and not much about HikaShop, you should normally ask this to your template provider, not us.