/* ── TOKENS ─────────────────────────────────────── */
:root {
  --bg:       #1a1008; --bg2: #201408; --bg3: #2a1c0c;
  --card:     #241608; --card2: #2e1e0e;
  --border:   rgba(200,145,42,0.14); --border2: rgba(200,145,42,0.32);
  --cream:    #f0e6cc; --cream2: #c8b48a; --cream3: #8a7455;
  --gold:     #c8912a; --gold2: #e0a83a; --gold3: #f5c84a;
  --teal:     #2a7a58; --teal2: #3aaa7a;
  --danger:   #c04040;
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --topbar-h: 56px; --nav-h: 52px; --tabs-h: 42px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }
body { background: var(--bg); color: var(--cream); font-family: var(--font-b);
  font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
button { font-family: var(--font-b); cursor: pointer; }
input, select, textarea { font-family: var(--font-b); }
.hidden { display: none !important; }

/* ── AUTH ────────────────────────────────────────── */
.auth-screen {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; z-index: 100;
}
.auth-inner {
  width: 100%; max-width: 360px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: fadeSlideIn 0.4s ease both;
}
.auth-glass {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,145,42,0.1); border: 1px solid rgba(200,145,42,0.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.auth-title { font-family: var(--font-d); font-size: 26px; color: var(--cream); text-align: center; }
.auth-sub { font-size: 13px; color: var(--cream3); text-align: center; line-height: 1.6; }
.auth-form { width: 100%; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.auth-field { display: flex; flex-direction: column; gap: 5px; }
.auth-input {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 12px; padding: 13px 14px;
  color: var(--cream); font-size: 16px; outline: none; width: 100%;
  transition: border-color 0.15s;
}
.auth-input:focus { border-color: var(--gold); }
.auth-input.otp-input { font-size: 24px; letter-spacing: 8px; text-align: center; }
.auth-btn {
  width: 100%; padding: 14px; border-radius: 12px;
  border: none; background: var(--gold); color: #1a1008;
  font-size: 15px; font-weight: 500; font-family: var(--font-d);
  transition: opacity 0.2s;
}
.auth-btn:active { opacity: 0.82; }
.auth-btn-outline {
  width: 100%; padding: 13px; border-radius: 12px;
  border: 1px solid var(--border2); background: transparent;
  color: var(--cream3); font-size: 14px;
}
.auth-note { font-size: 12px; color: var(--cream3); text-align: center; }
.auth-link { color: var(--gold2); cursor: pointer; text-decoration: underline; }
.pending-status {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 8px 16px;
  font-size: 13px; color: var(--cream2);
}
.pending-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: pulse-dot 1.5s ease infinite; flex-shrink: 0;
}
.pending-pulse svg { animation: pulse-opacity 2s ease infinite; }
@keyframes pulse-opacity { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── APP SHELL ───────────────────────────────────── */
#app { display: flex; flex-direction: column; height: 100%; height: -webkit-fill-available; }

/* ── TOPBAR ──────────────────────────────────────── */
.topbar { background: var(--bg); border-bottom: 1px solid var(--border);
  padding-top: var(--safe-top); flex-shrink: 0; z-index: 20; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px; height: var(--topbar-h); gap: 10px; }
.topbar-left { display: flex; align-items: center; gap: 8px; min-width: 0; }
.back-btn { width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border2); background: transparent;
  color: var(--cream3); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; }
.app-title { font-family: var(--font-d); font-size: 20px; color: var(--cream);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.loc-pill { display: flex; align-items: center; gap: 5px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 10px; font-size: 11px; color: var(--cream3); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal2);
  flex-shrink: 0; animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
.notif-btn { position: relative; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border2); background: transparent; color: var(--cream3);
  display: flex; align-items: center; justify-content: center; }
.notif-badge { position: absolute; top: -2px; right: -2px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--danger); border: 2px solid var(--bg); }

/* ── NAV TABS ────────────────────────────────────── */
.nav-tabs { display: flex; border-bottom: 1px solid var(--border);
  background: var(--bg); flex-shrink: 0; }
.nav-tab { flex: 1; height: var(--tabs-h); font-size: 12px; color: var(--cream3);
  background: transparent; border: none; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s; }
.nav-tab.active { color: var(--gold2); border-bottom-color: var(--gold); }

/* ── PAGES ───────────────────────────────────────── */
.pages { flex: 1; overflow: hidden; position: relative; }
.page {
  position: absolute; inset: 0;
  overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  display: none;
  padding-bottom: calc(var(--nav-h) + var(--safe-bottom) + 8px);
  overscroll-behavior: contain;
  /* Clip children so map tiles can't bleed through */
  clip-path: inset(0);
}
.page.active { display: block; }
.sub-page { display: none; padding-bottom: calc(var(--safe-bottom) + 20px); }
.sub-page.active { display: block; }

/* Map page needs flex + no clip-path interference */
#page-map {
  display: none;
  flex-direction: column;
  padding-bottom: 0;
  overflow: hidden;
  clip-path: none;
}
#page-map.active { display: flex; }

