:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --surface: #fffaf0;
  --surface-strong: #ffffff;
  --ink: #111111;
  --muted: #5e5e5e;
  --line: #e7e0cf;
  --brand: #f9c51b;
  --brand-dark: #3a3a3a;
  --good: #1f8a58;
  --bad: #a8442f;
  --shadow: 0 18px 50px rgba(71, 45, 10, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(242, 183, 5, 0.22), transparent 340px),
    var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.app-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: var(--brand);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.brand-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 900;
}

.brand-subtitle {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.install-button,
.primary-button,
.actions a,
.actions button {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy {
  padding: 28px;
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.stat {
  min-width: 116px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: white;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.assistant-panel {
  border-radius: 26px;
  background: var(--surface-strong);
  padding: 18px;
  box-shadow: var(--shadow);
}

.assistant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.assistant-head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.assistant-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.chat-thread {
  display: grid;
  gap: 10px;
  max-height: 270px;
  overflow: auto;
  margin: 8px 0 14px;
  padding: 4px;
}

.chat-bubble {
  width: fit-content;
  max-width: 88%;
  border-radius: 18px;
  padding: 11px 13px;
  line-height: 1.42;
  font-size: 0.94rem;
}

.chat-bubble.assistant {
  justify-self: start;
  background: #fff4d2;
  border: 1px solid #f2d4a4;
}

.chat-bubble.user {
  justify-self: end;
  background: var(--ink);
  color: #fff7de;
}

.chat-bubble small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.75rem;
}

.chat-bubble.typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
}

.chat-bubble.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9c6800;
  animation: typingPulse 1s infinite ease-in-out;
}

.chat-bubble.typing span:nth-child(2) {
  animation-delay: 0.14s;
}

.chat-bubble.typing span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes typingPulse {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.42; }
  40% { transform: translateY(-3px); opacity: 1; }
}

.reply-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
}

.reply-suggestions button {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid #f2d4a4;
  border-radius: 999px;
  background: #fff8e9;
  color: var(--ink);
  padding: 0 11px;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--good);
  font-size: 0.8rem;
  font-weight: 800;
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--good);
}

.business-body {
  min-height: 100vh;
  background: #f7f6f2;
  color: var(--ink);
}

.business-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px;
}

.business-topbar,
.business-hero,
.business-kpis,
.business-module-hub,
.business-grid {
  margin-bottom: 16px;
}

.business-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-task-nav,
.page-top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.panel-task-nav a,
.page-top-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 0 13px;
  font-size: 0.84rem;
  font-weight: 900;
}

.panel-task-nav a:hover,
.page-top-nav a:hover,
.page-top-nav a.active {
  background: var(--ink);
  color: white;
}

.business-hero {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px);
  gap: 18px;
  align-items: end;
  border-radius: 26px;
  background: linear-gradient(135deg, #111111, #3a3a3a);
  color: white;
  padding: 24px;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.18);
}

.business-hero h1 {
  margin: 10px 0 8px;
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 0.98;
}

.business-hero p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.business-hero label,
.business-card label {
  display: grid;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 900;
}

.business-hero select,
.business-card input,
.business-card select,
.business-card textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(67, 67, 67, 0.14);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
}

.business-card textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.business-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.business-kpis article,
.business-card {
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(34, 24, 49, 0.07);
}

.business-kpis strong {
  display: block;
  font-size: 1.8rem;
}

.business-kpis span,
.business-card p,
.business-card small {
  color: #5e5e5e;
}

.business-module-hub {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(249, 197, 27, 0.28), transparent 32%),
    rgba(255, 255, 255, 0.94);
  padding: 16px;
  box-shadow: 0 16px 38px rgba(34, 24, 49, 0.08);
}

.business-module-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.business-module-head h2,
.business-module-head p {
  margin: 0;
}

.business-module-head h2 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.02;
}

.business-module-head p {
  max-width: 620px;
  color: #5e5e5e;
  font-weight: 750;
  line-height: 1.45;
}

.business-module-stats {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 390px;
}

.business-module-stats span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #111111;
  color: white;
  padding: 0 12px;
  font-weight: 850;
}

.business-module-stats strong {
  color: var(--brand);
  font-size: 1.1rem;
}

.business-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.business-module-card {
  min-height: 154px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 20px;
  background: #f7f6f2;
  color: var(--ink);
  padding: 14px;
}

.business-module-card.primary {
  background: linear-gradient(135deg, #111111, #4f3605);
  color: white;
}

.business-module-card small {
  color: inherit;
  font-weight: 950;
  opacity: 0.72;
}

.business-module-card strong {
  font-size: 1.25rem;
  line-height: 1.1;
}

.business-module-card span {
  color: inherit;
  font-weight: 750;
  line-height: 1.38;
  opacity: 0.76;
}

.business-command-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 14px;
  margin-bottom: 16px;
}

.business-command-panel,
.business-focus-card {
  min-width: 0;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(34, 24, 49, 0.08);
}

.business-command-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.business-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.business-panel-title span {
  font-weight: 950;
  font-size: 1.05rem;
}

.business-panel-title small {
  border-radius: 999px;
  background: #fff4d2;
  color: #5a4210;
  padding: 6px 9px;
  font-weight: 900;
}

.business-command-hero {
  display: grid;
  gap: 8px;
  border-radius: 18px;
  background: linear-gradient(135deg, #191919, #44310a);
  color: white;
  padding: 18px;
}

.business-command-hero small {
  width: fit-content;
  border-radius: 999px;
  background: rgba(249, 197, 27, 0.18);
  color: #ffe39c;
  padding: 5px 8px;
  font-weight: 900;
}

.business-command-hero strong {
  font-size: clamp(1.25rem, 3vw, 2.15rem);
  line-height: 1.08;
}

.business-command-hero span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.business-command-hero a,
.business-quick-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
}

.business-command-hero a {
  justify-self: start;
  background: var(--brand);
  color: var(--ink);
  padding: 0 14px;
}

.business-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.business-quick-actions a {
  background: #fff4d2;
  color: var(--ink);
  padding: 0 10px;
  text-align: center;
}

.business-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.business-focus-card {
  display: grid;
  gap: 5px;
  padding: 14px;
}

.business-focus-card small,
.business-focus-card span {
  color: #5e5e5e;
  font-weight: 800;
}

.business-focus-card strong {
  font-size: 1.75rem;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.business-grid.lower {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.business-card {
  display: grid;
  gap: 12px;
}

.business-card h2 {
  margin: 0;
}

.business-card button,
.business-card a {
  justify-self: start;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #f9c51b;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.toggle-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 9px;
}

.toggle-row input {
  width: 20px;
  min-height: auto;
}

.menu-studio-summary,
.business-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-studio-summary span,
.business-checklist span {
  border-radius: 999px;
  background: #fff4d2;
  color: #3a3a3a;
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 900;
}

.business-checklist span:not(.ok) {
  background: #f9e9e3;
  color: #a8442f;
}

.business-menu-list {
  display: grid;
  gap: 10px;
}

.business-menu-list article {
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 16px;
  background: #fffaf0;
  padding: 12px;
}

.business-menu-list strong,
.business-menu-list span {
  display: block;
}

.business-menu-list span {
  margin-top: 4px;
  color: #5e5e5e;
  font-size: 0.85rem;
}

.menu-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.menu-row-actions button {
  min-height: 34px;
  background: white;
  color: #111111;
  border: 1px solid rgba(67, 67, 67, 0.12);
}

.business-invite-panel {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(249, 197, 27, 0.42);
  border-radius: 16px;
  background: #fff8e0;
  padding: 12px;
}

.business-invite-panel[hidden] {
  display: none;
}

.business-invite-panel strong,
.business-invite-panel span {
  display: block;
}

.business-error {
  margin: 12px;
  border-radius: 14px;
  background: #f9e9e3;
  color: #a8442f;
  padding: 12px;
  font-weight: 900;
}

.venue-page-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(249, 197, 27, 0.28), transparent 360px),
    #fffaf0;
}

.venue-page-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 18px;
}

.venue-page-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0 18px;
}

.venue-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  align-items: stretch;
  border-radius: 28px;
  background: #201713;
  color: white;
  padding: 22px;
  box-shadow: var(--shadow);
}

.venue-profile-hero h1 {
  margin: 12px 0 10px;
  max-width: 680px;
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: .96;
  letter-spacing: 0;
}

.venue-profile-hero p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.venue-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.venue-profile-actions a,
.venue-profile-actions button {
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #201713;
  min-height: 42px;
  padding: 0 15px;
  font-weight: 900;
  cursor: pointer;
}

.venue-profile-card {
  display: grid;
  align-content: center;
  gap: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .11);
  padding: 18px;
}

.venue-profile-card strong {
  font-size: 1.7rem;
}

.venue-profile-card span,
.venue-profile-card small {
  color: rgba(255, 255, 255, .72);
}

.venue-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.venue-gallery-section,
.venue-quick-facts,
.venue-offer-card,
.venue-chip-section,
.venue-about-section {
  margin: 16px 0;
}

.venue-gallery-cover {
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  border-radius: 28px;
  background: #151125 center/cover;
  padding: 16px;
  box-shadow: 0 16px 38px rgba(34, 24, 49, 0.12);
}

.venue-gallery-cover span {
  border-radius: 999px;
  background: rgba(21, 17, 37, 0.68);
  color: white;
  padding: 9px 12px;
  font-weight: 950;
}

.venue-gallery-strip {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.venue-gallery-strip button {
  flex: 0 0 92px;
  height: 76px;
  border: 3px solid white;
  border-radius: 16px;
  background: #f1edf6 center/cover;
  box-shadow: 0 8px 20px rgba(34, 24, 49, 0.12);
  cursor: pointer;
}

.venue-quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.venue-quick-facts article,
.venue-offer-card,
.venue-chip-section,
.venue-about-section {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 28px rgba(32, 23, 19, .06);
}

.venue-quick-facts article {
  padding: 16px;
}

.venue-quick-facts small,
.venue-quick-facts strong,
.venue-offer-card strong,
.venue-offer-card span {
  display: block;
}

.venue-quick-facts small {
  color: var(--muted);
  font-weight: 900;
}

.venue-quick-facts strong {
  margin-top: 6px;
  font-size: 1.08rem;
}

.venue-offer-card {
  min-height: 112px;
  justify-content: center;
  padding: 18px 20px 18px 92px;
  background: linear-gradient(135deg, #4a247a, #9b48ff);
  color: white;
  position: relative;
  overflow: hidden;
}

.venue-offer-card::before {
  content: "%";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 1.8rem;
  font-weight: 1000;
}

.venue-offer-card span {
  margin-top: 6px;
  opacity: 0.88;
  line-height: 1.45;
  font-weight: 850;
}

.venue-chip-section,
.venue-about-section {
  padding: 18px;
}

.venue-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.venue-chip-grid span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border-radius: 16px;
  background: #fffaf0;
  color: var(--ink);
  padding: 0 14px;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(34, 24, 49, 0.08);
}

.venue-about-copy {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.venue-about-copy p {
  margin: 0 0 12px;
}

.venue-list-studio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr) minmax(260px, 0.82fr);
  gap: 12px;
  margin: 16px 0;
}

.venue-info-grid article,
.venue-list-studio article,
.venue-list-studio form,
.venue-campaigns article,
.venue-menu-category {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(32, 23, 19, .06);
}

