/* Hide "Shop By" text in layered navigation */
.block.filter .block-title.filter-title strong[data-role="title"] {
    display: none !important;
}

/* Add "Filter" text after the block title */
.block.filter .block-title.filter-title::after {
    content: "Filter";
    font-weight: bold;
    display: block;
}

/* Change "Shopping Options" to "Filter" */
.block-subtitle.filter-subtitle {
    display: none !important;
}

/* Add "Filter" text before the filter options */
.filter-options::before {
    content: "Filter";
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
