/* OUT Discover — phone-first public discovery SPA.
   Palette mirrors src/theme.ts (sand light / true-black dark). */

:root {
  --bg: #E8DFCB;
  --surface: #FFFFFF;
  --surface-alt: #F1EAD9;
  --accent: #A07D4B;
  --accent-fill: #C9A86A;
  --on-accent: #2A2113;
  --text: #121212;
  --muted: #8A7F74;
  --border: #121212;
  --danger: #E0141F;
  --chip-selected: #E9DCC4;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --surface: #211D14;
    --surface-alt: #2C2718;
    --accent: #C9A86A;
    --accent-fill: #C9A86A;
    --on-accent: #1A1710;
    --text: #F1E9D6;
    --muted: #A99C86;
    --border: #3A352A;
    --danger: #FF6B6F;
    --chip-selected: #3A2E1B;
  }
}

/* Manual theme override (sidebar toggle): data-theme on <html> beats the
   OS preference. Values mirror the two palettes above exactly. */
:root[data-theme='light'] {
  --bg: #E8DFCB;
  --surface: #FFFFFF;
  --surface-alt: #F1EAD9;
  --accent: #A07D4B;
  --accent-fill: #C9A86A;
  --on-accent: #2A2113;
  --text: #121212;
  --muted: #8A7F74;
  --border: #121212;
  --danger: #E0141F;
  --chip-selected: #E9DCC4;
}
:root[data-theme='dark'] {
  --bg: #000000;
  --surface: #211D14;
  --surface-alt: #2C2718;
  --accent: #C9A86A;
  --accent-fill: #C9A86A;
  --on-accent: #1A1710;
  --text: #F1E9D6;
  --muted: #A99C86;
  --border: #3A352A;
  --danger: #FF6B6F;
  --chip-selected: #3A2E1B;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  /* The page itself never scrolls — #app is the scroll container. This is
     the reliable iOS pattern: body-level overscroll-behavior breaks scroll
     range in home-screen web apps (2026-07-26 regression: drop pages could
     not scroll to the end). */
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

#app {
  max-width: 480px;
  margin: 0 auto;
  height: 100vh;
  /* dvh tracks the visible viewport as the keyboard opens/closes, so the
     layout doesn't get stuck offset after typing. */
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Contain the bounce inside the app column — no rubber-banding the whole
     page off-screen, but scrolling itself stays native. */
  overscroll-behavior-y: contain;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

a { color: inherit; }
button { font-family: inherit; }

/* ── pull-to-refresh ── */
.ptr-indicator {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  left: 50%;
  margin-left: -18px;
  z-index: 60;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.ptr-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.4px solid var(--accent);
  border-top-color: transparent;
}
.ptr-indicator.ptr-armed .ptr-spinner {
  animation: ptr-spin 0.7s linear infinite;
}
@keyframes ptr-spin {
  to { transform: rotate(360deg); }
}

/* ── Header ─────────────────────────────────────────────────────────── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  padding: calc(10px + env(safe-area-inset-top, 0px)) 16px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hdr-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin: 0;
  flex: 1;
}
.hdr-back {
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  padding: 6px 12px;
  cursor: pointer;
}
.hdr-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.hdr-brand .hdr-title {
  flex: 0 1 auto;
  white-space: nowrap;
  font-size: 20px;
  line-height: 1;
}
.hdr-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.hdr-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--muted);
  white-space: nowrap;
}
.hdr-kuki-link { display: inline-flex; line-height: 0; }
.hdr-kuki {
  /* ~1.5cm on a standard phone (96 CSS px/inch) — owner request 2026-07-26 */
  width: 57px;
  height: 57px;
  object-fit: contain;
  flex-shrink: 0;
}
.city-btn {
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 12px;
  cursor: pointer;
  white-space: nowrap;
}
/* Centered city pill on the brand header (owner request 2026-07-26).
   .hdr is sticky (positioned), so absolute centering anchors to it. */
.city-btn-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Top-right search entry (replaces the old SEARCH bottom tab). */
.hdr-search-btn {
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  cursor: pointer;
}
.hdr-search-btn .ln-ico { width: 20px; height: 20px; }

