/* =============================================================================
   Mobile menu toggle (hamburger) — visible bars on white circular button
   Root cause: empty <span> bars are flex items that shrink to height:0 inside
   the padded circular button (critical CSS margin:5px 0 + gap + padding).
   Cache: 20260807menufix1
   ============================================================================= */

@media (max-width: 980px) {
  html body .topbar .menu-toggle,
  html body header.topbar .menu-toggle,
  html body .menu-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    padding: 0 !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    color: #101828 !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(16, 24, 40, 0.14) !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 26px rgba(16, 24, 40, 0.12) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    overflow: visible !important;
  }

  html body .topbar .menu-toggle > span,
  html body header.topbar .menu-toggle > span,
  html body .menu-toggle > span {
    display: block !important;
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    align-self: center !important;
    box-sizing: border-box !important;
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 2.5px !important;
    min-height: 2.5px !important;
    max-height: 2.5px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #101828 !important;
    background-color: #101828 !important;
    background-image: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform-origin: center !important;
    pointer-events: none !important;
  }

  /* Open → X (preserve existing motion; keep bars non-zero thickness) */
  html body .topbar .menu-toggle[aria-expanded="true"] > span:nth-child(1),
  html body .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg) !important;
  }
  html body .topbar .menu-toggle[aria-expanded="true"] > span:nth-child(2),
  html body .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0.2) !important;
  }
  html body .topbar .menu-toggle[aria-expanded="true"] > span:nth-child(3),
  html body .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg) !important;
  }
}

/* deploy-bump 20260807menufix1b */
/* deploy-bump 20260807menufix1c */
