/**
 * Top bar only – no mega dropdown, no mobile drawer.
 * Uses :root vars (--n-font-family, etc.). Same visual as mega-menu bar.
 */

.mm.mm--bar-only {
  width: 100%;
  background: #334155;
  font-family: var(--n-font-family);
  font-size: var(--n-font-size-sm);
  line-height: var(--n-line-height);
  position: relative;
  z-index: 1000;
}

.mm--bar-only .mm__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.mm--bar-only .mm__logo {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px 12px 20px;
  color: #fff;
  text-decoration: none;
  font-family: var(--n-font-family);
  font-size: 1.25rem;
  font-weight: var(--n-font-weight-bold);
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.mm--bar-only .mm__logo:hover {
  background: #475569;
  color: #fff;
  opacity: 1;
}

.mm--bar-only .mm__logo:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}
