/* Mobile-only navbar (separate markup from desktop header) */

.mobile-navbar { display: none; }

@media (max-width: 900px) {
  .site-header { display: none !important; }
  .mobile-navbar { display: block; }
}

.mobile-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 60;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-navbar__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-navbar__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mobile-navbar__brand img {
  height: 52px;
  width: auto;
}

.mobile-navbar__toggle {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.mobile-navbar__toggle:hover { background: rgba(255, 255, 255, 0.10); }

.mobile-navbar__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: #000000;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 180ms ease;
  padding: 18px 0 22px;
  overflow: auto;
}

.mobile-nav[data-open="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav__links {
  display: grid;
  gap: 10px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0f19;
}

.mobile-nav__link:hover { background: rgba(255, 255, 255, 0.10); }

.mobile-nav__link.is-active {
  background: rgba(238, 46, 43, 0.18);
  border-color: rgba(238, 46, 43, 0.50);
  color: #ffffff;
}

.mobile-nav__cta {
  margin-top: 14px;
}

.mobile-nav__cta .btn { width: 100%; }

body.mobile-nav-open { overflow: hidden; }

.mobile-nav__top {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 14px;
}

.mobile-nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mobile-nav__brand img {
  height: 52px;
  width: auto;
}

.mobile-nav__close {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.mobile-nav__close:hover {
  background: rgba(255, 255, 255, 0.12);
}
