/*
  Curateo Dashboard Shell
  Light card layout with dark sidebar — electric green + hot pink accents
*/

:root {
  --dash-page-bg: #e8e4f4;
  --dash-shell: #ffffff;
  --dash-sidebar: #14161a;
  --dash-sidebar-text: rgba(255, 255, 255, 0.72);
  --dash-ink: #111318;
  --dash-muted: #6b7280;
  --dash-line: #eceef3;
  --dash-card: #ffffff;
  --dash-electric: #CCFF00;
  --dash-hot-pink: #FF2E93;
  --dash-lavender: #e8deff;
  --dash-mint: #d4f5e4;
  --dash-peach: #ffe4d6;
  --dash-sky: #dceeff;
  --dash-radius-lg: 22px;
  --dash-radius-md: 16px;
  --dash-shadow: 0 8px 30px rgba(17, 19, 24, 0.06);
}

body.dashboard-body.dash-nav-open {
  overflow: hidden;
}

body.dashboard-body {
  font-family: 'Inter', sans-serif;
  background: var(--dash-page-bg);
  color: var(--dash-ink);
  min-height: 100vh;
  margin: 0;
  padding: 16px;
  -webkit-font-smoothing: antialiased;
}

body.dashboard-body .navbar,
body.dashboard-body .navbar-overlay,
body.dashboard-body .navbar-menu {
  display: none !important;
}

.app-shell {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--dash-shell);
  border-radius: 32px;
  box-shadow: var(--dash-shadow);
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 32px);
  overflow: hidden;
}

/* ── Sidebar ── */
.sidebar {
  background: var(--dash-sidebar);
  color: white;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  border-radius: 32px 0 0 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0 8px;
  text-decoration: none;
  color: white;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dash-electric), var(--dash-hot-pink));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--dash-ink);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand span {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.dash-nav {
  list-style: none;
  flex: 1;
  overflow-y: auto;
}

.dash-nav li { margin-bottom: 4px; }

.dash-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--dash-sidebar-text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
  width: 100%;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.dash-nav a:hover,
.dash-nav button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.dash-nav a.active,
.dash-nav button.active {
  background: var(--dash-electric);
  color: var(--dash-ink);
  font-weight: 600;
}

.dash-nav button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--dash-sidebar-text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
  width: 100%;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.dash-nav .nav-icon {
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.9;
  flex-shrink: 0;
}

.badge-count {
  margin-left: auto;
  background: var(--dash-hot-pink);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}

.sidebar-cta {
  margin-top: auto;
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.95), #b8e600);
  border-radius: var(--dash-radius-md);
  padding: 16px;
  color: var(--dash-ink);
}

.sidebar-cta strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.sidebar-cta p {
  font-size: 0.75rem;
  opacity: 0.75;
  line-height: 1.4;
  margin-bottom: 10px;
}

.sidebar-cta a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dash-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--dash-sidebar);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* ── Main area ── */
.dash-main {
  padding: 28px 28px 32px;
  background: #f7f8fb;
  border-radius: 0 32px 32px 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.dash-topbar h1 {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
  color: var(--dash-ink);
}

.dash-topbar h1 span { font-weight: 400; }

.dash-topbar.hidden { display: none; }

.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--dash-line);
  border-radius: 999px;
  padding: 8px 16px;
  min-width: 220px;
  font-size: 0.85rem;
  margin: 0;
}

.dash-search-wrap {
  position: relative;
}

.dash-search-icon {
  color: var(--dash-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
  pointer-events: none;
}

.dash-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--dash-ink);
  width: 100%;
  min-width: 0;
}

.dash-search input::placeholder {
  color: var(--dash-muted);
}

.dash-search-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(360px, calc(100vw - 48px));
  max-height: 380px;
  overflow-y: auto;
  background: white;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  box-shadow: 0 16px 40px rgba(17, 19, 24, 0.12);
  z-index: 300;
  padding: 8px;
}

.dash-search-panel.hidden {
  display: none;
}

.dash-search-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dash-muted);
  padding: 8px 10px 4px;
}

.dash-search-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.dash-search-result:hover,
.dash-search-result:focus,
.dash-search-result.active {
  background: #f3f0ff;
  outline: none;
}

.dash-search-result .icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--dash-lavender);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.dash-search-result strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.25;
}

.dash-search-result span {
  display: block;
  font-size: 0.74rem;
  color: var(--dash-muted);
  margin-top: 2px;
}

.dash-search-empty {
  padding: 16px 12px;
  font-size: 0.85rem;
  color: var(--dash-muted);
  text-align: center;
  line-height: 1.45;
}

.dash-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dash-lavender), var(--dash-peach));
  border: 2px solid white;
  box-shadow: var(--dash-shadow);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dash-ink);
}

/* ── Dashboard grid ── */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.dash-card {
  background: var(--dash-card);
  border-radius: var(--dash-radius-lg);
  padding: 20px;
  box-shadow: var(--dash-shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.dash-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dash-card-head h2 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
  color: var(--dash-ink);
}

.dash-card-head a {
  font-size: 0.78rem;
  color: var(--dash-muted);
  text-decoration: none;
  font-weight: 500;
}

.dash-card-head a:hover { color: var(--dash-hot-pink); }

.dash-edits { grid-column: 1 / -1; }

.edit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.edit-card {
  border-radius: var(--dash-radius-md);
  padding: 16px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.15s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.edit-card:hover { transform: translateY(-2px); }

.edit-card:nth-child(1) { background: var(--dash-lavender); }
.edit-card:nth-child(2) { background: var(--dash-mint); }
.edit-card:nth-child(3) { background: var(--dash-peach); }

.edit-card .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.edit-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 12px 0 4px;
  line-height: 1.25;
  font-family: 'Inter', sans-serif;
}

.edit-card p {
  font-size: 0.75rem;
  color: var(--dash-muted);
}

.edit-card .meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dash-ink);
  margin-top: 8px;
}

.dash-activity { grid-column: 1; }

.chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  padding-top: 8px;
}

.bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%;
  max-width: 36px;
  border-radius: 10px 10px 4px 4px;
  background: #e5e7eb;
  position: relative;
}

.bar.highlight { background: var(--dash-electric); }

.bar-tooltip {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dash-ink);
  color: white;
  font-size: 0.65rem;
  padding: 6px 8px;
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 600;
}

.bar-label {
  font-size: 0.7rem;
  color: var(--dash-muted);
  font-weight: 500;
}

.dash-schedule { grid-column: 2; }

.schedule-list { list-style: none; }

.schedule-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--dash-line);
}

.schedule-list li:last-child { border-bottom: none; }

.schedule-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.schedule-list li:nth-child(1) .schedule-icon { background: var(--dash-lavender); }
.schedule-list li:nth-child(2) .schedule-icon { background: var(--dash-mint); }
.schedule-list li:nth-child(3) .schedule-icon { background: var(--dash-peach); }
.schedule-list li:nth-child(4) .schedule-icon { background: var(--dash-sky); }

.schedule-list strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.schedule-list span {
  font-size: 0.74rem;
  color: var(--dash-muted);
}

.chev { margin-left: auto; color: #c4c9d4; font-size: 0.9rem; }

.dash-community {
  grid-column: 1 / -1;
  background: var(--dash-sidebar);
  color: white;
  position: relative;
  overflow: hidden;
}

.dash-community::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--dash-hot-pink);
  opacity: 0.35;
}

.dash-community h2 {
  color: white;
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.dash-community p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin-bottom: 16px;
  max-width: 90%;
}

/* Saved + loading states */
.dash-saved { grid-column: 1; }

.dash-saved-list {
  list-style: none;
}

.dash-saved-list li {
  border-bottom: 1px solid var(--dash-line);
}

.dash-saved-list li:last-child { border-bottom: none; }

.dash-saved-list a,
.schedule-list .schedule-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
}

.dash-saved-list a:hover,
.schedule-list .schedule-link:hover strong {
  color: var(--dash-hot-pink);
}

.dash-saved-list .save-emoji {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--dash-lavender);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.dash-saved-list strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
}

.dash-saved-list small {
  font-size: 0.74rem;
  color: var(--dash-muted);
}

.dash-loading,
.dash-loading-item,
.dash-empty-inline {
  font-size: 0.85rem;
  color: var(--dash-muted);
  text-align: center;
  padding: 12px;
}

.schedule-list .dash-empty {
  padding: 16px 0;
  color: var(--dash-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.schedule-list .dash-empty strong {
  display: block;
  color: var(--dash-ink);
  margin-bottom: 4px;
}

.schedule-list .dash-empty span {
  font-size: 0.82rem;
}

@media (min-width: 1100px) {
  .dash-saved { grid-column: 1; }
}

.btn-lime {
  display: inline-block;
  background: var(--dash-electric);
  color: var(--dash-ink);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.dash-curate-banner {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #fff 0%, #f3f0ff 50%, #fff5f9 100%);
  border: 1px solid var(--dash-line);
  flex-wrap: wrap;
}

.dash-curate-banner h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.dash-curate-banner p {
  font-size: 0.85rem;
  color: var(--dash-muted);
}

.curate-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-dash-dark {
  background: var(--dash-ink);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-dash-pink {
  background: var(--dash-hot-pink);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* ── Quiz flow inside dashboard ── */
#quiz-flow {
  flex: 1;
}

#quiz-flow .container {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  text-align: center;
  background: white;
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
  border: 1px solid var(--dash-line);
}

#quiz-flow h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dash-ink);
}

#quiz-flow .step-indicator {
  background: var(--dash-electric);
  border-radius: 999px;
  letter-spacing: 0.08em;
}

#quiz-flow .option-card {
  border-radius: var(--dash-radius-md);
  border-color: var(--dash-line);
  background: #f7f8fb;
}

#quiz-flow .option-card:hover {
  background: var(--dash-ink);
  border-color: var(--dash-ink);
  box-shadow: 4px 4px 0 var(--dash-electric);
}

#quiz-flow .btn-primary {
  background: var(--dash-ink);
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

#quiz-flow .btn-primary:hover {
  background: var(--dash-hot-pink);
}

#quiz-flow .tag-btn.selected {
  background: var(--dash-electric);
  border-color: var(--dash-electric);
}

#quiz-flow .budget-toggle {
  border-radius: 999px;
}

body.dashboard-body .discreet-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--dash-line);
  text-align: center;
  font-size: 0.82rem;
  color: var(--dash-muted);
}

body.dashboard-body .discreet-footer a {
  color: var(--dash-ink);
}

/* ── Inner pages (edits, about, etc.) ── */
.dash-page-content {
  flex: 1;
  min-width: 0;
}

.dash-page-content.container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

body.dashboard-body .dash-page-content .coffee-hero,
body.dashboard-body .dash-page-content .running-hero,
body.dashboard-body .dash-page-content .about-hero,
body.dashboard-body .dash-page-content .edit-hero,
body.dashboard-body .dash-page-content .community-hero {
  padding-top: 0;
}

body.dashboard-body .dash-page-content .discreet-footer {
  margin-top: var(--spacing-xl, 48px);
}

/* ── Edit pages: shared spot cards (coffee, running, workshops) ── */
body.dashboard-body .edit-spot-grid,
body.dashboard-body .coffee-grid,
body.dashboard-body .parkrun-grid,
body.dashboard-body .workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

body.dashboard-body .edit-spot-hidden,
body.dashboard-body .coffee-hidden,
body.dashboard-body .parkrun-hidden,
body.dashboard-body .workshop-hidden,
body.dashboard-body .clubs-hidden {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

body.dashboard-body .edit-spot-hidden.expanded,
body.dashboard-body .coffee-hidden.expanded,
body.dashboard-body .parkrun-hidden.expanded,
body.dashboard-body .workshop-hidden.expanded,
body.dashboard-body .clubs-hidden.expanded {
  display: grid;
}

body.dashboard-body .edit-spot-expand,
body.dashboard-body .dash-page-content .expand-btn {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 20px auto 0;
  padding: 12px 20px;
  background: var(--dash-shell);
  border: 1.5px solid var(--dash-line);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dash-ink);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, transform 0.15s;
}

