/**
 * Pill Menu Fix - Proper Sticky Behavior
 * Fixes floating/scrolling pill menu issue
 * Version 1.0.0
 */

/* Disable problematic sticky on filter bars - let them scroll with content */
.category-filter-bar,
.filter-bar-section,
.filter-pills {
    position: relative !important;
    top: auto !important;
    z-index: 50 !important;
}

/* Override other files that set sticky */
.revved-category-filter .category-filter-bar,
.archive .category-filter-bar,
.category .category-filter-bar {
    position: relative !important;
    top: auto !important;
}

/* Proper containment for content areas */
.revved-main,
.revved-main-container,
.archive-posts,
main.site-main,
.content-primary {
    position: relative;
    z-index: 1;
    isolation: isolate;
}

/* Ensure header stays on top */
header.site-header,
.revved-header,
#masthead,
.header-menu.sticky,
#stickyHeader {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}
