/* =============================================================================
   MiraChlor — Dental section: SHARED mobile-nav (hamburger) styles only.
   Loaded on every dental template (after flatsome.css). The full per-page design
   system lives in dental-{rinse,patients,professionals,order}.css.
   The hamburger is not in the design handoff; added so the nav works < 880px.
   ============================================================================= */
.nav-burger {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: 4px;
  background: transparent; border: 1.5px solid var(--line-strong);
  border-radius: 8px; color: var(--navy); cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.nav-burger:hover { border-color: var(--navy); }
.nav-burger svg { width: 22px; height: 22px; }
.nav-burger .i-close { display: none; }
.nav-burger[aria-expanded="true"] .i-menu { display: none; }
.nav-burger[aria-expanded="true"] .i-close { display: block; }

.nav-mobile { display: none; border-top: 1px solid var(--line); background: var(--white); }
.nav-mobile.open { display: block; }
.nav-mobile .wrap { padding-top: 8px; padding-bottom: 18px; }
.nav-mobile a {
  display: block; padding: 14px 4px;
  font-size: 16px; font-weight: 500; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.nav-cta, .nav-mobile a.nav-cta-secondary {
  margin-top: 14px; border-radius: 6px; text-align: center; border-bottom: none;
}
.nav-mobile a.nav-cta { background: var(--orange); color: var(--white); }
.nav-mobile a.nav-cta-secondary { border: 1.5px solid var(--line-strong); color: var(--navy); }

@media (max-width: 880px) {
  .nav .nav-ctas { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (min-width: 881px) { .nav-mobile { display: none !important; } }