/* Strictly contain the Google Map inside its container */
#googleMap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

/* Force Google Maps internal divs to stay clipped */
#googleMap > div {
  overflow: hidden !important;
}

/* ── BOTTOM NAV ──────────────────────────────────── */
.bottom-nav { display: flex; border-top: 1px solid var(--border); background: var(--bg);
  padding-bottom: max(var(--safe-bottom), 16px); flex-shrink: 0; }
.bnav-item { flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px; padding: 8px 0; border: none;
  background: transparent; color: var(--cream3); font-size: 10px;
  height: var(--nav-h); transition: color 0.2s; }
.bnav-item.active { color: var(--gold2); }

/* ── FILTERS / SORT ──────────────────────────────── */
.filters-row { display: flex; gap: 7px; overflow-x: auto; padding: 12px 14px 8px;
  scrollbar-width: none; }
.filters-row::-webkit-scrollbar { display: none; }
.chip { padding: 5px 12px; border-radius: 20px; border: 1px solid var(--border2);
  background: transparent; color: var(--cream3); font-size: 12px; white-space: nowrap;
  transition: background 0.15s, color 0.15s; }
.chip.active { background: rgba(200,145,42,0.16); color: var(--gold2); border-color: var(--gold); }
.sort-row { display: flex; align-items: center; gap: 7px; padding: 0 14px 10px;
  overflow-x: auto; scrollbar-width: none; }
.sort-row::-webkit-scrollbar { display: none; }
.sort-label { font-size: 11px; color: var(--cream3); flex-shrink: 0; }
.sort-btn { padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border);
  background: transparent; color: var(--cream3); font-size: 11px; white-space: nowrap; }
.sort-btn.active { background: var(--bg3); color: var(--cream); border-color: var(--border2); }

/* ── PUB LIST ────────────────────────────────────── */
.pub-list { display: flex; flex-direction: column; gap: 10px; padding: 0 12px 12px; }
.pub-card { background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 13px; cursor: pointer;
  transition: transform 0.15s; animation: fadeSlideIn 0.3s ease both; }
.pub-card.best { border: 2px solid var(--gold); }
.pub-card:active { transform: scale(0.98); }
.pub-card-top { display: flex; align-items: flex-start; justify-content: space-between;
  gap: 8px; margin-bottom: 6px; }
.pub-nm { font-family: var(--font-d); font-size: 15px; color: var(--cream); }
.pub-meta { font-size: 11px; color: var(--cream3); margin-top: 2px; }
.best-badge { font-size: 10px; background: rgba(200,145,42,0.16); color: var(--gold2);
  border-radius: 6px; padding: 2px 8px; white-space: nowrap; flex-shrink: 0; }