/* Underlined top tabs (Clubs page sections — deliberately not pills). */
.top-tabs {
  display: flex;
  gap: 18px;
  padding: 4px 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
  overflow-x: auto; /* 5 Clubs-page sections on narrow phones */
}
.top-tab { white-space: nowrap; flex-shrink: 0; }
.top-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 8px 2px 10px;
  cursor: pointer;
}
.top-tab.active {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* ── App banner ─────────────────────────────────────────────────────── */
.app-banner {
  margin: 0 16px 10px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-banner-txt { flex: 1; font-size: 12.5px; line-height: 1.35; }
.app-banner-txt strong { font-weight: 900; }
.app-banner-cta {
  background: var(--accent-fill);
  color: var(--on-accent);
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 900;
  padding: 8px 12px;
  text-decoration: none;
  white-space: nowrap;
}

/* ── PWA install banner + sheet ─────────────────────────────────────── */
.install-banner {
  background: var(--surface-alt);
  position: relative;
  padding-right: 34px;
}
.install-banner .app-banner-cta {
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.install-dismiss {
  position: absolute;
  top: 4px;
  right: 6px;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}
.install-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.install-step-num {
  background: var(--accent-fill);
  color: var(--on-accent);
  font-weight: 900;
  font-size: 14px;
  border-radius: 999px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.install-step-title { font-weight: 900; font-size: 14.5px; margin: 2px 0 2px; }
.install-step-sub { color: var(--muted); font-size: 12.5px; margin: 0; line-height: 1.4; }
.install-qr {
  display: block;
  width: 220px;
  height: 220px;
  margin: 12px auto;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

/* ── Chips ──────────────────────────────────────────────────────────── */
.chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 16px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.chip.on {
  background: var(--accent-fill);
  color: var(--on-accent);
  font-weight: 900;
  box-shadow: 2px 2px 0 var(--border);
}
.chip.on::before {
  content: '✓ ';
  font-weight: 900;
}

/* ── Event section tabs (Coming Up / On Now / Regulars) ─────────────── */
.section-tabs {
  display: flex;
  padding: 2px 8px 8px;
}
.section-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  padding: 6px 2px 7px;
  cursor: pointer;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}
.section-tab.active {
  color: var(--text);
  font-weight: 900;
  border-bottom-color: var(--accent);
}

/* ── Cards ──────────────────────────────────────────────────────────── */
.list { padding: 0 16px; display: flex; flex-direction: column; gap: 12px; }

.card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
/* Queer venue halo — a subtle low-saturation rainbow ring replacing the old
   QUEER text chip (owner directive 2026-07-28). Rendered by painting the
   conic gradient into the border box behind the surface fill, so it works
   with the rounded corners and needs zero extra elements. */
.card-queer {
  border-color: transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(
      from 160deg,
      #d98880,
      #e8b87e,
      #e3dc8e,
      #93ce9b,
      #87b7de,
      #b18fd6,
      #d98880
    ) border-box;
}
.card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  background: var(--surface-alt);
}
.card-body { padding: 12px 14px; }
.card-title { font-size: 16.5px; font-weight: 900; margin: 0 0 3px; }
.card-sub { font-size: 12.5px; color: var(--muted); font-weight: 600; margin: 0; }
.card-desc {
  font-size: 13px;
  line-height: 1.4;
  margin: 6px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tag {
  font-size: 11px;
  font-weight: 800;
  background: var(--surface-alt);
  border-radius: 999px;
  padding: 3px 9px;
}
.badge-adult {
  font-size: 10.5px;
  font-weight: 900;
  color: var(--danger);
  border: 1.5px solid var(--danger);
  border-radius: 6px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
}
.badge-queer {
  font-size: 10.5px;
  font-weight: 900;
  background: var(--accent-fill);
  color: var(--on-accent);
  border-radius: 6px;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Detail page ────────────────────────────────────────────────────── */
.hero {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--surface-alt);
}
.detail { padding: 16px; }
.detail h1 { font-size: 24px; font-weight: 900; margin: 0 0 4px; }
.detail .sub { color: var(--muted); font-size: 13.5px; font-weight: 700; margin: 0 0 12px; }
.detail .desc { font-size: 14.5px; line-height: 1.55; white-space: pre-wrap; }
.section-title {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 22px 0 10px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 4px; }
.cta {
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 900;
  padding: 10px 14px;
  text-decoration: none;
  cursor: pointer;
}
.cta.primary { background: var(--accent-fill); color: var(--on-accent); }
.cta.cta-danger { border-color: #B22222; color: #B22222; }

/* Discreet 18+ external-link card (explicit-host links in 18+ club drops) */
.adult-link-card {
  display: block;
  border: 2px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 14px 0 4px;
  text-decoration: none;
  color: var(--text);
}
.adult-link-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.adult-link-card-host {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.65;
}
.adult-link-card-badge {
  font-size: 11px;
  font-weight: 900;
  border: 1.5px solid #B22222;
  color: #B22222;
  border-radius: 8px;
  padding: 1px 7px;
}
.adult-link-card-body { margin-top: 8px; }
.adult-link-card-label { font-size: 14.5px; font-weight: 900; }
.adult-link-card-note {
  margin: 8px 0 0;
  font-size: 11.5px;
  opacity: 0.55;
}

.gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 10px;
}
.gallery img {
  height: 130px;
  border-radius: 12px;
  border: 2px solid var(--border);
  flex-shrink: 0;
  max-width: 240px;
  object-fit: cover;
}

.event-row {
  display: flex;
  gap: 12px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}
.event-date {
  min-width: 48px;
  text-align: center;
  font-weight: 900;
  font-size: 12px;
  line-height: 1.2;
}
.event-date .d { font-size: 19px; display: block; }
.event-date .wd {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-info { flex: 1; min-width: 0; }
.event-info .t { font-weight: 900; font-size: 14.5px; margin: 0; }
.event-info .v { font-size: 12px; color: var(--muted); font-weight: 600; margin: 2px 0 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* App-tile parity (owner directive 2026-08-03): thumbnail left (Ghost
   sticker for web-scraped events), gold date line, heart + boost footer. */
.event-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--surface-2, rgba(255, 255, 255, 0.04));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: flex-start;
  margin-top: 2px;
}
.event-thumb img { width: 100%; height: 100%; object-fit: cover; }
/* Sticker thumbs (Ghost / Kuki) sit bare on the tile — no pill frame
   (owner directive 2026-08-03). */
.event-thumb--bare {
  border: none;
  background: transparent;
}
.event-thumb img.event-thumb-ghost {
  width: 78%;
  height: 78%;
  object-fit: contain;
  /* Ghost is a dark bird on dark tiles — his spectral ice-blue glow
     (--spectre on the landing page) keeps him visible. */
  filter: drop-shadow(0 0 6px rgba(174, 203, 232, 0.65));
}
/* Fire/Guide classification mark above the tile title (owner directive
   2026-08-03) — mirrors the app tile. */
.event-class-mark {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 0 0 1px;
}
.event-when {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  margin: 2px 0 0;
}
.event-tile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
}
.event-tile-foot .react-bar { margin: 0; }
.event-boost.on { color: var(--accent); }
/* App-parity counters (owner directive 2026-08-03): heart · eye · rocket
   with muted line icons on the tile's left, action buttons on the right. */
.tile-counts {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.tile-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tile-count svg { width: 14px; height: 14px; }
.tile-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ── Drops ──────────────────────────────────────────────────────────── */
.drop-meta { display: flex; align-items: baseline; gap: 8px; }
.drop-city { font-size: 11px; font-weight: 800; color: var(--accent); }

/* Drop tile footer (owner directive 2026-08-01): eye + views + posted date
   left, heart right. */
.drop-tile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}
.drop-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.drop-views { display: inline-flex; align-items: center; gap: 4px; }
.drop-views svg { width: 15px; height: 15px; }
.drop-tile-foot .react-bar { margin-top: 0; }

/* Drop tile image (owner directive 2026-08-01): full preview, never cropped —
   natural aspect ratio at full card width, height capped at roughly a phone
   screen. Tall portraits letterbox against the surface tint. */
.card-img-drop {
  height: auto;
  max-height: min(85vh, 720px);
  object-fit: contain;
}
/* YouTube thumbnails ship as 4:3 with baked-in black bars around the 16:9
   frame — crop to the video frame so tiles show no bars. */
.card-img-yt {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.yt-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  margin-top: 10px;
  background: #000;
}
/* Instagram compact embed (no caption panel — media + thin header/footer;
   the embed page scrolls internally inside the fixed frame). */
.ig-embed {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 12px;
  margin-top: 10px;
  background: #000;
}

/* ── Drop comments ──────────────────────────────────────────────────── */
.comments-section { padding: 4px 16px 16px; border-top: 1px solid var(--border); margin-top: 16px; }
.comments-title { font-size: 16px; font-weight: 900; margin: 12px 0 8px; }
.comments-status { margin: 0 0 8px; }
.comment-composer { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 14px; }
.comment-input { flex: 1; resize: vertical; min-height: 42px; max-height: 140px; }
.comment-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  flex: 0 0 auto;
}
.comment-list { display: flex; flex-direction: column; gap: 12px; }
.comment-row { display: flex; align-items: flex-start; gap: 8px; }
.comment-body { flex: 1; min-width: 0; }
.comment-meta { display: flex; align-items: baseline; gap: 8px; margin: 0 0 2px; }
.comment-author { font-size: 13px; font-weight: 800; }
.comment-time { font-size: 11px; color: var(--muted); font-weight: 600; }
.comment-text { font-size: 14px; line-height: 1.45; margin: 0; overflow-wrap: anywhere; }
.comment-menu-btn {
  background: none;
  border: 0;
  color: var(--muted);
  padding: 4px;
  cursor: pointer;
  flex: 0 0 auto;
}
.comment-menu-btn .ln-ico { width: 18px; height: 18px; }
.comment-more { margin-top: 12px; }
.comment-menu-row { flex-wrap: wrap; }

/* ── Chats (direct messages) ────────────────────────────────────────── */
.you-tabs {
  display: flex;
  gap: 8px;
  padding: 12px 16px 4px;
}
.you-tab {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-decoration: none;
}
.you-tab.active {
  color: var(--on-accent);
  background: var(--accent-fill);
  border-color: var(--accent-fill);
}
.chat-row { text-decoration: none; color: inherit; }
.chat-unread {
  flex: 0 0 auto;
  min-width: 22px;
  text-align: center;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--accent-fill);
  color: var(--on-accent);
  font-size: 11px;
  font-weight: 900;
}
/* ── Notifications in the chat flow (2026-08-01) ────────────────────── */
.notif-row .notif-avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 19px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.notif-row .notif-avatar svg { width: 19px; height: 19px; }
.notif-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px 10px 22px;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
}
.notif-card .t { font-weight: 900; font-size: 14px; margin: 0; }
.notif-card .v { font-size: 12.5px; color: var(--muted); font-weight: 600; margin: 3px 0 0; line-height: 1.4; }
.notif-when { font-size: 11px; color: var(--muted); font-weight: 700; }
.notif-dot {
  position: absolute;
  left: 9px;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: var(--accent);
}
.notif-stack-toggle {
  display: block;
  background: none;
  border: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  padding: 0 4px 10px;
  margin-top: -2px;
  cursor: pointer;
}
/* Bottom-tab unread badge (CHAT tab). */
.tab-ico-wrap { position: relative; display: inline-block; }
.tab-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  min-width: 16px;
  padding: 1px 4px;
  border-radius: 999px;
  background: var(--accent-fill);
  color: var(--on-accent);
  font-size: 9.5px;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
}