.venue-info-grid strong,
.venue-info-grid span,
.venue-list-studio strong,
.venue-list-studio span,
.venue-campaigns strong,
.venue-campaigns span {
  display: block;
}

.venue-info-grid span,
.venue-list-studio span,
.venue-campaigns span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.venue-list-studio small {
  color: var(--muted);
  font-weight: 900;
}

.venue-list-studio form {
  display: grid;
  gap: 10px;
}

.venue-list-fit-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.venue-list-fit-card {
  min-width: 0;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(249, 197, 27, 0.34);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(249, 197, 27, 0.16), rgba(255, 255, 255, 0.94));
  padding: 14px;
}

.venue-list-fit-card small,
.venue-list-fit-card span,
.venue-list-fit-notes span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.venue-list-fit-card strong {
  font-size: 1rem;
}

.venue-list-fit-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.venue-list-fit-card em {
  border-radius: 999px;
  background: rgba(25, 25, 25, 0.08);
  padding: 5px 8px;
  font-style: normal;
  font-weight: 900;
}

.venue-list-fit-notes {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}

.venue-list-fit-notes span {
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
}

.venue-list-studio label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.venue-list-studio select,
.venue-list-studio input {
  min-height: 42px;
  border: 1px solid rgba(67, 67, 67, 0.14);
  border-radius: 14px;
  padding: 0 12px;
  font: inherit;
}

.venue-list-studio button,
.venue-list-studio a {
  justify-self: start;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.venue-list-studio button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.venue-campaigns {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.venue-menu-section {
  display: grid;
  gap: 12px;
  padding-bottom: 28px;
}

.venue-menu-categories {
  display: grid;
  gap: 12px;
}

.venue-menu-category h3 {
  margin: 0 0 8px;
  text-transform: capitalize;
}

.venue-menu-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.venue-menu-item img {
  width: 72px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  background: #f1edf6;
}

.venue-menu-item strong,
.venue-menu-item span {
  display: block;
}

.venue-menu-item span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.venue-menu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.venue-menu-badges:empty {
  display: none;
}

.venue-menu-badges em {
  border-radius: 999px;
  background: #fff3c4;
  color: #5f3b00;
  padding: 4px 8px;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
}

.venue-menu-item b {
  white-space: nowrap;
}

.public-list-venues {
  display: grid;
  gap: 12px;
}

.public-list-venue {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 13px;
  box-shadow: var(--shadow);
}

.public-list-venue > span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #4b1f6f;
  background: rgba(249, 197, 27, 0.22);
  font-weight: 900;
}

.public-list-venue div {
  display: grid;
  gap: 4px;
}

.public-list-venue small {
  color: var(--muted);
}

.public-list-note {
  margin: 4px 0 0;
  color: var(--ink);
  line-height: 1.45;
}

.public-list-tags {
  color: #4b1f6f;
  font-weight: 900;
}

.public-list-venue a {
  border-radius: 999px;
  padding: 9px 12px;
  color: #fff;
  background: #201713;
  font-weight: 900;
  text-decoration: none;
}

.public-user-hero {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.public-user-avatar {
  width: 82px;
  height: 82px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--brand));
  box-shadow: var(--shadow-soft);
  font-size: 1.45rem;
  font-weight: 950;
}

.public-profile-lists {
  display: grid;
  gap: 14px;
}

.public-profile-list {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 16px 35px rgba(17, 24, 39, 0.08);
}

.public-profile-list div {
  display: grid;
  gap: 7px;
}

.public-profile-list p {
  margin: 0;
  color: var(--muted);
}

.public-profile-list small {
  color: var(--muted);
}

.public-profile-list a {
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #8a3ffc);
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.public-profile-list .copy-list-profile-link {
  background: #111827;
}

.public-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.public-profile-tags span {
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--purple);
  background: rgba(86, 38, 132, 0.08);
  font-size: 0.8rem;
  font-weight: 800;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px;
}

.campaign-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(67, 67, 67, .12);
  border-radius: 18px;
  background: #201713;
  color: white;
  padding: 16px;
  min-height: 132px;
}

.campaign-card small,
.campaign-card span {
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.campaign-card a {
  justify-self: start;
  border-radius: 999px;
  background: var(--brand);
  color: #201713;
  padding: 9px 12px;
  font-weight: 900;
}

.campaign-card.empty {
  background: white;
  color: var(--ink);
}

.campaign-card.empty span {
  color: var(--muted);
}

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 12px;
}

.chip {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 13px;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.chip.active {
  background: var(--brand);
  border-color: var(--brand);
}

.search-form {
  display: grid;
  gap: 10px;
}

.search-form textarea,
.search-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
  color: var(--ink);
  outline: none;
}