body.dashboard-body .edit-spot-expand:hover,
body.dashboard-body .dash-page-content .expand-btn:hover {
  border-color: var(--dash-hot-pink);
  color: var(--dash-hot-pink);
  transform: translateY(-1px);
}

body.dashboard-body .edit-spot-empty {
  text-align: center;
  color: var(--dash-muted);
  font-size: 0.92rem;
  margin: 0;
  padding: 24px 16px;
}

.edit-spot-card {
  position: relative;
  background: var(--dash-card);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.edit-spot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(17, 19, 24, 0.08);
}

.edit-spot-card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.edit-spot-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 18px 0;
}

.edit-spot-card__title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dash-ink);
  line-height: 1.3;
  padding-right: 28px;
}

.edit-spot-card__badge {
  flex-shrink: 0;
  background: var(--dash-electric);
  color: var(--dash-ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.edit-spot-card--running .edit-spot-card__badge {
  background: var(--dash-peach);
}

.edit-spot-card--workshop .edit-spot-card__badge {
  background: var(--dash-lavender);
}

.edit-spot-card__body {
  padding: 14px 18px 18px;
}

.edit-spot-card__desc {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--dash-muted);
}

.edit-spot-card__details {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.edit-spot-card__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--dash-ink);
}

.edit-spot-card__detail-icon {
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
}

.edit-spot-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.edit-spot-card__chip {
  background: var(--dash-sky);
  color: var(--dash-ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.edit-spot-card--coffee .edit-spot-card__chip {
  background: var(--dash-mint);
}

.edit-spot-card--running .edit-spot-card__chip {
  background: var(--dash-peach);
}

.edit-spot-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.edit-spot-card__tag {
  background: #f3f4f6;
  color: var(--dash-muted);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: capitalize;
}

.edit-spot-card__callout {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: var(--dash-radius-md);
  background: var(--dash-mint);
  border: 1px solid rgba(17, 19, 24, 0.06);
}

.edit-spot-card--running .edit-spot-card__callout {
  background: var(--dash-peach);
}

.edit-spot-card__callout-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dash-muted);
  margin-bottom: 4px;
}

.edit-spot-card__callout strong {
  display: block;
  font-size: 0.92rem;
  color: var(--dash-ink);
  margin-bottom: 4px;
}

.edit-spot-card__callout p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--dash-muted);
}

.edit-spot-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.edit-spot-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  border: 1.5px solid transparent;
}

.edit-spot-card__btn--primary {
  background: var(--dash-ink);
  color: #fff;
  border-color: var(--dash-ink);
}

.edit-spot-card__btn--primary:hover {
  background: var(--dash-hot-pink);
  border-color: var(--dash-hot-pink);
  color: #fff;
}

.edit-spot-card__btn--ghost {
  background: transparent;
  color: var(--dash-ink);
  border-color: var(--dash-line);
}

.edit-spot-card__btn--ghost:hover {
  border-color: var(--dash-hot-pink);
  color: var(--dash-hot-pink);
}

/* Coworking strip cards */
.edit-cowork-card {
  position: relative;
  background: var(--dash-card);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: var(--dash-shadow);
}

.edit-cowork-card__title {
  margin: 0 0 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dash-ink);
}

.edit-cowork-card__desc {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--dash-muted);
}

.edit-cowork-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--dash-muted);
}

.edit-cowork-card__link {
  color: var(--dash-ink);
  font-weight: 600;
  text-decoration: none;
}

.edit-cowork-card__link:hover {
  color: var(--dash-hot-pink);
}

/* Edit page chrome */
body.dashboard-body .dash-page-content .sig-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md, 16px);
  padding-right: var(--spacing-md, 16px);
}

body.dashboard-body .dash-page-content .sig-badge {
  background: var(--dash-electric);
  color: var(--dash-ink);
}

body.dashboard-body .dash-page-content .jump-link.active,
body.dashboard-body .dash-page-content .jump-link:hover {
  background: var(--dash-ink);
  color: #fff;
  border-color: var(--dash-ink);
}

body.dashboard-body .dash-page-content .jump-link {
  border-color: var(--dash-line);
  color: var(--dash-ink);
}

body.dashboard-body .dash-page-content .mid-cta-link:hover {
  color: var(--dash-hot-pink);
}

body.dashboard-body .dash-page-content .sig-section h2,
body.dashboard-body .dash-page-content .coffee-hero h1,
body.dashboard-body .dash-page-content .running-hero h1,
body.dashboard-body .dash-page-content .workshop-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dash-ink);
}

body.dashboard-body .dash-page-content .club-card {
  background: var(--dash-card);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-lg);
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: var(--dash-shadow);
}

body.dashboard-body .dash-page-content .club-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dash-ink);
  margin: 0 0 8px;
}

body.dashboard-body .dash-page-content .club-card p,
body.dashboard-body .dash-page-content .club-meta {
  font-size: 0.9rem;
  color: var(--dash-muted);
  line-height: 1.5;
}

body.dashboard-body .dash-page-content .club-meta a,
body.dashboard-body .dash-page-content .club-claim-link {
  color: var(--dash-ink);
  font-weight: 600;
}

body.dashboard-body .dash-page-content .club-meta a:hover,
body.dashboard-body .dash-page-content .club-claim-link:hover {
  color: var(--dash-hot-pink);
}

/* ── Venue page ── */
body.dashboard-body .venue-loading,
body.dashboard-body .venue-not-found {
  text-align: center;
  padding: var(--spacing-xl, 48px) var(--spacing-md, 16px);
  max-width: 520px;
  margin: 0 auto;
  color: var(--dash-muted);
}

body.dashboard-body .venue-not-found h1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dash-ink);
  margin-bottom: var(--spacing-md, 16px);
}

body.dashboard-body .venue-not-found p {
  color: var(--dash-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg, 24px);
}

