:root {
  --bg-0: #14070d;
  --bg-1: #241018;
  --bg-2: #3d1730;
  --panel: rgba(34, 13, 24, 0.82);
  --panel-strong: rgba(49, 18, 36, 0.94);
  --surface: rgba(255, 247, 250, 0.07);
  --surface-strong: rgba(255, 247, 250, 0.11);
  --text: #f9eaf0;
  --muted: #d7b5c2;
  --line: rgba(247, 222, 232, 0.12);
  --accent: #ff5d96;
  --accent-strong: #ffb3ce;
  --accent-soft: rgba(255, 93, 150, 0.16);
  --teal: #75d8d0;
  --gold: #f2c26b;
  --shadow: 0 28px 64px rgba(7, 1, 6, 0.42);
  --shadow-soft: 0 14px 34px rgba(7, 1, 6, 0.24);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 160px),
    linear-gradient(120deg, rgba(117, 216, 208, 0.06), transparent 34%),
    linear-gradient(240deg, rgba(242, 194, 107, 0.05), transparent 30%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 46%, #0c0408 100%);
  font-family: "Yu Gothic UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.app-shell {
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 44px;
}

.hero {
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 18px 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(70, 24, 44, 0.95), rgba(22, 9, 16, 0.94)),
    linear-gradient(90deg, rgba(117, 216, 208, 0.06), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 100%);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--teal));
  opacity: 0.9;
}

.hero-copy-block {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero h1,
.selected-title,
.map-headline {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.hero-kicker {
  margin: 0 0 8px;
  color: #f3c86f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.04;
  font-weight: 700;
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  color: #f6d6e1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  margin-top: 12px;
}

.filters-panel {
  position: sticky;
  top: 10px;
  align-self: start;
  display: grid;
  gap: 14px;
}

.content-panel {
  min-width: 0;
}

.panel-block,
.summary-card,
.table-wrap,
.store-card,
.map-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-block,
.map-board,
.summary-card,
.store-card {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.panel-block,
.map-board {
  padding: 18px 18px 20px;
}

.panel-block::before,
.map-board::before,
.summary-card::before,
.store-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
}

.summary-card {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(72, 24, 48, 0.92), rgba(30, 11, 22, 0.88));
}

.input-label,
.mini-label,
.summary-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.last-updated-text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.sync-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
}

#syncStatusText {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(117, 216, 208, 0.12);
  color: #b9f2ec;
  border: 1px solid rgba(117, 216, 208, 0.18);
}

.sync-meta-text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.sync-tools-row {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 12px;
}

.text-input,
.select-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 252, 0.96);
  color: #28121c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.region-summary {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.region-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 251, 0.08), rgba(255, 248, 251, 0.04));
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.region-toggle:hover {
  border-color: rgba(255, 184, 212, 0.32);
  transform: translateY(-1px);
}

.region-toggle-label {
  font-size: 14px;
  font-weight: 700;
}

.region-toggle-icon {
  color: var(--muted);
  font-size: 12px;
}

.region-children {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.region-group {
  display: grid;
  gap: 6px;
}

.region-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-left: 12px;
  color: var(--muted);
  font-size: 13px;
}

.region-child-button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 251, 0.05), rgba(255, 248, 251, 0.025));
  cursor: pointer;
  text-align: left;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.region-child-button:hover {
  background: rgba(255, 248, 251, 0.08);
}

.region-child-name {
  line-height: 1.5;
}

.region-child-count {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.municipality-list {
  display: grid;
  gap: 4px;
  padding-left: 18px;
}

.municipality-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(248, 231, 238, 0.72);
  font-size: 12px;
}

.municipality-button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.municipality-name {
  line-height: 1.45;
}

.municipality-count {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.search-button {
  min-width: 84px;
  white-space: nowrap;
}

.chip,
.primary-button,
.secondary-link,
.icon-button,
.action-link,
.focus-button,
.map-list-item {
  border-radius: 8px;
  transition: 180ms ease;
}

.chip,
.secondary-link,
.icon-button,
.action-link,
.focus-button,
.map-list-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 248, 251, 0.08), rgba(255, 248, 251, 0.04));
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.chip {
  padding: 10px 12px;
  cursor: pointer;
}