.search-form textarea {
  min-height: 116px;
  resize: vertical;
  padding: 14px;
  line-height: 1.45;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.form-row input {
  min-height: 46px;
  padding: 0 14px;
}

.assistant-answer {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: #211812;
  color: #fff7de;
}

.assistant-answer p {
  margin: 0;
  line-height: 1.45;
  font-weight: 700;
}

.assistant-answer small {
  display: block;
  margin-top: 8px;
  color: #e7cf93;
}

.install-hint {
  display: none;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.install-hint.show {
  display: block;
}

.results-wrap {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.venue-card,
.route-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-strong);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(71, 45, 10, 0.08);
}

.venue-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-card h3,
.route-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.status {
  flex: 0 0 auto;
  align-self: flex-start;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 900;
}

.status.open {
  background: #e4f7ed;
  color: var(--good);
}

.status.closed {
  background: #f9e9e3;
  color: var(--bad);
}

.note {
  color: var(--muted);
  line-height: 1.45;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.facts span {
  border-radius: 999px;
  background: #f6eddc;
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-picks {
  display: grid;
  gap: 7px;
  margin: 12px 0;
  border: 1px solid #f2d4a4;
  border-radius: 14px;
  background: #fff8e9;
  padding: 12px;
}

.menu-picks strong {
  font-size: 0.82rem;
  color: #7c4b11;
}

.menu-picks span {
  color: var(--ink);
  font-weight: 850;
}

.reasons {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.actions a,
.actions button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.85rem;
}

.actions a:nth-child(2) {
  background: var(--brand);
  color: var(--ink);
}

.actions button {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.feedback-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.feedback-row button {
  min-height: 32px;
  border: 1px solid #f2d4a4;
  border-radius: 999px;
  background: #fff8e9;
  color: var(--ink);
  padding: 0 10px;
  font-weight: 850;
  cursor: pointer;
}

.feedback-row.answered button {
  opacity: 0.45;
  pointer-events: none;
}

.feedback-row.answered span {
  color: var(--good);
  font-weight: 900;
}

.route-section {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}

.section-title span {
  font-weight: 900;
}

.section-title small {
  color: var(--muted);
}

.route-card {
  background: #201713;
  color: #fff7de;
}

.route-card p {
  color: #e7cf93;
}

.route-card strong {
  display: block;
  margin-top: 10px;
}

.habit-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.habit-panel > div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  padding: 16px;
}

.habit-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.habit-item {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffaf0;
  color: var(--ink);
  padding: 11px 12px;
  text-align: left;
}

.habit-item strong {
  display: block;
  font-size: 0.92rem;
}

.habit-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
}

.empty-habit {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-note {
  margin: 22px 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

@media (max-width: 840px) {
  .app-shell {
    padding: 12px;
  }

  .business-shell {
    padding: 12px;
  }

  .business-hero,
  .business-module-head,
  .business-module-grid,
  .business-command-grid,
  .business-focus-grid,
  .business-grid,
  .business-grid.lower {
    grid-template-columns: 1fr;
  }

  .business-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar {
    align-items: flex-start;
  }

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

  .habit-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .assistant-panel {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 22px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }
}

@media (max-width: 520px) {
  .business-topbar {
    align-items: flex-start;
  }

  .business-kpis {
    grid-template-columns: 1fr;
  }

  .business-module-stats {
    justify-content: flex-start;
  }

  .business-hero {
    border-radius: 22px;
    padding: 18px;
  }

  .install-button {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .user-home-columns,
  .user-home-stats {
    grid-template-columns: 1fr;
  }

  .primary-button {
    min-height: 48px;
  }

  .venue-top,
  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Chat-first product shell */
.chat-body {
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(242, 183, 5, 0.24), transparent 360px),
    #f6efe2;
}

.chat-app {
  width: min(920px, 100%);
  height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255, 250, 241, 0.74);
  border-left: 1px solid rgba(234, 223, 204, 0.8);
  border-right: 1px solid rgba(234, 223, 204, 0.8);
}

.chat-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: max(12px, env(safe-area-inset-top)) 16px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(14px);
  z-index: 5;
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-chat-button {
  min-height: 38px;
  border: 1px solid rgba(78, 50, 16, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.84rem;
  cursor: pointer;
}

.new-chat-button:hover {
  background: white;
}

.admin-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  background: white;
}

.chat-main {
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}

.chat-scroll {
  min-height: 0;
  overflow-y: auto;
  padding: 16px 16px 22px;
  scroll-behavior: smooth;
}

.chat-scroll .chat-thread {
  max-height: none;
  overflow: visible;
  margin: 0 auto 14px;
  padding: 0;
}

.chat-scroll .chat-bubble {
  max-width: min(680px, 88%);
  box-shadow: 0 8px 24px rgba(71, 45, 10, 0.07);
}

.chat-results {
  width: min(760px, 100%);
  margin: 12px auto 0;
}

.chat-results .venue-card,
.chat-results .route-card {
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(71, 45, 10, 0.07);
}

.chat-card-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: end;
  color: var(--muted);
  font-size: 0.82rem;
}

.chat-card-label strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.chat-memory {
  width: min(760px, 100%);
  margin: 14px auto 0;
}

.chat-memory > div {
  background: rgba(255, 255, 255, 0.76);
}

.chat-composer-wrap {
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.96);
  backdrop-filter: blur(14px);
  padding: 10px 14px calc(12px + env(safe-area-inset-bottom));
}

.compact-status {
  width: min(760px, 100%);
  margin: 0 auto 8px;
  padding: 10px 12px;
  border-radius: 14px;
}

.compact-status p {
  font-size: 0.9rem;
}

.compact-status small {
  margin-top: 4px;
}

.chat-composer-wrap .reply-suggestions,
.chat-composer-wrap .compact-chips,
.chat-composer {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.compact-chips {
  padding: 0 0 8px;
}

.compact-chips .chip {
  min-height: 32px;
  font-size: 0.8rem;
}

.chat-composer {
  display: grid;
  grid-template-columns: 1fr 92px auto;
  gap: 8px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(71, 45, 10, 0.1);
}

.chat-composer textarea,
.chat-composer input {
  border: 0;
  background: transparent;
  border-radius: 12px;
}

.chat-composer textarea {
  min-height: 42px;
  max-height: 110px;
  padding: 10px;
}

.chat-composer input {
  min-height: 42px;
  padding: 0 8px;
  border-left: 1px solid var(--line);
  border-radius: 0;
}

.send-button {
  min-height: 42px;
  padding: 0 14px;
}

.send-button:disabled {
  opacity: 0.56;
  cursor: wait;
}

.chat-composer-wrap .install-hint {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.conversion-nudge {
  width: min(760px, 100%);
  margin: 8px auto 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  border: 1px solid #f2d4a4;
  border-radius: 16px;
  background: #fff8e9;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(71, 45, 10, 0.08);
}

.conversion-nudge[hidden] {
  display: none;
}

.conversion-nudge strong,
.conversion-nudge span {
  display: block;
}

.conversion-nudge strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.conversion-nudge span {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.conversion-nudge button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 11px;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.conversion-nudge .ghost-nudge {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.conversion-nudge.answered button {
  opacity: 0.46;
  pointer-events: none;
}

@media (max-width: 720px) {
  .chat-app {
    border: 0;
  }

  .chat-header {
    min-height: 66px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .chat-header .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .admin-link {
    display: none;
  }

  .new-chat-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .chat-scroll {
    padding: 12px 10px 16px;
  }

  .chat-memory {
    grid-template-columns: 1fr;
  }

  .chat-composer {
    grid-template-columns: 1fr auto;
  }

  .chat-composer input {
    grid-column: 1 / -1;
    grid-row: 2;
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 34px;
  }

  .send-button {
    min-width: 72px;
  }

  .conversion-nudge {
    grid-template-columns: 1fr;
  }

  .conversion-nudge button {
    width: 100%;
  }

  .compact-status {
    display: none;
  }
}

/* City-guide mobile shell */
.guide-body {
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: #f5f2f8;
}

.guide-app {
  position: relative;
  width: min(520px, 100%);
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #f5f2f8;
  color: #151125;
  box-shadow: 0 0 0 1px rgba(70, 39, 112, 0.08);
}

.guide-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: max(16px, env(safe-area-inset-top)) 18px 16px;
  background: rgba(245, 242, 248, 0.94);
  backdrop-filter: blur(18px);
  z-index: 8;
}

.guide-brand .brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #3a3a3a;
  color: #fff;
  box-shadow: 0 14px 34px rgba(58, 58, 58, 0.18);
}

.guide-brand .brand-title {
  color: #3a3a3a;
  font-size: 1.02rem;
}

.guide-brand .brand-subtitle {
  color: #80778b;
}

.guide-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.round-action,
.login-action,
.soft-button {
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.round-action {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #fff;
  color: #211331;
  font-size: 1.45rem;
  box-shadow: 0 12px 28px rgba(53, 33, 80, 0.12);
}

.round-action.has-alert {
  background: #201713;
  color: #f9c51b;
}

.login-action {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 18px;
  background: #3a3a3a;
  color: #fff;
  box-shadow: 0 12px 28px rgba(58, 58, 58, 0.18);
}

.menu-action {
  font-size: 1.15rem;
}

.guide-scroll {
  height: calc(100vh - 104px);
  overflow-y: auto;
  padding-bottom: 156px;
  scroll-behavior: smooth;
}

.story-hero {
  min-height: 240px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 22px;
  padding: 26px 22px;
  color: white;
  background:
    linear-gradient(180deg, rgba(20, 15, 24, 0.08), rgba(20, 15, 24, 0.78)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1000&q=80") center/cover;
}

.story-pill,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(58, 58, 58, 0.9);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-hero h1 {
  max-width: 430px;
  margin: 12px 0 6px;
  font-size: 2rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.story-hero p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.hero-dots,
.pager-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-dots {
  align-self: end;
  padding-bottom: 5px;
}

.hero-dots span,
.pager-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dots span:first-child,
.pager-dots span:first-child {
  width: 28px;
  background: #3a3a3a;
}

.nearby-card {
  width: calc(100% - 36px);
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 0 18px 26px;
  border: 0;
  border-radius: 28px;
  padding: 16px;
  color: white;
  text-align: left;
  background: linear-gradient(135deg, #3a3a3a, #f9c51b);
  box-shadow: 0 18px 42px rgba(92, 38, 152, 0.24);
  cursor: pointer;
}

.nearby-icon,
.nearby-arrow {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
}

.nearby-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  font-size: 2rem;
}

.nearby-arrow {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  font-size: 2.1rem;
}

.nearby-card strong,
.nearby-card small {
  display: block;
}

.nearby-card strong {
  font-size: 1.15rem;
  line-height: 1.12;
}

.nearby-card small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.platform-launchpad {
  display: grid;
  gap: 14px;
  margin: 0 18px 22px;
  border-radius: 28px;
  padding: 16px;
  background:
    radial-gradient(circle at 8% 10%, rgba(249, 197, 27, 0.34), transparent 28%),
    linear-gradient(135deg, #201713, #4a246f 74%, #f9c51b);
  color: white;
  box-shadow: 0 18px 44px rgba(34, 24, 49, 0.16);
}

.platform-launchpad-copy {
  display: grid;
  gap: 8px;
}

.platform-launchpad-copy h2,
.platform-launchpad-copy p {
  margin: 0;
}

.platform-launchpad-copy h2 {
  font-size: clamp(1.25rem, 5vw, 1.9rem);
  line-height: 1.08;
}

.platform-launchpad-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  line-height: 1.45;
}

.platform-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.platform-mode-card {
  min-width: 0;
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 14px;
  color: white;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.platform-mode-card.food {
  background: linear-gradient(145deg, rgba(249, 197, 27, 0.24), rgba(255, 255, 255, 0.1));
}

.platform-mode-card.social {
  background: linear-gradient(145deg, rgba(122, 74, 216, 0.32), rgba(255, 255, 255, 0.1));
}

.platform-mode-card.city {
  background: linear-gradient(145deg, rgba(31, 138, 88, 0.28), rgba(255, 255, 255, 0.1));
}

.platform-mode-card.assistant {
  cursor: pointer;
  font: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(249, 197, 27, 0.18));
}

.platform-mode-card small,
.platform-mode-card strong,
.platform-mode-card span,
.platform-mode-card b {
  display: block;
}

.platform-mode-card small {
  color: #f9c51b;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.platform-mode-card strong {
  font-size: 1.12rem;
  line-height: 1.08;
}

.platform-mode-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
}

.platform-mode-card b {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(249, 197, 27, 0.16);
  color: #f9c51b;
  font-size: 0.8rem;
}

.home-intelligence-section {
  display: grid;
  gap: 12px;
  margin: 0 18px 30px;
}

.home-intelligence-loading,
.home-intelligence-hero,
.home-intelligence-metric,
.home-intelligence-action {
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(34, 24, 49, 0.08);
}

.home-intelligence-loading {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.home-intelligence-loading span {
  color: #706b65;
  font-weight: 800;
}

.home-intelligence-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  color: white;
  background:
    radial-gradient(circle at 15% 18%, rgba(249, 197, 27, 0.45), transparent 30%),
    linear-gradient(135deg, #201713, #562684 62%, #f9c51b);
  overflow: hidden;
}

.home-intelligence-hero small {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-intelligence-hero h2 {
  margin: 12px 0 2px;
  font-size: clamp(2.4rem, 10vw, 4.8rem);
  line-height: 0.9;
}

.home-intelligence-hero strong {
  display: block;
  font-size: clamp(1.12rem, 3vw, 1.55rem);
}

.home-intelligence-hero p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
  font-weight: 750;
}

.home-intelligence-ring {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #201713 0 57%, transparent 58%),
    conic-gradient(#f9c51b var(--score), rgba(255, 255, 255, 0.18) 0);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 16px 30px rgba(0, 0, 0, 0.18);
}

.home-intelligence-ring span,
.home-intelligence-ring small {
  grid-area: 1 / 1;
}

.home-intelligence-ring span {
  color: white;
  font-size: 1.85rem;
  font-weight: 1000;
}

.home-intelligence-ring small {
  transform: translateY(25px);
  background: transparent;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
}

.home-intelligence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-intelligence-metric {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: #17130f;
}

.home-intelligence-metric small {
  color: #562684;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-intelligence-metric strong {
  font-size: 1.35rem;
  line-height: 1.05;
}

.home-intelligence-metric b {
  font-size: 0.9rem;
}

.home-intelligence-metric span,
.home-intelligence-action span {
  color: #706b65;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.home-intelligence-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-intelligence-action {
  display: grid;
  gap: 5px;
  padding: 14px;
  color: #17130f;
}

.home-intelligence-action.primary {
  color: white;
  background: linear-gradient(135deg, #562684, #201713);
}

.home-intelligence-action small {
  color: #f9c51b;
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-intelligence-action strong {
  font-size: 1rem;
}

.home-intelligence-action.primary span {
  color: rgba(255, 255, 255, 0.72);
}

.city-habit-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(249, 197, 27, 0.22), rgba(255, 255, 255, 0.94));
  padding: 16px;
  box-shadow: 0 14px 34px rgba(34, 24, 49, 0.08);
}

.city-habit-brief small,
.city-habit-card small {
  color: var(--purple);
  font-weight: 900;
  text-transform: uppercase;
}

.city-habit-brief strong,
.city-habit-brief span {
  display: block;
}

.city-habit-brief > b {
  align-self: start;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 10px 12px;
}

.city-habit-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.city-habit-card {
  display: grid;
  gap: 6px;
  border-radius: 18px;
  background: white;
  color: inherit;
  padding: 12px;
  text-decoration: none;
}

.city-habit-card.primary {
  background: var(--ink);
  color: white;
}

.city-habit-card span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.city-habit-card.primary span {
  color: rgba(255, 255, 255, 0.78);
}

.platform-experience-section {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
}

.platform-experience-map {
  display: grid;
  gap: 12px;
  margin: 0 18px;
}

.platform-experience-loading,
.platform-experience-hero,
.platform-experience-card,
.platform-loop-card {
  min-width: 0;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(34, 24, 49, 0.08);
}

.platform-experience-loading {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.platform-experience-loading span {
  color: #706b65;
  font-weight: 800;
}

.platform-experience-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 18px;
  color: white;
  background:
    radial-gradient(circle at 12% 16%, rgba(249, 197, 27, 0.42), transparent 32%),
    linear-gradient(135deg, #17130f, #3d2066 72%, #f9c51b);
}

.platform-experience-hero small {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f9c51b;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.platform-experience-hero h3 {
  margin: 12px 0 4px;
  font-size: clamp(2.2rem, 8vw, 4.4rem);
  line-height: 0.9;
}

.platform-experience-hero strong {
  display: block;
  max-width: 720px;
  font-size: clamp(1.15rem, 3vw, 1.7rem);
}

.platform-experience-hero p {
  max-width: 720px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
  line-height: 1.45;
}

.platform-experience-hero a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f9c51b;
  color: #17130f;
  padding: 0 16px;
  font-weight: 950;
  white-space: nowrap;
}

.platform-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.platform-experience-card {
  display: grid;
  gap: 9px;
  padding: 15px;
  color: #17130f;
}

.platform-experience-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.platform-experience-card-head small,
.platform-experience-card-head b {
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.platform-experience-card-head small {
  background: #fff4d2;
  color: #5a4210;
}

.platform-experience-card-head b {
  background: rgba(86, 38, 132, 0.1);
  color: #562684;
}

.platform-experience-card strong {
  font-size: 1.08rem;
  line-height: 1.18;
}

.platform-experience-card span,
.platform-experience-card p,
.platform-experience-card i,
.platform-loop-card span {
  color: #706b65;
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.4;
}

.platform-experience-card p {
  margin: 0;
}

.platform-experience-card em {
  width: fit-content;
  border-radius: 999px;
  background: #17130f;
  color: white;
  padding: 7px 10px;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 950;
}

.platform-experience-card i {
  display: block;
  border-top: 1px solid rgba(67, 67, 67, 0.1);
  padding-top: 9px;
  font-style: normal;
}

.platform-loop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.platform-loop-card {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.platform-loop-card small {
  color: #562684;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.platform-loop-card strong {
  color: #17130f;
}

.guide-section {
  margin: 0 0 34px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 18px 14px;
}

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1;
}

.heading-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #f0e8fa;
  color: #8e34de;
}

.heading-icon.flame {
  color: #3a3a3a;
}

.heading-icon.event {
  color: #e59b08;
  background: #fff2d2;
}

.heading-icon.saved {
  color: #fff;
  background: linear-gradient(135deg, #3a3a3a, #f9c51b);
}

.soft-button {
  min-height: 44px;
  border: 1px solid #ddd5e6;
  border-radius: 999px;
  padding: 0 16px;
  background: #eee9f3;
  color: #3a3a3a;
  white-space: nowrap;
}

.featured-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 18px 10px;
  scroll-snap-type: x mandatory;
}

.image-card {
  position: relative;
  flex: 0 0 78%;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  overflow: hidden;
  border-radius: 24px;
  padding: 18px;
  color: white;
  scroll-snap-align: start;
  background: #211331;
  box-shadow: 0 14px 30px rgba(34, 24, 49, 0.12);
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(16, 10, 24, 0.82));
  z-index: 0;
}

.image-card > * {
  position: relative;
  z-index: 1;
}

.image-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
}

.breakfast-card {
  background: url("https://images.unsplash.com/photo-1533089860892-a7c6f0a88666?auto=format&fit=crop&w=900&q=80") center/cover;
}

.nature-card {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80") center/cover;
}

.dessert-card {
  background: url("https://images.unsplash.com/photo-1551024506-0bccd828d307?auto=format&fit=crop&w=900&q=80") center/cover;
}

.pager-dots {
  margin-top: 8px;
}

.pager-dots span {
  background: #b9b2c2;
}

.quick-list-form {
  display: grid;
  grid-template-columns: 1fr minmax(0, 190px) auto;
  gap: 10px;
  align-items: center;
  margin: 14px 18px 0;
  padding: 12px;
  border: 1px solid rgba(95, 74, 118, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(34, 24, 49, 0.06);
}

.quick-list-form strong,
.quick-list-form span {
  display: block;
}

.quick-list-form strong {
  color: #161222;
  font-size: 0.94rem;
}

.quick-list-form span {
  margin-top: 3px;
  color: #80778b;
  font-size: 0.78rem;
  line-height: 1.35;
}

.quick-list-form input {
  min-height: 42px;
  border: 1px solid rgba(95, 74, 118, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  outline: none;
}

.quick-list-form button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: #3a3a3a;
  color: white;
  padding: 0 15px;
  font-weight: 900;
  cursor: pointer;
}

.my-lists-panel {
  margin: 14px 18px 0;
}

.mini-section-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  margin-bottom: 10px;
}

.mini-section-title strong {
  color: #161222;
  font-size: 0.98rem;
}

.mini-section-title span {
  color: #80778b;
  font-size: 0.78rem;
}

.my-lists-grid {
  display: grid;
  gap: 10px;
}

.rising-list-panel {
  margin-bottom: 10px;
}

.rising-list-panel .user-list-card {
  border-color: rgba(249, 197, 27, 0.42);
  background: linear-gradient(135deg, #fff8dd, #ffffff);
}

.rising-list-panel .user-list-card h3::before {
  content: "Yükselen ";
  color: #7a4ad8;
}

.user-list-card {
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px;
  box-shadow: 0 10px 24px rgba(34, 24, 49, 0.06);
}

.user-list-card header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.user-list-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.user-list-card small {
  display: block;
  margin-top: 3px;
  color: #80778b;
  font-weight: 800;
}

.user-list-card header button {
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #f9c51b;
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.list-item-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 7px;
  align-items: center;
  margin-top: 8px;
  color: #151125;
  font-size: 0.85rem;
  font-weight: 850;
}

.list-item-row button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(67, 67, 67, 0.14);
  border-radius: 11px;
  background: #fffaf0;
  color: #3a3a3a;
  font-weight: 950;
  cursor: pointer;
}

.list-item-row button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.trending-saves {
  display: grid;
  gap: 12px;
  padding: 0 18px;
}

.saved-rank-card {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(116, 90, 145, 0.12);
  border-radius: 24px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(34, 24, 49, 0.08);
}

.rank-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #f0e8fa;
  color: #3a3a3a;
  font-size: 1.15rem;
  font-weight: 950;
}

.saved-rank-card strong,
.saved-rank-card small {
  display: block;
}

.saved-rank-card strong {
  line-height: 1.15;
}

.saved-rank-card small {
  margin-top: 5px;
  color: #80778b;
  font-size: 0.8rem;
  font-weight: 800;
}

.saved-rank-card button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  background: #3a3a3a;
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 18px;
}

.mini-venue {
  overflow: hidden;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(34, 24, 49, 0.1);
}

.mini-photo {
  min-height: 126px;
  background: #ddd center/cover;
}

.dinner-photo {
  background-image: url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=700&q=80");
}

.cafe-photo {
  background-image: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=700&q=80");
}

.mini-venue strong,
.mini-venue span {
  display: block;
  padding: 0 13px;
}

.mini-venue strong {
  padding-top: 12px;
  font-size: 0.95rem;
}

.mini-venue span {
  padding-bottom: 14px;
  margin-top: 4px;
  color: #80778b;
  font-size: 0.8rem;
  line-height: 1.35;
}

.event-list {
  display: grid;
  gap: 14px;
  padding: 0 18px;
}

.city-hub-section {
  padding-bottom: 8px;
}

.heading-icon.city {
  color: #3a3a3a;
  font-size: 0.76rem;
  letter-spacing: 0;
}

.city-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px;
}

.city-hub-card {
  min-height: 104px;
  border: 1px solid rgba(78, 50, 16, 0.1);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  padding: 14px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(71, 45, 10, 0.07);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.city-hub-card:hover,
.city-hub-card:focus-visible,
.user-home-columns button:hover,
.user-home-columns button:focus-visible,
.profile-card:hover,
.profile-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(249, 197, 27, 0.46);
  box-shadow: 0 16px 34px rgba(71, 45, 10, 0.12);
}

.city-hub-card i {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(249, 197, 27, 0.16);
  color: #4b2d0d;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 950;
}

.city-hub-card strong,
.city-hub-card span,
.city-hub-card small {
  display: block;
}

.city-hub-card strong {
  margin-bottom: 6px;
  font-size: 0.98rem;
  font-weight: 950;
}

.city-hub-card span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.city-hub-card small {
  margin-top: 10px;
  color: rgba(32, 23, 19, 0.54);
  font-size: 0.73rem;
  font-weight: 850;
}

.city-hub-card.urgent {
  background: linear-gradient(135deg, #fff, #fff4f1 58%, #fff9df);
  border-color: rgba(189, 74, 58, 0.18);
}

.city-service-preview {
  display: grid;
  gap: 10px;
  margin: 14px 18px 0;
  border: 1px solid rgba(78, 50, 16, 0.1);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(71, 45, 10, 0.07);
}

.city-service-preview small,
.city-service-preview span {
  color: var(--muted);
  line-height: 1.45;
}

.city-service-preview strong {
  font-size: 1.06rem;
  font-weight: 950;
}

.city-service-meta,
.city-service-tags,
.city-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-service-meta b {
  border-radius: 999px;
  background: rgba(32, 23, 19, 0.06);
  padding: 7px 9px;
  color: var(--ink);
  font-size: 0.72rem;
}

.city-service-tags b {
  border-radius: 999px;
  background: rgba(249, 197, 27, 0.18);
  padding: 8px 10px;
  color: #4b2d0d;
  font-size: 0.75rem;
}

.city-service-actions button,
.feed-card button,
.list-card-actions button {
  border: 0;
  border-radius: 999px;
  background: #201713;
  color: white;
  min-height: 38px;
  padding: 0 13px;
  font-weight: 900;
  cursor: pointer;
}

.feed-actions,
.list-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feed-actions button + button,
.list-card-actions button + button {
  background: rgba(32, 23, 19, 0.08);
  color: var(--ink);
}

.feed-actions button:disabled,
.list-card-actions button:disabled {
  opacity: 0.72;
  cursor: default;
}

.city-service-actions button + button {
  background: rgba(32, 23, 19, 0.08);
  color: var(--ink);
}

.social-feed {
  display: grid;
  gap: 12px;
  padding: 0 18px;
}

.feed-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(78, 50, 16, 0.1);
  border-radius: 18px;
  background: #fff;
  padding: 15px;
  box-shadow: 0 10px 24px rgba(71, 45, 10, 0.07);
}

.feed-author {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 8px;
  align-items: center;
}

.feed-author span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: rgba(249, 197, 27, 0.2);
  color: #4b2d0d;
  font-size: 0.75rem;
  font-weight: 950;
}

.feed-author small,
.feed-card p {
  color: var(--muted);
}

.feed-card h3,
.feed-card p {
  margin: 0;
}

.user-home-panel {
  display: grid;
  gap: 12px;
  padding: 0 18px;
}

.user-home-empty,
.user-home-next-actions,
.user-home-columns article {
  border: 1px solid rgba(78, 50, 16, 0.1);
  border-radius: 18px;
  background: #fff;
  padding: 15px;
  box-shadow: 0 10px 24px rgba(71, 45, 10, 0.07);
}

.user-home-empty strong,
.user-home-empty span {
  display: block;
}

.user-home-empty span,
.user-home-next-actions span,
.user-home-next-actions p,
.user-home-columns span,
.user-home-columns p {
  color: var(--muted);
  line-height: 1.4;
}

.user-home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.user-home-stats span {
  display: grid;
  gap: 2px;
  border-radius: 16px;
  background: rgba(249, 197, 27, 0.16);
  padding: 10px;
  color: #4b2d0d;
  font-weight: 850;
}

.user-home-stats strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.user-home-next-actions {
  display: grid;
  gap: 8px;
}

.user-home-next-actions small {
  color: var(--muted);
  font-weight: 950;
}

.user-home-next-actions a {
  display: grid;
  gap: 4px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 197, 27, 0.22), rgba(88, 50, 140, 0.1));
  padding: 11px;
  color: inherit;
  text-decoration: none;
}

.user-home-next-actions strong,
.user-home-next-actions span {
  overflow-wrap: anywhere;
}

.user-home-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.user-home-columns article {
  display: grid;
  gap: 8px;
}

.user-home-columns small {
  color: var(--muted);
  font-weight: 950;
}

.user-home-columns button {
  display: grid;
  gap: 4px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #f8f7f3;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.user-home-columns button strong,
.user-home-columns button span {
  overflow-wrap: anywhere;
}

.user-home-columns button em {
  display: inline-block;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(249, 197, 27, 0.22);
  padding: 2px 7px;
  color: #4b2d0d;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  vertical-align: middle;
}

.profile-strip {
  display: grid;
  gap: 12px;
  padding: 0 18px;
}

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  padding: 13px;
  box-shadow: 0 12px 28px rgba(34, 24, 49, 0.07);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.profile-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #111111;
  color: #f9c51b;
  font-weight: 950;
}

.profile-avatar.large {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  font-size: 1.15rem;
}

.profile-card strong,
.profile-card small,
.profile-card p {
  display: block;
}

.profile-card strong {
  color: #151125;
  font-size: 1rem;
}

.profile-card small {
  margin-top: 2px;
  color: #80778b;
  font-weight: 850;
}

.profile-card p {
  margin: 6px 0 0;
  color: #5e5e5e;
  font-size: 0.83rem;
  line-height: 1.35;
}

.profile-sheet {
  position: absolute;
  inset: 0;
  display: none;
  align-items: end;
  background: rgba(17, 17, 17, 0.32);
  z-index: 24;
}

.profile-sheet.open {
  display: flex;
}

.profile-sheet-panel {
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  border-radius: 28px 28px 0 0;
  background: #f7f6f2;
  padding: 18px 18px calc(24px + env(safe-area-inset-bottom));
  box-shadow: 0 -20px 50px rgba(17, 17, 17, 0.22);
}

.profile-sheet-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.profile-sheet h2 {
  margin: 0;
  font-size: 1.45rem;
}

.profile-sheet strong {
  display: block;
  margin-top: 2px;
  color: #3a3a3a;
}

.profile-sheet p {
  margin: 8px 0 10px;
  color: #5e5e5e;
  line-height: 1.45;
}

.profile-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 4px;
}

.profile-trust-strip span {
  border: 1px solid rgba(32, 23, 19, 0.08);
  border-radius: 999px;
  background: rgba(249, 197, 27, 0.18);
  padding: 6px 9px;
  color: #3b2a08;
  font-size: 0.76rem;
  font-weight: 900;
}

.profile-sheet a,
.report-profile-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #f9c51b;
  padding: 0 13px;
  font-weight: 900;
}

