.global-menu-toggle {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font: inherit;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.global-menu-toggle:hover {
  background: #ffffff;
}

.global-site-menu {
  position: fixed;
  top: 70px;
  left: 16px;
  z-index: 1099;
  width: min(274px, calc(100% - 32px));
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.94));
  color: #0f172a;
  box-shadow:
    0 20px 46px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.global-site-menu.hidden {
  display: none;
}

.global-site-menu-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px 9px;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(248, 250, 252, 0.78);
  color: #334155;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.global-site-menu-links {
  display: grid;
  gap: 2px;
  padding: 7px;
}

.global-site-menu-link {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 12px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.global-site-menu-link:hover,
.global-site-menu-link[aria-current="page"] {
  background: #f1f5f9;
}

.global-site-menu-link[aria-current="page"] {
  box-shadow: inset 3px 0 0 #facc15;
}

.global-site-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  font-size: 15px;
  line-height: 1;
  text-align: center;
}

.global-site-menu-separator {
  height: 1px;
  margin: 5px 8px;
  background: #e2e8f0;
}

.global-site-menu-copyright {
  padding: 7px 10px 8px;
  color: #64748b;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

body.has-global-menu .topbar,
body.has-global-menu .site-header-inner {
  padding-left: 56px;
}

@media (max-width: 720px) {
  .global-menu-toggle {
    top: 12px;
    left: 10px;
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .global-site-menu {
    top: 58px;
    left: 10px;
    width: min(274px, calc(100% - 20px));
  }

  .global-site-menu-link {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 13px;
  }

  body.has-global-menu .topbar,
  body.has-global-menu .site-header-inner {
    padding-left: 48px;
  }

  body.has-global-menu .topbar {
    padding-left: 0;
  }

  body.has-global-menu .topbar .brand {
    margin-left: 48px;
  }

}
