/*
 * ScanWear — WooCommerce Product & Shop CSS Cleanup
 * ═══════════════════════════════════════════════════════════════════
 * Fluent Snippets Settings:
 *   Type    → CSS Snippet
 *   Run on  → Frontend (All Pages)
 *   Status  → Active
 * ═══════════════════════════════════════════════════════════════════
 *
 * Covers:
 *  1. Hide breadcrumbs on single product pages
 *  2. Hide SKU and Category meta on product pages
 *  3. Hide Blocksy theme category labels on shop/product cards
 *  4. Hide Continue Shopping Button on cart page
 */

/* ── 1. Breadcrumbs — hidden on single product pages ── */
.single-product .woocommerce-breadcrumb,
.single-product .ct-breadcrumbs,
.single-product [class*="breadcrumb"] {
    display: none !important;
}

/* ── 2. SKU and Category meta — hidden on all product pages ── */
.product_meta .sku_wrapper,
.product_meta .posted_in {
    display: none !important;
}

/* ── 3. Blocksy theme category labels on shop/product cards ── */
.entry-meta,
.meta-categories {
    display: none !important;
}

/* ── 4. Hide Continue Shopping Button on cart page ── */
.woocommerce-notices-wrapper a.button.wc-forward {
    display: none !important;
}
