/* Remove product image in embedded product pages */
.single-product .product .woocommerce-product-gallery,
.product_page .woocommerce-product-gallery {
    display: none !important;
}

/* Make product layout single-column when embedded */
.product_page .product {
    display: block !important;
}

/* Hide SKU, categories and tabs */
.product_page .product_meta,
.product_page .woocommerce-tabs {
    display: none !important;

/* Make embedded product single-column and centred */
.product_page .product {
    max-width: 520px;
    margin: 0 auto !important;
}

/* Centre the summary area */
.product_page .summary {
    float: none !important;
    margin: 0 auto !important;
}

/* Hide SKU, category and tabs */
.product_page .product_meta,
.product_page .woocommerce-tabs {
    display: none !important;
}

/* Hide the extra quantity +/- field – we use the 'Quantity' dropdown only */
.product_page .quantity {
    display: none !important;
}

}

/* Reduce spacing above/below */
.product_page .product {
    margin: 0 !important;
    padding: 0 !important;
}

/* Make form elements narrower and centred */
.product_page form.cart,
.product_page .summary {
    max-width: 480px;
    margin: 0 auto;
}

/* Hide “Description / Additional information” tabs entirely */
.

/* Hide 'View basket' button on product forms */
.product_page .wc-forward,
.single-product .wc-forward {
    display: none !important;
}

