/* xl - DESKTOP STYLES */ 
/**
 * EvoPeps Suppress Legacy ElementsKit Category Filter Row
 *
 * FINDING: the shop/category archive pages render TWO category filter
 * rows: (1) a legacy ElementsKit "Simple Tab" widget with old labels
 * (All Peptides / Peptides Blend / Lab Supply / Single Peptides /
 * Research Solvents) that does nothing when clicked, and (2) the real,
 * working, data-driven pill tabs (All Products / Research Peptides /
 * Peptide Blends / Laboratory Supplies / Support Supplies) that now
 * correctly filter the grid after the category-query root-cause fix.
 *
 * The legacy widget actually exists TWICE in the page markup as two
 * separate Elementor elements built for different breakpoints:
 *   - .elementor-element-791158b -- carries elementor-hidden-desktop /
 *     elementor-hidden-laptop / elementor-hidden-tablet (mobile-only copy)
 *   - .elementor-element-f19d347 -- carries elementor-hidden-mobile
 *     (desktop/tablet/laptop copy -- THIS is the one customers were
 *     actually seeing on desktop)
 * Both are dead leftovers fully superseded by the working pill tabs.
 *
 * FIX: hide both exact widget instances, by their unique Elementor
 * element IDs, on every breakpoint. This does not touch the working
 * pill-tab navigation, search box, product grid, or pagination -- only
 * these two specific dead legacy elements.
 */
.elementor-element-791158b,
.elementor-element-f19d347 {
    display: none !important;
}


