To remove Header/Footer on Individual Product Detail, you can use code like this to Custom CSS box.
body[class*="type-products"].view-item {
header {
display: none !important;
}
footer.sections {
display: none !important;
}
}