.fashion-cat-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.fashion-cat-overlay.show {
  display: flex;
}

.fco-inner {
  background: var(--bg2);
  border-radius: 12px;
  padding: 32px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.fco-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.fco-gender-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.fco-gender-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
}

.fco-gender-btn.active,
.fco-gender-btn.on {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.fco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.fco-item {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
}

.fco-item:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.fco-item.selected {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.fashion-cat-container {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
}

.fashion-cat-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  text-align: center;
}

.fashion-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fashion-cat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.12s ease;
}

.fashion-cat-card:hover {
  background: var(--bg4);
  border-color: var(--border-hi);
  transform: translateY(-2px);
}

.fashion-cat-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.fashion-cat-card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 1400px) {
  .pf-masonry {
    column-count: 4;
  }
  .pf-masonry.cols-5,
  .pf-masonry.cols-6,
  .pf-masonry.cols-7,
  .pf-masonry.cols-8,
  .pf-masonry.cols-9,
  .pf-masonry.cols-10,
  .pf-masonry.cols-11,
  .pf-masonry.cols-12,
  .pf-masonry.cols-13,
  .pf-masonry.cols-14,
  .pf-masonry.cols-15,
  .pf-masonry.cols-16,
  .pf-masonry.cols-17,
  .pf-masonry.cols-18,
  .pf-masonry.cols-19,
  .pf-masonry.cols-20 {
    column-count: 4;
  }
  .g5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .g5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .pf-masonry {
    column-count: 3;
  }
  .sidebar {
    width: 200px;
  }
  .app {
    grid-template-columns: 200px 1fr 300px;
  }
  .gen-bar {
    left: 200px;
    right: 300px;
  }
}

@media (max-width: 1000px) {
  .g5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pf-masonry {
    column-count: 2;
  }
}

@media (max-width: 900px) {
  .app {
    grid-template-columns: 200px 1fr 300px;
  }
  .gen-bar {
    left: 200px;
    right: 300px;
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
    gap: 12px;
  }
  .btn-generate {
    width: 100%;
    order: 3;
  }
  .g5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pf-masonry {
    column-count: 2;
  }
}

/* Default hidden — overridden by mobile media query below */
#mob-create-view { display: none; }
#mob-bottomnav { display: none; }