.chat-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.chat-title { flex: 1; margin: 0; font-size: 16px; font-weight: 900; }
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  overflow-y: auto;
  max-height: 55vh;
}
.chat-bubble-row { display: flex; justify-content: flex-start; }
.chat-bubble-row.mine { justify-content: flex-end; }
.chat-bubble {
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 16px 16px 16px 4px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.chat-bubble.mine {
  border-radius: 16px 16px 4px 16px;
  background: var(--accent-fill);
  border-color: var(--accent-fill);
}
.chat-bubble.mine .chat-bubble-text,
.chat-bubble.mine .chat-bubble-time { color: var(--on-accent); }
.chat-bubble-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.chat-bubble-time {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
}
.chat-composer { padding: 10px 16px 16px; margin-bottom: 0; }
.chat-request-bar { padding: 12px 16px 16px; border-top: 1px solid var(--border); }

/* ── Public profile ─────────────────────────────────────────────────── */
.pp-banner {
  position: relative;
  height: 190px;
  background: linear-gradient(135deg, var(--surface-alt), var(--surface));
  background-size: cover;
  background-position: center;
}
.pp-avatar {
  position: absolute;
  left: 16px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  border: 3px solid var(--accent-fill);
  background: var(--surface) center / cover no-repeat;
}
.pp-photo-btn {
  position: absolute;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.pp-photo-banner { top: 10px; right: 12px; }
.pp-photo-avatar { bottom: -8px; right: -8px; }
.pp-body { padding: 44px 16px 8px; }
.pp-name { font-size: 24px; font-weight: 900; margin: 0 0 8px; }
.pp-chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 10px; }
.pp-chip {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}
.pp-bio { font-size: 14px; line-height: 1.5; margin: 0 0 12px; white-space: pre-wrap; }
.pp-editable { cursor: pointer; }
.pp-stats { display: flex; gap: 10px; margin: 0 0 14px; }
.pp-stat {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}
.pp-stat .n { margin: 0; font-size: 18px; font-weight: 900; }
.pp-stat .l { margin: 2px 0 0; font-size: 10px; font-weight: 800; color: var(--muted); letter-spacing: 0.06em; }
.pp-actions { flex-wrap: wrap; padding: 4px 0 8px; }
.pp-hint { margin-top: 6px; font-size: 11px; color: var(--muted); }

/* ── Search ─────────────────────────────────────────────────────────── */
/* ── Check-OUT with Kuki (vicinity radar hero) ──────────────────────── */
.checkout-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 16px 14px;
}
.checkout-kuki {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
}
.checkout-hero-right { flex: 1; min-width: 0; }
.checkout-caption {
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 8px;
}
/* Outlined gold pill — mirrors the iOS Check-OUT button. */
.checkout-pill {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  padding: 11px 26px;
  cursor: pointer;
  animation: checkout-pulse 2.2s ease-in-out infinite;
}
.checkout-pill.active {
  background: var(--accent-fill);
  color: var(--on-accent);
  animation: none;
}
@keyframes checkout-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .checkout-pill { animation: none; }
}
/* ── iOS-parity search tab (owner directive 2026-07-26) ─────────────── */
/* Rounded pill search bar like the app's, and compact thumbnail result
   rows instead of the big card sections. */