.report-profile-button {
  margin-left: 6px;
  background: rgba(32, 23, 19, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.report-profile-button:disabled {
  opacity: 0.7;
  cursor: default;
}

.auth-sheet,
.reservation-sheet,
.notification-sheet,
.search-sheet {
  position: absolute;
  inset: 0;
  display: none;
  align-items: end;
  background: rgba(17, 17, 17, 0.34);
  z-index: 26;
}

.auth-sheet.open,
.reservation-sheet.open,
.notification-sheet.open,
.search-sheet.open {
  display: flex;
}

.auth-panel,
.reservation-panel,
.notification-panel,
.search-panel {
  position: relative;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  border-radius: 28px 28px 0 0;
  background: #fff;
  padding: 20px 18px calc(24px + env(safe-area-inset-bottom));
  box-shadow: 0 -20px 50px rgba(17, 17, 17, 0.24);
}

.auth-panel small,
.reservation-panel small,
.notification-panel small,
.search-panel small {
  color: var(--muted);
  font-weight: 900;
}

.auth-panel h2,
.auth-panel p,
.reservation-panel h2,
.reservation-panel p,
.notification-panel h2,
.search-panel h2 {
  margin: 8px 0 0;
}

.auth-panel p,
.reservation-panel p,
.auth-form span {
  color: var(--muted);
  line-height: 1.45;
}

.notification-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.notification-item {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(78, 50, 16, 0.1);
  border-radius: 16px;
  background: #f8f7f3;
  padding: 12px;
}

.notification-item.unread {
  background: rgba(249, 197, 27, 0.16);
}

.notification-item strong,
.notification-item span,
.notification-item em,
.notification-item small {
  display: block;
}

.notification-item em {
  color: var(--purple);
  font-style: normal;
  font-weight: 900;
}

.notification-item span,
.notification-item small,
.notification-list p {
  color: var(--muted);
}

.search-sheet-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 16px;
}

.search-sheet-form input {
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8f7f3;
  padding: 0 12px;
  font: inherit;
}

.search-sheet-form button,
.search-result-card button {
  border: 0;
  border-radius: 999px;
  background: #201713;
  color: #fff;
  font-weight: 900;
}

.search-sheet-form button {
  padding: 0 18px;
}

.search-result-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.search-result-card,
.search-result-empty {
  border: 1px solid rgba(78, 50, 16, 0.1);
  border-radius: 16px;
  background: #f8f7f3;
  padding: 12px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.search-result-card div,
.search-result-empty {
  display: grid;
  gap: 5px;
}

.search-result-card small,
.search-result-card span,
.search-result-empty span {
  color: var(--muted);
}

.search-result-card button {
  min-height: 38px;
  padding: 0 12px;
}

.auth-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.auth-form input,
.auth-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8f7f3;
  padding: 0 12px;
  font: inherit;
}

.auth-form .inline-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 800;
}

