/* ============================================================
   BMS GLOBAL — Layout: Navbar, Sidebar, Footer, Page Structure
   ============================================================ */

/* ── Site-wide Container ──────────────────────────────────── */
.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--space-10) var(--space-8) var(--space-20);
  width: 100%;
}

/* ── TOP NAVBAR (Public Pages) ────────────────────────────── */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-navbar, 350);
  height: var(--navbar-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid rgba(15, 37, 79, 0.08);
  box-shadow: 0 4px 22px rgba(10, 30, 80, 0.06);
}

.navbar-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0 var(--space-6);
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--navy-2), var(--navy-deep));
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: var(--weight-black);
  color: #fff;
  box-shadow: 0 8px 22px rgba(4,13,39,0.22), var(--shadow-inner);
}
.brand-text strong {
  display: block;
  font-size: 13px;
  font-weight: var(--weight-black);
  color: var(--navy);
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.brand-text span {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 1px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: var(--space-2);
  flex: 1;
}
.nav-link {
  padding: 7px 11px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: var(--weight-medium);
  color: var(--ink-2);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover { background: var(--blue-soft); color: var(--blue); }
.nav-link.active {
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: var(--weight-semi);
}

/* REC CTA in navbar */
.nav-rec-btn {
  padding: 7px 14px;
  background: linear-gradient(135deg, #E8A917, #c98d00);
  color: #fff !important;
  border-radius: var(--r-full);
  font-weight: var(--weight-bold);
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(200, 141, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.20);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-rec-btn:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(200, 141, 0, 0.48), inset 0 1px 0 rgba(255,255,255,0.28);
}

/* Nav Actions (right side) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
  flex-shrink: 0;
}
.nav-search {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 0 12px;
  height: 36px;
  width: 150px;
  color: var(--muted);
  font-size: 13px;
  transition: width var(--t-base) var(--ease), border-color var(--t-fast), box-shadow var(--t-fast);
}
.nav-search:focus-within {
  width: 210px;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 99, 233, 0.10);
  background: var(--surface);
}
.nav-search input {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  font-size: var(--text-base);
  color: var(--ink);
}
.nav-search input::placeholder { color: var(--muted-light); }

/* Notification bell */
.nav-notification { position: relative; }

/* Profile chip */
.profile-chip {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 10px 6px 6px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--t-fast);
  border: none;
  background: transparent;
}
.profile-chip:hover { background: var(--bg-2); }
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
}
.profile-chip .profile-name {
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  color: var(--ink);
}

/* ── Hamburger Button (mobile) ─────────────────────────────── */
.hamburger-btn {
  display: none;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border: none;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5.5px;
  cursor: pointer;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(29,99,233,0.35);
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.hamburger-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), transparent 55%);
  pointer-events: none;
}
.hamburger-btn:hover {
  box-shadow: 0 6px 22px rgba(29,99,233,0.50);
  transform: scale(1.06);
}
.hamburger-btn span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.38s cubic-bezier(.23,1,.32,1),
    opacity   0.25s ease,
    width     0.30s ease;
  display: block;
}
/* Middle bar is shorter by default for style */
.hamburger-btn span:nth-child(2) { width: 14px; }
.hamburger-btn:hover span:nth-child(2) { width: 20px; }
/* Open → X morphing */
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 20px;
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 20px;
}

/* ── Mobile Drawer ─────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: var(--navbar-h);
  right: 0;
  bottom: 0;
  width: min(340px, 92vw);
  background:
    radial-gradient(circle at 10% 0%, rgba(77,132,255,0.10), transparent 40%),
    rgba(7,22,70,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.45s cubic-bezier(.23,1,.32,1);
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -20px 0 60px rgba(0,0,0,0.30);
}
.mobile-drawer.open { transform: translateX(0); }

/* Drawer brand header */
.mobile-drawer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold-vivid, #f6cb17), var(--blue));
  background-size: 200%;
  animation: drawerShimmer 3s linear infinite;
  flex-shrink: 0;
}
@keyframes drawerShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* Drawer inner scroll area */
.drawer-inner {
  flex: 1;
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  overflow-y: auto;
}

