.gbm-widget {
  --gbm-ink: #062c3d;
  --gbm-accent: #ffe486;
  --gbm-muted: #7d8d94;
  --gbm-surface: #fbfaf7;
  --gbm-panel-width: 720px;
  --gbm-header-offset: 12px;
  --gbm-bar-bg: rgba(255, 255, 255, 0.84);
  --gbm-bar-scrolled-bg: rgba(255, 255, 255, 0.96);
  --gbm-bar-border: rgba(255, 255, 255, 0.58);
  --gbm-logo-color: #062c3d;
  --gbm-logo-scrolled-color: #062c3d;
  position: relative;
  z-index: 999997;
  width: 100%;
  font-family: "Figtree", "Avenir Next", Avenir, Arial, sans-serif;
}

.gbm-widget *,
.gbm-widget *::before,
.gbm-widget *::after {
  box-sizing: border-box;
}

.gbm-bar {
  position: relative;
  z-index: 999997;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 74px;
  padding: 14px 18px;
  border: 1px solid var(--gbm-bar-border);
  border-radius: 22px;
  background: var(--gbm-bar-bg);
  box-shadow: 0 8px 28px rgba(6, 44, 61, 0.08);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  backdrop-filter: saturate(150%) blur(18px);
  transform: translateZ(0);
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1), max-width 520ms cubic-bezier(0.22, 1, 0.36, 1), min-height 420ms cubic-bezier(0.22, 1, 0.36, 1), padding 420ms cubic-bezier(0.22, 1, 0.36, 1), border-radius 520ms cubic-bezier(0.22, 1, 0.36, 1), background-color 360ms ease, box-shadow 360ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gbm-widget.gbm-is-sticky .gbm-bar {
  position: fixed;
  top: max(var(--gbm-header-offset), env(safe-area-inset-top));
  right: auto;
  left: 50%;
  width: calc(100% - 24px);
  max-width: 780px;
  transform: translate3d(-50%, 0, 0);
}

.gbm-widget.gbm-is-sticky.is-scrolled .gbm-bar {
  width: calc(100% - 32px);
  max-width: 700px;
  min-height: 64px;
  border-color: rgba(6, 44, 61, 0.08);
  border-radius: 999px;
  background: var(--gbm-bar-scrolled-bg);
  box-shadow: 0 14px 42px rgba(6, 44, 61, 0.16), 0 2px 8px rgba(6, 44, 61, 0.05);
  transform: translate3d(-50%, 0, 0) scale(0.97);
}

.gbm-widget.gbm-is-sticky.is-scrolled .gbm-brand__wordmark {
  color: var(--gbm-logo-scrolled-color);
  font-size: 24px;
  letter-spacing: -0.045em;
}

.gbm-widget.gbm-is-sticky.is-scrolled .gbm-toggle {
  box-shadow: 0 7px 18px rgba(6, 44, 61, 0.17);
  transform: scale(0.9);
}

body.admin-bar .gbm-widget.gbm-is-sticky .gbm-bar {
  top: calc(max(var(--gbm-header-offset), env(safe-area-inset-top)) + 32px);
}

.gbm-brand {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  color: var(--gbm-ink);
  text-decoration: none !important;
}

.gbm-brand__logo {
  display: block;
  width: 158px;
  max-width: min(47vw, 220px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.gbm-brand__wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--gbm-logo-color);
  font-size: 29px;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.04em;
  white-space: nowrap;
  transition: font-size 420ms cubic-bezier(0.22, 1, 0.36, 1), letter-spacing 420ms ease;
}

.gbm-brand__last {
  font-weight: 800;
}

.gbm-brand__tagline {
  display: block;
  overflow: hidden;
  max-width: 48vw;
  color: var(--gbm-muted);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.gbm-toggle,
.gbm-close {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  cursor: pointer;
}

.gbm-toggle {
  position: relative;
  z-index: 2;
  display: grid;
  flex: 0 0 auto;
  place-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: var(--gbm-ink);
  box-shadow: 0 9px 24px rgba(6, 44, 61, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gbm-toggle::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: inherit;
  content: "";
}

.gbm-toggle:hover,
.gbm-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 12px 30px rgba(6, 44, 61, 0.22);
  transform: translateY(-1px);
}

.gbm-widget.gbm-is-sticky.is-scrolled .gbm-toggle:hover,
.gbm-widget.gbm-is-sticky.is-scrolled .gbm-toggle:focus-visible {
  transform: scale(0.9) translateY(-1px);
}

.gbm-toggle__line {
  display: block;
  width: 21px;
  height: 1.5px;
  margin: 2.5px auto;
  border-radius: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, width 240ms ease;
}

.gbm-toggle__line:nth-child(2) {
  width: 15px;
  margin-left: 6px;
}

.gbm-widget.is-open .gbm-toggle__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.gbm-widget.is-open .gbm-toggle__line:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}

