/* ================================================================
   Mobilitarian – Site Stylesheet
   ================================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #1b2a3b;
  --teal:      #0078A8;
  --teal-dark: #005f80;
  --teal-lite: #e8f4f8;
  --accent:    #FF6B35;
  --text-dark: #1a1a2e;
  --sidebar-w: 340px;
  --header-h:  56px;
}

/* ── Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f5f6fa;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* ── Navigation ─────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
}
.navbar {
  background: rgba(13,27,42,0.96) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: var(--header-h);
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar-brand { color: #fff !important; font-size: 1.2rem; letter-spacing: 0.03em; }
.navbar-brand i { color: var(--teal); }

.navbar .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.navbar .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.1); }
.navbar .navbar-toggler { border: none; color: rgba(255,255,255,0.8); }
.navbar .navbar-toggler-icon { filter: invert(1); }

.dropdown-menu-dark { background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.1); }
.dropdown-menu-dark .dropdown-item { color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.dropdown-menu-dark .dropdown-item:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ── Non-map pages ──────────────────────────────────────────── */
body:not(.map-page) { padding-top: var(--header-h); }

/* ── MAP PAGE ───────────────────────────────────────────────── */
html.map-html, body.map-page {
  overflow: hidden;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

#map-wrapper {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
}

#map { flex: 1 1 0; height: 100%; width: 0; z-index: 1; min-width: 0; }

#map-sidebar,
#map {
  min-height: 0;
}

#map-sidebar,
#map-topbar,
#sidebarToggle {
  flex: 0 0 auto;
}

#map-topbar {
  position: absolute;
  top: 16px;
  left: calc(var(--sidebar-w) + 16px);
  right: 16px;
  z-index: 920;
  pointer-events: none;
}

