/* Start custom CSS *//* ✅ Set correct background color on post pages */
header.header-wrapper.is-page-header {
  background-color: #f5f3ef !important;
}
#quadmenu .quadmenu-container,
#quadmenu .quadmenu-navbar-collapse {
  background-color: #f5f3ef !important;
}

/* ✅ Hide default/duplicate mobile menu */
@media (max-width: 1024px) {
  div.burger-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
  }
}

/* ✅ Hide QuadMenu's white hamburger icon */
.quadmenu-navbar-toggle {
  display: none !important;
}

/* ✅ Force QuadMenu toggle visible if needed */
.quadmenu-toggle {
  display: block !important;
}

/* ✅ Highlight active menu tab in orange */
.shiftnav .current–menu–item > .shiftnav–target {
  background-color: #f78538 !important;
}

/* ✅ Top padding on mobile */
#shiftnav–toggle–main {
  padding-top: 20px !important;
  padding-bottom: 40px !important;
}/* End custom CSS */