body.dashboard-body .venue-not-found a {
  color: var(--dash-ink);
  font-weight: 600;
  text-decoration: none;
}

body.dashboard-body .venue-not-found a:hover {
  color: var(--dash-hot-pink);
}

body.dashboard-body .venue-profile-card {
  max-width: 720px;
  margin: 0 auto var(--spacing-xl, 48px);
  padding: 32px 28px;
  background: var(--dash-card);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
  text-align: center;
}

body.dashboard-body .venue-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dash-ink);
  margin: 0 0 12px;
}

body.dashboard-body .venue-neighborhood {
  display: inline-block;
  background: var(--dash-electric);
  color: var(--dash-ink);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-md, 16px);
}

body.dashboard-body .venue-description {
  color: var(--dash-muted);
  line-height: 1.65;
  font-size: 0.98rem;
  margin: var(--spacing-md, 16px) auto;
  max-width: 540px;
}

body.dashboard-body .venue-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: var(--spacing-md, 16px);
}

body.dashboard-body .venue-links a {
  display: inline-block;
  padding: 10px 20px;
  background: var(--dash-ink);
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
}

body.dashboard-body .venue-links a:hover {
  background: var(--dash-hot-pink);
  transform: translateY(-1px);
}

body.dashboard-body .venue-links a.secondary {
  background: transparent;
  color: var(--dash-ink);
  border: 1.5px solid var(--dash-line);
}

body.dashboard-body .venue-links a.secondary:hover {
  border-color: var(--dash-hot-pink);
  color: var(--dash-hot-pink);
  background: transparent;
}

body.dashboard-body .venue-claim-note {
  margin-top: var(--spacing-md, 16px);
  font-size: 0.82rem;
  color: var(--dash-muted);
}

body.dashboard-body .venue-claim-note a {
  color: var(--dash-ink);
  text-decoration: none;
  font-weight: 600;
}

body.dashboard-body .venue-claim-note a:hover {
  color: var(--dash-hot-pink);
}

body.dashboard-body .dash-page-content .btn-fav {
  position: static;
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--dash-line);
  background: transparent;
  color: var(--dash-ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: none;
  margin: 8px 0 4px;
}

body.dashboard-body .dash-page-content .btn-fav:hover,
body.dashboard-body .dash-page-content .btn-fav.saved {
  background: var(--dash-hot-pink);
  color: #fff;
  border-color: var(--dash-hot-pink);
  transform: none;
}

body.dashboard-body .venue-section {
  max-width: 720px;
  margin: 0 auto var(--spacing-xl, 48px);
  padding: 0 var(--spacing-md, 16px);
}

body.dashboard-body .venue-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md, 16px);
  text-align: center;
  color: var(--dash-ink);
}

body.dashboard-body .venue-events-empty {
  text-align: center;
  color: var(--dash-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  padding: 24px;
  background: var(--dash-card);
  border: 1px dashed var(--dash-line);
  border-radius: var(--dash-radius-lg);
}

body.dashboard-body .venue-events {
  display: grid;
  gap: 14px;
}

body.dashboard-body .venue-event-card {
  background: var(--dash-card);
  border-radius: var(--dash-radius-lg);
  overflow: hidden;
  box-shadow: var(--dash-shadow);
  border: 1px solid var(--dash-line);
  transition: transform 0.15s, box-shadow 0.15s;
}

body.dashboard-body .venue-event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(17, 19, 24, 0.08);
}

body.dashboard-body .venue-event-card .card-header {
  background: var(--dash-ink);
  color: #fff;
  padding: 14px 20px;
}

body.dashboard-body .venue-event-card .card-header h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
  margin: 0;
}

body.dashboard-body .venue-event-card .card-body {
  padding: 20px;
  text-align: center;
}

body.dashboard-body .venue-event-card .card-body p {
  color: var(--dash-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

body.dashboard-body .venue-event-card .event-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--dash-muted);
  margin-bottom: 12px;
}

body.dashboard-body .venue-event-card .event-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

body.dashboard-body .venue-event-card .event-tag {
  background: #f3f4f6;
  color: var(--dash-muted);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.dashboard-body .venue-event-card a.booking-link {
  display: inline-block;
  color: var(--dash-ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

body.dashboard-body .venue-event-card a.booking-link:hover {
  color: var(--dash-hot-pink);
  border-bottom-color: var(--dash-hot-pink);
}

body.dashboard-body .venue-run-club {
  background: var(--dash-ink);
  color: #fff;
  border-radius: var(--dash-radius-lg);
  padding: 22px 24px;
  border: 1px solid var(--dash-line);
}

body.dashboard-body .venue-run-club h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

body.dashboard-body .venue-run-club p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 12px;
}

body.dashboard-body .venue-run-club .run-club-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

body.dashboard-body .venue-run-club a {
  display: inline-block;
  margin-top: 10px;
  color: var(--dash-electric);
  font-weight: 600;
  text-decoration: none;
}

body.dashboard-body .venue-run-club a:hover {
  color: var(--dash-hot-pink);
}

body.dashboard-body .dash-page-content .back-link {
  display: inline-block;
  margin-top: var(--spacing-md, 16px);
  color: var(--dash-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-size: 0.9rem;
  transition: color 0.15s, border-color 0.15s;
}

body.dashboard-body .dash-page-content .back-link:hover {
  color: var(--dash-hot-pink);
  border-bottom-color: var(--dash-hot-pink);
}

/* ── Venue claim page ── */
body.dashboard-body .claim-hero {
  text-align: center;
  padding: var(--spacing-xl, 48px) var(--spacing-md, 16px) var(--spacing-lg, 32px);
  max-width: 640px;
  margin: 0 auto;
}

body.dashboard-body .claim-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dash-ink);
  margin-bottom: var(--spacing-sm, 12px);
}

body.dashboard-body .claim-hero > p {
  color: var(--dash-muted);
  line-height: 1.65;
  font-size: 1rem;
}

body.dashboard-body .claim-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: var(--spacing-lg, 24px) auto 0;
  max-width: 480px;
  text-align: left;
}

