/* ============================================================
   Lombokers — Design System
   ============================================================ */

:root {
  --bg:        #FAF6F0;
  --bg-soft:   #F4EEE3;
  --surface:   #FFFFFF;
  --ink:       #1A1A1A;
  --ink-soft:  #4A4A4A;
  --muted:     #8A8580;
  --line:      #ECE4D7;

  --brand:     #2DA890;
  --brand-dk:  #1F8D7A;
  --brand-lt:  #E6F5F1;
  --accent:    #F08D3C;
  --accent-dk: #D6731F;
  --pin:       #E85D75;
  --hot:       #E94B3C;
  --today:     #F2B23A;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(20,20,20,.04), 0 2px 6px rgba(20,20,20,.04);
  --shadow:    0 2px 6px rgba(20,20,20,.05), 0 12px 24px -8px rgba(20,20,20,.08);
  --shadow-lg: 0 8px 24px -4px rgba(20,20,20,.12), 0 24px 48px -12px rgba(20,20,20,.18);

  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; }

a { color: inherit; }

/* ====================== TOPBAR ====================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(250,246,240,.96) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}

.topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.topbar__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.topbar__brand .brand__name { margin: 0; font-size: 22px; font-weight: 800; }
.topbar__brand .brand__loc  { margin: 0; font-size: 12px; color: var(--muted); }

.topbar__side {
  /* removed flex layout — grid now */
}

.topbar__side--right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.topbar__inner .search-wrap {
  max-width: 700px;
  width: 100%;
  justify-self: center;
  margin: 0 auto;
}

/* Pro button */
.btn--pro {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--brand);
  color: white;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  box-shadow: 0 4px 12px -2px rgba(45,168,144,.4);
  transition: background .18s, transform .12s, box-shadow .18s;
  white-space: nowrap;
}
.btn--pro:hover { background: var(--brand-dk); transform: translateY(-1px); box-shadow: 0 6px 16px -2px rgba(45,168,144,.45); }

/* Avatar button (logged in) */
.btn--avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  border: 0;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(45,168,144,.35);
  transition: transform .12s, box-shadow .18s;
}
.btn--avatar:hover { transform: scale(1.08); box-shadow: 0 4px 12px rgba(45,168,144,.4); }

/* ====================== SEARCH SUGGESTIONS ====================== */

.search-wrap {
  position: relative;
}

.search__suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin: 0;
  padding: 6px;
  z-index: 200;
  max-height: 340px;
  overflow-y: auto;
}

.search__sugg-item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .12s;
  user-select: none;
}

.search__sugg-item:hover,
.search__sugg-item.is-active {
  background: var(--bg-soft);
}

.search__sugg-icon {
  font-size: 13px;
  flex: 0 0 20px;
  text-align: center;
}

.search__sugg-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search__sugg-label .match {
  font-weight: 700;
  color: var(--brand);
}

.search__sugg-cat {
  font-size: 11px;
  color: var(--muted);
  margin-left: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand {
  padding: 4px 4px 18px;
}
.brand__name {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand__accent { color: var(--brand); }

.brand__loc {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--brand-dk);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pin { color: var(--pin); }

.search {
  position: relative;
  background: var(--surface);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 4px 4px 4px 18px;
  transition: box-shadow .18s, border-color .18s;
}
.search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(45,168,144,.12), var(--shadow-sm);
}
.search__icon { width: 18px; height: 18px; color: var(--muted); flex: 0 0 18px; }
.search__input {
  border: 0;
  outline: none;
  background: transparent;
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.search__input::placeholder { color: var(--muted); }

/* ====================== LAYOUT ====================== */

.layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 28px 60px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}

/* ====================== SIDEBAR (brand + filters) ====================== */

.sidebar {
  align-self: start;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
}

.filters {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 22px 14px;
}

.filters__title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.filters__list { list-style: none; margin: 0; padding: 0; }

.filter {
  border-top: 1px solid var(--line);
}
.filter:first-child { border-top: 0; }

.filter__head {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 14px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.filter__head:hover { color: var(--brand-dk); }
.filter__icon { font-size: 20px; }
.filter__name { flex: 1; text-align: left; }
.filter__chev {
  width: 18px; height: 18px;
  transition: transform .2s ease;
  color: var(--muted);
}
.filter.is-open .filter__chev { transform: rotate(180deg); }

.filter__body {
  display: none;
  padding: 4px 4px 14px 30px;
}
.filter.is-open .filter__body { display: block; }

.filter__sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  padding: 6px 0;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
}
.filter__sub input { accent-color: var(--brand); }

.filters__clear {
  margin-top: 8px;
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 13.5px;
}
.filters__clear:hover { border-color: var(--brand); color: var(--brand-dk); }

/* ====================== CONTENT BANDS ====================== */

.content { display: flex; flex-direction: column; gap: 32px; }

.band__title, .block__title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.band__icon {
  font-size: 22px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.08));
}

.block__count { color: var(--muted); font-weight: 500; font-size: 14px; }

.band__rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

/* Promo bands (Daily Deals + Hot Deals) always 4 cols on desktop — bigger cards */
#band-today,
#band-hot {
  grid-template-columns: repeat(4, 1fr);
}
#band-today .card,
#band-hot .card {
  transition: transform .22s ease, box-shadow .22s ease;
}
#band-today .card:hover,
#band-hot .card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px -6px rgba(0,0,0,.18);
  z-index: 2;
  position: relative;
}

/* ====================== GRID ====================== */

.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

/* ====================== MORE BUTTON ====================== */