.gbm-widget.is-open .gbm-toggle__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.gbm-overlay {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 700ms;
}

.gbm-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(6, 44, 61, 0.42);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: opacity 360ms ease;
}

.gbm-panel {
  position: relative;
  z-index: 1;
  width: min(100%, var(--gbm-panel-width));
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  border-radius: 0 0 36px 36px;
  background-color: var(--gbm-surface);
  background-image: radial-gradient(ellipse 54% 34% at 100% 0%, rgba(255, 228, 134, 0.32) 0%, rgba(255, 228, 134, 0.12) 52%, transparent 76%);
  color: var(--gbm-ink);
  clip-path: circle(0 at calc(100% - 48px) 44px);
  transform: translateX(3%);
  transition: clip-path 680ms cubic-bezier(0.77, 0, 0.18, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gbm-widget.is-open .gbm-overlay {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.gbm-widget.is-open .gbm-backdrop {
  opacity: 1;
}

.gbm-widget.is-open .gbm-panel {
  clip-path: circle(155% at calc(100% - 48px) 44px);
  transform: translateX(0);
}

.gbm-panel__inner {
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  padding: 4px clamp(28px, 6.9vw, 40px) max(12px, env(safe-area-inset-bottom));
}

.gbm-panel__top {
  display: flex;
  min-height: 80px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gbm-panel__top .gbm-brand {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 360ms 250ms ease, transform 520ms 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gbm-widget.is-open .gbm-panel__top .gbm-brand {
  opacity: 1;
  transform: translateY(0);
}

.gbm-close {
  position: relative;
  display: inline-flex;
  width: clamp(148px, 31.8vw, 184px);
  height: clamp(64px, 13.9vw, 80px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 3px 3px clamp(17px, 4vw, 24px);
  border: 3px solid var(--gbm-ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gbm-ink);
  opacity: 0;
  transform: translateX(10px) scale(0.96);
  transition: opacity 300ms 250ms ease, transform 560ms 250ms cubic-bezier(0.22, 1, 0.36, 1), background-color 220ms ease;
}

.gbm-close__label {
  font-size: clamp(11px, 2.25vw, 13px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
}

.gbm-close__disc {
  position: relative;
  display: grid;
  width: clamp(54px, 11.8vw, 68px);
  height: clamp(54px, 11.8vw, 68px);
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--gbm-ink);
  color: #fff;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), background-color 220ms ease;
}

.gbm-close__disc i {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.gbm-close__disc i:first-child {
  transform: rotate(45deg);
}

.gbm-close__disc i:last-child {
  transform: rotate(-45deg);
}

.gbm-widget.is-open .gbm-close {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.gbm-close:hover,
.gbm-close:focus-visible {
  outline: 0;
  background: #fff;
}

.gbm-close:hover .gbm-close__disc,
.gbm-close:focus-visible .gbm-close__disc {
  transform: rotate(90deg);
}

.gbm-panel__kicker {
  flex: 0 0 auto;
  margin-top: clamp(20px, 4vh, 38px);
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(6, 44, 61, 0.13);
  color: var(--gbm-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gbm-panel__scroll {
  min-height: 0;
  padding: clamp(20px, 2.9vh, 28px) 2px 8px;
  overflow: hidden auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 44, 61, 0.22) transparent;
}

.gbm-panel__scroll::-webkit-scrollbar {
  width: 4px;
}

.gbm-panel__scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: rgba(6, 44, 61, 0.22);
}

.gbm-nav,
.gbm-nav ul,
.gbm-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gbm-nav > .menu {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.45vh, 14px);
}

.gbm-nav > .menu > .menu-item {
  opacity: 0;
  transform: translateY(18px);
}

.gbm-widget.is-open .gbm-nav > .menu > .menu-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gbm-widget.is-open .gbm-nav > .menu > .menu-item:nth-child(1) { transition-delay: 150ms; }
.gbm-widget.is-open .gbm-nav > .menu > .menu-item:nth-child(2) { transition-delay: 190ms; }
.gbm-widget.is-open .gbm-nav > .menu > .menu-item:nth-child(3) { transition-delay: 230ms; }
.gbm-widget.is-open .gbm-nav > .menu > .menu-item:nth-child(4) { transition-delay: 270ms; }
.gbm-widget.is-open .gbm-nav > .menu > .menu-item:nth-child(5) { transition-delay: 310ms; }
.gbm-widget.is-open .gbm-nav > .menu > .menu-item:nth-child(6) { transition-delay: 350ms; }
.gbm-widget.is-open .gbm-nav > .menu > .menu-item:nth-child(7) { transition-delay: 390ms; }
.gbm-widget.is-open .gbm-nav > .menu > .menu-item:nth-child(n+8) { transition-delay: 430ms; }

.gbm-nav a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  color: var(--gbm-ink);
  font-size: clamp(31px, 7vw, 40px);
  font-weight: 660;
  line-height: 1.18;
  letter-spacing: -0.045em;
  text-decoration: none !important;
}

.gbm-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gbm-nav a:hover::after,
.gbm-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.gbm-nav a:focus-visible {
  outline: 2px solid var(--gbm-accent);
  outline-offset: 6px;
}

.gbm-panel__secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(26px, 4vh, 36px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms 430ms ease, transform 620ms 430ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gbm-widget.is-open .gbm-panel__secondary {
  opacity: 1;
  transform: translateY(0);
}

.gbm-ideas {
  position: relative;
  display: grid;
  min-height: 106px;
  grid-template-columns: 64px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 17px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(199, 159, 42, 0.35);
  border-radius: 22px;
  background: var(--gbm-accent);
  color: var(--gbm-ink);
  text-decoration: none !important;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.gbm-ideas:hover,
.gbm-ideas:focus-visible {
  outline: 0;
  box-shadow: 0 12px 28px rgba(6, 44, 61, 0.1);
  transform: translateY(-2px);
}

.gbm-ideas:focus-visible {
  outline: 3px solid var(--gbm-ink);
  outline-offset: 3px;
}

.gbm-ideas__icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
}

.gbm-ideas__icon i {
  position: absolute;
  bottom: 19px;
  width: 4px;
  border-radius: 2px;
  background: var(--gbm-ink);
}

.gbm-ideas__icon i:nth-child(1) { height: 12px; transform: translateX(-10px); }
.gbm-ideas__icon i:nth-child(2) { height: 22px; }
.gbm-ideas__icon i:nth-child(3) { height: 16px; transform: translateX(10px); }

.gbm-ideas__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.gbm-ideas__eyebrow {
  overflow: hidden;
  color: #5f727b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.gbm-ideas__title {
  overflow: hidden;
  max-width: 100%;
  color: var(--gbm-ink);
  font-size: clamp(18px, 3.7vw, 21px);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gbm-ideas__arrow {
  display: inline-block;
  color: var(--gbm-ink);
  font-size: 26px;
  line-height: 1;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gbm-ideas:hover .gbm-ideas__arrow,
.gbm-ideas:focus-visible .gbm-ideas__arrow {
  transform: translateX(5px);
}

.gbm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gbm-action {
  position: relative;
  z-index: 0;
  display: inline-flex;
  min-height: 69px;
  align-items: center;
  justify-content: center;
  padding: 13px 17px;
  overflow: hidden;
  border: 1.5px solid var(--gbm-ink);
  border-radius: 999px;
  color: var(--gbm-ink);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.1;
  text-align: center;
  text-decoration: none !important;
  transition: color 330ms ease, border-color 330ms ease, transform 220ms ease;
}

.gbm-action::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: var(--gbm-ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 430ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gbm-action--donation {
  background: var(--gbm-ink);
  color: #fff;
}

.gbm-action--donation::before {
  background: var(--gbm-accent);
}

.gbm-action:hover,
.gbm-action:focus-visible {
  outline: 0;
  color: #fff;
  transform: translateY(-1px);
}

.gbm-action--donation:hover,
.gbm-action--donation:focus-visible {
  color: var(--gbm-ink);
}

.gbm-action:hover::before,
.gbm-action:focus-visible::before {
  transform: scaleX(1);
}

.gbm-footer {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(6, 44, 61, 0.13);
}

.gbm-footer__label {
  color: var(--gbm-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.gbm-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
}

.gbm-socials {
  display: flex;
  align-items: center;
  gap: 9px;
}

.gbm-social {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(6, 44, 61, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--gbm-ink);
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.gbm-social svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gbm-social:hover,
.gbm-social:focus-visible {
  outline: 0;
  background: var(--gbm-ink);
  color: #fff;
  transform: translateY(-2px);
}

.gbm-social.is-disabled {
  cursor: default;
  opacity: 0.46;
}

.gbm-social.is-disabled:hover {
  background: transparent;
  color: var(--gbm-ink);
  transform: none;
}

.gbm-chat {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--gbm-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: opacity 220ms ease, transform 220ms ease;
}

.gbm-chat__dot {
  display: block;
  width: 14px;
  height: 14px;
  border: 4px solid #fff8d8;
  border-radius: 50%;
  background: var(--gbm-accent);
  box-shadow: 0 0 0 1px rgba(255, 228, 134, 0.28);
}

.gbm-chat:hover,
.gbm-chat:focus-visible {
  outline: 0;
  opacity: 0.68;
  transform: translateX(2px);
}

body.gbm-scroll-locked {
  overscroll-behavior: none;
}

@media (max-width: 767px) {
  .gbm-panel {
    width: 100%;
    max-width: none;
    clip-path: circle(0 at calc(100% - 42px) 40px);
  }

  .gbm-widget.is-open .gbm-panel {
    clip-path: circle(165% at calc(100% - 42px) 40px);
  }

  .gbm-panel__inner {
    padding-right: clamp(18px, 7vw, 40px);
    padding-left: clamp(18px, 7vw, 40px);
  }
}

@media (max-width: 782px) {
  body.admin-bar .gbm-widget.gbm-is-sticky .gbm-bar {
    top: calc(max(var(--gbm-header-offset), env(safe-area-inset-top)) + 46px);
  }
}

@media (max-width: 480px) {
  .gbm-panel {
    border-radius: 0 0 28px 28px;
  }

  .gbm-panel__inner {
    padding-top: 6px;
  }

  .gbm-panel__top {
    min-height: 66px;
  }

  .gbm-panel__top .gbm-brand__wordmark {
    font-size: clamp(22px, 6.5vw, 27px);
  }

  .gbm-close {
    width: clamp(130px, 41vw, 150px);
    height: clamp(58px, 17vw, 64px);
    padding-left: 15px;
    border-width: 2px;
  }

  .gbm-close__disc {
    width: clamp(50px, 14.5vw, 54px);
    height: clamp(50px, 14.5vw, 54px);
  }

  .gbm-close__disc i {
    width: 20px;
  }

  .gbm-panel__kicker {
    margin-top: clamp(14px, 3vh, 24px);
    padding-bottom: 12px;
    font-size: 10px;
  }

  .gbm-panel__scroll {
    padding-top: clamp(15px, 2.8vh, 22px);
  }

  .gbm-nav a {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.12;
  }

  .gbm-panel__secondary {
    margin-top: clamp(20px, 3.2vh, 28px);
  }

  .gbm-ideas {
    min-height: 96px;
    grid-template-columns: 54px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 15px;
  }

  .gbm-ideas__icon {
    width: 54px;
    height: 54px;
  }

  .gbm-ideas__icon i {
    bottom: 16px;
    width: 3px;
  }

  .gbm-ideas__icon i:nth-child(1) { height: 10px; transform: translateX(-8px); }
  .gbm-ideas__icon i:nth-child(2) { height: 19px; }
  .gbm-ideas__icon i:nth-child(3) { height: 14px; transform: translateX(8px); }

  .gbm-ideas__eyebrow {
    font-size: 9px;
  }

  .gbm-ideas__title {
    font-size: clamp(16px, 4.7vw, 19px);
  }

  .gbm-action {
    min-height: 58px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  .gbm-footer {
    padding-top: 18px;
  }

  .gbm-footer__row {
    gap: 10px;
    margin-top: 12px;
  }

  .gbm-socials {
    gap: 5px;
  }

  .gbm-social {
    width: clamp(34px, 10.5vw, 42px);
    height: clamp(34px, 10.5vw, 42px);
  }

  .gbm-social svg {
    width: 15px;
    height: 15px;
  }

  .gbm-chat {
    gap: 6px;
    font-size: 10px;
  }

  .gbm-chat__dot {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }
}

@media (max-width: 359px) {
  .gbm-close__label {
    display: none;
  }

  .gbm-close {
    width: 58px;
    padding: 2px;
    border: 0;
  }

  .gbm-brand__wordmark {
    font-size: 21px;
  }

  .gbm-ideas__eyebrow {
    display: none;
  }
}

@media (max-height: 740px) {
  .gbm-panel__kicker {
    margin-top: 10px;
  }

  .gbm-panel__scroll {
    padding-top: 14px;
  }

  .gbm-nav > .menu {
    gap: 5px;
  }

  .gbm-nav a {
    font-size: clamp(25px, 6.5vh, 34px);
  }

  .gbm-panel__secondary {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gbm-widget *,
  .gbm-widget *::before,
  .gbm-widget *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.elementor-editor-active .gbm-widget.gbm-is-sticky .gbm-bar,
body.elementor-editor-active .gbm-widget.gbm-is-sticky .gbm-bar {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-width: none;
  transform: none;
}

@supports not (clip-path: circle(10px at 10px 10px)) {
  .gbm-panel {
    clip-path: none;
    transform: translateX(100%);
  }

  .gbm-widget.is-open .gbm-panel {
    transform: translateX(0);
  }
}