body.dashboard-body .claim-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--dash-muted);
  line-height: 1.5;
  padding: 12px 14px;
  background: var(--dash-card);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  border-left: 3px solid var(--dash-electric);
}

body.dashboard-body .claim-perk span:first-child {
  font-size: 1.1rem;
  flex-shrink: 0;
}

body.dashboard-body .claim-form-wrap {
  max-width: 560px;
  margin: 0 auto var(--spacing-xl, 48px);
  padding: 0 var(--spacing-md, 16px);
}

body.dashboard-body .claim-form {
  background: var(--dash-card);
  border-radius: var(--dash-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--dash-shadow);
  border: 1px solid var(--dash-line);
}

body.dashboard-body .claim-form .form-group {
  margin-bottom: var(--spacing-md, 16px);
}

body.dashboard-body .claim-form .form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dash-ink);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.dashboard-body .claim-form .form-group label .label-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--dash-muted);
}

body.dashboard-body .claim-form .form-group input,
body.dashboard-body .claim-form .form-group select,
body.dashboard-body .claim-form .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dash-ink);
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

body.dashboard-body .claim-form .form-group input:focus,
body.dashboard-body .claim-form .form-group select:focus,
body.dashboard-body .claim-form .form-group textarea:focus {
  outline: none;
  border-color: var(--dash-ink);
}

body.dashboard-body .claim-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

body.dashboard-body .claim-form .form-hint {
  font-size: 0.8rem;
  color: var(--dash-muted);
  margin-top: 6px;
  line-height: 1.45;
}

body.dashboard-body .claim-form .btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--dash-ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  margin-top: var(--spacing-sm, 12px);
}

body.dashboard-body .claim-form .btn-submit:hover {
  background: var(--dash-hot-pink);
  transform: translateY(-1px);
}

body.dashboard-body .claim-form .btn-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

body.dashboard-body .claim-form .form-note {
  font-size: 0.82rem;
  color: var(--dash-muted);
  text-align: center;
  margin-top: var(--spacing-sm, 12px);
  line-height: 1.5;
}

body.dashboard-body .claim-success-card {
  background: var(--dash-card);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
  text-align: center;
  padding: var(--spacing-xl, 48px) var(--spacing-md, 16px);
}

body.dashboard-body .claim-success-card .success-emoji {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm, 12px);
}

body.dashboard-body .claim-success-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dash-ink);
  margin-bottom: var(--spacing-sm, 12px);
}

body.dashboard-body .claim-success-card p {
  color: var(--dash-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-md, 16px);
  font-size: 0.95rem;
}

/* ── Thanks / confirmation pages ── */
body.dashboard-body .dash-thanks-wrap {
  max-width: 520px;
  margin: 0 auto var(--spacing-xl, 48px);
  padding: 0 var(--spacing-md, 16px);
}

body.dashboard-body .dash-thanks-card {
  background: var(--dash-card);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
  text-align: center;
  padding: var(--spacing-xl, 48px) var(--spacing-lg, 24px);
}

body.dashboard-body .dash-thanks-card .thanks-emoji {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-md, 16px);
  line-height: 1;
}

body.dashboard-body .dash-thanks-card h1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dash-ink);
  margin: 0 0 var(--spacing-md, 16px);
}

body.dashboard-body .dash-thanks-card p {
  color: var(--dash-muted);
  line-height: 1.65;
  font-size: 0.98rem;
  margin: 0 0 var(--spacing-lg, 24px);
}

body.dashboard-body .dash-thanks-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

body.dashboard-body .dash-thanks-actions .btn-dash-primary {
  display: inline-block;
  padding: 13px 28px;
  background: var(--dash-ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

body.dashboard-body .dash-thanks-actions .btn-dash-primary:hover {
  background: var(--dash-hot-pink);
  transform: translateY(-1px);
}

body.dashboard-body .dash-thanks-actions .btn-dash-link {
  color: var(--dash-muted);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.15s;
}

body.dashboard-body .dash-thanks-actions .btn-dash-link:hover {
  color: var(--dash-hot-pink);
}

/* ── Account page ── */
body.dashboard-body .account-hero,
body.dashboard-body .account-hero-redesign {
  text-align: center;
  padding: var(--spacing-xl, 48px) var(--spacing-md, 16px) var(--spacing-lg, 32px);
  max-width: 640px;
  margin: 0 auto;
}

body.dashboard-body .account-hero h1,
body.dashboard-body .account-hero-redesign h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dash-ink);
  margin-bottom: var(--spacing-sm, 12px);
}

body.dashboard-body .account-hero .subtitle,
body.dashboard-body .account-hero-redesign .subtitle {
  color: var(--dash-muted);
  font-size: 1rem;
  line-height: 1.6;
}

body.dashboard-body .account-hero-redesign .founding-badge,
body.dashboard-body #account-founding-badge {
  display: inline-block;
  background: var(--dash-electric);
  color: var(--dash-ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md, 16px);
}

body.dashboard-body .account-hero-redesign .user-email {
  display: inline-block;
  background: #f3f4f6;
  color: var(--dash-muted);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: var(--spacing-md, 16px);
}

body.dashboard-body .auth-card {
  max-width: 420px;
  margin: 0 auto var(--spacing-xl, 48px);
  padding: 24px;
  background: var(--dash-card);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
}

body.dashboard-body .auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: var(--spacing-lg, 24px);
  border-bottom: 1px solid var(--dash-line);
}