.band__more {
  display: block;
  margin: 12px auto 0;
  padding: 8px 28px;
  background: transparent;
  border: 1.5px solid var(--brand);
  border-radius: 999px;
  color: var(--brand-dk);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, color .15s, transform .12s;
}
.band__more:hover { background: var(--brand); color: white; transform: translateY(-1px); }

.grid__empty {
  margin: 24px 0;
  padding: 32px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
}

/* ====================== CARD ====================== */

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  overflow: hidden;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card__img { transform: scale(1.05); }

.card__badges {
  position: absolute;
  inset: 10px 10px auto 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  letter-spacing: .01em;
}
.badge--date {
  background: rgba(255,255,255,.94);
  color: var(--ink);
}
.badge--cat {
  background: rgba(255,255,255,.94);
  color: var(--brand-dk);
}

.card__body {
  padding: 7px 9px 9px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.card__name {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__sub {
  margin: 0;
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__loc {
  margin: 1px 0 0;
  font-size: 10px;
  color: var(--brand-dk);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ====================== BOTTOM NAV ====================== */

.navbar {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  background: var(--surface);
  border-radius: 999px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 4px;
  border: 1px solid var(--line);
}

.navbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  transition: background .18s, color .18s;
}
.navbar__btn:hover { color: var(--brand-dk); }
.navbar__btn.is-active {
  background: var(--brand-lt);
  color: var(--brand-dk);
}
.navbar__icon { width: 16px; height: 16px; }

/* ====================== PRO VIEW ====================== */

.pro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 28px 140px;
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr;
  gap: 36px;
  align-items: start;
}

.pro__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 32px 28px;
}

.pro__title {
  margin: 0 0 4px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.pro__sub {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.pro__tabs {
  display: flex;
  background: var(--bg-soft);
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.pro__tab {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all .18s;
}
.pro__tab.is-active {
  background: var(--surface);
  color: var(--brand-dk);
  box-shadow: var(--shadow-sm);
}

.pro__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field { display: flex; flex-direction: column; gap: 4px; }
.field__hint { font-size: 11.5px; color: var(--muted); min-height: 14px; }
.field__hint--err { color: #C0331B; }
.field__input--err { border-color: #C0331B !important; box-shadow: 0 0 0 3px rgba(192,51,27,.1) !important; }
.field__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .01em;
}
.field__input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
}
.field__input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(45,168,144,.14);
  background: var(--surface);
}

.pro__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  user-select: none;
  cursor: pointer;
}
.check--block { display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; }
.check input { accent-color: var(--brand); margin-top: 2px; }

.pro__link { color: var(--brand-dk); text-decoration: none; font-weight: 600; }
.pro__link:hover { text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  font-family: inherit;
  transition: transform .12s, box-shadow .18s, background .18s;
}
.btn--block { width: 100%; }
.btn--primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 6px 14px -4px rgba(45,168,144,.45);
}
.btn--primary:hover { background: var(--brand-dk); transform: translateY(-1px); }
.btn--ghost {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dk); }

.pro__divider {
  text-align: center;
  position: relative;
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0;
}
.pro__divider::before, .pro__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 22px);
  height: 1px;
  background: var(--line);
}
.pro__divider::before { left: 0; }
.pro__divider::after  { right: 0; }
.pro__divider span { background: var(--surface); padding: 0 6px; }

.pro__message {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  background: var(--brand-lt);
  color: var(--brand-dk);
  border: 1px solid rgba(45,168,144,.25);
}

.pro__note {
  margin: 18px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}

.pro__perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
}
.perk {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.perk__icon {
  font-size: 24px;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--brand-lt);
  border-radius: 12px;
  flex: 0 0 44px;
}
.perk strong { display: block; font-size: 15px; margin-bottom: 2px; }
.perk p { margin: 0; color: var(--muted); font-size: 13px; }

/* ====================== PAGINATION ====================== */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px 0 8px;
  flex-wrap: wrap;
}

.pag__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  transition: border-color .18s, color .18s, background .18s;
}
.pag__btn:hover:not(:disabled) { border-color: var(--brand); color: var(--brand-dk); }
.pag__btn:disabled { opacity: .35; cursor: not-allowed; }

.pag__pages { display: flex; align-items: center; gap: 4px; }

.pag__page {
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  transition: all .15s;
}
.pag__page:hover { background: var(--bg-soft); color: var(--ink); }
.pag__page.is-active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.pag__dots { color: var(--muted); font-size: 14px; padding: 0 4px; user-select: none; }

.pag__info {
  font-size: 12.5px;
  color: var(--muted);
  padding: 0 6px;
}