#map-topbar .topbar-search {
  width: min(420px, 100%);
  margin-left: auto;
  pointer-events: auto;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.map-sidebar {
  width: var(--sidebar-w);
  height: 100%;
  background: var(--navy);
  color: #e8eaed;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-logo { display: flex; align-items: center; gap: 0.6rem; font-size: 1.1rem; font-weight: 700; color: #fff; }
.sidebar-logo i { color: var(--teal); font-size: 1.3rem; }

.sidebar-close-btn { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.1rem; cursor: pointer; padding: 0.2rem 0.4rem; }
.sidebar-close-btn:hover { color: #fff; }

.sidebar-search {
  padding: 0.8rem 1rem;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.search-box { position: relative; display: flex; align-items: center; }
.search-icon { position: absolute; left: 12px; color: rgba(255,255,255,0.4); font-size: 0.85rem; pointer-events: none; }
.search-input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.55rem 2.2rem 0.55rem 2.4rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s;
}
.search-input::placeholder { color: rgba(255,255,255,0.35); }
.search-input:focus { border-color: var(--teal); background: rgba(255,255,255,0.12); }
.search-clear { position: absolute; right: 10px; background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 0.85rem; }
.search-clear:hover { color: #fff; }

.sidebar-section { padding: 0.8rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-section:last-child { border-bottom: none; overflow-y: auto; flex: 1; }

.sidebar-section-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; display: flex; align-items: center; justify-content: space-between;
}

.category-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; color: rgba(255,255,255,0.75); font-size: 0.77rem;
  padding: 4px 10px; cursor: pointer; transition: background .15s, border-color .15s;
}
.cat-chip:hover  { background: rgba(255,255,255,0.14); border-color: var(--chip-color, var(--teal)); }
.cat-chip.active { background: var(--chip-color, var(--teal)); border-color: var(--chip-color, var(--teal)); color: #fff; }

.btn-clear-filters {
  background: none; border: 1px solid rgba(255,255,255,0.2); border-radius: 12px;
  color: rgba(255,255,255,0.55); font-size: 0.72rem; padding: 2px 10px; cursor: pointer; transition: border-color .15s,color .15s;
}
.btn-clear-filters:hover { border-color: var(--teal); color: #fff; }

.btn-locate {
  width: 100%; background: rgba(0,120,168,0.15); border: 1px solid var(--teal);
  border-radius: 8px; color: var(--teal); font-size: 0.88rem; padding: 0.5rem 1rem;
  cursor: pointer; transition: background .15s; text-align: center;
}
.btn-locate:hover { background: var(--teal); color: #fff; }

.business-list { display: flex; flex-direction: column; gap: 6px; padding-bottom: 1rem; }

.biz-card {
  display: flex; gap: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 8px; cursor: pointer; transition: background .15s, transform .15s;
}
.biz-card:hover { background: rgba(255,255,255,0.1); transform: translateX(3px); }
.biz-thumb { width: 48px; height: 48px; border-radius: 6px; background: rgba(255,255,255,0.1) center/cover no-repeat; flex-shrink: 0; }
.biz-info { flex: 1; min-width: 0; }
.biz-name { font-size: 0.87rem; font-weight: 600; color: #e8eaed; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.biz-cat  { display: inline-block; font-size: 0.68rem; border-radius: 10px; padding: 1px 7px; color: #fff; margin: 2px 0; }
.biz-city { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.no-results { color: rgba(255,255,255,0.4); font-size: 0.85rem; text-align: center; padding: 1rem 0; }

.sidebar-toggle-btn {
  display: none; position: absolute; top: 12px; left: 12px; z-index: 950;
  background: var(--navy); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; color: #fff;
  width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer;
  font-size: 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@media (max-width: 991.98px) {
  .map-sidebar { position: absolute; top: 0; left: 0; bottom: 0; transform: translateX(-100%); z-index: 900; }
  .map-sidebar.open { transform: translateX(0); }
  #map-topbar {
    left: 16px;
    right: 16px;
  }
  .sidebar-toggle-btn { display: flex; }
  #map { width: 100%; }
}

/* ── Leaflet markers ────────────────────────────────────────── */
.custom-marker-pin {
  width: 34px; height: 34px;
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,0.8);
}
.custom-marker-pin i { transform: rotate(45deg); color: #fff; font-size: 13px; }
.featured-pin { border-color: gold; box-shadow: 0 3px 14px rgba(255,215,0,0.5); }
.marker-shadow { width: 10px; height: 6px; background: rgba(0,0,0,0.25); border-radius: 50%; margin: 2px auto 0; }

.cluster-icon {
  border-radius: 50%; background: var(--teal); color: #fff;
  font-weight: 700; font-size: 0.85rem; text-align: center;
  border: 2px solid rgba(255,255,255,0.7); box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ── Popup ──────────────────────────────────────────────────── */
.mob-popup .leaflet-popup-content-wrapper { padding: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.25); border: none; }
.mob-popup .leaflet-popup-content { margin: 0; width: 310px !important; }
.mob-popup .leaflet-popup-tip-container { display: none; }
.mob-popup .leaflet-popup-close-button { color: #fff !important; font-size: 1.1rem; top: 6px; right: 6px; z-index: 10; }

.business-popup { font-family: 'Segoe UI', system-ui, sans-serif; }

.popup-cover {
  height: 120px; background: var(--navy) center/cover no-repeat;
  position: relative; display: flex; align-items: flex-end; padding: 8px 10px;
}
.popup-cover::after { content:''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.55)); }
.feat-badge { position: absolute; top: 8px; right: 8px; background: rgba(255,215,0,0.9); color: #1a1a2e; font-size: 0.68rem; font-weight: 700; padding: 3px 8px; border-radius: 10px; z-index: 2; }
.popup-logo { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; border: 2px solid rgba(255,255,255,0.9); position: relative; z-index: 2; }

.popup-body { padding: 10px 12px 8px; }
.popup-title-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 4px; }
.popup-name  { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 0; line-height: 1.25; }
.cat-pill    { font-size: 0.68rem; border-radius: 10px; padding: 2px 8px; color: #fff; white-space: nowrap; flex-shrink: 0; }
.popup-meta  { font-size: 0.78rem; color: #555; margin: 2px 0; display: flex; align-items: center; gap: 5px; }
.popup-meta i { color: var(--teal); width: 14px; }

.popup-tabs { list-style: none; margin: 8px 0 0; padding: 0; display: flex; border-bottom: 2px solid #e9ecef; gap: 2px; }
.ptab { font-size: 0.8rem; padding: 5px 12px; cursor: pointer; border-radius: 4px 4px 0 0; color: #666; user-select: none; transition: color .15s; }
.ptab:hover { color: var(--teal); }
.ptab.active { color: var(--teal); font-weight: 700; border-bottom: 2px solid var(--teal); margin-bottom: -2px; }
.ptab-pane { display: none; padding: 8px 0; }
.ptab-pane.active { display: block; }

.popup-desc { font-size: 0.82rem; color: #444; line-height: 1.45; margin: 0 0 6px; }
.popup-contacts { display: flex; gap: 6px; margin-bottom: 6px; }
.pcontact { width: 32px; height: 32px; border-radius: 50%; background: var(--teal-lite); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; text-decoration: none; transition: background .15s; }
.pcontact:hover { background: var(--teal); color: #fff; }

.popup-social { display: flex; gap: 5px; margin-bottom: 6px; }
.psocial { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; color: #fff; text-decoration: none; transition: opacity .15s; }
.psocial:hover { opacity: 0.82; }
.psocial-fb { background: #1877f2; }
.psocial-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.psocial-tw { background: #1da1f2; }
.psocial-li { background: #0077b5; }

.photo-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; max-height: 130px; overflow: hidden; }
.gallery-thumb { width: 100%; height: 60px; object-fit: cover; border-radius: 4px; cursor: pointer; transition: opacity .15s; }
.gallery-thumb:hover { opacity: 0.85; }

.yt-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 6px; }
.yt-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

.no-media { font-size: 0.8rem; color: #999; text-align: center; padding: 1rem 0; margin: 0; }

.popup-actions { display: flex; gap: 6px; margin-top: 8px; padding-top: 8px; border-top: 1px solid #e9ecef; }
.paction { flex: 1; text-align: center; padding: 6px 4px; border-radius: 7px; font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: background .15s; }
.paction-dir { background: #e53935; color: #fff; }
.paction-dir:hover { background: #c62828; color: #fff; }
.paction-more { background: var(--teal-lite); color: var(--teal); }
.paction-more:hover { background: var(--teal); color: #fff; }

/* ── Mobile full-screen business card overlay ───────────────── */
.mobile-card-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1100;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  animation: slideUpCard 0.28s ease;
}
.mobile-card-overlay.open {
  display: flex;
}
@keyframes slideUpCard {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.mobile-card-close {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 10;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  line-height: 1;
}
.mobile-card-close:hover { background: rgba(0,0,0,0.8); }
.mobile-card-content { flex: 1; }
/* Scale popup styles to fill the card */
.mobile-card-content .business-popup { height: 100%; display: flex; flex-direction: column; }
.mobile-card-content .popup-cover { height: 220px; }
.mobile-card-content .popup-body { flex: 1; overflow-y: auto; padding: 14px 16px 12px; }
.mobile-card-content .mob-popup { width: 100% !important; }
/* Hide Leaflet popup tip in overlay (not applicable) */
/* On desktop the overlay is never shown */
@media (min-width: 992px) {
  .mobile-card-overlay { display: none !important; }
}



/* ── Card & general styles ──────────────────────────────────── */
.business-card { transition: box-shadow .2s, transform .15s; border-radius: 12px !important; }
.business-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important; transform: translateY(-2px); }
.hover-lift { transition: transform .15s, box-shadow .15s; }
.hover-lift:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important; }

.social-fb { background: #1877f2 !important; color: #fff !important; border: none !important; }
.social-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important; color: #fff !important; border: none !important; }
.social-tw { background: #1da1f2 !important; color: #fff !important; border: none !important; }
.social-li { background: #0077b5 !important; color: #fff !important; border: none !important; }

.text-purple { color: #6f42c1 !important; }
.bg-gradient-primary { background: linear-gradient(135deg, var(--navy), var(--teal)) !important; }

.btn:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.15rem rgba(0,120,168,0.25);
}

/* ================================================================
   AUTH PAGES (Login / Register)
   ================================================================ */
body.auth-page { background: #f0f4f8; }

.auth-split {
  display: flex;
  min-height: calc(100vh - var(--header-h));
}

/* Left branding panel */
.auth-panel {
  width: 420px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--navy) 0%, #0a3d62 60%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.auth-panel::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,120,168,0.25) 0%, transparent 70%);
  top: -100px; right: -150px;
  border-radius: 50%;
}
.auth-panel-inner { position: relative; z-index: 1; }

.auth-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 2.5rem;
}
.auth-logo i { color: var(--teal); font-size: 1.8rem; }

.auth-headline {
  font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 1rem;
}

.auth-subline {
  color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem;
}

.auth-features { display: flex; flex-direction: column; gap: 12px; }
.auth-feature {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.82); font-size: 0.9rem;
}
.auth-feature i {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(0,120,168,0.35); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0;
}

/* Right form panel */
.auth-form-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.auth-form-inner { width: 100%; max-width: 420px; }

.auth-form-logo {
  font-size: 1.3rem; font-weight: 800; color: var(--navy);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px;
}
.auth-form-logo i { color: var(--teal); }

.auth-form-title { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.auth-form-sub { color: #64748b; font-size: 0.95rem; margin-bottom: 2rem; }

.auth-error {
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px;
  color: #dc2626; font-size: 0.87rem; padding: 10px 14px; margin-bottom: 1.2rem;
}

.auth-field { margin-bottom: 1.2rem; }
.auth-field label { display: block; font-weight: 600; font-size: 0.88rem; color: #374151; margin-bottom: 6px; }

.field-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.field-label-row label { margin-bottom: 0; }
.forgot-link { font-size: 0.82rem; color: var(--teal); text-decoration: none; }
.forgot-link:hover { text-decoration: underline; }

.field-wrap { position: relative; }
.field-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #9ca3af; font-size: 0.85rem; pointer-events: none;
}
.auth-input {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.65rem 2.8rem 0.65rem 2.6rem;
  font-size: 0.95rem;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.auth-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,120,168,0.12); }
.field-eye {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #9ca3af; cursor: pointer; font-size: 0.85rem;
  padding: 2px;
}
.field-eye:hover { color: var(--navy); }
.field-error { font-size: 0.8rem; color: #dc2626; margin-top: 4px; display: block; }

.auth-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.87rem; color: #4b5563; margin-bottom: 1.4rem;
}
.auth-check input { width: 16px; height: 16px; cursor: pointer; }

.auth-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 0.75rem 1.5rem;
  background: var(--teal); color: #fff;
  border: none; border-radius: 10px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: background .2s, transform .1s;
  margin-bottom: 0.75rem;
}
.auth-btn:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); }
.auth-btn:active { transform: translateY(0); }

.auth-btn-outline {
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal);
}
.auth-btn-outline:hover { background: var(--teal); color: #fff; }

.auth-divider {
  text-align: center; margin: 1rem 0; position: relative;
}
.auth-divider::before {
  content: ''; position: absolute; left: 0; right: 0; top: 50%;
  height: 1px; background: #e5e7eb;
}
.auth-divider span {
  position: relative; background: #f0f4f8;
  padding: 0 12px; font-size: 0.82rem; color: #9ca3af;
}

@media (max-width: 767.98px) {
  .auth-panel { display: none; }
  .auth-form-panel { padding: 2rem 1rem; }
  .auth-form-inner { max-width: 100%; }
  .auth-form-logo { display: flex !important; }
}

/* ================================================================
   ACCOUNT MANAGEMENT PAGE
   ================================================================ */
.account-header {
  display: flex; align-items: center; gap: 1.5rem;
  background: #fff; border-radius: 14px; padding: 1.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.account-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-size: 1.8rem; font-weight: 800; color: #fff;
}
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }

.role-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 12px; margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.role-superadmin { background: #fef3c7; color: #d97706; }
.role-admin  { background: #dbeafe; color: #1d4ed8; }
.role-user   { background: #dcfce7; color: #16a34a; }

.account-tabs .nav-link {
  color: #64748b; border: none; border-bottom: 2px solid transparent;
  border-radius: 0; padding: 0.6rem 1.2rem; font-weight: 600; font-size: 0.9rem;
  transition: color .15s, border-color .15s;
}
.account-tabs .nav-link:hover  { color: var(--teal); }
.account-tabs .nav-link.active {
  color: var(--teal); border-bottom-color: var(--teal); background: transparent;
}
