/* 105 - Shop Page Styles */
/* General CSS for the WooCommerce main shop page (/shop) */

/**
 * Black background for WoodMart shop page title area.
 *
 * - Apply ONLY to the main shop archive (post-type-archive-product).
 * - Product-category archives have their own styling and should not inherit this.
 */

/* Main shop archive header (black) */
body.post-type-archive-product .wd-page-title,
body.post-type-archive-product .wd-page-title .container {
    background-color: #000;
}

/* Safety net: if this stylesheet is still present after AJAX navigation,
   ensure product-category archives do not render the black Shop header. */
body.tax-product_cat .wd-page-title,
body.tax-product_cat .wd-page-title .container {
    background-color: transparent !important;
}
