/**
 * Fix for duplicate menu/header on category pages
 * This hides the redundant category header that appears like a menu
 */

/* Option 1: Hide the category header completely */
#js-product-list-header {
    display: none;
}

/* Option 2: If you want to keep the header but style it differently, use this instead: */
/*
#js-product-list-header {
    margin-bottom: 20px;
}

#js-product-list-header .h1 {
    font-size: 24px;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

#js-product-list-header .block-category {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
*/

/* Option 3: Hide only on pages where left menu is present */
/*
.page-category #left-column + #content-wrapper #js-product-list-header {
    display: none;
}
*/