/* Drawer nav links */
.mobile-drawer .nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4);
  border-radius: var(--r-lg);
  font-size: var(--text-base);
  font-weight: var(--weight-semi);
  color: rgba(255,255,255,0.78);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  letter-spacing: 0.1px;
}
.mobile-drawer .nav-link:last-of-type { border-bottom: none; }
.mobile-drawer .nav-link:hover,
.mobile-drawer .nav-link.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateX(4px);
}
.mobile-drawer .nav-link.active {
  background: rgba(29,99,233,0.22);
  color: #fff;
  border-left: 3px solid var(--blue);
  padding-left: calc(var(--space-4) - 3px);
}
/* Icon inside drawer links */
.mobile-drawer .nav-link i,
.mobile-drawer .nav-link svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* Drawer footer — auth + join rec */
.drawer-footer {
  padding: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.mobile-drawer .nav-rec-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4);
  border-radius: var(--r-lg);
  font-size: var(--text-base);
  font-weight: var(--weight-black);
  background: linear-gradient(135deg, var(--gold-vivid, #f6cb17), #f0a500);
  color: #1a0a00;
  text-decoration: none;
  text-align: center;
  animation: recBtnPulse 2s ease-in-out infinite;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 20px rgba(246,203,23,0.30);
}
.mobile-drawer .nav-rec-btn:hover { animation-play-state: paused; }
.drawer-auth-row {
  display: flex;
  gap: var(--space-2);
}
.drawer-auth-row .btn {
  flex: 1;
  justify-content: center;
}

/* ── DASHBOARD SIDEBAR ────────────────────────────────────── */
.dash-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}

.dash-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-w);
  background:
    radial-gradient(circle at 20% 0%, rgba(77,132,255,0.22), transparent 32%),
    linear-gradient(180deg, #071a46 0%, #071638 55%, #041026 100%);
  border-right: 1px solid rgba(255,255,255,0.07);
  box-shadow: 16px 0 48px rgba(4,13,39,0.18);
  padding: var(--space-6) var(--space-4);
  color: #fff;
  display: flex;
  flex-direction: column;
  z-index: var(--z-drawer);
  overflow-y: auto;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 4px var(--space-2) var(--space-7);
  text-decoration: none;
}
.sidebar-brand .brand-mark {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 10px 24px rgba(0,0,0,0.2);
}
.sidebar-brand strong {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--weight-black);
  color: #fff;
  letter-spacing: 0.4px;
}
.sidebar-brand span {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.sidebar-nav { display: grid; gap: 5px; }
.sidebar-section-label {
  font-size: 9px;
  font-weight: var(--weight-black);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: var(--space-4) var(--space-3) var(--space-2);
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 12px var(--space-4);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.sidebar-link .link-icon {
  width: 20px;
  text-align: center;
  font-size: 18px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.sidebar-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px; bottom: 10px;
  width: 3px;
  border-radius: var(--r-full);
  background: transparent;
  transition: background var(--t-fast);
}
.sidebar-link:hover,
.sidebar-link.active {
  background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  color: #fff;
  border-color: rgba(255,255,255,0.08);
  box-shadow: var(--shadow-inner);
}
.sidebar-link.active::before {
  background: linear-gradient(180deg, var(--gold-vivid), #fff3b3);
  box-shadow: 0 0 14px rgba(246,203,99,0.65);
}

.sidebar-support {
  margin-top: auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(246,203,99,0.20), transparent 40%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-inner);
}
.sidebar-support .support-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-3);
}
.sidebar-support strong { display: block; font-size: var(--text-base); margin-bottom: 4px; }
.sidebar-support p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; margin-bottom: var(--space-4); }