.search-bar { display: flex; gap: 8px; padding: 0 16px 12px; }
.search-bar input {
  flex: 1;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 20px;
  outline: none;
}
.search-bar input::placeholder { color: var(--muted); }
.search-bar button {
  background: var(--accent-fill);
  color: var(--on-accent);
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  padding: 0 20px;
  cursor: pointer;
}
.sr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.sr-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--surface-alt);
  flex-shrink: 0;
}
.sr-thumb-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.sr-body { flex: 1; min-width: 0; }
.sr-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sr-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin: 2px 0 0;
}
.sr-meta {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── City picker sheet ──────────────────────────────────────────────── */
.sheet-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 40;
}
.sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 22px 22px 0 0;
  border: 2px solid var(--border);
  border-bottom: 0;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 41;
  padding: 14px 16px calc(20px + env(safe-area-inset-bottom, 0px));
}
.sheet h2 { font-size: 17px; font-weight: 900; margin: 2px 0 12px; }

/* ── Settings sheet + Places filter sheet (2026-07-28) ─────────────── */
.settings-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 16px;
}
.settings-row-main { flex: 1; min-width: 0; }
.settings-row-title { font-size: 14.5px; font-weight: 800; margin: 0 0 3px; }
.settings-row-sub { color: var(--muted); font-size: 12px; line-height: 1.4; margin: 0; }
/* Category-group icon bar (Places — iOS CategoryGroupBar twin). */
.cat-group-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 16px 6px;
}
.cat-group-btn {
  background: none;
  border: 0;
  color: var(--muted);
  padding: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cat-group-btn .ln-ico { width: 26px; height: 26px; }
.cat-group-btn.on { color: var(--text); }
.sheet-city {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 14px;
  margin-bottom: 8px;
  cursor: pointer;
}
.sheet-city .c { color: var(--muted); font-size: 12px; font-weight: 600; }

/* Mood picker options — Kuki sticker + mood label (mood check-in). */
.mood-opt {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mood-opt img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}
.mood-opt.on { border-color: var(--text); }

/* ── Bottom tab bar ─────────────────────────────────────────────────── */
.tabs {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  border-top: 2px solid var(--border);
  display: flex;
  z-index: 30;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.tab {
  flex: 1;
  background: none;
  border: 0;
  color: var(--tab-inactive, var(--muted));
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 9px 0 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}
.tab .ico-svg { width: 23px; height: 23px; display: block; }
.tab.on { color: var(--accent); }

/* ── States ─────────────────────────────────────────────────────────── */
.state {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 42px 24px;
}
.spinner {
  width: 26px; height: 26px;
  margin: 0 auto 12px;
  border: 3px solid var(--surface-alt);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.load-more {
  display: block;
  margin: 14px auto 6px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-weight: 900;
  font-size: 13.5px;
  padding: 10px 20px;
  cursor: pointer;
}

.footer-note {
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  padding: 22px 24px 8px;
  line-height: 1.5;
}
.footer-note a { color: var(--accent); font-weight: 800; }
.footer-meet-kuki { margin-top: 8px; font-size: 12px; }
.footer-legal { margin-top: 10px; font-size: 11px; opacity: 0.75; line-height: 1.5; }
.footer-legal a { font-weight: 700; }

/* ── Thumbs up/down (anonymous reactions) ───────────────────────────── */
.react-bar {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
/* Bare icons — no pill chrome (owner request 2026-07-26). Active vote is
   signalled by the accent color + a slightly heavier stroke via .on/.on-down
   below. */
.react-btn {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 10px 6px 0;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.react-btn.on { color: var(--accent); }
.react-btn.on-down { color: var(--text); }
.react-count { font-size: 13px; font-weight: 900; }

/* ── Line icons (UI glyphs — no emoji icons, see line-icons rule) ───── */
.ln-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  vertical-align: -3px;
}
.cta, .city-btn, .city-btn-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.react-btn .ln-ico { width: 22px; height: 22px; }
.react-btn.on .ln-ico path, .react-btn.on-down .ln-ico path { stroke-width: 2.4; }

/* ── Follow heart ────────────────────────────────────────────────────── */
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.heart-btn {
  border: none;
  background: none;
  color: var(--muted);
  padding: 6px 0 6px 10px;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.heart-btn .ln-ico { width: 22px; height: 22px; }
.heart-btn.on { color: var(--danger); }
.detail-title-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.detail-title-row h1 { flex: 1; min-width: 0; }
.detail-title-row .heart-btn .ln-ico { width: 26px; height: 26px; }

/* ── Forms (login sheet + drop composer + profile edit) ─────────────── */
.form-input {
  display: block;
  width: 100%;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  padding: 11px 14px;
  outline: none;
  margin: 6px 0 4px;
}
.form-input:focus { border-color: var(--accent); }
.form-input-code {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 6px;
  text-align: center;
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-label {
  font-size: 12.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  margin: 16px 0 2px;
}
.form-error {
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
  margin: 6px 0 0;
  min-height: 16px;
}
.form-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  margin: 14px 0 2px;
  cursor: pointer;
}
.form-toggle input { width: 18px; height: 18px; accent-color: var(--accent); }
.chip-row-wrap { flex-wrap: wrap; overflow-x: visible; padding-left: 0; padding-right: 0; }
.compose-row { padding: 0 16px 12px; }
/* Floating action button — mirrors the iOS app's round gold "+" composer. */
.fab {
  position: fixed;
  right: 18px;
  bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: var(--accent-fill);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.fab-ico { width: 26px; height: 26px; }
/* Keep the FAB inside the app column on wide screens (max-width 480px). */
@media (min-width: 512px) {
  .fab { right: calc(50vw - 240px + 18px); }
}
.compose-form { padding-top: 4px; }
.cta-small { font-size: 12px; padding: 7px 12px; }
.inline-form { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.inline-form .form-input { flex: 1; min-width: 180px; width: auto; margin: 0; }

/* Report sheet reason rows */
.report-reasons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 52vh;
  overflow-y: auto;
  margin: 4px 0 2px;
}
.report-reason {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 14px;
  cursor: pointer;
}
.report-reason[disabled] { opacity: 0.6; cursor: default; }
.report-cta { color: var(--muted); border-color: var(--border); }

/* Danger CTA (delete confirmations) */
.cta.danger {
  border-color: var(--danger);
  color: var(--danger);
}

/* Composer city selector */
.city-select { display: inline-flex; align-items: center; margin: 6px 0 4px; }

/* Deletable You-tab drop rows */
.you-row-drop { display: flex; align-items: flex-start; gap: 10px; }
.you-row-main { flex: 1; min-width: 0; }
.row-delete {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  width: 28px;
  height: 26px;
  flex-shrink: 0;
  line-height: 1;
  cursor: pointer;
}
.row-delete:active { color: var(--danger); border-color: var(--danger); }

/* Article block editor (drop composer) */
.block-editor { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.block-row {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px 12px;
}
.block-row .form-input { margin-bottom: 0; }
.block-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.block-kind {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
}
.block-tools { display: flex; gap: 6px; }
.block-tool {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  width: 28px;
  height: 26px;
  line-height: 1;
  cursor: pointer;
}
.block-tool:active { color: var(--text); }
.block-img-preview {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 4px 0 6px;
}
.block-add-row { margin-top: 10px; }

/* Article block rendering (drop detail) */
.block-heading {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin: 18px 0 6px;
}
.block-quote {
  border-left: 4px solid var(--accent);
  padding: 4px 0 4px 14px;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  margin: 14px 0;
}
.block-figure { margin: 14px 0; }
.block-figure img {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.block-caption {
  font-size: 12.5px;
  color: var(--muted);
  margin: 6px 2px 0;
}
.music-embed {
  width: 100%;
  border: 0;
  border-radius: 14px;
  margin: 12px 0;
  display: block;
}

/* Venue/event tag picker in the composer */
.ref-picker { margin-bottom: 4px; }
.ref-results { display: flex; flex-direction: column; gap: 6px; }
.ref-result {
  text-align: left;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  cursor: pointer;
}
.ref-result .c { color: var(--muted); font-size: 12px; font-weight: 600; }
.ref-cta-row { margin-top: 10px; }

/* Compact venue/event reference links inside a drop (2026-08-01 — replaces
   the bulky pill chips). Plain text rows with a small line icon. */
/* Follow chip (2026-08-01): replaced the follow-heart — hearts mean LIKE. */
.follow-chip {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 4px 12px;
  cursor: pointer;
  font-family: inherit;
}
.follow-chip.on {
  background: var(--accent);
  color: var(--bg, #0d0b08);
}
.drop-byline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.drop-byline-row .drop-byline { margin: 0; }

/* Instagram-style drop action bar (2026-08-01): line icons + counters. */
.drop-action-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 2px 6px;
  margin-top: 6px;
  border-top: 1px solid color-mix(in srgb, var(--muted) 25%, transparent);
}
.drop-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px 0;
  color: var(--text);
  cursor: pointer;
  font: inherit;
}
.drop-action svg { width: 24px; height: 24px; }
.drop-action-count { font-size: 13px; font-weight: 600; color: var(--text); min-width: 0; }
.drop-action.on { color: var(--accent); }
.drop-action-like.on svg path { fill: currentColor; }
.drop-action-views { margin-left: auto; font-size: 12.5px; color: var(--muted); }
.drop-byline.tappable { cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.drop-quiet-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.drop-quiet-link {
  background: none;
  border: none;
  padding: 2px 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-family: inherit;
}
.drop-quiet-link.danger { color: var(--danger); }
.ref-links { display: flex; flex-direction: column; gap: 2px; margin: 8px 0 4px; }
.ref-link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 3px 0; font-size: 13.5px; font-weight: 600;
  color: var(--text); text-decoration: none;
}
.ref-link svg { width: 15px; height: 15px; opacity: 0.65; flex: none; }
.ref-link:hover { text-decoration: underline; }
/* Check-in as a quiet action in the same row (button reset + states). */
.ref-link-btn { background: none; border: none; font-family: inherit; cursor: pointer; }
.ref-link-btn:disabled { opacity: 0.5; cursor: default; }
.ref-link-btn.checked-in { color: var(--accent); font-weight: 800; }
.ref-link-btn.checked-in svg { opacity: 1; }

/* Share-drop sheet: send-to-chat rows. */
.share-chats-title { margin: 14px 0 6px; font-weight: 700; }
.share-chat-list { display: flex; flex-direction: column; gap: 6px; max-height: 40vh; overflow-y: auto; }
.share-chat-row {
  display: flex; align-items: center; text-align: left;
  padding: 9px 10px; border: 1px solid var(--border);
  border-radius: 10px; background: none; color: var(--text);
  font-size: 13.5px; font-weight: 600; cursor: pointer;
}
.share-chat-row:hover { border-color: var(--text); }
.share-chat-row[disabled] { opacity: 0.6; cursor: default; }
.share-chat-name { display: inline-flex; align-items: center; gap: 7px; }
.share-chat-name svg { width: 15px; height: 15px; opacity: 0.65; }

/* ── You tab ────────────────────────────────────────────────────────── */
.you-row {
  display: block;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
}
.you-row .t { font-weight: 900; font-size: 14.5px; margin: 0; }
.you-row.with-action { display: flex; align-items: center; gap: 10px; }
.you-row.with-action .you-row-main { flex: 1; min-width: 0; }
.you-row.with-action .cta-small { flex-shrink: 0; white-space: nowrap; }
.you-row .v { font-size: 12px; color: var(--muted); font-weight: 600; margin: 2px 0 0; }
.you-pronouns { font-size: 12px; color: var(--muted); font-weight: 600; }

/* ── Clubs (web, 2026-07-26) ────────────────────────────────────────── */
/* Headerless club page (2026-07-28): keep content out of the notch. */
.club-page-host { padding-top: calc(env(safe-area-inset-top, 0px) + 10px); }

.clubs-entry {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 16px;
  padding: 12px 14px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
}
.clubs-entry .ln-ico { width: 18px; height: 18px; flex-shrink: 0; }
.clubs-entry-arrow { margin-left: auto; color: var(--muted); font-size: 18px; font-weight: 900; }
.club-intro { margin: 4px 0 12px; }
.club-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
}
.club-card-body { flex: 1; min-width: 0; }
.club-card-meta { margin-top: 2px; }
.club-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 2.5px solid currentColor;
  font-weight: 900;
  font-size: 19px;
  flex-shrink: 0;
}
.club-avatar-lg { width: 56px; height: 56px; border-radius: 28px; font-size: 24px; }
.club-member-chip {
  margin-left: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.6px;
  padding: 2px 7px;
  border-radius: 8px;
  background: var(--accent-fill);
  color: var(--on-accent);
  vertical-align: middle;
}
.club-adult-chip {
  margin-left: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.6px;
  padding: 2px 7px;
  border-radius: 8px;
  border: 1.5px solid #e0245e;
  color: #e0245e;
  vertical-align: middle;
}
/* EUDI 18+ age verification sheet */
.age-verify-sheet { text-align: center; }
.age-verify-sheet .desc { text-align: left; }
.age-verify-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}
.age-verify-body .cta { width: 100%; }
.age-verify-or { margin: 2px 0; }
.age-verify-qr {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: #fff;
}
/* Anonymous handle row on the 18+ club join step */
.club-handle-row { display: flex; gap: 8px; margin: 8px 0 12px; }
.club-handle-row .form-input { flex: 1; margin: 0; }
.club-handle-row .cta-small { flex-shrink: 0; }
.club-onb-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.club-onb-head h1 { margin: 0; }
.onb-dots { display: flex; gap: 6px; margin: 8px 0 14px; }
.onb-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
}
.onb-dot.on { width: 20px; }
.club-onb-title { margin: 0 0 8px; font-size: 18px; }
.club-onb-bullet {
  border-left: 3px solid var(--border);
  padding-left: 10px;
}
.club-onb-desc { font-style: italic; }
.club-consent { align-items: flex-start; margin-top: 12px; }
.club-room-head { padding-bottom: 4px; }
.club-subtabs { margin: 4px 8px 10px; }
.club-subtabs .section-tab { font-size: 14px; letter-spacing: 0.5px; }
/* Settings gear on the club room header */
.club-gear {
  margin-left: auto;
  align-self: flex-start;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}
.club-gear .ln-ico { width: 20px; height: 20px; }
/* Club room head action row — city / search / settings / home
   (owner directive 2026-07-28, mirrors the iOS club screen). */
.club-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 4px;
}
.club-city-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
  max-width: 55%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.club-city-clear { opacity: 0.6; font-size: 12px; }
.club-icon-btn {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  flex: none;
  text-decoration: none;
}
.club-icon-btn .ln-ico { width: 20px; height: 20px; }
.club-search-wrap { margin: 8px 0 0; }
.club-room-meta { margin: 10px 0 0; }
/* "+" add-to-club picker sheet */
.club-add-sheet { max-height: 78vh; display: flex; flex-direction: column; }
.club-add-input { margin: 10px 0; }
.club-add-list {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 12px;
}
.club-add-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
}
.club-add-row .you-row-main { flex: 1; min-width: 0; }
.club-add-row .cta-small { flex-shrink: 0; }
.ln-ico-sm { width: 14px; height: 14px; }
.club-tab-body { position: relative; }
/* Club bottom tab bar (2026-07-28) reuses .tabs/.tab; note styling only. */
.club-chat-note { margin: 2px 4px 8px; line-height: 1.45; }
.member-chat-btn { display: inline-flex; align-items: center; padding: 7px 10px; }
.club-share-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 3px 9px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  margin: 6px 0 2px;
}
.club-share-chip.shared { border-color: var(--accent); color: var(--accent); }
.member-row { display: flex; align-items: center; gap: 10px; }
.member-row .you-row-main { flex: 1; min-width: 0; }
.member-avatar { width: 38px; height: 38px; border-radius: 19px; object-fit: cover; flex-shrink: 0; }
.member-avatar-fallback { width: 38px; height: 38px; border-radius: 19px; font-size: 16px; }
.club-event-row .react-bar { margin-top: 4px; }
.drop-club-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 8px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  margin: 2px 0 4px;
}
.club-link-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--accent);
}
.club-link-note .chip { margin-left: auto; }