.chip.is-active,
.primary-button,
.action-link.primary,
.focus-button:hover,
.map-list-item.is-active {
  background: linear-gradient(135deg, #ff5d96, #d83d75 62%, #f2c26b 130%);
  border-color: rgba(255, 184, 212, 0.4);
  color: #fff7fb;
}

.primary-button,
.secondary-link,
.icon-button {
  padding: 12px 16px;
  text-decoration: none;
}

.primary-button {
  border: 1px solid rgba(255, 184, 212, 0.35);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(216, 61, 117, 0.24);
}

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

.analytics-total {
  font-size: 24px;
  line-height: 1;
  color: #fff4c8;
}

.revenue-chart {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.analytics-subhead {
  margin-top: 14px;
}

.history-subhead {
  margin-top: 18px;
}

.daily-update-history {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.update-history-item {
  padding: 12px 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}

.update-history-item:first-child {
  padding-top: 12px;
}

.update-history-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.update-history-date,
.update-history-summary {
  font-size: 12px;
}

.update-history-date {
  color: var(--text);
  font-weight: 700;
}

.update-history-summary {
  color: var(--muted);
}

.update-history-group {
  margin-top: 8px;
}

.update-history-label {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.update-history-label.is-added {
  color: #ffb9d1;
}

.update-history-label.is-removed {
  color: #ffd47e;
}

.update-history-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.update-history-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 251, 0.06);
  font-size: 11px;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.update-history-tag.is-link {
  color: inherit;
  cursor: pointer;
}

.update-history-tag.is-profile-pink {
  border-color: rgba(255, 93, 150, 0.72);
  background: rgba(255, 93, 150, 0.18);
  color: #ffe7f0;
}

.update-history-tag.is-profile-yellow {
  border-color: rgba(255, 188, 66, 0.72);
  background: rgba(255, 188, 66, 0.2);
  color: #fff1bf;
}

.update-history-empty {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.revenue-row {
  display: grid;
  gap: 8px;
}

.revenue-row-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.revenue-count {
  color: var(--muted);
  font-size: 12px;
}

.revenue-month,
.revenue-total {
  font-size: 13px;
}

.revenue-month {
  margin-right: auto;
}

.revenue-total {
  color: var(--accent-strong);
  font-weight: 700;
}

.revenue-bar-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 248, 251, 0.08);
  overflow: hidden;
}

.revenue-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff5d96, #ffb000);
}


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

.summary-value {
  display: block;
  margin-top: 10px;
  font-size: 28px;
}

.status-text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(330px, 0.68fr);
  gap: 18px;
}

.map-stage,
.map-side {
  min-width: 0;
}

.map-stage {
  display: grid;
  gap: 6px;
}

.profile-map-panel {
  display: grid;
  gap: 0;
}

.selected-store,
.map-list-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.selected-title {
  margin: 0;
  font-size: 25px;
  line-height: 1.24;
}