.price-level-badge { font-size: 12px; color: var(--gold2); font-weight: 500; }
.price-level-dim { color: var(--cream3); }
.pub-stats { display: flex; gap: 12px; margin: 8px 0; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-val { font-size: 14px; font-weight: 500; color: var(--cream); }
.stat-lbl { font-size: 10px; color: var(--cream3); }
.stat-div { width: 1px; background: var(--border2); align-self: stretch; }
.stars { color: var(--gold); } .stars.dim { color: var(--cream3); }
.score-bar { margin-top: 6px; }
.score-txt { font-size: 10px; color: var(--cream3); margin-bottom: 3px;
  display: flex; justify-content: space-between; }
.score-track { height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden; }
.score-fill { height: 100%; border-radius: 2px; background: var(--gold); }
.dir-btn { margin-top: 8px; width: 100%; padding: 8px; border-radius: 9px;
  border: 1px solid var(--gold); background: transparent; color: var(--gold2);
  font-size: 12px; font-weight: 500; }

/* ── PRICE LEVEL VOTE ────────────────────────────── */
.vote-section { margin-top: 8px; }
.vote-label { font-size: 11px; color: var(--cream3); margin-bottom: 5px; }
.vote-row { display: flex; gap: 6px; }
.vote-btn { flex: 1; padding: 6px 0; border-radius: 8px;
  border: 1px solid var(--border); background: transparent;
  color: var(--cream3); font-size: 13px; font-weight: 500; text-align: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s; cursor: pointer; }
.vote-btn.selected { background: rgba(200,145,42,0.16); border-color: var(--gold); color: var(--gold2); }
.vote-count { font-size: 9px; display: block; color: var(--cream3); margin-top: 1px; }

/* ── FAB ─────────────────────────────────────────── */
.fab-wrap {
  position: fixed;
  bottom: calc(var(--nav-h) + var(--safe-bottom) + 14px);
  right: 18px;
  z-index: 15;
  pointer-events: none;
}
.fab {
  pointer-events: all;
  padding: 13px 20px;
  border-radius: 30px;
  border: none;
  background: var(--gold);
  color: #1a1008;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-d);
  box-shadow: 0 4px 18px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,145,42,0.3);
  white-space: nowrap;
}
.fab:active { opacity: 0.85; transform: scale(0.96); }

/* ── MAP ─────────────────────────────────────────── */
#googleMap { flex: 1; }
.map-callout { border-top: 1px solid var(--border); background: var(--card);
  padding: 14px 16px; min-height: 64px; }
.callout-hint { font-size: 13px; color: var(--cream3); text-align: center; padding: 4px 0; }