/* Dashboard main content area */
.dash-main {
  grid-column: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.dash-topbar {
  height: var(--navbar-h);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid rgba(15,37,79,0.08);
  box-shadow: 0 4px 18px rgba(10,30,80,0.05);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 0 var(--space-8);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}
.dash-topbar .page-title-wrap { flex: 1; }
.dash-topbar h1 { font-size: var(--text-xl); margin: 0; }
.dash-topbar .breadcrumb { font-size: var(--text-xs); color: var(--muted); margin-top: 2px; }
.dash-search {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 0 var(--space-4);
  height: 38px;
  max-width: 300px;
  flex: 1;
}
.dash-search input { border: none; background: transparent; outline: none; width: 100%; font-size: var(--text-base); }
.dash-topbar .topbar-actions { display: flex; align-items: center; gap: var(--space-3); }

.dash-content {
  padding: var(--space-8);
  flex: 1;
}

/* Dashboard Open button (mobile) */
.dash-menu-btn {
  display: none;
  width: 40px; height: 40px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

/* ── ADMIN SHELL (Multi-Page Admin Portal) ────────────────── */
.admin-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
  background: #f4f6fc;
}
.admin-sidebar {
  background: #040d27;
  color: #fff;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: var(--z-drawer);
}
.admin-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #f4f6fc;
}
.admin-topbar {
  height: var(--navbar-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0 var(--space-8);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}
.admin-content { padding: var(--space-8); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #071a46 0%, #040d27 100%);
  color: rgba(255,255,255,0.80);
  padding: var(--space-20) 0 0;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-12);
}

.footer-brand .sidebar-brand {
  padding: 0 0 var(--space-5);
}
.footer-brand p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.footer-socials {
  display: flex;
  gap: var(--space-3);
}
.social-link {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.social-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  display: block;
}
.social-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }

.footer-col h4 {
  color: #fff;
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-5);
  letter-spacing: 0.3px;
}
.footer-links { display: grid; gap: var(--space-3); }
.footer-link {
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  font-size: var(--text-base);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--gold-vivid); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.60);
  margin-bottom: var(--space-3);
}
.footer-contact-item .ci-icon { color: var(--gold-bright); font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* Footer bottom bar */
.footer-bottom {
  max-width: var(--page-max);
  margin: var(--space-10) auto 0;
  padding: var(--space-5) var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.40);
  margin: 0;
}

/* ── REC Promo Strip ──────────────────────────────────────── */
.rec-strip {
  background: linear-gradient(135deg, #4a39b3, #2c216d);
  border-radius: var(--r-xl);
  padding: var(--space-10) var(--space-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  position: relative;
  overflow: hidden;
  color: #fff;
  margin: var(--space-10) 0;
  box-shadow: 0 28px 70px rgba(48,30,120,0.32), inset 0 1px 0 rgba(255,255,255,0.12);
}
.rec-strip::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  right: -120px; top: -150px;
}
.rec-strip::after {
  content: "";
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  right: 40px; bottom: -130px;
}
.rec-strip-content { position: relative; z-index: 2; }
.rec-strip-content .kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.rec-strip-content h2 {
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-2);
  letter-spacing: -0.8px;
}
.rec-strip-content p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-md);
  max-width: 480px;
}
.rec-strip-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ── Trust Strip ──────────────────────────────────────────── */
.trust-strip {
  margin: -28px var(--space-8) 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px rgba(13,38,84,0.12);
  overflow: hidden;
}
.trust-item {
  padding: 18px var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-right: 1px solid rgba(19,47,97,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-item .ti-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: linear-gradient(145deg, #eef4ff, #dce8ff);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: inset 0 1px 0 #fff;
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: var(--text-base); font-weight: var(--weight-semi); }
.trust-item small  { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ── Section Head ─────────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin: var(--space-12) 0 var(--space-5);
}
.section-head h2 { margin: 5px 0 0; }

/* ── Mobile Bottom Nav (Dashboard) ───────────────────────── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  z-index: var(--z-sticky);
  justify-content: space-around;
  padding: var(--space-2) var(--space-2) max(var(--space-2), env(safe-area-inset-bottom));
  box-shadow: 0 -10px 28px rgba(22,47,91,0.08);
}
.mobile-nav-link {
  display: grid;
  place-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: var(--weight-semi);
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: color var(--t-fast), background var(--t-fast);
}
.mobile-nav-link .mn-icon { font-size: 22px; display: block; }
.mobile-nav-link.active { color: var(--blue); }
.mobile-nav-link:hover { background: var(--blue-soft); color: var(--blue); }

/* ── Overlay ──────────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,20,50,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
  z-index: var(--z-overlay);
}
.overlay.show { opacity: 1; pointer-events: auto; }