body.dashboard-body .auth-tab {
  flex: 1;
  padding: 12px 0;
  text-align: center;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dash-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

body.dashboard-body .auth-tab.active {
  color: var(--dash-ink);
  border-bottom-color: var(--dash-hot-pink);
}

body.dashboard-body .auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.dashboard-body .auth-form input {
  padding: 14px 16px;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
  background: #fff;
  color: var(--dash-ink);
}

body.dashboard-body .auth-form input:focus {
  border-color: var(--dash-ink);
}

body.dashboard-body .auth-submit {
  background: var(--dash-ink);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, transform 0.15s;
}

body.dashboard-body .auth-submit:hover {
  background: var(--dash-hot-pink);
  transform: translateY(-1px);
}

body.dashboard-body .auth-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

body.dashboard-body .auth-message {
  text-align: center;
  font-size: 0.88rem;
  padding: 10px 12px;
  border-radius: var(--dash-radius-md);
  display: none;
  margin-bottom: 12px;
}

body.dashboard-body .auth-message.error {
  display: block;
  background: #fff0f0;
  color: #c53030;
  border: 1px solid #fed7d7;
}

body.dashboard-body .auth-message.success {
  display: block;
  background: #f0fff4;
  color: #276749;
  border: 1px solid #c6f6d5;
}

body.dashboard-body .account-page {
  background: transparent;
  min-height: auto;
  padding-bottom: var(--spacing-xl, 48px);
}

body.dashboard-body .saved-section {
  max-width: 720px;
  margin: 0 auto var(--spacing-xl, 48px);
  padding: 0 var(--spacing-md, 16px);
}

body.dashboard-body .saved-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dash-ink);
  margin-bottom: var(--spacing-md, 16px);
  text-align: center;
  letter-spacing: -0.02em;
}

body.dashboard-body .fav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

body.dashboard-body .fav-card {
  background: var(--dash-card);
  border-radius: var(--dash-radius-md);
  padding: 18px;
  box-shadow: var(--dash-shadow);
  border: 1px solid var(--dash-line);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}

body.dashboard-body .fav-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(17, 19, 24, 0.08);
  border-color: var(--dash-hot-pink);
}

body.dashboard-body .fav-card .fav-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dash-ink);
  margin-bottom: 4px;
}

body.dashboard-body .fav-card .fav-hood {
  font-size: 0.72rem;
  color: var(--dash-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

body.dashboard-body .fav-empty-state {
  text-align: center;
  padding: var(--spacing-xl, 48px) var(--spacing-md, 16px);
  background: var(--dash-card);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
  border: 1px dashed var(--dash-line);
}

body.dashboard-body .fav-empty-state .empty-emoji {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md, 16px);
}

body.dashboard-body .fav-empty-state p {
  color: var(--dash-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: var(--spacing-md, 16px);
}

body.dashboard-body .fav-empty-state a {
  display: inline-block;
  padding: 10px 20px;
  background: var(--dash-ink);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 999px;
  transition: background 0.15s;
}

body.dashboard-body .fav-empty-state a:hover {
  background: var(--dash-hot-pink);
}

body.dashboard-body .account-settings-wrap {
  max-width: 520px;
  margin: 0 auto var(--spacing-lg, 32px);
  padding: 0 var(--spacing-md, 16px);
}

body.dashboard-body .settings-accordion {
  background: var(--dash-card);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
  border: 1px solid var(--dash-line);
  overflow: hidden;
}

body.dashboard-body .settings-toggle {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dash-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}

body.dashboard-body .settings-toggle:hover {
  background: #f9fafb;
}

body.dashboard-body .settings-toggle::after {
  content: '↓';
  font-size: 0.8rem;
  color: var(--dash-muted);
  transition: transform 0.2s;
}

body.dashboard-body .settings-accordion.open .settings-toggle::after {
  transform: rotate(180deg);
}

body.dashboard-body .settings-panel {
  display: none;
  padding: 0 22px 22px;
}

body.dashboard-body .settings-accordion.open .settings-panel {
  display: block;
}

body.dashboard-body .account-settings {
  text-align: left;
}

body.dashboard-body .account-settings h3 {
  display: none;
}

body.dashboard-body .settings-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--dash-line);
}

body.dashboard-body .settings-item:last-child {
  border-bottom: none;
}

body.dashboard-body .settings-label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dash-ink);
}

body.dashboard-body .settings-desc {
  font-size: 0.85rem;
  color: var(--dash-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

body.dashboard-body .btn-settings {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: 1.5px solid var(--dash-line);
  background: transparent;
  color: var(--dash-ink);
}

body.dashboard-body .btn-settings:hover {
  border-color: var(--dash-hot-pink);
  color: var(--dash-hot-pink);
}

body.dashboard-body .btn-danger {
  border-color: #fca5a5;
  color: #c53030;
}

body.dashboard-body .btn-danger:hover {
  background: #c53030;
  border-color: #c53030;
  color: #fff;
}

body.dashboard-body .settings-message {
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: var(--dash-radius-md);
  text-align: center;
  display: none;
  margin-top: 8px;
}

body.dashboard-body .settings-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

body.dashboard-body .confirm-delete p {
  color: #c53030;
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

body.dashboard-body .confirm-delete .btn-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

body.dashboard-body #suggest .suggest-intro {
  text-align: center;
  color: var(--dash-muted);
  margin-bottom: var(--spacing-md, 16px);
  font-size: 0.95rem;
}

body.dashboard-body #suggest .suggest-form-wrap {
  max-width: 500px;
  margin: 0 auto;
}

body.dashboard-body .account-duplicate-warning {
  display: none;
  background: #fffbeb;
  border-left: 4px solid var(--dash-electric);
  padding: 10px 14px;
  margin-top: 6px;
  border-radius: var(--dash-radius-md);
  font-size: 0.85rem;
  color: var(--dash-ink);
}

body.dashboard-body .settings-form input {
  padding: 10px 14px;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

body.dashboard-body .settings-form input:focus {
  border-color: var(--dash-ink);
}

body.dashboard-body .settings-message.error {
  display: block;
  background: #fff0f0;
  color: #c53030;
  border: 1px solid #fed7d7;
}

body.dashboard-body .settings-message.success {
  display: block;
  background: #f0fff4;
  color: #276749;
  border: 1px solid #c6f6d5;
}

body.dashboard-body .confirm-delete {
  display: none;
  margin-top: 12px;
  padding: 16px;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: var(--dash-radius-md);
  text-align: center;
}

body.dashboard-body .btn-signout {
  background: transparent;
  border: 1.5px solid var(--dash-line);
  color: var(--dash-muted);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

body.dashboard-body .btn-signout:hover {
  border-color: var(--dash-hot-pink);
  color: var(--dash-hot-pink);
}

body.dashboard-body .account-footer {
  text-align: center;
  padding-top: var(--spacing-lg, 32px);
}

body.dashboard-body .dash-page-content .back-link {
  color: var(--dash-muted);
  border-bottom-color: transparent;
}

body.dashboard-body .dash-page-content .back-link:hover {
  color: var(--dash-hot-pink);
  border-bottom-color: var(--dash-hot-pink);
}

body.dashboard-body #suggest .suggest-form input,
body.dashboard-body #suggest .suggest-form select,
body.dashboard-body #suggest .suggest-form textarea {
  border: 1px solid var(--dash-line) !important;
  border-radius: var(--dash-radius-md) !important;
  font-family: 'Inter', sans-serif !important;
}

body.dashboard-body #suggest .suggest-form button[type="submit"] {
  background: var(--dash-ink) !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}

body.dashboard-body #suggest .suggest-form button[type="submit"]:hover {
  background: var(--dash-hot-pink) !important;
}