.auth-form .inline-check input {
  width: auto;
  min-height: auto;
}

.auth-form button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: #201713;
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.auth-form button:disabled {
  opacity: 0.7;
  cursor: default;
}

.profile-lists {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.event-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 128px 1fr;
  overflow: hidden;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(34, 24, 49, 0.09);
}

.event-photo {
  background: #ddd center/cover;
}

.lake-photo {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=700&q=80");
}

.family-photo {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=700&q=80");
}

.event-card div:last-child {
  align-self: center;
  padding: 14px;
}

.event-card span,
.event-card small {
  color: #73667f;
  font-weight: 800;
}

.event-card span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: #f1edf6;
  font-size: 0.78rem;
}

.event-card strong {
  display: block;
  margin: 8px 0 7px;
  line-height: 1.2;
}

.floating-ai {
  position: absolute;
  right: 18px;
  bottom: calc(94px + env(safe-area-inset-bottom));
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: white;
  background: linear-gradient(135deg, #3a3a3a, #f9c51b);
  box-shadow: 0 18px 36px rgba(58, 58, 58, 0.34);
  font-size: 1rem;
  font-weight: 950;
  cursor: pointer;
  z-index: 11;
}

.bottom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: calc(74px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(95, 74, 118, 0.12);
  backdrop-filter: blur(18px);
  z-index: 10;
}

.bottom-nav button,
.bottom-nav a {
  border: 0;
  background: transparent;
  color: #9a92a4;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
  text-align: center;
}

.bottom-nav button span,
.bottom-nav a span {
  display: block;
  margin-bottom: 3px;
  font-size: 1.42rem;
  line-height: 1;
}

.bottom-nav button.active,
.bottom-nav a.active {
  color: #3a3a3a;
}

.side-drawer,
.venue-detail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
}

.drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 24, 0.46);
  opacity: 0;
  transition: opacity 180ms ease;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(390px, 82vw);
  height: 100%;
  padding: max(24px, env(safe-area-inset-top)) 22px 24px;
  background: white;
  border-radius: 28px 0 0 28px;
  transform: translateX(104%);
  transition: transform 220ms ease;
  box-shadow: -20px 0 60px rgba(21, 17, 37, 0.24);
}

.side-drawer.open {
  pointer-events: auto;
}

.side-drawer.open .drawer-scrim {
  opacity: 1;
}

.side-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eee9f3;
}

.drawer-head strong,
.drawer-head small,
.drawer-group span {
  display: block;
}

.drawer-head strong {
  font-size: 1.12rem;
}

.drawer-head small,
.drawer-group span {
  color: #9a92a4;
  font-weight: 850;
}

.drawer-head button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #f1edf6;
  color: #3a3a3a;
  font-size: 1.65rem;
  font-weight: 900;
  cursor: pointer;
}

.drawer-group {
  display: grid;
  gap: 13px;
  padding: 24px 0;
  border-bottom: 1px solid #eee9f3;
}

.drawer-group button,
.drawer-group a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 18px;
  background: #faf8fc;
  color: #151125;
  padding: 0 16px;
  text-align: left;
  font-size: 1rem;
  font-weight: 950;
  cursor: pointer;
}

.drawer-group b {
  color: #9a92a4;
  font-size: 1.5rem;
}

.venue-detail {
  background: #f5f2f8;
  transform: translateY(104%);
  transition: transform 260ms ease;
  overflow: hidden;
}

.venue-detail.open {
  pointer-events: auto;
  transform: translateY(0);
}

.venue-detail-scroll {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 116px;
}

.venue-hero {
  position: relative;
  min-height: 355px;
  padding: max(24px, env(safe-area-inset-top)) 20px 22px;
  color: white;
  background:
    linear-gradient(180deg, rgba(15, 10, 24, 0.1), rgba(15, 10, 24, 0.74)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1100&q=80") center/cover;
}

.detail-circle {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 9, 22, 0.46);
  color: white;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.detail-actions {
  position: absolute;
  top: max(24px, env(safe-area-inset-top));
  right: 20px;
  display: flex;
  gap: 12px;
}

.detail-status,
.detail-count {
  position: absolute;
  bottom: 34px;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 950;
}

.detail-status {
  left: 22px;
  background: #a72f3e;
}

.detail-count {
  right: 22px;
  background: rgba(15, 10, 24, 0.62);
}

.venue-sheet {
  position: relative;
  margin-top: -22px;
  border-radius: 28px 28px 0 0;
  background: #f5f2f8;
  padding: 22px 20px 28px;
}

.thumb-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 22px;
}

.thumb {
  flex: 0 0 82px;
  height: 70px;
  border-radius: 14px;
  background: url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=300&q=80") center/cover;
  opacity: 0.62;
}

.thumb.active {
  opacity: 1;
  outline: 4px solid #3a3a3a;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.detail-badges span {
  border-radius: 999px;
  padding: 9px 12px;
  background: #f0e8fa;
  color: #3a3a3a;
  font-weight: 950;
}

.venue-sheet h2 {
  margin: 20px 0 12px;
  color: #151125;
  font-size: 2.1rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.detail-address {
  color: #756b80;
  font-size: 1rem;
  line-height: 1.5;
}

.detail-action-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 24px;
  background: #e7e0ed;
  box-shadow: 0 14px 32px rgba(34, 24, 49, 0.12);
}

.detail-action-card button {
  min-height: 118px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 0;
  background: white;
  color: #3a3a3a;
  font-size: 2rem;
  font-weight: 950;
  cursor: pointer;
}

.detail-action-card span {
  color: #151125;
  font-size: 0.92rem;
}

.detail-section {
  margin-top: 26px;
}

.detail-section h3 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

.detail-section p {
  color: #756b80;
  font-size: 1.02rem;
  line-height: 1.6;
}

.read-more {
  border: 0;
  background: transparent;
  color: #3a3a3a;
  padding: 0;
  font-weight: 950;
  cursor: pointer;
}

.list-tools p {
  margin: 0 0 12px;
}

.list-add-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.list-add-row select,
.list-add-row button {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 850;
}

.list-add-row select {
  min-width: 0;
  border: 1px solid rgba(67, 67, 67, 0.16);
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
}

.list-add-row button {
  border: 0;
  background: #111111;
  color: #f9c51b;
  padding: 0 16px;
  cursor: pointer;
}

.list-tools small {
  display: block;
  margin-top: 9px;
  color: #80778b;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  border-radius: 18px;
  background: white;
  color: #151125;
  padding: 0 18px;
  box-shadow: 0 8px 22px rgba(34, 24, 49, 0.1);
  font-weight: 950;
}

.experience-list {
  display: grid;
  gap: 12px;
}

.experience-item,
.experience-empty,
.experience-form {
  border: 1px solid rgba(55, 34, 82, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 18, 35, 0.08);
}

.experience-item {
  display: grid;
  gap: 10px;
  padding: 15px;
}

.experience-item div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.experience-item strong span {
  color: #f4ad16;
  letter-spacing: 1px;
}

.experience-item small,
.experience-empty span,
.experience-form span,
.experience-form small {
  color: #756b80;
}

