/*
 * hide-configurable-sku.css
 * --------------------------------------------------------------------------
 * Referenced by Magento_Catalog/layout/catalog_product_view_type_configurable.xml.
 * On configurable product pages the parent SKU is not meaningful to shoppers
 * (the real SKU resolves from the chosen options), so the SKU row rendered in
 * product-info.phtml's <dl id="product-details"> is hidden.
 *
 * Magento adds the body class `page-product-configurable` on configurable
 * product view pages. The SKU row carries `attribute-sku` (see product-info.phtml).
 * --------------------------------------------------------------------------
 */

body.page-product-configurable #product-details .attribute-sku {
    display: none;
}