/* ── STATS ───────────────────────────────────────── */
.stats-scroll { padding: 14px; display: flex; flex-direction: column; gap: 14px; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mc { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px; }
.mc-lbl { font-size: 11px; color: var(--cream3); margin-bottom: 3px; }
.mc-val { font-size: 22px; font-weight: 500; color: var(--cream); font-family: var(--font-d); }
.mc-sub { font-size: 10px; color: var(--cream3); margin-top: 2px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.section-head { font-size: 13px; font-weight: 500; color: var(--cream); margin-bottom: 10px; }
.bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.bar-label { font-size: 11px; color: var(--cream3); width: 96px; flex-shrink: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bar-track { flex: 1; height: 18px; background: var(--bg3); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: var(--gold); }
.bar-fill.dim { background: rgba(200,145,42,0.35); }
.bar-price { font-size: 11px; font-weight: 500; color: var(--cream); width: 30px; text-align: right; }

/* ── CREW ────────────────────────────────────────── */
.crew-header { background: var(--card); border-bottom: 1px solid var(--border); padding: 16px; }
.crew-header-top { display: flex; align-items: flex-start; justify-content: space-between; }
.crew-name-big { font-family: var(--font-d); font-size: 18px; color: var(--cream); }
.crew-sub { font-size: 11px; color: var(--cream3); margin-top: 2px; }
.invite-btn { padding: 6px 14px; border-radius: 20px; border: 1px solid var(--gold);
  background: transparent; color: var(--gold2); font-size: 12px; font-weight: 500; }
.crew-feed { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.feed-card { background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 13px; animation: fadeSlideIn 0.3s ease both; }
.feed-top { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.feed-who { flex: 1; }
.feed-name { font-size: 13px; font-weight: 500; color: var(--cream); }
.feed-when { font-size: 10px; color: var(--cream3); }
.feed-price { font-size: 13px; font-weight: 500; color: var(--gold2); }
.feed-pub { font-size: 11px; color: var(--cream3); margin-bottom: 5px; }
.feed-stars { font-size: 12px; color: var(--gold); margin-bottom: 5px; }
.feed-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 7px; }
.feed-tag { font-size: 10px; padding: 2px 8px; border-radius: 10px;
  background: rgba(200,145,42,0.12); color: var(--gold2);
  border: 1px solid rgba(200,145,42,0.25); }
.feed-tag.gray { background: rgba(255,255,255,0.05); color: var(--cream3); border-color: var(--border); }
.feed-photos { display: flex; gap: 6px; margin-bottom: 7px; flex-wrap: wrap; }
.feed-photo { width: 72px; height: 72px; border-radius: 8px; object-fit: cover;
  border: 1px solid var(--border); }
.feed-review { font-size: 12px; color: var(--cream2); line-height: 1.55; font-style: italic; }

/* ── AVATAR ──────────────────────────────────────── */
.avatar { border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; flex-shrink: 0; width: 32px; height: 32px; }

/* ── LOG FORM ────────────────────────────────────── */
.log-scroll { padding: 16px; }
.log-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 11px; color: var(--cream3); font-weight: 500; letter-spacing: 0.04em; }
.field-select, .field-textarea {
  background: var(--card); border: 1px solid var(--border2); border-radius: 10px;
  padding: 10px 12px; color: var(--cream); font-size: 14px; outline: none; width: 100%;
  appearance: none; transition: border-color 0.15s; }
.field-select:focus, .field-textarea:focus { border-color: var(--gold); }
.field-textarea { resize: none; line-height: 1.5; min-height: 72px; }
.price-input-row { display: flex; align-items: center; gap: 6px; }
.price-prefix { font-size: 22px; color: var(--cream3); font-family: var(--font-d); }
.price-input { font-size: 26px; font-weight: 500; color: var(--cream); font-family: var(--font-d);
  border: none; border-bottom: 2px solid var(--gold); background: transparent;
  width: 110px; outline: none; padding-bottom: 2px; }
.star-input { display: flex; gap: 8px; }
.star-btn { font-size: 28px; color: var(--cream3); cursor: pointer; user-select: none;
  transition: color 0.15s, transform 0.1s; }
.star-btn.on { color: var(--gold); }
.star-btn:active { transform: scale(1.2); }
.glass-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.glass-opt { border: 1px solid var(--border); border-radius: 12px; padding: 12px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer;
  font-size: 11px; color: var(--cream3); text-align: center; transition: border-color 0.15s; }
.glass-opt.sel { border-color: var(--gold); background: rgba(200,145,42,0.1); color: var(--gold2); }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-btn { padding: 6px 12px; border-radius: 20px; border: 1px solid var(--border2);
  background: transparent; color: var(--cream3); font-size: 12px; cursor: pointer; }
.tag-btn.on { background: rgba(200,145,42,0.14); color: var(--gold2); border-color: var(--gold); }
.photo-add-btn { display: flex; flex-direction: column; align-items: center; gap: 5px;
  border: 1px dashed var(--border2); border-radius: 10px; padding: 12px 18px;
  cursor: pointer; color: var(--cream3); font-size: 11px; }
.photo-preview-row { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 8px; }
.preview-img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover;
  border: 1px solid var(--border); }
.submit-btn { width: 100%; padding: 14px; border-radius: 13px; border: none;
  background: var(--gold); color: #1a1008; font-size: 15px; font-weight: 500;
  font-family: var(--font-d); }
.submit-btn:active { opacity: 0.85; }

/* ── DETAIL ──────────────────────────────────────── */
.detail-scroll { padding: 14px; display: flex; flex-direction: column; gap: 14px; }
.detail-hero { background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 15px; display: flex; align-items: center; gap: 14px; }
.detail-avatar { width: 54px; height: 54px; border-radius: 50%;
  background: rgba(200,145,42,0.12); border: 1px solid rgba(200,145,42,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.detail-name { font-family: var(--font-d); font-size: 17px; color: var(--cream); }
.detail-sub { font-size: 11px; color: var(--cream3); margin-top: 3px; }
.det-badges { display: flex; gap: 5px; margin-top: 7px; flex-wrap: wrap; }
.det-badge { font-size: 10px; padding: 2px 8px; border-radius: 10px;
  background: rgba(200,145,42,0.12); color: var(--gold2); border: 1px solid rgba(200,145,42,0.28); }
.det-badge.muted { background: rgba(255,255,255,0.04); color: var(--cream3); border-color: var(--border); }
.detail-log-btn { width: 100%; padding: 13px; border-radius: 12px; border: none;
  background: var(--gold); color: #1a1008; font-family: var(--font-d); font-size: 14px; font-weight: 500; }

/* ── ADMIN ───────────────────────────────────────── */
.admin-scroll { padding: 14px; display: flex; flex-direction: column; gap: 14px; }
.admin-section { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.request-card { border-bottom: 1px solid var(--border); padding: 12px 0; }
.request-card:last-child { border-bottom: none; padding-bottom: 0; }
.request-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.request-name { font-size: 14px; font-weight: 500; color: var(--cream); }
.request-phone { font-size: 11px; color: var(--cream3); }
.request-time { font-size: 10px; color: var(--cream3); margin-left: auto; }
.request-actions { display: flex; gap: 8px; }
.approve-btn { flex: 1; padding: 8px; border-radius: 8px; border: 1px solid var(--teal2);
  background: rgba(58,170,122,0.12); color: var(--teal2); font-size: 12px; font-weight: 500; }
.deny-btn { flex: 1; padding: 8px; border-radius: 8px; border: 1px solid rgba(192,64,64,0.4);
  background: rgba(192,64,64,0.1); color: #e07070; font-size: 12px; font-weight: 500; }
.member-row { display: flex; align-items: center; gap: 10px; padding: 9px 0;
  border-bottom: 1px solid var(--border); }
.member-row:last-child { border-bottom: none; }
.member-info { flex: 1; }
.member-name { font-size: 13px; font-weight: 500; color: var(--cream); }
.member-phone { font-size: 10px; color: var(--cream3); margin-top: 1px; }
.member-role { font-size: 10px; padding: 2px 8px; border-radius: 10px;
  background: rgba(200,145,42,0.12); color: var(--gold2); border: 1px solid rgba(200,145,42,0.25); }
.remove-btn { font-size: 11px; padding: 4px 10px; border-radius: 7px;
  border: 1px solid rgba(192,64,64,0.35); background: transparent; color: #e07070; }

/* ── LOADING ─────────────────────────────────────── */
.loading-state { display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 48px 24px; color: var(--cream3); font-size: 13px; }
.loading-glass {
  width: 32px; height: 42px;
  background: linear-gradient(180deg, rgba(200,145,42,0.3) 0%, rgba(200,145,42,0.1) 100%);
  border-radius: 4px 4px 2px 2px; border: 1px solid var(--border2);
  animation: fill-pour 1.2s ease infinite;
}
@keyframes fill-pour { 0%,100%{opacity:0.3} 50%{opacity:1} }
.empty-state { display: flex; align-items: center; justify-content: center;
  padding: 40px 24px; color: var(--cream3); font-size: 13px; }

/* ── TOAST ───────────────────────────────────────── */
.toast { position: fixed; bottom: calc(var(--nav-h) + var(--safe-bottom) + 14px);
  left: 50%; transform: translateX(-50%) translateY(16px);
  background: var(--card2); border: 1px solid var(--border2);
  color: var(--cream); padding: 10px 18px; border-radius: 20px;
  font-size: 13px; pointer-events: none; opacity: 0;
  transition: opacity 0.25s, transform 0.25s; white-space: nowrap; z-index: 200; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── MISC ────────────────────────────────────────── */
@keyframes fadeSlideIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.pour-row { display: flex; align-items: center; gap: 10px; padding: 9px 0;
  border-bottom: 1px solid var(--border); }
.pour-row:last-child { border-bottom: none; }
.pour-info { flex: 1; }
.pour-name { font-size: 13px; font-weight: 500; color: var(--cream); }
.pour-sub { font-size: 10px; color: var(--cream3); margin-top: 1px; }
.pour-rating { font-size: 13px; font-weight: 500; color: var(--gold2); }
.trend-bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; }
.tbar-col { flex: 1; display: flex; flex-direction: column; align-items: center; }
.tbar { width: 100%; border-radius: 3px 3px 0 0; background: rgba(200,145,42,0.3); }
.tbar.hi { background: var(--gold); }
.tbar-val { font-size: 9px; color: var(--cream3); text-align: center; margin-top: 3px; }
.tbar-months { display: flex; gap: 5px; margin-top: 2px; }
.tbar-month { flex: 1; font-size: 9px; color: var(--cream3); text-align: center; }