.experience-item p {
  margin: 0;
}

.experience-item button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  color: #4b1f6f;
  background: #f4eff9;
  font-weight: 800;
}

.experience-empty {
  display: grid;
  gap: 5px;
  padding: 15px;
}

.experience-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 15px;
}

.experience-form select,
.experience-form input,
.experience-form textarea {
  width: 100%;
  border: 1px solid rgba(55, 34, 82, 0.14);
  border-radius: 14px;
  padding: 12px 13px;
  font: inherit;
  background: #fbf9fd;
}

.experience-form textarea {
  min-height: 88px;
  resize: vertical;
}

.experience-form button {
  min-height: 44px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #4b1f6f, #8e3ff2);
  font-weight: 900;
}

.feature-pills span {
  background: #fff;
}

.reservation-bar {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10px;
  z-index: 2;
}

.reservation-bar button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #3a3a3a, #f9c51b);
  font-size: 1rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(58, 58, 58, 0.28);
}

.assistant-dock {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translate(-50%, 104%);
  width: min(520px, 100%);
  height: min(84vh, 820px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #fffaf1;
  box-shadow: 0 -24px 70px rgba(27, 18, 40, 0.28);
  z-index: 30;
  transition: transform 220ms ease;
}

.assistant-dock.open {
  transform: translate(-50%, 0);
}

.assistant-dock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--line);
  background: #fffaf1;
}

.assistant-dock-header strong,
.assistant-dock-header span {
  display: block;
}

.assistant-dock-header span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
}

.dock-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 15px;
  background: #f1edf6;
  color: #3a3a3a;
  font-size: 1.45rem;
  font-weight: 900;
  cursor: pointer;
}

.assistant-dock .chat-scroll {
  padding: 14px 12px;
}

.assistant-dock .chat-composer-wrap {
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

@media (min-width: 860px) {
  .guide-app {
    border-radius: 28px;
    height: min(940px, 100vh);
    margin-top: max(0px, calc((100vh - 940px) / 2));
  }
}

@media (max-width: 430px) {
  .guide-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .guide-brand .brand-subtitle,
  .round-action:nth-child(2),
  .login-action {
    display: none;
  }

  .round-action {
    width: 45px;
    height: 45px;
  }

  .story-hero {
    min-height: 222px;
    padding: 22px 18px;
  }

  .story-hero h1 {
    font-size: 1.72rem;
  }

  .nearby-card {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
    border-radius: 24px;
  }

  .platform-launchpad {
    margin-left: 14px;
    margin-right: 14px;
    border-radius: 24px;
    padding: 14px;
  }

  .platform-mode-grid {
    grid-template-columns: 1fr;
  }

  .platform-mode-card {
    min-height: 126px;
  }

  .home-intelligence-section {
    margin-left: 14px;
    margin-right: 14px;
  }

  .home-intelligence-hero,
  .home-intelligence-grid,
  .home-intelligence-actions,
  .city-habit-brief,
  .city-habit-grid {
    grid-template-columns: 1fr;
  }

  .home-intelligence-ring {
    width: 104px;
    justify-self: start;
  }

  .platform-experience-map {
    margin-left: 14px;
    margin-right: 14px;
  }

  .platform-experience-hero,
  .platform-experience-grid,
  .platform-loop-grid {
    grid-template-columns: 1fr;
  }

  .platform-experience-hero {
    align-items: start;
  }

  .platform-experience-hero a {
    justify-self: start;
  }

  .section-heading,
  .trending-saves,
  .venue-grid,
  .event-list,
  .city-hub-grid {
    margin-left: 14px;
    margin-right: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .featured-carousel {
    padding-left: 14px;
  }

  .soft-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .quick-list-form {
    grid-template-columns: 1fr;
    margin-left: 14px;
    margin-right: 14px;
  }

  .my-lists-panel {
    margin-left: 14px;
    margin-right: 14px;
  }

  .event-card {
    grid-template-columns: 112px 1fr;
  }

  .city-hub-grid {
    grid-template-columns: 1fr;
  }

  .campaign-grid {
    grid-template-columns: 1fr;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 760px) {
  .venue-page-shell {
    padding: 12px;
  }

  .venue-page-topbar {
    align-items: flex-start;
  }

  .venue-profile-hero,
  .venue-info-grid,
  .venue-quick-facts,
  .venue-list-studio {
    grid-template-columns: 1fr;
  }

  .venue-list-fit-grid {
    grid-template-columns: 1fr;
  }

  .venue-profile-hero {
    border-radius: 24px;
    padding: 18px;
  }

  .venue-profile-card {
    min-height: 112px;
  }

  .venue-menu-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .public-list-venue {
    grid-template-columns: auto 1fr;
  }

  .public-list-venue a {
    grid-column: 2;
    justify-self: start;
  }

  .public-user-hero,
  .public-profile-list {
    grid-template-columns: 1fr;
  }

  .public-user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 24px;
  }

  .public-profile-list a {
    justify-self: start;
  }
}

.page-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 18px 92px;
}

.admin-body {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  background: #f3f4f6;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  background: #f3f4f6;
  color: #151125;
}

.dashboard-admin-shell .guide-header,
.admin-page-shell .guide-header {
  display: none;
}

.legacy-admin-shell > .admin-main > .topbar {
  display: none;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 16px;
  background: #1f262d;
  color: white;
  overflow-y: auto;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.admin-sidebar-brand .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f9c51b, #ff7a1a);
  color: #201713;
  box-shadow: 0 14px 28px rgba(249, 197, 27, 0.18);
}

.admin-sidebar-brand strong,
.admin-sidebar-brand small {
  display: block;
}

.admin-sidebar-brand strong {
  font-size: 1.02rem;
  font-weight: 1000;
}

.admin-sidebar-brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.admin-sidebar-nav {
  display: grid;
  gap: 6px;
}

.admin-sidebar-nav a {
  display: grid;
  gap: 3px;
  border-radius: 10px;
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateX(2px);
}

.admin-sidebar-nav span {
  font-weight: 950;
}

.admin-sidebar-nav small {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 750;
}

.admin-sidebar-support {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.admin-sidebar-support-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 900;
}

.admin-sidebar-support-link-accent {
  background: #f9c51b;
  color: #201713;
}

.admin-main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 24px;
}

.admin-topbar {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(67, 67, 67, 0.08);
  border-radius: 18px;
  padding: 20px;
  background: white;
  box-shadow: 0 12px 30px rgba(34, 24, 49, 0.06);
}

.admin-topbar small,
.admin-topbar h1,
.admin-topbar p {
  margin: 0;
}

.admin-topbar small {
  color: var(--muted);
  font-weight: 900;
}

.admin-topbar h1 {
  margin-top: 5px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.admin-topbar p {
  max-width: 720px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-topbar-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 15px;
  background: #201713;
  color: white;
  font-weight: 950;
  white-space: nowrap;
}

.admin-topbar-actions a:first-child {
  background: #f9c51b;
  color: #201713;
}

.page-hero {
  min-height: 330px;
  display: grid;
  align-content: end;
  gap: 14px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.84), rgba(17, 17, 17, 0.38)),
    linear-gradient(135deg, #f9c51b, #fff4d2);
  color: white;
  padding: clamp(24px, 5vw, 46px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero p,
.page-hero small {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  font-size: 1rem;
}

.city-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.24)),
    radial-gradient(circle at top right, rgba(249, 197, 27, 0.98), transparent 42%),
    #306b4f;
}

.feed-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.28)),
    radial-gradient(circle at top left, rgba(249, 197, 27, 0.9), transparent 42%),
    #51361f;
}

.dashboard-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.44)),
    #2b2b2b;
}

.venues-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.28)),
    radial-gradient(circle at 84% 20%, rgba(249, 197, 27, 0.88), transparent 38%),
    #35513f;
}

.search-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.3)),
    radial-gradient(circle at 20% 18%, rgba(249, 197, 27, 0.86), transparent 36%),
    #303442;
}

.tastes-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.24)),
    radial-gradient(circle at 75% 18%, rgba(249, 197, 27, 0.9), transparent 40%),
    #5b3326;
}

.account-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.84), rgba(17, 17, 17, 0.28)),
    radial-gradient(circle at 80% 14%, rgba(249, 197, 27, 0.88), transparent 42%),
    #2f3344;
}

.events-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.26)),
    radial-gradient(circle at 78% 18%, rgba(249, 197, 27, 0.9), transparent 38%),
    #3d4d5f;
}

.routes-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.24)),
    radial-gradient(circle at 18% 16%, rgba(249, 197, 27, 0.88), transparent 40%),
    #31533e;
}

.campaigns-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.84), rgba(17, 17, 17, 0.28)),
    radial-gradient(circle at 82% 14%, rgba(249, 197, 27, 0.9), transparent 40%),
    #5a342a;
}

.data-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.32)),
    radial-gradient(circle at 80% 16%, rgba(249, 197, 27, 0.92), transparent 40%),
    #253544;
}

.security-page-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.34)),
    radial-gradient(circle at 78% 14%, rgba(249, 197, 27, 0.9), transparent 38%),
    #2b2638;
}

.account-auth-panel,
.account-list-summary,
.account-quick-list-form,
.account-profile-card,
.account-social-card,
.account-control-card {
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(34, 24, 49, 0.07);
  padding: 16px;
}

.account-auth-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}

.account-list-studio {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 14px;
  margin-top: 16px;
}

.account-list-summary,
.account-quick-list-form {
  display: grid;
  gap: 10px;
}

.account-list-summary small,
.account-quick-list-form small {
  color: var(--muted);
  font-weight: 900;
}

.account-list-summary strong,
.account-quick-list-form strong {
  font-size: 1.2rem;
}

.account-list-summary span,
.account-quick-list-form span {
  color: var(--muted);
  line-height: 1.45;
}

.account-quick-list-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.account-quick-list-form input {
  min-height: 44px;
  border: 1px solid rgba(67, 67, 67, 0.14);
  border-radius: 14px;
  padding: 0 12px;
  font: inherit;
}

.account-quick-list-form button {
  justify-self: start;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 14px;
  font-weight: 950;
  cursor: pointer;
}

.account-quick-list-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.account-auth-panel strong,
.account-social-card strong,
.account-control-card strong {
  display: block;
}

.account-auth-panel span,
.account-social-card span,
.account-control-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.42;
}

.account-provider-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.account-provider-grid button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.account-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 14px;
  margin-top: 14px;
}

.account-profile-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.account-profile-card > span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: var(--ink);
  color: var(--brand);
  font-size: 1.8rem;
  font-weight: 1000;
}

.account-profile-card h2 {
  margin: 5px 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.account-profile-card p {
  color: var(--muted);
  line-height: 1.45;
}

.account-profile-card a,
.account-social-card a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.account-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-control-card {
  display: grid;
  gap: 10px;
}

.account-control-card small,
.account-social-card small {
  color: var(--muted);
  font-weight: 900;
}

.account-control-card div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(67, 67, 67, 0.08);
  padding-top: 9px;
}

.page-filter-bar,
.page-search-form {
  display: flex;
  gap: 9px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.page-filter-bar button,
.page-search-form button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.page-filter-bar button.active,
.page-filter-bar button:hover,
.page-search-form button {
  background: var(--ink);
  color: white;
}

.page-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: visible;
}

.page-search-form input {
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(67, 67, 67, 0.12);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
}

.page-section {
  margin-top: 28px;
}