@media (max-width: 768px) {
  /* ── App shell ── */
  .app {
    display: block;
    height: 100dvh;
    overflow: hidden;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  /* ── Hide desktop & legacy mobile elements ── */
  .sidebar,
  .mob-header,
  .mob-nav-drawer,
  .mob-nav-overlay,
  .mobile-output-toggle,
  .mobile-output-close { display: none !important; }

  /* ── Show new mobile shell ── */
  #mob-topbar { display: flex; }
  #mob-bottomnav { display: flex; }
  #mob-create-view { display: flex; }
  .mob-sheet-hdr { display: flex; }
  .mob-out-hdr { display: flex; }

  /* ── Input panel → full-screen form sheet ── */
  .inp-panel {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: calc(56px + env(safe-area-inset-bottom)) !important;
    z-index: 400 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    flex-direction: column !important;
    border-right: none !important;
    background: var(--bg) !important;
    transform: translateY(102%);
    transition: transform 0.38s cubic-bezier(0.32, 0, 0, 1);
    pointer-events: none;
    display: flex !important;
    padding-bottom: 120px !important;
  }
  .inp-panel.mob-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  /* ── Allow gen-bar sticky: wf-panel & pb must not clip ── */
  .wf-panel,
  .pb { overflow: visible !important; }
  .wf-panel { height: auto !important; flex-shrink: 0; }

  /* ── Form sheet breathing room ── */
  .pb { padding: 20px 16px !important; gap: 16px !important; }
  .rat-pills { gap: 8px !important; }
  .upload-grid { gap: 10px !important; }

  /* ── Gen bar: sticky at bottom of form scroll container ── */
  .gen-bar {
    position: sticky !important;
    bottom: 0 !important;
    left: auto !important;
    right: auto !important;
    z-index: 100 !important;
    flex-wrap: wrap !important;
    height: auto !important;
    padding: 12px 16px !important;
    gap: 8px !important;
    border-top: 1px solid var(--border);
    background: inherit !important;
    padding-bottom: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 70px !important;
  }
  .btn-generate {
    width: 100% !important;
    padding: 14px !important;
    font-size: 15px !important;
    order: 10;
  }

  /* ── Output panel → slide in from right ── */
  .out-panel {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: calc(56px + env(safe-area-inset-bottom)) !important;
    z-index: 450 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: var(--bg) !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.32, 0, 0, 1);
    pointer-events: none;
    border-left: none !important;
  }
  .out-panel.mob-open,
  .out-panel.mobile-show {
    transform: translateX(0);
    pointer-events: auto;
  }

  /* ── Output grid: edge-to-edge horizontal swipe ── */
  .out-grid {
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    gap: 0 !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
    flex: 1 !important;
    align-items: stretch !important;
  }
  .o-slot {
    min-width: 100vw !important;
    max-width: 100vw !important;
    scroll-snap-align: start !important;
    border-radius: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
  }

  /* ── History page → Gallery tab (full-screen overlay) ── */
  .hist-page {
    position: fixed !important;
    top: 52px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: calc(64px + env(safe-area-inset-bottom)) !important;
    z-index: 300 !important;
    overflow-y: auto !important;
    flex-direction: column !important;
    background: var(--bg) !important;
    grid-column: unset;
  }

  /* ── Admin pages → full-screen below topbar ── */
  .admin-page {
    position: fixed !important;
    top: 52px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: calc(64px + env(safe-area-inset-bottom)) !important;
    z-index: 350 !important;
    overflow-y: auto !important;
  }

  /* ── Portfolio page ── */
  .pf-page {
    position: fixed !important;
    top: 52px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: calc(64px + env(safe-area-inset-bottom)) !important;
    z-index: 300 !important;
    overflow-y: auto !important;
    flex-direction: column !important;
    background: var(--bg) !important;
    grid-column: unset;
  }

  /* ── Touch targets ── */
  .ni { min-height: 44px; }
  .pill { min-height: 40px; display: inline-flex; align-items: center; }
  .mode-btn { min-height: 40px; }

  /* ── Prevent iOS text zoom on inputs ── */
  input, textarea, select { font-size: 16px !important; }

  /* ── Toast offset above bottom nav ── */
  .toast, .ai-tip {
    bottom: calc(80px + env(safe-area-inset-bottom)) !important;
  }

  /* ── Other layout adjustments ── */
  .g5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-header, .pf-header {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .portfolio-toolbar { padding: 12px 20px; flex-wrap: wrap; }
  .pf-scroll { padding: 16px 20px; }
  .pf-masonry { column-count: 2; }
  .login-overlay { grid-template-columns: 1fr; }
  .login-left { display: none; }
  .fashion-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .fco-grid { grid-template-columns: repeat(2, 1fr); }
  .bulk-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  button:active, .pf-cb:active, .fco-item:active { opacity: 0.7; }

  /* ── Hide feedback widget on mobile ── */
  .lumiq-feedback-btn, .lumiq-feedback-panel,
  [class*="feedback-fab"], [id*="feedback-fab"],
  .fb-btn, .fb-panel { display: none !important; }

  /* ── app-main scrollable area clears top+bottom bars ── */
  .app-main {
    padding-top: 52px !important;
    padding-bottom: calc(56px + env(safe-area-inset-bottom)) !important;
  }
}

/* ── MOBILE HEADER ─────────────────────────────────────────── */
.mob-header {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  height: 52px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  flex-shrink: 0;
}
.mob-menu-btn {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.mob-menu-btn:active { opacity: 0.6; }
.mob-wf-title {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mob-avatar {
  width: 30px !important;
  height: 30px !important;
  font-size: 12px !important;
  cursor: pointer;
  flex-shrink: 0;
}

/* ── MOBILE NAV DRAWER ─────────────────────────────────────── */
.mob-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 800;
}
.mob-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: var(--bg2);
  z-index: 801;
  transition: transform 0.22s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mob-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mob-nav-scroll {
  overflow-y: auto;
  flex: 1;
  padding: 12px 0 32px;
}
.mob-nav-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-sec);
  padding: 14px 16px 4px;
}
.mob-ni {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.1s;
}
.mob-ni:active { background: var(--bg3); }

/* Hide admin-only drawer items by default; navigation.js adds body.is-admin
   once authentication check completes — prevents FOUC for regular users. */
.mob-admin { display: none; }
body.is-admin .mob-admin { display: block; }

/* Hide mobile-only elements on desktop */
@media (min-width: 769px) {
  .mob-header { display: none; }
  .mob-nav-overlay { display: none; }
  .mob-nav-drawer { display: none; }
  .mobile-output-toggle { display: none; }
  .mobile-output-close { display: none; }
  #mob-topbar,
  #mob-create-view,
  #mob-wf-picker,
  #mob-you-screen,
  #mob-bottomnav { display: none !important; }
  .mob-sheet-hdr { display: none !important; }
  .mob-out-hdr { display: none !important; }
}