/* ====================== AUTH MODAL ====================== */

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 15, 15, .55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 32px 28px;
  position: relative;
  animation: slideUp .22s ease;
}

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

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: background .15s, color .15s, transform .18s, box-shadow .15s;
  z-index: 100;
  cursor: pointer;
}
.auth-close:hover {
  background: var(--ink);
  color: white;
  transform: rotate(90deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.auth-header { margin-bottom: 20px; }
.auth-header h2 { margin: 0 0 4px; font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.auth-header p  { margin: 0; color: var(--muted); font-size: 13.5px; }

.auth-tabs {
  display: flex;
  background: var(--bg-soft);
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.auth-tab {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 9px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  font-family: inherit;
  transition: all .18s;
}
.auth-tab.is-active {
  background: var(--surface);
  color: var(--brand-dk);
  box-shadow: var(--shadow-sm);
}

.btn--google {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--google:hover { border-color: #ccc; box-shadow: var(--shadow); }

.auth-divider {
  text-align: center;
  position: relative;
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 20px);
  height: 1px;
  background: var(--line);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }
.auth-divider span { background: var(--surface); padding: 0 8px; }

.auth-form { display: flex; flex-direction: column; gap: 12px; }

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.auth-message {
  margin-top: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  background: var(--brand-lt);
  color: var(--brand-dk);
  border: 1px solid rgba(45,168,144,.25);
}
.auth-message--err {
  background: #FFF0EE;
  color: #C0331B;
  border-color: rgba(192,51,27,.2);
}

/* ====================== PRO DASHBOARD ====================== */

.auth-card.is-dashboard {
  max-width: min(1180px, 96vw);
  width: min(1180px, 96vw);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
}

.dash-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  height: 90vh;
  max-height: 880px;
  overflow: hidden;
}

/* ── ASIDE ── */
.dash-aside {
  border-right: 1px solid var(--line);
  overflow-y: auto;
  padding: 22px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(180deg, #FAF6F0 0%, var(--bg-soft) 100%);
}

.dash-user-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 6px 16px;
  border-bottom: 1px solid var(--line);
}
.dash-avatar-xl {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
  color: white;
  font-weight: 800;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -2px rgba(45, 168, 144, 0.4);
}
.dash-welcome { margin: 0; font-size: 11px; color: var(--muted); font-weight: 500; }
.dash-name-sm { margin: 1px 0 0; font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }

.dash-nav-group { display: flex; flex-direction: column; gap: 8px; }
.dash-nav-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0 6px;
}

.pro-biz-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }

.pro-biz-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all .14s ease;
  user-select: none;
  border: 1.5px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.pro-biz-nav-item:hover { background: white; border-color: var(--line); }
.pro-biz-nav-item.is-active {
  background: white;
  border-color: var(--brand);
  box-shadow: 0 4px 12px -3px rgba(45, 168, 144, 0.18);
}
.pro-biz-nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--brand-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.pro-biz-nav-item.is-active .pro-biz-nav-icon {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
  filter: grayscale(0);
}
.pro-biz-nav-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.pro-biz-nav-info strong { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--ink); }
.pro-biz-nav-info span   { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pro-biz-unclaim {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, color .12s, opacity .12s;
  cursor: pointer;
  font-family: inherit;
  opacity: 0;
}
.pro-biz-nav-item:hover .pro-biz-unclaim,
.pro-biz-nav-item.is-active .pro-biz-unclaim { opacity: 1; }
.pro-biz-unclaim:hover { background: #FFF0EE; color: #C0331B; }

.dash-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 19px;
  height: 19px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
}

.dash-empty {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 1px dashed var(--line);
  text-align: center;
}

.btn--sm { padding: 8px 14px; font-size: 13px; border-radius: var(--radius-sm); }

/* Billing card — pushed to bottom of aside */
.dash-billing-card {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 12px;
  background: white;
  border: 1.5px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-billing-card.is-trial    { border-color: var(--brand); background: linear-gradient(180deg, #FFFFFF 0%, var(--brand-lt) 100%); }
.dash-billing-card.is-active   { border-color: var(--brand); background: linear-gradient(135deg, var(--brand-lt) 0%, #FFFFFF 100%); }
.dash-billing-card.is-expired  { border-color: #C0331B; background: #FFF0EE; }
.dash-billing-status {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.dash-billing-card.is-trial   .dash-billing-status { color: var(--brand-dk); }
.dash-billing-card.is-active  .dash-billing-status { color: var(--brand-dk); }
.dash-billing-card.is-expired .dash-billing-status { color: #C0331B; }
.dash-billing-detail { font-size: 12.5px; color: var(--ink-soft); line-height: 1.45; }
.dash-billing-detail strong { color: var(--ink); }
.dash-billing-card .btn { padding: 8px 12px; font-size: 12.5px; }
.dash-billing-card.is-expired .btn { background: #C0331B; box-shadow: 0 4px 12px -3px rgba(192,51,27,.4); }
.dash-billing-card.is-expired .btn:hover { background: #9c2814; }

/* Category tag groups (in form Categories section) */
.cat-tag-group { margin-bottom: 14px; }
.cat-tag-group:last-child { margin-bottom: 0; }
.cat-tag-group-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 7px;
}
.cat-tag-group-emoji { font-size: 14px; }

/* ── MAIN ── */
.dash-main {
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

.dash-main-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  color: var(--muted);
  gap: 10px;
  padding: 40px 24px;
}
.dash-empty-icon {
  font-size: 56px;
  opacity: .85;
  margin-bottom: 4px;
  filter: grayscale(0.2);
}
.dash-main-empty p { margin: 0; font-size: 14.5px; max-width: 340px; line-height: 1.55; }
.dash-empty-sub { font-size: 12.5px !important; opacity: .8; }

/* Sticky header */
.dash-biz-edit-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--surface);
  padding: 22px 30px 16px;
  border-bottom: 1px solid var(--line);
}
.dash-biz-edit-title {
  margin: 0 0 3px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  padding-right: 56px;
}
.dash-biz-edit-meta {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.dash-biz-progress {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-biz-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
}
.dash-biz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dk) 100%);
  border-radius: 999px;
  transition: width .3s ease;
  width: 0%;
}
.dash-biz-progress-text {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-dk);
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

/* Form container */
.pro-form-container {
  flex: 1;
  padding: 18px 30px 14px;
}

/* Section accordion */
.pro-form-section {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow .15s, border-color .15s;
}
.pro-form-section:hover { border-color: rgba(45, 168, 144, 0.3); }
.pro-form-section.is-open {
  border-color: var(--brand);
  box-shadow: 0 4px 16px -6px rgba(45, 168, 144, 0.18);
}

.pro-form-section-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  justify-content: space-between;
  transition: background .12s;
}
.pro-form-section-head:hover { background: var(--bg-soft); }
.pro-form-section.is-open .pro-form-section-head {
  background: var(--brand-lt);
  border-bottom: 1px solid rgba(45, 168, 144, 0.2);
}
.pro-form-section-head-left { display: flex; align-items: center; gap: 11px; }
.pro-form-section-icon {
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 9px;
  flex-shrink: 0;
}
.pro-form-section.is-open .pro-form-section-icon {
  background: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.pro-form-section-chev {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform .2s;
  flex-shrink: 0;
}
.pro-form-section.is-open .pro-form-section-chev {
  transform: rotate(180deg);
  color: var(--brand-dk);
}

.pro-form-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Field grid layouts */
.field-row { display: grid; gap: 12px; }
.field-row-2 { grid-template-columns: 1fr 1fr; }
.field-row-3 { grid-template-columns: 1fr 1fr 1fr; }

/* Check tags — bigger, clearer hover & selected state */
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.check-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  user-select: none;
  transition: all .14s;
  background: var(--surface);
  color: var(--ink-soft);
}
.check-tag:hover {
  border-color: var(--brand);
  color: var(--brand-dk);
  transform: translateY(-1px);
}
.check-tag input { display: none; }
.check-tag:has(input:checked),
.check-tag.is-checked {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 6px -2px rgba(45, 168, 144, 0.4);
}

/* Star rating */
.star-picker { display: flex; gap: 4px; }
.star-picker input { display: none; }
.star-picker label {
  font-size: 24px;
  cursor: pointer;
  opacity: .25;
  transition: opacity .12s, transform .1s;
}
.star-picker label:hover,
.star-picker label.is-on { opacity: 1; }
.star-picker label:hover { transform: scale(1.18); }

/* Price picker */
.price-picker { display: flex; gap: 6px; }
.price-picker-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .14s;
  background: var(--surface);
  color: var(--ink-soft);
  user-select: none;
}
.price-picker-opt:hover { border-color: var(--accent); color: var(--accent-dk); }
.price-picker-opt.is-selected {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 6px -2px rgba(240, 141, 60, 0.4);
}

/* Save bar — sticky, stronger visual */
.pro-save-bar {
  position: sticky;
  bottom: 0;
  z-index: 4;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -6px 20px -10px rgba(0, 0, 0, 0.12);
}
.pro-save-status {
  font-size: 12.5px;
  font-weight: 600;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pro-save-status.is-clean { color: var(--muted); }
.pro-save-status.is-dirty { color: var(--accent-dk); }
.pro-save-status.is-saved { color: var(--brand-dk); }
.pro-save-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* Responsive */
@media (max-width: 760px) {
  .auth-card.is-dashboard {
    max-width: 100vw;
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .dash-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: 100vh;
    max-height: 100vh;
  }
  .dash-aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 14px 12px;
    max-height: 50vh;
  }
  .dash-main { padding: 0; }
  .dash-biz-edit-header { padding: 18px 16px 14px; }
  .pro-form-container { padding: 14px 14px 8px; }
  .pro-save-bar { padding: 12px 16px; }
  .field-row-2, .field-row-3 { grid-template-columns: 1fr; }
  .auth-close { top: 10px; right: 10px; }
}

/* ====================== CLAIMING ====================== */

.claim-search-wrap {
  position: relative;
  margin-bottom: 10px;
}
.claim-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted);
  pointer-events: none;
}
.claim-search-input { padding-left: 40px !important; }

.claim-results {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  max-height: 240px;
  overflow-y: auto;
}

.claim-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  transition: background .12s;
}
.claim-item:hover { background: var(--bg-soft); }

.claim-item-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.claim-item-info strong { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.claim-item-info span   { font-size: 12px; color: var(--muted); }

.claim-btn {
  flex: 0 0 auto;
  padding: 6px 14px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: transparent;
  color: var(--brand-dk);
  font-size: 12.5px;
  font-weight: 700;
  font-family: inherit;
  transition: all .15s;
}
.claim-btn:hover { background: var(--brand); color: white; }
.claim-btn--claimed {
  border-color: var(--line);
  color: var(--muted);
  cursor: default;
}
.claim-btn--claimed:hover { background: transparent; color: var(--muted); }
.claim-btn--unclaim {
  border-color: #E85D75;
  color: #E85D75;
}
.claim-btn--unclaim:hover { background: #E85D75; color: white; }

.claim-empty { padding: 12px 14px; color: var(--muted); font-size: 13.5px; }

/* ====================== BUSINESS EDIT PANEL ====================== */

.dash-biz-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
}
.dash-biz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-soft);
  cursor: pointer;
  user-select: none;
}
.dash-biz-header:hover { background: var(--line); }
.dash-biz-actions { display: flex; gap: 6px; flex-shrink: 0; }

.dash-edit-form {
  padding: 14px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-edit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dash-edit-save {
  align-self: flex-end;
  padding: 8px 20px;
  background: var(--brand);
  color: white;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
}
.dash-edit-save:hover { background: var(--brand-dk); }
.dash-edit-saved {
  font-size: 12px;
  color: var(--brand-dk);
  font-weight: 600;
  padding: 6px 0;
  text-align: right;
}
.dash-biz-chevron {
  width: 16px; height: 16px;
  color: var(--muted);
  transition: transform .2s;
  flex-shrink: 0;
}
.dash-biz-block.is-open .dash-biz-chevron { transform: rotate(180deg); }

/* Badge variants */
.badge--yours {
  background: var(--brand-dk);
  color: white;
}
.badge--today-flag {
  background: var(--today);
  color: #7a4f00;
}
.badge--sub {
  background: rgba(255,255,255,.9);
  color: #b8860b;
  padding: 4px 7px;
}

/* Card deal / distance line */
.card__deal {
  margin: 1px 0 0;
  font-size: 9.5px;
  color: var(--accent-dk);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__dist {
  margin: 1px 0 0;
  font-size: 9.5px;
  color: var(--brand-dk);
  font-weight: 600;
}

/* "Use my location" inline button in band title */
.btn--location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  padding: 5px 11px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand-lt);
  color: var(--brand-dk);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  transition: background .15s, transform .12s;
  vertical-align: middle;
}
.btn--location:hover { background: var(--brand); color: white; transform: translateY(-1px); }

/* ====================== RESPONSIVE ====================== */

/* Tablet: tighten to 4 cols */
@media (max-width: 1100px) {
  .band__rail { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .grid       { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}

/* Collapse sidebar */
@media (max-width: 720px) {
  .topbar__inner { padding: 12px 16px 10px; gap: 8px; }
  .topbar__side  { flex: 0 0 80px; }
  .layout {
    grid-template-columns: 1fr;
    padding: 8px 16px 40px;
    gap: 16px;
  }
  .sidebar { position: static; top: auto; }
  .brand   { padding: 4px 4px 12px; }
  .filters { padding: 16px 18px 8px; }
  .auth-card { padding: 24px 20px 20px; }
  .band__rail { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .grid       { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* Small tablet */
@media (max-width: 560px) {
  .band__rail { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .grid       { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .band__more { font-size: 12px; padding: 7px 20px; }
}

/* Mobile: horizontal scroll bands, vertical 2-col All Places */
@media (max-width: 480px) {
  .brand__name { font-size: 24px; }
  .topbar__side { flex: 0 0 60px; }
  .btn--pro { padding: 8px 12px; font-size: 13px; }

  /* All bands → horizontal scroll */
  .band__rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .band__rail::-webkit-scrollbar { display: none; }
  .band__rail .card {
    flex: 0 0 148px;
    scroll-snap-align: start;
  }
  /* Hide band More buttons on mobile (horizontal scroll shows all) */
  .band__rail + .band__more { display: none; }

  /* Promo bands (Daily Deals + Hot Deals) — focal carousel */
  #band-today,
  #band-hot {
    padding-inline: 13%;
    gap: 10px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 13%;
  }
  #band-today .card,
  #band-hot .card {
    flex: 0 0 74%;
    scroll-snap-align: center;
    transform: scale(0.84);
    opacity: 0.65;
    transition: transform .3s ease, opacity .3s ease, box-shadow .3s ease;
    transform-origin: center center;
  }
  #band-today .card.promo-focal,
  #band-hot .card.promo-focal {
    transform: scale(1) !important;
    opacity: 1;
    box-shadow: 0 10px 28px -6px rgba(0,0,0,.22);
    z-index: 2;
    position: relative;
  }

  /* Bump card text for readability */
  .card__name { font-size: 12.5px; }
  .card__sub  { font-size: 10.5px; }
  .card__loc  { font-size: 10.5px; }
  .card__deal,
  .card__dist { font-size: 10px; }

  /* All Places: 2-col vertical scroll */
  .grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  /* Keep More button visible inside #pagination (All Places) */
  #pagination .band__more { display: block; }
}

/* ====================== PRO PAGE (dedicated full-page view) ====================== */
.pro-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.pro-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.pro-page-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.btn--back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s;
}
.btn--back:hover { background: #e8e8e8; }
.pro-page-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pro-page-username {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Layout: full-page dashboard, no longer constrained by modal */
.pro-page .dash-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  padding: 24px 32px;
  flex: 1;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.pro-page .dash-aside {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: fit-content;
  position: sticky;
  top: 80px;
}
.pro-page .dash-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  min-height: 60vh;
}

/* Mobile: stack columns */
@media (max-width: 860px) {
  .pro-page-header { padding: 12px 16px; }
  .pro-page .dash-layout {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .pro-page .dash-aside { position: static; }
}

/* Claim button states for already-claimed-by-others */
.claim-btn--others {
  background: var(--bg-soft) !important;
  color: var(--muted) !important;
  cursor: not-allowed;
  border: 1px dashed var(--border) !important;
}
.claim-review-btn {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  background: #fff7e6;
  color: #b76b00;
  border: 1px solid #ffc56e;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s;
}
.claim-review-btn:hover { background: #ffe7bf; }
.claim-review-btn--sent {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #a5d6a7;
  cursor: default;
}

.claim-owner-note {
  color: #b76b00;
  font-weight: 600;
  font-size: 11px;
}
.claim-item {
  flex-wrap: wrap;
}
.claim-item-info {
  flex: 1 1 auto;
  min-width: 0;
}

/* When on Pro page, lock body scroll on the page itself */
body.on-pro-page {
  overflow: auto;
}

/* Hide topbar Pro/avatar buttons label changes when on pro page */
body.on-pro-page .topbar { display: none; }

/* ====== Promotions manager ====== */
.promo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #fff8f0;
  border: 1px solid #ffd9a8;
  border-radius: 8px;
  margin-bottom: 8px;
}
.promo-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.promo-item-body strong { font-size: 12px; color: #b76b00; }
.promo-item-body span   { font-size: 14px; color: var(--ink); }
.promo-item-body small  { font-size: 11px; color: var(--muted); }
.promo-delete {
  background: transparent;
  border: 1px solid #ffc56e;
  color: #b76b00;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}
.promo-delete:hover { background: #ffe7bf; }
.promo-empty {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  margin: 0 0 12px;
}
.promo-create { margin-top: 12px; }
.promo-quota {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 8px;
}
.promo-quota--pro {
  color: #2e7d32;
  font-weight: 600;
}
.promo-quota--locked {
  color: #c62828;
  font-weight: 600;
}
.promo-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 0;
}
.promo-hint--locked {
  color: #c62828;
  font-weight: 500;
}

/* ====== Hours grid (per-day) ====== */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.hours-row {
  display: grid;
  grid-template-columns: 110px 1fr 24px 1fr 110px;
  align-items: center;
  gap: 10px;
}
.hours-day {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.hours-time {
  padding: 8px 10px;
  font-size: 13px;
}
.hours-time[disabled] {
  background: var(--bg-soft);
  color: var(--muted);
}
.hours-sep {
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}
.hours-closed {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .hours-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    background: var(--bg-soft);
    border-radius: 8px;
  }
  .hours-sep { display: none; }
}

/* ====== Promo create form ====== */
.promo-create {
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: 10px;
}
.promo-create-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.promo-mode-tabs, .promo-freq-tabs, .promo-monthly-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.promo-mode-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}
.promo-mode-tab input { margin: 0; }
.promo-mode-tab:has(input:checked) {
  background: rgba(46,182,138,0.08);
  border-color: var(--brand);
  color: var(--brand);
  font-weight: 600;
}
.promo-mode-body { margin-top: 12px; }
.promo-freq-body { margin-top: 12px; }
.promo-monthly-body { margin-top: 8px; }
.promo-weekdays { margin-top: 6px; }

/* ====== Toast / popup ====== */
#lmb-toast-host {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.lmb-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  min-width: 280px;
  max-width: 420px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: auto;
  font-size: 14px;
}
.lmb-toast.is-in { opacity: 1; transform: translateX(0); }
.lmb-toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  flex: 0 0 28px;
}
.lmb-toast--ok .lmb-toast-icon { background: #2e7d32; }
.lmb-toast--err .lmb-toast-icon { background: #c62828; }
.lmb-toast-msg { flex: 1; color: var(--ink); }
.lmb-toast-close {
  background: transparent;
  border: 0;
  font-size: 16px;
  cursor: pointer;
  color: var(--muted);
  padding: 0 4px;
}
.lmb-toast-close:hover { color: var(--ink); }

.card__deal-when {
  font-size: 10.5px;
  color: var(--muted);
  margin: 2px 0 0;
  font-weight: 500;
}

@media (max-width: 860px) {
  .topbar__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 16px;
  }
  .topbar__brand { text-align: center; }
  .topbar__inner .search-wrap { max-width: 100%; }
  .topbar__side--right { justify-self: end; }
}

/* Search at top of content column */
.content-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: -12px;  /* tighten gap to next band */
}
.content-search .search-wrap {
  max-width: 720px;
}
.active-selections {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.selection-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 12px;
  background: var(--brand-lt);
  color: var(--brand-dk);
  border: 1px solid rgba(45,168,144,.3);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
}
.selection-chip button {
  background: transparent;
  border: 0;
  color: var(--brand-dk);
  font-size: 14px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
}
.selection-chip button:hover { color: var(--hot); }

@media (max-width: 860px) {
  .content-search .search-wrap { max-width: 100%; }
}

.dash-billing-countdown {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0 2px;
}
.dash-billing-countdown strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.dash-billing-countdown span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ====== Detail modal (card click → full info) ====== */
.detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
body.modal-open { overflow: hidden; }
.detail-card {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,.4);
}
.detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: background .15s;
}
.detail-close:hover { background: #fff; }
.detail-hero {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-pro-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #f9c349, #f08d3c);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 2px 8px rgba(240,141,60,.4);
}
.detail-head {
  padding: 20px 24px 10px;
}
.detail-cat-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--brand-lt);
  color: var(--brand-dk);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.detail-name {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}
.detail-loc {
  font-size: 13px;
  color: var(--brand-dk);
}
.detail-dist {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.detail-section {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
}
.detail-section h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.detail-section p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.detail-tagline {
  padding: 14px 24px 0;
  margin: 0;
  font-size: 16px;
  font-style: italic;
  color: var(--brand-dk);
}
.detail-section--unclaimed { background: var(--bg-soft); }
.detail-empty {
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  font-style: italic;
}
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.detail-tag {
  display: inline-block;
  padding: 5px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink);
}
.detail-tag--main {
  background: var(--brand-lt);
  border-color: rgba(45,168,144,.3);
  color: var(--brand-dk);
  font-weight: 600;
}
.detail-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  transition: background .15s, transform .12s;
}
.detail-contact:hover {
  background: #fff;
  transform: translateY(-1px);
}
.detail-contact--book {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.detail-contact--book:hover { background: var(--brand-dk); color: #fff; }

.detail-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.detail-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.detail-hours-row:last-child { border-bottom: 0; }
.detail-hours-row strong { color: var(--ink); }
.detail-hours-row span { color: var(--muted); }
.detail-hours-row em { color: #c62828; font-style: normal; font-size: 12px; }

.detail-promo {
  padding: 12px;
  background: #fff8f0;
  border: 1px solid #ffd9a8;
  border-radius: 10px;
  margin-bottom: 8px;
}
.detail-promo-head {
  font-size: 11.5px;
  font-weight: 600;
  color: #b76b00;
  margin-bottom: 4px;
}
.detail-promo-deal {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.detail-promo-cond {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 560px) {
  .detail-overlay { padding: 0; }
  .detail-card { max-height: 100vh; border-radius: 0; }
  .detail-hero { border-radius: 0; }
}

.detail-maps-link-section {
  text-align: center;
  background: var(--bg-soft);
}
.detail-contact--maps {
  background: #4285F4;
  color: #fff !important;
  border-color: #4285F4;
  font-weight: 600;
  padding: 10px 18px;
}
.detail-contact--maps:hover {
  background: #3367d6;
  color: #fff !important;
}

/* ====== Stats Dashboard ====== */
.stats-dash { padding: 8px 4px; }
.stats-dash-title {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.stats-dash-sub {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13.5px;
}
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.stat-card-icon { font-size: 22px; margin-bottom: 6px; }
.stat-card-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card-label {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}
.stat-chart-section { margin-bottom: 28px; }
.stat-chart-section h3, .stat-biz-section h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.stat-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 100px;
  padding: 6px;
  background: var(--bg-soft);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.chart-bar {
  flex: 1;
  background: var(--brand);
  border-radius: 2px 2px 0 0;
  min-height: 2px;
  transition: opacity .15s;
}
.chart-bar:hover { opacity: .7; }
.stat-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 10.5px;
  color: var(--muted);
}
.biz-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.biz-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.biz-tile:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.biz-tile-name { font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.biz-tile-meta { font-size: 11.5px; color: var(--muted); margin-bottom: 8px; }
.biz-tile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  color: var(--ink-soft);
}
.biz-tile-stats small { color: var(--muted); font-size: 10px; }

@media (max-width: 720px) {
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}

/* Stats bar inside biz edit header */
.biz-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 16px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.biz-stat-mini {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 13px;
}
.biz-stat-mini span { font-size: 14px; }
.biz-stat-mini strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
}
.biz-stat-mini small {
  font-size: 10.5px;
  color: var(--muted);
}

/* Dashboard nav item */
.pro-biz-nav-dashboard {
  background: linear-gradient(135deg, rgba(45,168,144,.08), rgba(45,168,144,.02));
  border: 1px solid rgba(45,168,144,.2);
}
.pro-biz-nav-dashboard.is-active {
  background: var(--brand-lt);
  border-color: var(--brand);
}

/* ====== Description merged section ====== */
.desc-block {
  padding: 16px 0;
  border-top: 1px dashed var(--line);
}
.desc-block:first-child { border-top: 0; padding-top: 0; }
.desc-block-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.desc-block-title small {
  font-weight: 400;
  color: var(--muted);
  font-size: 11.5px;
  margin-left: 4px;
}

/* ====== Add Business modal ====== */
.add-biz-card { max-width: 540px; padding: 32px 28px; }
.add-biz-card h2 { margin: 0 0 6px; font-size: 22px; }
.add-biz-sub { margin: 0 0 20px; color: var(--muted); font-size: 13px; }
.add-biz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.add-biz-tip {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 12px;
  color: var(--muted);
}
.field__label small {
  font-weight: 400;
  color: var(--muted);
  font-size: 11px;
  margin-left: 4px;
}

/* Add link in empty claim search */
.claim-add-link {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  background: var(--brand-lt);
  border: 1px dashed var(--brand);
  border-radius: 8px;
  color: var(--brand-dk);
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  transition: background .15s;
}
.claim-add-link:hover { background: #d3eee6; }
.claim-add-link strong { font-weight: 700; }
.claim-empty p { margin: 0 0 4px; color: var(--muted); font-size: 13px; }

/* Inline business search (Nominatim) */
.biz-search-wrap { position: relative; }
.biz-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin: 0;
  padding: 6px;
  z-index: 250;
  max-height: 280px;
  overflow-y: auto;
}
.biz-search-item {
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: background .12s;
}
.biz-search-item:hover { background: var(--bg-soft); }
.biz-search-item strong { font-size: 13.5px; color: var(--ink); }
.biz-search-item span { font-size: 11.5px; color: var(--muted); }
.biz-coords-info {
  padding: 10px 12px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  font-size: 12.5px;
  color: #2e7d32;
  margin-bottom: 12px;
}
.biz-coords-info small { color: #4a7a4a; font-size: 11px; }

.biz-cat-auto {
  padding: 12px 14px;
  background: var(--brand-lt);
  border: 1px solid rgba(45,168,144,.3);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.biz-cat-auto strong {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  color: var(--brand-dk);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.biz-cat-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--brand);
  color: var(--brand-dk);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.biz-cat-tag--sub {
  background: var(--brand);
  color: #fff;
}
.biz-cat-change {
  margin-left: auto;
  padding: 4px 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 11.5px;
  color: var(--muted);
  cursor: pointer;
}
.biz-cat-change:hover { background: var(--bg-soft); color: var(--ink); }

/* ====== Unclaim confirmation modal ====== */
.unclaim-card {
  max-width: 480px;
  padding: 32px 28px 24px;
  text-align: center;
  border-top: 5px solid var(--hot);
}
.unclaim-icon {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--hot);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.unclaim-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.unclaim-msg {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.unclaim-warning {
  text-align: left;
  background: #fff5f3;
  border: 1px solid #ffd5cc;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 22px;
}
.unclaim-warning strong { display: block; margin-bottom: 6px; color: var(--hot); font-size: 13px; }
.unclaim-warning ul {
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}
.unclaim-warning li { margin-bottom: 4px; }
.unclaim-keep {
  margin: 10px 0 0;
  padding: 8px 10px;
  background: rgba(45,168,144,.08);
  border-radius: 6px;
  color: var(--brand-dk);
  font-size: 12px;
  font-style: italic;
  text-align: center;
}
.unclaim-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.unclaim-actions .btn { min-width: 130px; }

.btn--danger {
  background: var(--hot);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s;
}
.btn--danger:hover { background: #c93b2c; }

.biz-coords-info--warn {
  background: #fff5f3;
  border-color: #ffc1b8;
  color: #b34a3a;
}
.biz-coords-info--warn small { color: #c46a5a; }
.biz-dup-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.biz-dup-actions p {
  width: 100%;
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 13px;
}
.biz-dup-actions .btn { padding: 7px 14px; font-size: 13px; }

/* ====================== DAILY DEAL TABS ====================== */

.daily-deal-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
}

.deal-day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  min-width: 60px;
}
.deal-day-tab:hover { border-color: var(--brand); }
.deal-day-tab.is-active {
  border-color: var(--today);
  background: rgba(242,178,58,.1);
  color: #b97d00;
}
.deal-day-tab__name {
  font-weight: 700;
  font-size: 13px;
}
.deal-day-tab__date {
  font-size: 10.5px;
  color: var(--muted);
}
.deal-day-tab.is-active .deal-day-tab__date {
  color: #b97d00;
}

/* ====================== PLACE VOTES ====================== */

.card__votes {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.vote-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.vote-btn:hover { border-color: var(--brand); color: var(--brand); }
.vote-btn--like.is-voted  { border-color: #2DA890; background: var(--brand-lt); color: #1a7a66; }
.vote-btn--dislike.is-voted { border-color: var(--hot); background: #fff0ef; color: var(--hot); }
.vote-count { font-size: 12px; }

/* ====================== PRO PROMOTIONS TAB ====================== */

.promo-tab-page {
  padding: 4px 0 40px;
}

/* Financial summary */
.promo-fin-summary {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin: 18px 0 22px;
}
.promo-fin-summary--trial {
  background: var(--brand-lt);
  border-color: var(--brand);
}
.promo-fin-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
}
.promo-fin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.promo-fin-card {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.promo-fin-card--next { border: 1.5px solid var(--brand); background: var(--brand-lt); }
.promo-fin-label  { font-size: 11.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.promo-fin-amount { font-size: 15px; font-weight: 700; }
.promo-fin-amount--date { font-size: 13.5px; }
.promo-fin-sub    { font-size: 11px; color: var(--muted); }
.promo-fin-hint   { font-size: 13px; color: var(--ink-soft); margin: 6px 0 0; }

/* Status filter tabs */
.promo-filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.promo-filter-tab {
  padding: 7px 14px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.promo-filter-tab:hover { border-color: var(--brand); color: var(--brand); }
.promo-filter-tab.is-active { border-color: var(--brand); background: var(--brand-lt); color: var(--brand-dk); }
.promo-filter-count {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
}
.promo-filter-tab.is-active .promo-filter-count { background: #fff; }

/* Promo rows */
.promo-tab-list { display: flex; flex-direction: column; gap: 10px; }
.promo-tab-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.promo-tab-row-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.promo-tab-row-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.promo-tab-row-body strong { font-size: 14px; }
.promo-tab-deal    { font-size: 13.5px; color: var(--ink); }
.promo-tab-schedule { font-size: 12px; color: var(--brand-dk); font-weight: 600; }
.promo-tab-cond    { font-size: 11.5px; color: var(--muted); font-style: italic; }
.promo-tab-created { font-size: 11px; color: var(--muted); }
.promo-tab-row-actions { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }

/* Status badges */
.promo-status { font-size: 11.5px; font-weight: 700; white-space: nowrap; padding-top: 3px; }
.promo-status--active   { color: var(--brand-dk); }
.promo-status--upcoming { color: #b97d00; }
.promo-status--past     { color: var(--muted); }

/* Danger ghost button */
.btn--danger-ghost {
  background: transparent;
  border: 1.5px solid var(--hot);
  color: var(--hot);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: all .15s;
}
.btn--danger-ghost:hover { background: var(--hot); color: #fff; }

/* Pro nav promotions highlight */
.pro-biz-nav-promos { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 4px; }

/* Claim search — manual creation links */
.claim-manual-link {
  display: block;
  background: none;
  border: none;
  padding: 6px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
}
.claim-manual-link:hover { color: var(--brand-dk); }
.claim-manual-link strong { color: var(--brand-dk); }
.claim-not-found-footer {
  list-style: none;
  border-top: 1px solid var(--line);
  padding: 8px 12px 6px;
}

/* Promo card — name-only body */
.card__name--promo {
  font-size: 13px;
  text-align: center;
  padding: 8px 10px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Plan selection modal */
.plan-options { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.plan-option  { display: flex; align-items: stretch; cursor: pointer; }
.plan-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.plan-option-body {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color .15s, background .15s;
}
.plan-option:hover .plan-option-body { border-color: var(--brand); background: var(--brand-lt); }
.plan-option input:checked ~ .plan-option-body {
  border-color: var(--brand);
  background: var(--brand-lt);
  box-shadow: 0 0 0 2px var(--brand);
}
.plan-option-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-option-emoji { font-size: 16px; }
.plan-option-name  { font-size: 14px; font-weight: 700; flex: 1; }
.plan-option-price { font-size: 13px; font-weight: 600; color: var(--brand-dk); }
.plan-option-desc  { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }
