.site-topbar {
  position: relative;
  background-color: #f3f3f3;
  color: #000;
  padding: 0.6rem 0;
  border-bottom: 1px solid #d9d9d9;
  box-shadow: 0 2px 6px rgba(103, 181, 0, 0.08);
  z-index: 50;
}
.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.site-topbar__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.site-topbar__logo {
  display: block;
  width: auto;
  max-height: 32px;
}
.site-topbar__toggler {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.site-topbar__toggler-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #000;
  border-radius: 999px;
}
.site-topbar__collapse {
  flex: 1 1 auto;
}
.site-topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.site-topbar__action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  color: #000;
  text-decoration: none;
  border-radius: 0.35rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.site-topbar__action-link:hover {
  background-color: rgba(103, 181, 0, 0.18);
  color: #161916;
}
.site-topbar__action-icon {
  font-size: 1.1rem;
  line-height: 1;
  color: #161916;
}
.site-topbar__action-text {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: #161916;
}
@media (max-width: 991.98px) {
  .site-topbar__toggler {
    display: inline-flex;
  }
  .site-topbar__collapse {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(320px, calc(100vw - 2rem));
    padding: 0.75rem;
    border: 1px solid #d9d9d9;
    border-radius: 0.5rem;
    background-color: #f3f3f3;
    box-shadow: 0 8px 24px rgba(103, 181, 0, 0.12);
    z-index: 60;
  }
  .site-topbar__collapse:not(.show) {
    display: none;
  }
  .site-topbar__collapse.show,
  .site-topbar__collapse.collapsing {
    display: block;
  }
  .site-topbar__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
  }
  .site-topbar__action-link {
    width: 100%;
    justify-content: flex-start;
  }
}