.page-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.page-section-title h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.page-section-title span {
  color: var(--muted);
  font-weight: 800;
}

.page-card-grid,
.page-service-grid,
.page-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.list-social-studio {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 12px;
  margin-top: 18px;
}

.list-social-card {
  min-width: 0;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(34, 24, 49, 0.07);
}

.list-social-card small,
.page-list-social-line {
  color: var(--muted);
  font-weight: 850;
}

.list-social-card strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.2rem;
}

.list-social-card span {
  color: var(--muted);
  line-height: 1.45;
}

.list-social-card.action {
  background: linear-gradient(135deg, #191919, #44310a);
  color: white;
}

.list-social-card.action small,
.list-social-card.action span {
  color: rgba(255, 255, 255, 0.78);
}

.list-starter-card {
  position: relative;
  overflow: hidden;
}

.list-starter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(249, 197, 27, 0.18), rgba(255, 255, 255, 0) 52%);
}

.list-starter-card > * {
  position: relative;
}

.page-list-card,
.page-service-card,
.page-profile-card,
.page-empty-card {
  min-width: 0;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(34, 24, 49, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.page-list-card:hover,
.page-service-card:hover,
.page-profile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(34, 24, 49, 0.1);
}

.page-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-card-head small,
.page-card-head b,
.page-service-meta b {
  border-radius: 999px;
  background: #fff4d2;
  color: #5a4210;
  padding: 6px 9px;
  font-size: 0.74rem;
  font-weight: 900;
}

.page-list-card h3,
.page-service-card h3 {
  margin: 16px 0 8px;
  font-size: 1.35rem;
}

.page-venue-card h3,
.page-taste-card h3 {
  min-height: 2.7em;
}

.page-list-card p,
.page-service-card p,
.page-empty-card span {
  color: var(--muted);
  line-height: 1.45;
}

.list-plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-insight-card {
  background:
    linear-gradient(145deg, rgba(54, 29, 93, 0.96), rgba(116, 59, 214, 0.88)),
    var(--ink);
  color: white;
  min-height: 176px;
}

.plan-insight-card .page-card-head small,
.plan-insight-card .page-card-head b,
.plan-insight-card h3,
.plan-insight-card p,
.plan-insight-card .page-service-meta b {
  color: white;
}

.plan-insight-card .page-card-head small,
.plan-insight-card .page-card-head b {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 10px;
}

.plan-insight-card .page-card-head b,
.plan-insight-card .page-service-meta b {
  background: rgba(255, 244, 210, 0.96);
  color: #2b1647;
}

.plan-insight-card h3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.list-plan-actions {
  margin-top: 14px;
}

.list-plan-actions button {
  background: var(--ink);
  color: white;
}

.page-venue-stack {
  display: grid;
  gap: 7px;
  margin: 14px 0;
}

.page-venue-stack span {
  border-radius: 12px;
  background: #f7f6f2;
  padding: 9px 10px;
  color: #3a3a3a;
  font-weight: 800;
  font-size: 0.9rem;
}

.page-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-card-actions a,
.page-card-actions button,
.page-service-card a,
.page-profile-card a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 12px;
  border: 0;
  font-weight: 900;
  font-size: 0.84rem;
  cursor: pointer;
}

.page-card-actions button {
  background: #fff4d2;
  color: var(--ink);
}

.page-card-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.page-service-card > span,
.page-profile-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 1000;
}

.page-service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0;
}

.page-profile-card {
  display: grid;
  gap: 8px;
}

.page-profile-card small {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-entry-grid {
  margin-top: 22px;
}

.dashboard-role-launchpad {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(249, 197, 27, 0.34), transparent 30%),
    linear-gradient(135deg, #201713, #4a246f 68%, #f9c51b);
  color: white;
  box-shadow: 0 18px 46px rgba(34, 24, 49, 0.16);
}

.dashboard-role-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.dashboard-role-copy h2,
.dashboard-role-copy p {
  margin: 0;
}

.dashboard-role-copy h2 {
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.08;
}

.dashboard-role-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.dashboard-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-role-card {
  min-width: 0;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.dashboard-role-card small,
.dashboard-role-card strong,
.dashboard-role-card span {
  display: block;
}

.dashboard-role-card small {
  color: #f9c51b;
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.dashboard-role-card strong {
  margin-top: 8px;
  color: white;
  font-size: 1.08rem;
}

.dashboard-role-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.42;
}

.dashboard-role-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dashboard-role-card-foot b {
  min-width: 54px;
  min-height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 197, 27, 0.16);
  color: #f9c51b;
  font-size: 0.95rem;
}

.dashboard-role-card-foot a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  background: #f9c51b;
  color: #201713;
  font-weight: 950;
  white-space: nowrap;
}

.dashboard-command-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: 16px;
  margin-top: 18px;
}

.dashboard-command-panel {
  min-width: 0;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  padding: 16px;
  box-shadow: 0 16px 38px rgba(34, 24, 49, 0.08);
}

.panel-metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.panel-metric-card,
.panel-work-card {
  min-width: 0;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(34, 24, 49, 0.07);
}

.panel-metric-card {
  padding: 14px;
}

.panel-metric-card strong {
  display: block;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.panel-metric-card span {
  color: var(--muted);
  font-weight: 850;
  font-size: 0.82rem;
}

.panel-work-list {
  display: grid;
  gap: 10px;
}

.panel-work-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.panel-work-card small,
.panel-work-card strong,
.panel-work-card span {
  display: block;
}

.panel-work-card small {
  width: fit-content;
  border-radius: 999px;
  background: #fff4d2;
  color: #5a4210;
  padding: 5px 8px;
  font-weight: 900;
  font-size: 0.74rem;
}

.panel-work-card strong {
  margin-top: 8px;
  font-size: 1.05rem;
}

.panel-work-card span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.42;
}

.panel-work-card a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 12px;
  font-weight: 900;
  white-space: nowrap;
}

.panel-inline-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.panel-inline-actions button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.panel-inline-actions button:last-child {
  background: #fff4d2;
  color: #5a4210;
}

.panel-inline-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.admin-venue-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}

.admin-venue-layout-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-venue-table-section {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.admin-venue-directory,
.admin-venue-form {
  min-width: 0;
}

.admin-venue-forms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-venue-search,
.admin-venue-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.admin-venue-search {
  margin-bottom: 14px;
}

.admin-venue-toolbar,
.admin-venue-bulkbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 0.85fr)) auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 12px;
}

.admin-venue-bulkbar {
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  border: 1px solid rgba(33, 26, 46, 0.08);
  border-radius: 16px;
  background: #fffaf0;
  padding: 10px;
}

.admin-venue-toolbar label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-venue-toolbar input,
.admin-venue-toolbar select {
  min-height: 42px;
  border: 1px solid rgba(33, 26, 46, 0.12);
  border-radius: 13px;
  background: white;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
  font-weight: 850;
}

.admin-venue-toolbar button,
.admin-venue-bulkbar button,
.admin-venue-row-actions button,
.admin-venue-row-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.admin-venue-toolbar button,
.admin-venue-bulkbar button:last-child,
.admin-venue-row-actions button:not(:first-child),
.admin-venue-row-actions a:not(:first-child) {
  background: #fff4d2;
  color: #5a4210;
}

.admin-venue-table-wrap {
  overflow-x: auto;
}

.admin-venue-table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.admin-venue-table th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-align: left;
  padding: 0 10px 4px;
}

.admin-venue-table td {
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(33, 26, 46, 0.08);
  border-bottom: 1px solid rgba(33, 26, 46, 0.08);
  padding: 12px 10px;
  vertical-align: middle;
  font-weight: 850;
}

.admin-venue-table td:first-child {
  border-left: 1px solid rgba(33, 26, 46, 0.08);
  border-radius: 14px 0 0 14px;
}

.admin-venue-table td:last-child {
  border-right: 1px solid rgba(33, 26, 46, 0.08);
  border-radius: 0 14px 14px 0;
}

.admin-venue-table td strong,
.admin-venue-table td small {
  display: block;
}

.admin-venue-table td small {
  max-width: 300px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.admin-venue-status {
  display: inline-flex;
  border-radius: 999px;
  background: #fff4d2;
  color: #5a4210;
  padding: 6px 9px;
  font-size: 0.78rem;
  font-weight: 950;
}

.admin-venue-row-actions {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.admin-venue-selected-row td {
  border-color: rgba(249, 197, 27, 0.58);
  background: #fffaf0;
}

.admin-venue-form {
  display: grid;
  gap: 12px;
}

.admin-venue-page-form {
  max-width: 920px;
  margin-top: 18px;
}

.admin-venue-search input,
.admin-venue-form input,
.admin-venue-form select,
.admin-venue-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(33, 26, 46, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
  font-weight: 800;
}

.admin-venue-form textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.admin-venue-form button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9c51b, #ff7a1a);
  color: #211a2e;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(249, 197, 27, 0.24);
}

.admin-venue-form small {
  min-height: 18px;
  color: var(--muted);
  font-weight: 850;
}

.admin-venue-check {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.admin-venue-check input {
  width: 18px;
  min-height: 18px;
}

.admin-venue-selected {
  border-color: rgba(249, 197, 27, 0.75);
  box-shadow: 0 14px 34px rgba(249, 197, 27, 0.18);
}

.admin-menu-current-list {
  display: grid;
  gap: 8px;
}

.admin-menu-current-list button {
  display: grid;
  gap: 4px;
  min-height: auto;
  border: 1px solid rgba(33, 26, 46, 0.1);
  border-radius: 14px;
  background: #fffaf0;
  color: var(--ink);
  padding: 10px 12px;
  text-align: left;
  box-shadow: none;
}

.admin-menu-current-list button strong,
.admin-menu-current-list button span {
  display: block;
}

.admin-menu-current-list button span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.admin-venue-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-venue-gallery-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-gallery-uploader {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px dashed rgba(33, 26, 46, 0.18);
  border-radius: 18px;
  background: #fffaf0;
  padding: 14px;
}

.admin-gallery-uploader label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 950;
}

.admin-gallery-uploader input {
  border: 1px solid rgba(33, 26, 46, 0.12);
  border-radius: 14px;
  background: white;
  padding: 10px;
}

.admin-gallery-uploader p,
.admin-venue-gallery-panel small {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.45;
}

.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

.admin-gallery-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(33, 26, 46, 0.1);
  border-radius: 18px;
  background: white;
  padding: 10px;
  box-shadow: 0 10px 24px rgba(34, 24, 49, 0.07);
  cursor: grab;
}

.admin-gallery-card.cover {
  border-color: rgba(249, 197, 27, 0.75);
  box-shadow: 0 14px 32px rgba(249, 197, 27, 0.18);
}

.admin-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: #f2eef8;
}

.admin-gallery-card strong,
.admin-gallery-card span {
  display: block;
}

.admin-gallery-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-gallery-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-gallery-actions button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 10px;
  font-weight: 900;
  cursor: pointer;
}

.admin-gallery-actions button:last-child {
  background: #fff4d2;
  color: #5a4210;
}

.admin-menu-manager-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}

.admin-menu-panel {
  display: grid;
  gap: 14px;
}

.admin-menu-table-wrap {
  overflow-x: auto;
}

.admin-menu-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.admin-menu-table th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-align: left;
  padding: 0 10px 4px;
}