/* ── Anonymous 18+ club profiles (owner directive 2026-07-26) ─────────── */
.member-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.member-tile {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  color: var(--text);
  font: inherit;
}
.member-tile-avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.member-tile-img { width: 100%; height: 100%; object-fit: cover; }
.member-tile-fallback { width: 64px; height: 64px; font-size: 24px; }
.member-tile-distance {
  position: absolute;
  left: 6px;
  bottom: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.member-tile-info { padding: 8px 10px 10px; min-width: 0; }
.member-tile-handle {
  margin: 0;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.member-you-chip,
.member-position-chip {
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.member-position-chip { color: var(--accent, #d4af37); border-color: currentColor; }
.member-tile-meta {
  margin: 3px 0 0;
  font-size: 11.5px;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.member-tile-self-hint { color: var(--accent, #d4af37); }
.member-tag-row { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.member-tag-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--muted);
}
.club-profile-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.club-profile-bar .card-sub { margin: 0; }
.club-profile-sheet { max-height: 84vh; overflow-y: auto; }
.club-profile-hero {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}
.club-profile-line { margin: 4px 0; font-size: 13.5px; }
/* 18+ club profile photo library (migration 106). */
.club-photo-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 8px 0 10px;
  -webkit-overflow-scrolling: touch;
}
.club-photo-strip .club-photo-thumb {
  width: 132px;
  height: 132px;
  flex: none;
}
.club-photo-thumb {
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.club-photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}
.club-photo-cell {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  flex: none;
}
.club-photo-cell .club-photo-thumb {
  width: 100%;
  height: 100%;
}
.club-photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.club-photo-add {
  border: 1px dashed var(--outline, rgba(255, 255, 255, 0.25));
  background: transparent;
  color: var(--muted);
  font-size: 26px;
  cursor: pointer;
}
.club-profile-bio { margin: 10px 0; white-space: pre-wrap; }
.club-profile-avatar-edit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}
.club-profile-avatar-edit .member-tile-avatar {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  flex: none;
}
.club-form-label {
  margin: 14px 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.club-form-input {
  width: 100%;
  box-sizing: border-box;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  padding: 9px 11px;
}
.club-form-bio { min-height: 84px; resize: vertical; }
.club-form-3col { display: flex; gap: 8px; }
.club-form-3col .club-form-input { flex: 1; min-width: 0; }
.club-pill-row { display: flex; flex-wrap: wrap; gap: 6px; }
.club-pill {
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  cursor: pointer;
}
.club-pill.on {
  border-color: var(--accent, #d4af37);
  color: var(--text);
  background: color-mix(in srgb, var(--accent, #d4af37) 14%, var(--bg));
}
.club-share-toggle-row { margin: 14px 0 4px; }
.club-share-toggle-row .card-sub { margin-top: 6px; }
.age-verify-selfie { margin-top: 14px; border-top: 2px solid var(--border); padding-top: 12px; }
.age-verify-selfie .cta { width: 100%; }

/* ── photo lightbox (full-screen viewer) ─────────────────────────── */
.lightboxable { cursor: zoom-in; }
.lightbox-scrim {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 96vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-close .ln-ico { width: 20px; height: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
}

/* ── Desktop shell (Slice 1, 2026-07-31) ─────────────────────────────────
   ≥1100px: #app becomes a sidebar + up-to-two-pane grid. Phone rules above
   are untouched — everything here is scoped to body.desktop, which the
   router adds only when the wide-viewport media query matches. */
@media (min-width: 1100px) {
  body.desktop #app {
    max-width: 1480px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) minmax(0, 1fr);
    height: 100dvh;
    overflow: hidden;
    padding-bottom: 0;
    border-left: 2px solid var(--border);
    border-right: 2px solid var(--border);
  }
  /* Single-pane routes (details, chat, composer …): sidebar + one wide,
     readable column. */
  body.desktop #app.shell-single {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  body.desktop #app.shell-single .pane-primary {
    width: 100%;
    max-width: 820px;
    justify-self: center;
    border-right: 0;
  }

  /* Sidebar: the phone tab bar restyled as a vertical rail. */
  body.desktop .side-nav {
    border-right: 2px solid var(--border);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow-y: auto;
  }
  .side-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2px 6px;
  }
  .side-brand-img { width: 44px; height: 44px; object-fit: contain; }
  .side-brand-title { font-size: 20px; font-weight: 900; letter-spacing: 0.5px; }
  .side-brand-sub {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: var(--muted);
  }
  body.desktop .side-nav .tabs {
    position: static;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border-top: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  body.desktop .side-nav .tab {
    flex: 0 0 auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    padding: 12px 14px;
    border-radius: 12px;
  }
  body.desktop .side-nav .tab.on { background: var(--surface); }

  /* "Get to know OUT" — landing-page link styled like a nav tab. */
  body.desktop .side-know {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: var(--muted);
    text-decoration: none;
  }
  body.desktop .side-know:hover { color: var(--text); background: var(--surface); }
  body.desktop .side-know .ln-ico { width: 20px; height: 20px; }

  /* Bottom-left account entry (Sign in / My profile). */
  body.desktop .side-spacer { flex: 1; }
  body.desktop .side-account-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    cursor: pointer;
    text-decoration: none;
  }
  body.desktop .side-account-btn .ln-ico { width: 20px; height: 20px; }
  body.desktop .side-account-btn:hover { border-color: var(--text); }

  /* Panes are the scroll containers; sticky headers stick inside them. */
  body.desktop .pane {
    overflow-y: auto;
    overscroll-behavior-y: contain;
    height: 100%;
    position: relative;
    border-right: 2px solid var(--border);
    padding-bottom: 28px;
  }
  body.desktop .pane:last-child { border-right: 0; }
  /* Painters still append their phone tab bar — the sidebar replaces it. */
  body.desktop .pane .tabs { display: none; }
  /* …except the club room's inline sub-tab switcher (Drops/Chat/Venues/
     Events), which becomes a horizontal row between head and content. */
  body.desktop .pane .tabs.club-tabs-inline {
    display: flex;
    position: static;
    max-width: none;
    margin: 0 0 10px;
    padding: 0 16px;
    background: transparent;
    border-top: 0;
    border-bottom: 2px solid var(--border);
  }

  /* Card feeds become responsive grids inside each pane. */
  body.desktop .list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
    align-items: start;
  }
  body.desktop .list > .state,
  body.desktop .list > .load-more,
  body.desktop .list > .footer-note { grid-column: 1 / -1; }

  /* Bottom sheets become centered dialogs. */
  body.desktop .sheet {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(560px, 92vw);
    max-width: 560px;
    max-height: 80vh;
    border-radius: 22px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
  }

  /* Viewport-anchored controls sit at the window edge, not the phone column. */
  body.desktop .fab { right: 28px; bottom: 28px; }
}

/* Desktop polish: the "made for mobile" install banner contradicts the
   desktop experience, and the context pane repeats the brand header's
   controls (city, settings, search) — one set is enough. */
@media (min-width: 1100px) {
  body.desktop .install-banner { display: none; }
  body.desktop .pane-context .hdr { display: none; }
  body.desktop .pane-context { padding-top: 10px; }
}

/* Owner-only venue club management on the venue page (2026-07-31). */
.venue-club-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  margin: 0 0 8px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
}
.venue-club-row:hover { border-color: var(--accent); }
.venue-club-name { font-weight: 800; font-size: 14px; }
.venue-club-note { font-size: 12px; color: var(--muted); }
.venue-club-add { margin-top: 2px; }
.venue-club-unscreen {
  margin: -2px 0 10px;
  font-size: 12px;
  color: var(--danger);
  border-color: var(--danger);
}
.venue-club-choice { margin-top: 8px; }
.venue-club-opt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  text-align: left;
  margin: 0 0 8px;
}
.venue-club-opt span { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ── Fire Club polaroid wall (owner directive 2026-08-04) ──────────────── */
.polaroid-snapbar {
  display: flex;
  gap: 10px;
  margin: 4px 0 14px;
}
.polaroid-snap {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}
.polaroid-snap .ln-ico { width: 18px; height: 18px; }
/* Snap card (owner directive 2026-08-18, replaces the white polaroid frame):
   the photo IS the card, story overlaid on a bottom gradient scrim. */
.polaroid-card {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  margin: 0 auto 22px;
  max-width: 420px;
  text-decoration: none;
}
/* Queer venue → rainbow halo ring + warm glow (owner directive 2026-08-05).
   Same subtle rainbow as the venue-tile halo, painted as a gradient border. */
.polaroid-card.polaroid-queer {
  border: 3px solid transparent;
  background:
    linear-gradient(#111, #111) padding-box,
    linear-gradient(135deg, #d98880, #e8b87e, #e3dc8e, #93ce9b, #87b7de, #b18fd6, #d98880) border-box;
  box-shadow:
    0 0 22px rgba(255, 122, 184, 0.4),
    0 0 10px rgba(135, 183, 222, 0.3),
    0 6px 18px rgba(0, 0, 0, 0.28);
}
.polaroid-img {
  /* Original format, no crop (owner directive 2026-08-19) — the full
     image shows at its native aspect ratio. */
  display: block;
  width: 100%;
  height: auto;
  background: #222;
}
.polaroid-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.82));
}
.polaroid-caption,
.polaroid-who,
.polaroid-where,
.polaroid-when,
.polaroid-city {
  margin: 0;
  color: #fff;
  line-height: 1.35;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.polaroid-caption {
  /* Marker-pen scrawl kept for the personal story line only. */
  font-family: 'Marker Felt', 'Chalkboard SE', 'Segoe Print', 'Comic Sans MS', cursive;
  font-size: 18px;
  margin-bottom: 4px;
}
.polaroid-who { font-size: 14px; font-weight: 700; }
.polaroid-venue-link { text-decoration: underline; cursor: pointer; }
.polaroid-where { font-size: 12.5px; opacity: 0.85; }
.polaroid-when { font-size: 12.5px; opacity: 0.8; margin-top: 2px; }
.polaroid-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.polaroid-city { font-size: 12.5px; opacity: 0.8; white-space: nowrap; padding-bottom: 6px; }
.polaroid-caption-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line, rgba(128, 128, 128, 0.3));
  background: var(--card, rgba(255, 255, 255, 0.04));
  color: var(--text, #eee);
  font-size: 14px;
}
.polaroid-react-bar {
  display: flex;
  gap: 8px;
  padding-top: 8px;
}
.polaroid-react {
  /* Colored pop chips — each button's tint arrives as --rt from JS
     (mirrors src/constants/dropReactions.ts). */
  border: 1.5px solid var(--rt, rgba(255, 255, 255, 0.4));
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 15px;
  font-weight: 700;
  color: var(--rt, #fff);
  cursor: pointer;
  box-shadow: 0 2px 5px color-mix(in srgb, var(--rt, #000) 35%, transparent);
  transition: transform 0.1s ease, background 0.15s ease;
}
.polaroid-react:active { transform: scale(1.15); }
.polaroid-react.on {
  background: var(--rt, rgba(255, 122, 0, 0.55));
  color: #fff;
}
.card-body .polaroid-react-bar { padding-top: 6px; }
.card-body .polaroid-react {
  border-color: var(--line, rgba(128, 128, 128, 0.3));
  background: transparent;
  color: var(--text);
}

/* Re-share a historical drop to the public feed (You page) */
.you-drop-share {
  flex-shrink: 0;
  margin-right: 6px;
  white-space: nowrap;
}

/* Public Fire Club check-in cards (venue + event pages) */
.fire-club-card { cursor: pointer; }
.fire-club-card .ln-ico-sm { vertical-align: -2px; margin-right: 2px; }
.fire-club-sub { margin: -4px 0 10px; }

/* One-tap Fire Club check-in chip on venue tiles */
.fire-checkin-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
  padding: 9px 12px;
  border: 1.5px solid #D4AF37;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.10);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.fire-checkin-chip:active { transform: scale(0.98); }
.fire-checkin-chip[disabled] { opacity: 0.6; cursor: default; }