@media (max-width: 600px) {
  .g5,
  .g4,
  .g3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pf-masonry {
    column-count: 1;
  }
  .portfolio-stats {
    gap: 12px;
  }
  .portfolio-actions {
    padding: 12px 16px;
    flex-wrap: wrap;
  }
  .fashion-cat-grid {
    grid-template-columns: 1fr;
  }
  .fco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Loading skeleton for images */
@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
.pf-card img, .hist-page .pf-card img {
  background: var(--bg3, #2a2a3a);
  min-height: 120px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
.pf-card img[src], .pf-card img.loaded {
  animation: none;
  min-height: 0;
}

@media print {
  .sidebar,
  .gen-bar,
  .ph-actions,
  .out-hdr-actions {
    display: none !important;
  }
  .app {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NEW MOBILE COMPONENTS
   All default to display:none — shown only inside ≤768px
   ═══════════════════════════════════════════════════════════════ */

/* ── Mobile Top Bar ─────────────────────────────────────────── */
#mob-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 600;
  flex-shrink: 0;
}
.mob-topbar-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}
.mob-topbar-you-btn {
  background: none;
  border: none;
  color: var(--text-sec);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* ── Mobile Create View ─────────────────────────────────────── */
#mob-create-view {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: calc(64px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  padding: 20px 16px;
  z-index: 200;
  background: var(--bg);
}
.mob-studio-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mob-studio-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mob-studio-card:active {
  background: var(--bg3);
  transform: scale(0.98);
}
.mob-studio-card-icon {
  font-size: 28px;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}
.mob-studio-card-body { flex: 1; }
.mob-studio-card-title {
  font: 700 15px/1.2 var(--sans);
  color: var(--text);
  margin-bottom: 3px;
}
.mob-studio-card-desc {
  font: 400 12px/1.4 var(--sans);
  color: var(--text-sec);
}
.mob-studio-card-arrow {
  color: var(--text-ter);
  font-size: 20px;
  flex-shrink: 0;
  font-weight: 300;
}

/* ── Mobile Workflow Picker Sheet ───────────────────────────── */
#mob-wf-picker {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 80vh;
  background: var(--bg2);
  border-radius: 16px 16px 0 0;
  border-top: 1px solid var(--border);
  z-index: 550;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0, 0, 1);
  padding-bottom: env(safe-area-inset-bottom);
  overflow: hidden;
}
#mob-wf-picker.mob-open {
  transform: translateY(0);
}
.mob-wf-picker-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mob-wf-picker-title {
  font: 700 16px/1 var(--sans);
  color: var(--text);
}
.mob-wf-picker-close {
  background: none;
  border: none;
  color: var(--text-sec);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mob-wf-list {
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.mob-wf-item {
  padding: 0 20px;
  height: 52px;
  font: 500 15px/1 var(--sans);
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.mob-wf-item:active { background: var(--bg3); }
.mob-wf-item:last-child { border-bottom: none; }

/* ── Mobile Form Sheet Header ───────────────────────────────── */
.mob-sheet-hdr {
  display: none;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 0 16px;
  height: 52px;
  padding-top: env(safe-area-inset-top);
}
.mob-sheet-back {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
}
.mob-sheet-wf-title {
  flex: 1;
  font: 700 15px/1 var(--sans);
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Mobile Output Header ───────────────────────────────────── */
.mob-out-hdr {
  display: none;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 0 16px;
  height: 52px;
  padding-top: env(safe-area-inset-top);
}
.mob-out-back {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
}
.mob-out-title {
  flex: 1;
  font: 700 15px/1 var(--sans);
  color: var(--text);
}

/* ── Mobile You Screen ──────────────────────────────────────── */
#mob-you-screen {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: calc(64px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  background: var(--bg);
  z-index: 300;
}
.mob-you-profile-hdr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
}
.mob-you-avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 18px/1 var(--sans);
  color: #000;
  flex-shrink: 0;
  overflow: hidden;
}
.mob-you-name {
  font: 700 16px/1.2 var(--sans);
  color: var(--text);
}
.mob-you-email {
  font: 400 12px/1.4 var(--sans);
  color: var(--text-sec);
  margin-top: 2px;
}
.mob-you-credits-block {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.mob-you-credits-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mob-you-credits-label {
  font: 500 13px/1 var(--sans);
  color: var(--text-sec);
}
.mob-you-credits-val {
  font: 700 22px/1 var(--mono);
  color: var(--green, #4ade80);
}
.mob-you-cred-actions {
  display: flex;
  gap: 8px;
}
.mob-you-cred-btn {
  flex: 1;
  padding: 11px 8px;
  border: 1px solid var(--border);
  background: var(--bg2);
  border-radius: 8px;
  color: var(--text);
  font: 600 12px/1 var(--sans);
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.mob-you-cred-btn:active { opacity: 0.7; }
.mob-you-cred-btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}
.mob-you-nav-list { padding: 4px 0; }
.mob-you-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 52px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font: 500 14px/1 var(--sans);
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}
.mob-you-nav-item:active { background: var(--bg2); }
.mob-you-nav-item:last-child { border-bottom: none; }
.mob-you-nav-item.signout { color: var(--red, #c0392b); }
.mob-you-nav-icon { color: var(--text-ter); font-size: 16px; }
.mob-you-nav-item.signout .mob-you-nav-icon { color: inherit; }

/* ── Mobile Bottom Nav ──────────────────────────────────────── */
#mob-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(56px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--bg);
  border-top: 1px solid var(--border);
  z-index: 10000;
  align-items: stretch;
}
.mob-bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 4px;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background: none;
  color: var(--text-sec);
  font: inherit;
  transition: color 0.15s;
}
.mob-bnav-item.active { color: var(--text); }
.mob-bnav-icon { line-height: 1; }
.mob-bnav-icon svg { display: block; }
.mob-bnav-label {
  font: 600 10px/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