.selected-meta {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.selected-meta:empty {
  display: none;
}

.edit-access-text {
  color: #f0cfe0;
}

.edit-access-text.is-readonly {
  color: #ffd27f;
}

.selected-profile-meta {
  margin-top: 6px;
  font-size: 13px;
}

.profile-positive {
  color: #ff6b8f;
  font-weight: 700;
}

.selected-review-summary {
  margin: 12px 0 0;
  color: var(--accent-strong);
  font-size: 14px;
  line-height: 1.6;
}

.selected-store {
  display: grid;
  gap: 2px;
}

.embed-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    rgba(8, 2, 5, 0.72);
  min-height: 540px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.google-map-canvas {
  width: 100%;
  min-height: 540px;
}

.gm-style,
.gm-style iframe,
.gm-style canvas {
  border-radius: 8px;
}

.map-side {
  display: grid;
  gap: 14px;
}

.map-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

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

.profile-map-title {
  font-size: 18px;
}

.profile-google-map-canvas {
  min-height: 420px;
}

.profile-map-status {
  margin-top: 12px;
}

.selected-actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.selected-actions-compact {
  align-items: center;
  gap: 8px;
}

.icon-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.icon-action.is-active {
  color: #ff2f74;
  border-color: rgba(255, 120, 166, 0.55);
  background: rgba(255, 93, 150, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 93, 150, 0.12) inset;
}

.icon-action.is-excluded {
  color: #1d1d1f;
  border-color: rgba(170, 170, 178, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.street-view-panel {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.street-view-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 2, 5, 0.72);
  min-height: 220px;
}

.street-view-canvas {
  width: 100%;
  min-height: 220px;
}

.street-view-status {
  margin-top: 10px;
}

.store-profile-panel {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.store-profile-toolbar {
  margin-top: 12px;
}

.store-profile-toolbar .action-link,
.review-toolbar .action-link {
  width: 100%;
  justify-content: center;
  font-weight: 700;
}

.review-panel {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.review-toolbar {
  margin-top: 12px;
}

.review-form-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.review-storage-note,
.review-meta {
  color: var(--muted);
  font-size: 12px;
}

.review-form {
  margin-top: 8px;
}

.store-profile-grid,
.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.review-field {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.review-field.is-wide {
  grid-column: 1 / -1;
}

.store-address-area {
  min-height: 92px;
}

.review-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.text-area {
  width: 100%;
  min-height: 88px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 252, 0.96);
  color: #28121c;
  resize: vertical;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.store-profile-panel .store-address-area,
.store-profile-panel #storeNoteInput {
  min-height: 68px;
}

.review-form-actions {
  margin-top: 10px;
}

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

.review-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

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

.archived-review-group {
  display: grid;
  gap: 10px;
}

.archived-review-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.archived-review-title {
  font-size: 13px;
  line-height: 1.4;
}

.archived-review-meta {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.archived-review-items {
  margin-top: 0;
}

.review-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.review-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.review-author {
  color: #fff3bf;
}

.review-author {
  display: block;
  font-size: 14px;
}

.review-delete-button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 251, 0.05);
  color: var(--muted);
  cursor: pointer;
}

.review-comment {
  margin: 10px 0 0;
  line-height: 1.7;
  word-break: break-word;
}

.review-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.review-detail-item {
  padding: 8px 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.review-detail-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.review-detail-value {
  display: block;
  margin-top: 4px;
  line-height: 1.5;
  word-break: break-word;
}

.emoji-flag {
  display: inline-block;
  font-family: "Noto Color Emoji", "Segoe UI Emoji", "Apple Color Emoji", "Twemoji Mozilla", sans-serif;
  font-size: 1.05em;
  line-height: 1;
  vertical-align: -0.08em;
  font-variant-emoji: emoji;
  font-feature-settings: normal;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
}

.map-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.map-list-count {
  color: var(--muted);
  font-size: 13px;
}

.map-list {
  display: grid;
  gap: 8px;
  max-height: 460px;
  overflow: auto;
}

.map-list-item {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.map-list-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 184, 212, 0.32);
}

.map-list-title {
  font-weight: 700;
  color: #fff2c0;
}

.map-list-meta {
  color: var(--muted);
  font-size: 13px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.summary-grid {
  margin-top: 16px;
}

.store-card {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(63, 18, 40, 0.9), rgba(29, 10, 21, 0.88));
}

.store-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.store-title {
  margin: 0;
  font-size: 20px;
}

.store-station {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.badge.subtle {
  background: rgba(255, 248, 251, 0.08);
  color: var(--muted);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.field {
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.field-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.field-value {
  display: block;
  margin-top: 6px;
  line-height: 1.5;
  word-break: break-word;
}

.action-link,
.focus-button {
  padding: 11px 14px;
  text-decoration: none;
  cursor: pointer;
}

.focus-button {
  color: var(--text);
}

.disabled-link {
  pointer-events: none;
  opacity: 0.45;
}

.table-wrap {
  margin-top: 16px;
  overflow: auto;
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  position: sticky;
  top: 0;
  background: rgba(72, 22, 45, 0.98);
  z-index: 1;
}

.is-hidden {
  display: none;
}

.empty-state {
  padding: 36px 24px;
  border-radius: 8px;
  border: 1px dashed var(--line);
  color: var(--muted);
  background: rgba(255, 248, 251, 0.04);
  text-align: center;
}

.map-list-count {
  color: #fff3bf;
  font-weight: 700;
  font-size: 13px;
}

.empty-state.compact {
  padding: 18px 14px;
}

@media (max-width: 1180px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: static;
  }

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

@media (max-width: 720px) {
  .app-shell {
    width: min(100% - 20px, 1440px);
    padding-top: 6px;
  }

  .hero {
    padding: 16px 16px;
    flex-direction: column;
    align-items: start;
  }

  .summary-grid,
  .cards-grid,
  .store-grid,
  .review-form-grid,
  .review-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .embed-wrap,
  .google-map-canvas {
    min-height: 360px;
  }

  th,
  td {
    padding: 12px;
  }
}