.admin-menu-table td {
  background: #fff;
  border-top: 1px solid rgba(33, 26, 46, 0.08);
  border-bottom: 1px solid rgba(33, 26, 46, 0.08);
  padding: 10px;
  vertical-align: middle;
  font-weight: 850;
}

.admin-menu-table td:first-child {
  border-left: 1px solid rgba(33, 26, 46, 0.08);
  border-radius: 14px 0 0 14px;
}

.admin-menu-table td:last-child {
  border-right: 1px solid rgba(33, 26, 46, 0.08);
  border-radius: 0 14px 14px 0;
}

.admin-menu-table tr[draggable="true"] {
  cursor: grab;
}

.admin-drag-cell {
  color: var(--muted);
  font-weight: 950;
  white-space: nowrap;
}

.admin-menu-thumb {
  width: 64px;
  height: 48px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  background: #f1edf6;
}

/* Mekan listesi kapak gorseli ve isim hucresi */
.admin-venue-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-venue-thumb {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: cover;
  background: #f1edf6;
}

.admin-venue-thumb-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9a8f4a;
  background: #fff4d2;
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
}

/* Durum rozetleri */
.admin-venue-status.is-verified {
  background: #dcfce7;
  color: #166534;
}

.admin-venue-status.is-missing {
  background: #fee2e2;
  color: #991b1b;
}

.admin-venue-status.is-review {
  background: #fff4d2;
  color: #5a4210;
}

/* Surukle-birak tutamaci */
.admin-drag-handle {
  display: inline-block;
  margin-right: 4px;
  color: rgba(33, 26, 46, 0.4);
  font-size: 1.05rem;
  cursor: grab;
}

/* Form gorsel onizleme */
.admin-form-preview {
  margin: 0;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(33, 26, 46, 0.1);
  border-radius: 16px;
  background: #fffaf0;
}

.admin-form-preview img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: #f1edf6;
}

.admin-form-preview figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-form-preview figcaption button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: #fee2e2;
  color: #991b1b;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

/* Silme butonlari net biçimde ayrılsın (geri alınamaz aksiyon) */
.admin-venue-row-actions button[data-venue-delete],
.admin-venue-row-actions button[data-delete-product],
.admin-venue-row-actions button[data-category-delete] {
  background: #fee2e2;
  color: #991b1b;
}

/* Basari / hata mesaj durumlari */
.admin-body .is-success {
  color: #166534;
}

.admin-body .is-error {
  color: #b91c1c;
}

/* Onayla/Reddet aksiyon kartlari (operasyon panelleri) */
.panel-action-card .panel-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.panel-action-card .panel-card-actions button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.panel-action-card .panel-card-actions .panel-act-approve {
  background: #dcfce7;
  color: #166534;
}

.panel-action-card .panel-card-actions .panel-act-reject {
  background: #fee2e2;
  color: #991b1b;
}

.panel-action-card .panel-card-actions .panel-act-neutral {
  background: #fff4d2;
  color: #5a4210;
}

.panel-action-card .panel-card-actions button:disabled {
  opacity: 0.55;
  cursor: default;
}

.panel-action-card.is-done {
  opacity: 0.6;
}

/* Cikis butonu (sol menu alti) */
.admin-logout-btn {
  margin-top: auto;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  cursor: pointer;
}

.admin-logout-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Yonetim paneli giris ekrani */
.admin-login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #1f262d;
}

.admin-login-card {
  width: 100%;
  max-width: 380px;
  display: grid;
  gap: 14px;
  background: white;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.admin-login-brand {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
  margin-bottom: 6px;
}

.admin-login-brand .brand-mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f9c51b, #ff7a1a);
  color: #201713;
  font-weight: 1000;
  margin-bottom: 6px;
}

.admin-login-brand strong {
  font-size: 1.1rem;
  font-weight: 1000;
  color: var(--ink);
}

.admin-login-brand small {
  color: var(--muted);
  font-weight: 800;
}

.admin-login-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.admin-login-card input {
  min-height: 46px;
  border: 1px solid rgba(33, 26, 46, 0.14);
  border-radius: 13px;
  background: white;
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
  font-weight: 800;
}

.admin-login-card button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9c51b, #ff7a1a);
  color: #211a2e;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(249, 197, 27, 0.24);
}

.admin-login-card small {
  min-height: 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 850;
}

.import-review-card {
  align-items: start;
}

.import-review-card .page-service-meta {
  margin-top: 10px;
}

.import-review-checks {
  margin-top: 10px;
}

.import-match-list b,
.import-next-steps b {
  background: #f7f2eb;
  color: var(--ink);
}

.business-radar-hero,
.business-radar-axis,
.business-radar-split-card {
  min-width: 0;
  border: 1px solid rgba(67, 67, 67, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(34, 24, 49, 0.08);
}

.business-radar-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: center;
  gap: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 197, 27, 0.42), transparent 28%),
    linear-gradient(135deg, #201713, #4a246f 58%, #f9c51b);
  color: white;
  padding: 20px;
  overflow: hidden;
}

.business-radar-hero small {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
  padding: 6px 10px;
  font-weight: 900;
}

.business-radar-hero h3 {
  margin: 14px 0 6px;
  font-size: clamp(2.2rem, 8vw, 4.8rem);
  line-height: 0.9;
}

.business-radar-hero strong,
.business-radar-hero p {
  display: block;
  max-width: 720px;
}

.business-radar-hero strong {
  font-size: clamp(1.1rem, 3vw, 1.8rem);
}

.business-radar-hero p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.business-radar-score-ring {
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #201713 0 57%, transparent 58%),
    conic-gradient(#f9c51b var(--score), rgba(255, 255, 255, 0.18) 0);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.business-radar-score-ring span,
.business-radar-score-ring small {
  grid-area: 1 / 1;
}

.business-radar-score-ring span {
  color: white;
  font-size: 2rem;
  font-weight: 1000;
}

.business-radar-score-ring small {
  transform: translateY(28px);
  background: transparent;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
}

.business-radar-axis-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.business-radar-axis {
  display: grid;
  gap: 10px;
  border-radius: 20px;
  padding: 14px;
}

.business-radar-axis-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.business-radar-axis-top strong {
  font-size: 1rem;
}

.business-radar-axis-top span {
  color: var(--purple);
  font-weight: 1000;
}

.business-radar-meter {
  height: 9px;
  border-radius: 999px;
  background: #f2eee8;
  overflow: hidden;
}

.business-radar-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #562684, #9a43d8, #f9c51b);
}

.business-radar-axis small {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.4;
}

.business-radar-split {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.business-radar-split-card {
  display: grid;
  gap: 8px;
  border-radius: 20px;
  padding: 14px;
}

.business-radar-split-card small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.business-radar-split-card b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.business-radar-split-card span {
  color: var(--purple);
}

.plans-page-hero {
  background:
    linear-gradient(135deg, rgba(21, 20, 18, 0.82), rgba(21, 20, 18, 0.28)),
    radial-gradient(circle at 18% 22%, rgba(249, 197, 27, 0.82), transparent 30%),
    linear-gradient(135deg, #151412, #5b3518 52%, #f9c51b);
}

.plan-command-panel,
.plans-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 16px;
  margin-top: 18px;
}

.plan-command-panel,
.plan-side-panel {
  min-width: 0;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(34, 24, 49, 0.08);
  padding: 16px;
}

.plan-builder-form {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.55fr) auto;
  gap: 10px;
  align-items: end;
}

.plan-builder-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 900;
  font-size: 0.82rem;
}

.plan-builder-form input {
  min-width: 0;
  min-height: 46px;
  border: 1px solid rgba(67, 67, 67, 0.14);
  border-radius: 16px;
  background: #fffaf0;
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
  font-weight: 850;
}

.plan-builder-form button,
.plan-preset-grid button {
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  background: var(--ink);
  color: white;
  padding: 0 14px;
  font-weight: 1000;
  cursor: pointer;
}

.plan-preset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.plan-preset-grid button {
  background: #fff4d2;
  color: var(--ink);
}

.plan-result-stack,
.plan-social-list,
.plan-reason-list {
  display: grid;
  gap: 10px;
}

.plan-result-card,
.plan-route-card {
  border-color: rgba(249, 197, 27, 0.34);
}

.plan-reason-list {
  margin: 12px 0;
}

.plan-reason-list span {
  border-radius: 14px;
  background: rgba(249, 197, 27, 0.14);
  color: #5a4210;
  padding: 8px 10px;
  font-weight: 850;
  line-height: 1.35;
}

.plan-social-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(67, 67, 67, 0.1);
  border-radius: 18px;
  background: #fffaf0;
  padding: 13px;
}

.plan-social-card small,
.plan-social-card span {
  color: var(--muted);
  font-weight: 850;
}

.plan-social-card strong {
  font-size: 1.02rem;
}

.plan-social-card a {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 11px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
    max-height: none;
  }

  .admin-sidebar-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-sidebar-support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-main {
    padding: 18px;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-topbar-actions {
    justify-content: flex-start;
  }

  .page-card-grid,
  .page-service-grid,
  .page-profile-grid,
  .list-social-studio,
  .business-radar-axis-grid,
  .dashboard-command-grid,
  .plan-command-panel,
  .plans-layout,
  .platform-experience-grid,
  .platform-loop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .admin-venue-layout,
  .admin-venue-layout-bottom,
  .admin-venue-forms {
    grid-template-columns: 1fr;
  }

  .admin-venue-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-venue-bulkbar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .admin-sidebar {
    padding: 16px 12px;
  }

  .admin-sidebar-nav,
  .admin-sidebar-support {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding: 12px 12px 86px;
  }

  .admin-topbar {
    border-radius: 16px;
    padding: 16px;
  }

  .admin-topbar-actions,
  .admin-topbar-actions a {
    width: 100%;
  }

  .admin-venue-layout,
  .admin-venue-layout-bottom,
  .admin-venue-forms {
    grid-template-columns: 1fr;
  }

  .admin-venue-toolbar,
  .admin-venue-bulkbar {
    grid-template-columns: 1fr;
  }

  .admin-venue-form-grid,
  .admin-gallery-uploader,
  .admin-menu-manager-grid {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding: 10px 12px 86px;
  }

  .page-top-nav,
  .panel-task-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .page-top-nav a,
  .panel-task-nav a {
    flex: 0 0 auto;
  }

  .page-hero {
    min-height: 280px;
    border-radius: 24px;
  }

  .page-card-grid,
  .page-service-grid,
  .page-profile-grid,
  .list-social-studio,
  .dashboard-role-grid,
  .business-radar-hero,
  .business-radar-axis-grid,
  .business-radar-split,
  .panel-metric-grid,
  .dashboard-command-grid,
  .plan-command-panel,
  .plans-layout,
  .plan-builder-form,
  .platform-experience-hero,
  .platform-experience-grid,
  .platform-loop-grid {
    grid-template-columns: 1fr;
  }

  .page-search-form {
    grid-template-columns: 1fr;
  }

  .account-auth-panel,
  .account-list-studio,
  .account-profile-grid,
  .account-control-grid,
  .account-profile-card {
    grid-template-columns: 1fr;
  }

  .account-provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-work-card {
    grid-template-columns: 1fr;
  }

  .dashboard-role-launchpad {
    border-radius: 24px;
    padding: 14px;
  }

  .dashboard-role-card-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-radar-score-ring {
    width: 112px;
    justify-self: start;
  }

  .page-section-title {
    align-items: flex-start;
    flex-direction: column;
  }
}