/* ── Results page ── */
.results-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dash-muted);
  margin-bottom: 4px;
}

.dash-topbar .results-meta {
  font-size: 0.85rem;
  color: var(--dash-muted);
  margin-top: 4px;
  font-weight: 500;
}

.results-layout {
  max-width: 680px;
  margin: 0 auto;
}

.results-timeline {
  max-width: 100%;
  margin: 0 auto 28px;
  position: relative;
  padding-left: 28px;
}

.results-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, var(--dash-electric), var(--dash-hot-pink), #e5e7eb);
  border-radius: 999px;
}

.results-timeline .timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.results-timeline .timeline-marker {
  position: absolute;
  left: -28px;
  top: 22px;
  width: 12px;
  height: 12px;
  background: var(--dash-electric);
  border: 3px solid #f7f8fb;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #e5e7eb;
}

.results-timeline .time-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f6f91;
  margin-bottom: 8px;
  display: block;
}

.results-timeline .place-card {
  background: white;
  border-radius: var(--dash-radius-lg);
  overflow: hidden;
  box-shadow: var(--dash-shadow);
  border: 1px solid var(--dash-line);
  transition: transform 0.2s;
}

.results-timeline .place-card:hover {
  transform: translateY(-2px);
}

.results-timeline .place-image {
  height: 180px;
  background-color: #f0f0f0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.results-timeline .place-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dash-ink);
  text-transform: capitalize;
}

.results-timeline .place-content {
  padding: 18px 20px;
}

.results-timeline .place-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dash-ink);
}

.results-timeline .place-description {
  color: var(--dash-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.results-timeline .dice-btn {
  background: #f7f8fb;
  border: 1px solid var(--dash-line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--dash-ink);
  font-family: inherit;
  font-weight: 500;
}

.results-timeline .dice-btn:hover {
  border-color: var(--dash-ink);
  background: var(--dash-electric);
}

.results-timeline .dice-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.results-timeline .dice-btn.rolling {
  animation: diceRoll 0.6s ease-in-out;
}

@keyframes diceRoll {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(90deg); }
  50% { transform: rotate(180deg); }
  75% { transform: rotate(270deg); }
}

.results-timeline .slide-in {
  animation: resultsSlideIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes resultsSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.results-timeline .budget-notice,
.results-timeline .budget-empty {
  margin-top: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f3f0ff, #fff5f9);
  border-radius: var(--dash-radius-md);
  border: 1px solid var(--dash-line);
  text-align: center;
  font-size: 0.9rem;
  color: var(--dash-muted);
}

body.dashboard-body .account-nudge {
  background: white;
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
  border: 1px solid var(--dash-line);
  padding: 22px 24px;
  margin-bottom: 28px;
}

body.dashboard-body .account-nudge__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dash-ink);
}

body.dashboard-body .account-nudge__btn-primary {
  background: var(--dash-ink);
  border-radius: 999px;
}

body.dashboard-body .account-nudge__btn-secondary {
  border-radius: 999px;
  border: 1px solid var(--dash-line);
  color: var(--dash-hot-pink);
}

.results-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.results-actions a {
  text-decoration: none;
}

/* Notification bell in dashboard topbar */
.dash-topbar-right #nav-bell-wrap {
  position: relative;
}

.dash-topbar-right #nav-bell {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--dash-line);
  background: white;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
}

.dash-topbar-right .bell-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--dash-hot-pink);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 999px;
  min-width: 16px;
}

/* ── Bottom tab bar (mobile / tablet) ── */
.dash-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 180;
  background: var(--dash-shell);
  border-top: 1px solid var(--dash-line);
  padding: 6px max(8px, env(safe-area-inset-right)) max(6px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  box-shadow: 0 -4px 24px rgba(17, 19, 24, 0.08);
  align-items: flex-end;
  justify-content: space-around;
  gap: 2px;
}

.dash-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  min-height: 48px;
  padding: 4px 4px 2px;
  border: none;
  background: none;
  color: var(--dash-muted);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border-radius: 12px;
  transition: color 0.15s, background 0.15s;
}

.dash-bottom-nav__item:hover,
.dash-bottom-nav__item.active {
  color: var(--dash-ink);
}

.dash-bottom-nav__item.active .dash-bottom-nav__icon {
  color: var(--dash-hot-pink);
}

.dash-bottom-nav__icon {
  font-size: 1.15rem;
  line-height: 1;
  display: block;
}

.dash-bottom-nav__label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.dash-bottom-nav__item--curate {
  position: relative;
  top: -14px;
  flex: 0 0 auto;
  min-width: 64px;
  padding: 0;
}

.dash-bottom-nav__icon--curate {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--dash-electric);
  color: var(--dash-ink);
  font-size: 1.35rem;
  box-shadow: 0 4px 16px rgba(204, 255, 0, 0.45);
  border: 3px solid var(--dash-shell);
}

.dash-bottom-nav__item--curate .dash-bottom-nav__label {
  margin-top: 2px;
  color: var(--dash-ink);
  font-weight: 700;
}

