/* ============================================================
   explorely-profile.css
   Profile page + shared sidebar (new design)
   Depends on: inc.php nav (56px), site variables in style.css
   ============================================================ */

/* ── Layout ── */
.layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 56px);
}

/* ── Sidebar diary widget ── */
.sb-diary-widget {
  margin: 10px 0 4px;
  padding: 0 16px;
}
.sb-diary-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 4px;
}
.sb-diary-hd span {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.sb-diary-hd a {
  font-size: 11px;
  color: #534AB7;
  text-decoration: none;
}
.sb-diary-hd a:hover { text-decoration: underline; }
.sb-diary-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  border-bottom: 0.5px solid rgba(0,0,0,.06);
  text-decoration: none;
  color: #1a1a1a;
}
.sb-diary-item:last-child { border-bottom: none; }
.sb-diary-item:hover { color: #534AB7; }
.sb-diary-item.done-item { color: #aaa; }
.sb-diary-icon { font-size: 12px; flex-shrink: 0; }
.sb-diary-name {
  flex: 1;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.sb-diary-tag {
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
  flex-shrink: 0;
}
.sb-diary-tag.done { background: #E1F5EE; color: #085041; }
.sb-diary-tag.want { background: #EEEDFE; color: #3C3489; }
.sb-diary-empty { font-size: 11px; color: #bbb; padding: 4px 0; }

/* ── Sidebar ── */
.sidebar {
  background: #fff;
  border-right: 0.5px solid rgba(0,0,0,0.08);
  padding: 20px 0;
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  overflow-y: auto;
}

.sb-section-label {
  font-size: 10px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 16px;
  margin-bottom: 4px;
  margin-top: 16px;
  display: block;
}

.sb-section-label:first-child { margin-top: 0; }

.sb-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.1s;
  position: relative;
}

.sb-link:hover { background: #f5f4f0; color: #1a1a1a; text-decoration: none; }
.sb-link.active { color: #534AB7; background: #EEEDFE; font-weight: 500; }

.sb-link .sb-icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }

.sb-link .sb-badge {
  margin-left: auto;
  font-size: 10px;
  background: #534AB7;
  color: #fff;
  border-radius: 10px;
  padding: 1px 7px;
  font-weight: 500;
}

.sb-divider {
  border: none;
  border-top: 0.5px solid rgba(0,0,0,0.07);
  margin: 8px 0;
}

/* ── Main column ── */
.main {
  padding: 28px 0 0;
  max-width: 1100px;
}

/* ── Profile header card ── */
.profile-card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 28px 0;
}

.profile-cover {
  height: 80px;
  background: linear-gradient(135deg, #EEEDFE 0%, #AFA9EC 100%);
}

.profile-cover-inner {
  height: 100%;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 20px);
}

.profile-head { padding: 0 24px 20px; }

.profile-av-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: -28px;
  margin-bottom: 14px;
}

.profile-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #EEEDFE;
  color: #534AB7;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.profile-av img { width: 100%; height: 100%; object-fit: cover; }

.profile-head-actions { display: flex; gap: 8px; }

.btn-edit {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 0.5px solid rgba(0,0,0,0.15);
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-edit:hover { background: #f5f4f0; color: #1a1a1a; text-decoration: none; }

.btn-follow {
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 8px;
  border: none;
  background: #534AB7;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}

.btn-follow:hover { background: #7F77DD; }

.btn-unfollow {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 0.5px solid rgba(0,0,0,0.15);
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
}

.btn-unfollow:hover { background: #f5f4f0; }

.profile-name { font-size: 18px; font-weight: 500; color: #1a1a1a; margin-bottom: 4px; }

.profile-bio { font-size: 13px; color: #666; margin-bottom: 10px; line-height: 1.5; }

.profile-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #999;
  flex-wrap: wrap;
}

.profile-meta span { display: flex; align-items: center; gap: 4px; }

.profile-meta a { color: #534AB7; cursor: pointer; text-decoration: none; }
.profile-meta a:hover { text-decoration: underline; }

.profile-score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FAEEDA;
  color: #633806;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 500;
}

/* ── Stat tabs ── */
.stat-tabs {
  display: flex;
  border-top: 0.5px solid rgba(0,0,0,0.07);
  overflow-x: auto;
}

.stat-tab {
  flex: 1;
  min-width: 70px;
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, background 0.1s;
  user-select: none;
}

.stat-tab:hover { background: #f5f4f0; }
.stat-tab.active { border-bottom-color: #534AB7; }
.stat-tab + .stat-tab { border-left: 0.5px solid rgba(0,0,0,0.06); }

.stat-tab .n { font-size: 17px; font-weight: 500; color: #1a1a1a; display: block; }
.stat-tab.active .n { color: #534AB7; }
.stat-tab .l { font-size: 10px; color: #aaa; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-top: 1px; }
.stat-tab.active .l { color: #534AB7; }

/* ── Tab panels ── */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Profile body: tab content + persistent right panel ── */
.profile-body-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 14px;
  align-items: start;
  padding: 14px 28px 0;
}

.profile-tabs-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.profile-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 70px;
}

/* ── Overview grid (legacy, kept for backward compat) ── */
.overview-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-main { display: flex; flex-direction: column; gap: 12px; }
.col-side  { display: flex; flex-direction: column; gap: 12px; }

/* ── Card ── */
.card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 18px 20px;
}

.card-title { font-size: 13px; font-weight: 500; color: #1a1a1a; margin-bottom: 14px; }

/* ── Activity feed ── */
/* ── Activity feed — timeline style ── */
.activity-feed {
  position: relative;
  padding-left: 4px;
}

/* Vertical spine behind icons */
.activity-feed::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(0,0,0,0.07);
}

.activity-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  align-items: flex-start;
  position: relative;
}

.activity-item:last-child { padding-bottom: 0; }

.act-dot { display: none; } /* removed — spine replaces it */

.act-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 3px #fff; /* cuts through spine cleanly */
}

.act-body {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.act-body p {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.45;
  margin: 0;
}

.act-label {
  font-size: 11px;
  font-weight: 500;
  color: #999;
  display: block;
  margin-bottom: 2px;
}

.act-name {
  font-size: 13px;
  font-weight: 500;
  color: #534AB7;
  text-decoration: none;
  line-height: 1.4;
}
.act-name:hover { text-decoration: underline; }

.act-body p em { font-style: normal; color: #534AB7; }
.act-body p a  { color: #534AB7; text-decoration: none; }
.act-body p a:hover { text-decoration: underline; }

.act-quote {
  font-size: 12px;
  color: #666;
  line-height: 1.55;
  margin-top: 5px;
  padding-left: 10px;
  border-left: 2px solid #534AB7;
  font-style: italic;
}

.act-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  flex-wrap: wrap;
  gap: 6px;
}

.act-meta-left  { display: flex; align-items: center; gap: 8px; }
.act-time  { font-size: 11px; color: #ccc; }
.act-score { font-size: 11px; color: #EF9F27; font-weight: 500; }
.act-tag   { display: none; } /* icon color replaces tag */

/* ── Collection grid ── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.coll-item {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.15s;
}

.coll-item:hover { border-color: rgba(83,74,183,0.3); color: inherit; text-decoration: none; }

.coll-thumb {
  width: 100%;
  aspect-ratio: 2/3;
  background: #f5f4f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 10px;
  overflow: hidden;
}

.coll-thumb img { width: 100%; height: 100%; object-fit: cover; }

.coll-name { font-size: 12px; font-weight: 500; color: #1a1a1a; margin-bottom: 2px; line-height: 1.3; }
.coll-sub  { font-size: 11px; color: #aaa; }
.coll-score { font-size: 11px; color: #EF9F27; margin-top: 4px; }

/* ── Diary ── */
.diary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
}

.diary-item:last-child { border-bottom: none; }

.dcheck {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.18);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dcheck.done { background: #534AB7; border-color: #534AB7; }
.dcheck.done::after { content: '✓'; font-size: 9px; color: #fff; }

.diary-icon  { font-size: 15px; width: 22px; text-align: center; flex-shrink: 0; }
.diary-text  { flex: 1; font-size: 13px; color: #1a1a1a; text-decoration: none; }
.diary-text.done { color: #aaa; text-decoration: line-through; }

.diary-cat {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 8px;
  white-space: nowrap;
}

/* ── Friends / people ── */
.friend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
}

.friend-item:last-child { border-bottom: none; }

.friend-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.friend-av img { width: 100%; height: 100%; object-fit: cover; }

.friend-info { flex: 1; min-width: 0; }
.friend-name { font-size: 12px; font-weight: 500; color: #1a1a1a; }
.friend-loc  { font-size: 11px; color: #aaa; }

.friend-follow-btn {
  font-size: 11px;
  color: #534AB7;
  text-decoration: none;
  padding: 3px 8px;
  border: 0.5px solid #534AB7;
  border-radius: 8px;
  white-space: nowrap;
}

.friend-follow-btn:hover { background: #EEEDFE; text-decoration: none; color: #534AB7; }

/* ── Map placeholder ── */
.map-placeholder {
  background: #f5f4f0;
  border-radius: 10px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #bbb;
  font-size: 13px;
}

.map-placeholder .map-icon { font-size: 32px; }

/* ── Countries grid ── */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 4px;
}

.country-item {
  background: none;
  border-radius: 6px;
  padding: 5px 4px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.12s;
}

.country-item:hover { background: #f5f4f0; }
.country-item.visited { background: none; }
.country-item.visited .country-name { color: #1a1a1a; }

.country-flag  { font-size: 20px; margin-bottom: 2px; line-height: 1; }
.country-name  { font-size: 10px; font-weight: 400; color: #555; }
.country-count { font-size: 9px; color: #aaa; margin-top: 1px; }

/* ── Section header ── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-head h3 { font-size: 13px; font-weight: 500; color: #1a1a1a; margin: 0; }

.section-head a {
  font-size: 12px;
  color: #534AB7;
  text-decoration: none;
  cursor: pointer;
}

.section-head a:hover { text-decoration: underline; }

/* ── Filter bar ── */
.filter-bar { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }

.filter-pill {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 0.5px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #666;
  cursor: pointer;
  user-select: none;
  transition: background 0.1s;
}

.filter-pill.on  { background: #534AB7; color: #fff; border-color: #534AB7; }
.filter-pill:hover:not(.on) { background: #f5f4f0; }

/* ── Events ── */
.event-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
}

.event-item:last-child { border-bottom: none; }

.event-date {
  background: #EEEDFE;
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  flex-shrink: 0;
  min-width: 46px;
}

.event-date .d { font-size: 16px; font-weight: 500; color: #534AB7; display: block; }
.event-date .m { font-size: 10px; color: #7F77DD; text-transform: uppercase; letter-spacing: 0.04em; }

.event-info { flex: 1; min-width: 0; }
.event-name { font-size: 13px; font-weight: 500; color: #1a1a1a; margin-bottom: 2px; }
.event-meta { font-size: 12px; color: #aaa; }

/* ── Empty state ── */
.empty { text-align: center; padding: 40px 20px; color: #aaa; font-size: 13px; }
.empty-icon { font-size: 32px; margin-bottom: 10px; }
.empty a { color: #534AB7; }

/* ── Score card ── */
.score-card {
  background: linear-gradient(135deg, #534AB7, #7F77DD);
  border-radius: 12px;
  padding: 18px 20px;
  color: #fff;
}

.score-card .pts       { font-size: 32px; font-weight: 500; }
.score-card .pts-label { font-size: 12px; opacity: 0.75; margin-bottom: 4px; }
.score-card .rank      { font-size: 12px; opacity: 0.8; margin-top: 8px; }

/* ── Streak ── */
.streak-row { display: flex; gap: 6px; }

.streak-day {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #f5f4f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #aaa;
}

.streak-day.done  { background: #534AB7; color: #fff; }
.streak-day.today { background: #534AB7; color: #fff; box-shadow: 0 0 0 2px #fff, 0 0 0 3px #534AB7; }

/* ── Reviews / quoted text ── */
.review-quote {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  font-style: italic;
  border-left: 2px solid #534AB7;
  padding-left: 8px;
  line-height: 1.55;
}

/* ── Loading state ── */
.tab-loading {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
  font-size: 13px;
}

/* ── Compat bar (for public profile) ── */
.profile-compat-bar {
  background: #EEEDFE;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 12px;
  color: #534AB7;
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ═══════════════════════════════
   Mobile — ≤ 860px
   ═══════════════════════════════ */
@media (max-width: 860px) {

  /* ── Layout shell ── */
  .layout {
    grid-template-columns: 1fr;
  }
  .sidebar { display: none; }

  /* ── Main content area ── */
  .main {
    padding: 12px 12px 60px;
    max-width: 100%;
  }

  /* ── Profile header card ── */
  .profile-card {
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .profile-cover { height: 60px; }
  .profile-head  { padding: 0 14px 16px; }

  .profile-av-wrap { margin-top: -24px; margin-bottom: 10px; }
  .profile-av { width: 48px; height: 48px; font-size: 17px; }

  .profile-name { font-size: 16px; }

  .profile-meta {
    gap: 10px;
    font-size: 11px;
    flex-wrap: wrap;
  }

  /* ── Stat tabs → 4-column 2-row grid on mobile ── */
  .stat-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
  }

  .stat-tab {
    min-width: 0;
    flex: unset;
    padding: 9px 4px;
    border-left: none;
    border-bottom: 2px solid transparent;
  }
  /* right border between cols */
  .stat-tab:nth-child(4n) { border-right: none; }
  /* top border for second row */
  .stat-tab:nth-child(n+5) { border-top: 0.5px solid rgba(0,0,0,0.07); }

  .stat-tab .n { font-size: 14px; }
  .stat-tab .l { font-size: 9px; display: block; }

  /* profile-card: allow border-radius without hiding tab overflow */
  .profile-card { overflow: visible; }
  .profile-cover { border-radius: 12px 12px 0 0; overflow: hidden; }

  /* ── Profile body grid: stack on mobile ── */
  .profile-body-grid {
    grid-template-columns: 1fr;
    padding: 10px 12px 0;
  }
  .profile-aside { position: static; }

  /* ── Overview grid: single column on mobile ── */
  .overview-grid { gap: 10px; }

  /* Compact the sidebar stats on mobile */
  .sb-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .sb-stat { padding: 8px 10px; }
  .sb-stat-n { font-size: 17px; }

  /* ── Cards ── */
  .card {
    border-radius: 12px;
    padding: 14px 16px;
  }
  .card-title { margin-bottom: 10px; }

  /* ── Collection grids (films/books/places) ── */
  .collection-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
  }
  .coll-item { padding: 10px; }
  .coll-name { font-size: 11px; }
  .coll-sub, .coll-score { font-size: 10px; }

  /* ── Filter pills ── */
  .filter-bar { gap: 5px; margin-bottom: 12px; flex-wrap: wrap; }
  .filter-pill { font-size: 11px; padding: 4px 10px; }

  /* ── Section head ── */
  .section-head { margin-bottom: 10px; }
  .section-head h3 { font-size: 13px; }

  /* ── Activity feed ── */
  .activity-feed::before { left: 14px; }
  .act-icon { width: 30px; height: 30px; font-size: 13px; }
  .act-label { font-size: 10px; }
  .act-name  { font-size: 13px; }
  .act-quote { font-size: 12px; }

  /* ── Event items ── */
  .event-item { gap: 10px; }
  .event-date .d { font-size: 16px; }

  /* ── Friend / people rows ── */
  .friend-item { gap: 8px; padding: 7px 0; }
  .friend-av { width: 28px; height: 28px; font-size: 10px; }

  /* ── Score card ── */
  .score-card { padding: 14px 16px; }
  .score-card .pts { font-size: 26px; }

  /* ── Sidebar log items ── */
  .sb-log-item { padding: 5px 0; }
  .sb-map-line { font-size: 12px; }
}

/* ── Profile sidebar widgets ── */
.sb-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sb-stat {
  background: #f7f7f9;
  border-radius: 10px;
  padding: 10px 12px;
}
.sb-stat-n { font-size: 20px; font-weight: 500; color: #1a1a1a; }
.sb-stat-l { font-size: 11px; color: #999; margin-top: 2px; }

.sb-map-line { font-size: 13px; color: #444; }
.sb-map-line strong { color: #1a1a1a; }

.sb-log-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
  text-decoration: none;
  color: #1a1a1a;
  font-size: 12px;
  line-height: 1.3;
}
.sb-log-item:last-child { border-bottom: none; }
.sb-log-item:hover { color: #534AB7; }
.sb-log-icon { font-size: 13px; flex-shrink: 0; }
.sb-log-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.sb-empty { font-size: 12px; color: #aaa; padding: 4px 0; }
.sb-empty a { color: #534AB7; text-decoration: none; }

/* ── Mobile bottom nav ── */
.mob-nav {
  display: none;
}

@media (max-width: 860px) {
  .mob-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #fff;
    border-top: 0.5px solid rgba(0,0,0,0.1);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mob-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 9px 4px 7px;
    text-decoration: none;
    color: #999;
    font-size: 10px;
    gap: 3px;
    transition: color 0.15s;
  }

  .mob-nav-item:hover,
  .mob-nav-item.mob-nav-active { color: #534AB7; text-decoration: none; }

  .mob-nav-icon { font-size: 18px; line-height: 1; }
  .mob-nav-label { font-size: 10px; line-height: 1; }
}
