No sidebar in single product page

Hi,
I want sidebar to be removed from my single product pages only.
using the below i got rid of the sidebar but the page is not full width, Sidebar are still exists.
single-product .site-content {
width: 100%;
}
.single-product #secondary {
display: none;
}

my demo site: wp.valicom.eu

Could you please help me to resolve this issue?
Thanks

Hi @papakyri,

I hope you are well today and thank you for your question.

You can try achieving this by using the following CSS code.

.single-product .main-content-inner {
    width: 100%;
}
.single-product #secondary {
    display: none;
}

Best Regards,
Movin