.dash-bottom-nav__item--curate:active .dash-bottom-nav__icon--curate {
  transform: scale(0.96);
}

/* Edits picker sheet */
.dash-edits-sheet {
  position: fixed;
  inset: 0;
  z-index: 190;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.25s;
}

.dash-edits-sheet.open {
  pointer-events: auto;
  visibility: visible;
}

.dash-edits-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 24, 0.45);
  opacity: 0;
  transition: opacity 0.25s;
}

.dash-edits-sheet.open .dash-edits-sheet__backdrop {
  opacity: 1;
}

.dash-edits-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dash-shell);
  border-radius: 22px 22px 0 0;
  padding: 12px 16px max(80px, calc(64px + env(safe-area-inset-bottom)));
  box-shadow: 0 -8px 40px rgba(17, 19, 24, 0.12);
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}

.dash-edits-sheet.open .dash-edits-sheet__panel {
  transform: translateY(0);
}

.dash-edits-sheet__panel.is-dragging {
  transition: none;
}

.dash-edits-sheet__drag-zone {
  padding: 6px 0 10px;
  touch-action: none;
  cursor: grab;
}

.dash-edits-sheet__panel.is-dragging .dash-edits-sheet__drag-zone {
  cursor: grabbing;
}

.dash-edits-sheet__handle {
  width: 36px;
  height: 4px;
  background: var(--dash-line);
  border-radius: 999px;
  margin: 0 auto;
}

.dash-edits-sheet__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dash-ink);
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: -0.02em;
  touch-action: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.dash-edits-sheet__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-edits-sheet__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--dash-radius-md);
  text-decoration: none;
  color: var(--dash-ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  background: #f7f8fb;
  border: 1px solid transparent;
  transition: border-color 0.15s, background 0.15s;
}

.dash-edits-sheet__link:hover,
.dash-edits-sheet__link.active {
  border-color: var(--dash-hot-pink);
  background: #fff;
}

.dash-edits-sheet__icon {
  font-size: 1.2rem;
  width: 28px;
  text-align: center;
}

body.dashboard-body.dash-edits-open {
  overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .app-shell {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: max(72px, calc(64px + env(safe-area-inset-bottom)));
    width: 280px;
    z-index: 150;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    border-radius: 0 24px 24px 0;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar.open {
    transform: translateX(0);
    z-index: 195;
  }

  .sidebar .dash-nav {
    flex: 1 1 auto;
    min-height: 0;
  }

  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 140;
  }

  .sidebar-overlay.open { display: block; }

  .sidebar-toggle { display: none; }

  .dash-bottom-nav { display: flex; }

  .dash-main { border-radius: 24px; }

  .dashboard-grid { grid-template-columns: 1fr 1fr; }

  .dash-edits { grid-column: 1 / -1; }
  .edit-cards { grid-template-columns: 1fr; }
  .dash-community { grid-column: 1 / -1; }
  .dash-activity,
  .dash-schedule,
  .dash-saved { grid-column: 1 / -1; }

  .app-shell {
    min-height: calc(100dvh - 16px);
  }

  .dash-main {
    padding-bottom: max(88px, calc(72px + env(safe-area-inset-bottom)));
  }
}

@media (max-width: 600px) {
  body.dashboard-body {
    padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  .app-shell {
    border-radius: 20px;
    min-height: calc(100dvh - 16px);
  }

  .dash-main {
    padding: 16px 16px max(88px, calc(72px + env(safe-area-inset-bottom)));
    border-radius: 20px;
  }

  .dash-bottom-nav__label {
    font-size: 0.58rem;
  }

  .dash-topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
  }

  .dash-topbar h1 {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .dash-topbar-right {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
  }

  .dash-topbar-right .dash-search-wrap {
    flex: 1 1 100%;
    order: -1;
  }

  .dash-search-wrap { flex: 1; min-width: 0; }
  .dash-search { min-width: unset; width: 100%; }

  .dash-search-panel {
    left: 0;
    right: 0;
    width: auto;
  }

  .dashboard-grid { grid-template-columns: 1fr; }

  .dash-curate-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .curate-actions {
    width: 100%;
  }

  .curate-actions .btn-dash-dark,
  .curate-actions .btn-lime {
    flex: 1;
    min-width: 0;
    text-align: center;
  }

  body.dashboard-body .edit-spot-grid,
  body.dashboard-body .coffee-grid,
  body.dashboard-body .parkrun-grid,
  body.dashboard-body .workshop-grid,
  body.dashboard-body .edit-spot-hidden,
  body.dashboard-body .coffee-hidden,
  body.dashboard-body .parkrun-hidden,
  body.dashboard-body .workshop-hidden,
  body.dashboard-body .clubs-hidden {
    grid-template-columns: 1fr;
  }

  body.dashboard-body .about-title {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
    letter-spacing: -1px;
  }

  body.dashboard-body .venue-links {
    flex-direction: column;
    align-items: stretch;
  }

  body.dashboard-body .venue-links a {
    text-align: center;
    padding: 13px 20px;
  }

  body.dashboard-body .venue-profile-card,
  body.dashboard-body .claim-form,
  body.dashboard-body .auth-card {
    padding: 22px 18px;
  }

  body.dashboard-body .fav-grid {
    grid-template-columns: 1fr;
  }

  body.dashboard-body .claim-perk {
    font-size: 0.88rem;
  }

  body.dashboard-body input,
  body.dashboard-body select,
  body.dashboard-body textarea {
    font-size: 16px;
  }

  #quiz-flow .container {
    padding: 20px 14px 36px;
    border-radius: var(--dash-radius-md);
  }

  body.dashboard-body .notif-panel.notif-panel--mobile.open {
    position: fixed;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: min(50vh, 360px);
    bottom: max(80px, calc(72px + env(safe-area-inset-bottom)));
    top: auto;
  }

  .dash-topbar-right #nav-bell,
  .dash-avatar {
    min-width: 44px;
    min-height: 44px;
  }
}
