/* ── Phosphor icon alignment ── */
.ph { vertical-align: middle; font-size: 1.15em; }

/* ── Bluwe brand tokens ── */
:root {
  --navy:    #1b365d;
  --navy-hover: #254375;
  --blue:    #4770db;
  --blue-hover: #3560c8;
  --cream:   #f4f2ef;
  --bg:      #fbfaf7;
  --tan:     #d0c5a2;
  --text:    #1b365d;
  --muted:   #5a6e8a;
  --border:  #dcd6cc;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
}

/* ── Navbar ── */
.navbar {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(27,54,93,.35);
}
.nav-inner {
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 52px;
}
.nav-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  padding: 14px 0;
  letter-spacing: .02em;
}
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px 4px;
}
.nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  padding: 0 0 10px;
  gap: 0;
}
.nav-links.open { display: flex; }
.nav-links a,
.nav-links span {
  color: #c9d8f0;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.09);
}
.nav-links a:hover { color: #fff; }
.nav-user { color: var(--tan) !important; font-size: 0.82rem !important; }

@media (min-width: 700px) {
  .nav-toggle { display: none; }
  .nav-inner { flex-wrap: nowrap; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    width: auto;
    padding: 0;
    gap: 18px;
    align-items: center;
  }
  .nav-links a,
  .nav-links span { padding: 0; border-top: none; }
}

/* ── Admin dropdown (uses native <details>/<summary>) ── */
.nav-dropdown { position: relative; }
.nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
  color: #c9d8f0;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary:hover { color: #fff; }
.nav-dropdown .nav-caret { font-size: 0.8em; transition: transform .15s ease; }
.nav-dropdown[open] .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border-left: 2px solid var(--tan);
  margin: 4px 0 8px;
}
.nav-dropdown-menu a {
  color: #c9d8f0 !important;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 0 !important;
  border-top: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-dropdown-menu a:hover { color: #fff !important; }
.nav-dropdown-divider {
  display: block !important;
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 4px 0 !important;
  padding: 0 !important;
}
@media (min-width: 700px) {
  .nav-dropdown > summary { border-top: none; padding: 0; }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 220px;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    z-index: 1000;
  }
  .nav-dropdown-menu a { padding: 6px 0 !important; }
}

/* ── Flash ── */
.flash {
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.4;
}
.flash-notice { background: #e8f0fb; color: var(--navy); border-bottom: 1px solid #c5d5f0; }
.flash-alert  { background: #fde8e8; color: #991b1b;    border-bottom: 1px solid #fbb; }

/* ── Main ── */
main { min-height: calc(100svh - 52px); }

/* ── Map page ── */
html:has(.map-page),
body:has(.map-page) {
  overflow: hidden;
  overscroll-behavior: none;
}

.map-page {
  display: flex;
  flex-direction: column;
  height: calc(100svh - 52px);
  position: relative;
}

.map-sidebar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow: hidden;
}

.sidebar-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 8px;
  flex-shrink: 0;
}
.sidebar-header-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
}
.sidebar-header-icon {
  font-size: 1.05rem;
  color: var(--navy);
}
.sidebar-title-action {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: .01em;
}
.sidebar-title-action:hover { text-decoration: underline; }
.sidebar-title-action:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(71,112,219,.25);
  border-radius: 4px;
}
.sidebar-collapse-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.05rem;
  transition: background .15s;
}
.sidebar-collapse-btn:hover { background: var(--cream); }
.sidebar-collapse-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(71,112,219,.25);
}

.sidebar-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  flex-shrink: 0;
}
.filter-row {
  display: flex;
  gap: 6px;
}
.filter-row--search { align-items: center; }
.filter-row--radius {
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-row--radius select {
  width: auto;
  min-width: 92px;
}
.filter-label,
.filter-label-suffix {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.search-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
}
.search-wrapper input[type="text"] {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.search-wrapper input[type="text"]:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(71,112,219,.15);
}
.search-inline-btn {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.05rem;
  transition: background .15s, color .15s;
}
.search-inline-btn:hover { background: var(--cream); }
.search-inline-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(71,112,219,.25);
}
.autocomplete-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(27,54,93,.12);
  z-index: 2000;
  max-height: 220px;
  overflow-y: auto;
}
.autocomplete-dropdown.open { display: block; }
.autocomplete-item {
  padding: 9px 12px;
  font-size: 0.82rem;
  line-height: 1.35;
  cursor: pointer;
  border-bottom: 1px solid #f0ebe4;
  color: var(--text);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover,
.autocomplete-item.active { background: #eef3fc; color: var(--blue); }

.sidebar-filters select {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}

.sidebar-more-filters {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 6px;
}
.sidebar-more-filters > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  user-select: none;
}
.sidebar-more-filters > summary::-webkit-details-marker { display: none; }
.sidebar-more-filters > summary > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sidebar-more-chevron { transition: transform .2s ease; color: var(--muted); }
.sidebar-more-filters[open] > summary .sidebar-more-chevron { transform: rotate(180deg); }
.more-filters-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0 2px;
}
.more-filters-body .btn-sm { justify-content: center; }

.filter-select {
  padding: 7px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.filter-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(71,112,219,.15);
}

.sidebar-results-header {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
#results-count-label { display: block; line-height: 1.35; }
.sidebar-results-prefix {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 2px;
}
.sidebar-results-target {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.map-brand {
  position: absolute;
  bottom: 28px;
  right: 16px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(27,54,93,.28);
  pointer-events: none;
  user-select: none;
}
.map-brand img { display: block; height: 20px; width: auto; }
.map-brand-version {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .04em;
}

.map-hamburger-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1100;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--navy);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(27,54,93,.18);
  transition: background .15s, transform .15s;
}
.map-hamburger-btn:hover { background: var(--cream); }
.map-hamburger-btn:active { transform: scale(.97); }
.map-hamburger-btn[hidden] { display: none; }

/* Mobile FAB stack (Filtros + Minha Localização) */
.map-fab-stack {
  position: absolute;
  right: 16px;
  bottom: 64px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-fab {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(27,54,93,.22);
  color: var(--navy);
  font-size: 1.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, transform .15s;
}
.map-fab:hover { background: var(--cream); }
.map-fab:active { transform: scale(.95); }
.map-fab.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.map-fab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(71,112,219,.35), 0 4px 14px rgba(27,54,93,.22);
}
.map-fab-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  border: 2px solid #fff;
}
.map-fab-badge[hidden] { display: none; }

/* Mobile drawer backdrop */
.map-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,28,46,.35);
  z-index: 1250;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.map-drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.map-drawer-backdrop[hidden] { display: none; }

.place-marker-icon {
  background: transparent;
  border: none;
}
.place-marker-icon svg {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
  transition: filter .15s ease;
}
/* Hover / selected scale applies to all Leaflet markers (divIcon and image-icon) */
.leaflet-marker-icon {
  transform-origin: 50% 100%;
  transition: transform .15s ease;
}
.leaflet-marker-icon.marker-hover {
  transform: scale(1.18);
  z-index: 1100 !important;
}
.leaflet-marker-icon.marker-selected {
  transform: scale(1.45);
  z-index: 1200 !important;
}
.leaflet-marker-icon.marker-selected.place-marker-icon svg,
.leaflet-marker-icon.marker-selected:not(.place-marker-icon) {
  filter: drop-shadow(0 4px 8px rgba(27,54,93,.45));
}

.btn-sm {
  padding: 7px 11px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1.3;
}
.btn-sm:hover { background: var(--blue-hover); }
.btn-sm.secondary { background: var(--navy); }
.btn-sm.secondary:hover { background: var(--navy-hover); }

/* Promo discovery toggle — "Ver promoções ativas". Full-width, brand magenta
   (same #910048 as the default tag chip color) to stand out as a shortcut. */
.promo-toggle {
  width: 100%;
  min-height: 40px;
  padding: 9px 14px;
  background: linear-gradient(135deg, #b5145f, #910048);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(145, 0, 72, .28);
  transition: filter .15s, box-shadow .15s, background .15s;
}
.promo-toggle:hover { filter: brightness(1.08); }
.promo-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(145, 0, 72, .30);
}
.promo-toggle > i { font-size: 1.05rem; }

/* Active state: pressed/solid darker so "on" reads clearly. */
.promo-toggle[aria-pressed="true"] {
  background: #6f0038;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .30);
}

/* [hidden] must win over the class's display below (attr selector is more
   specific), otherwise the empty count chip leaks when promo mode is off. */
.promo-toggle-count[hidden] { display: none; }
.promo-toggle-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  font-size: 0.74rem;
  font-weight: 700;
}

/* Places list */
.places-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0 -6px 24px rgba(27,54,93,.18);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  max-height: 50vh;
  transition: transform .25s ease;
}
.places-bottom-sheet.collapsed {
  transform: translateY(calc(100% - 44px));
}
.bottom-sheet-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px 10px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}
.bottom-sheet-handle {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #d4cfc6;
  border-radius: 2px;
}
.bottom-sheet-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bottom-sheet-chevron {
  transition: transform .2s ease;
  color: var(--muted);
}
.places-bottom-sheet.collapsed .bottom-sheet-chevron { transform: rotate(180deg); }

.places-list {
  display: block;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.place-item {
  padding: 10px 12px;
  border-bottom: 1px solid #f0ebe4;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background .12s, border-color .12s;
}
.place-item:hover,
.place-item.is-hover { background: #f5f2ee; }
.place-item.is-selected {
  background: #eef3fc;
  border-left-color: var(--blue);
}
.place-item strong { display: block; font-size: 0.88rem; margin-bottom: 2px; color: var(--navy); }
.place-item small  { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.4; }
.place-item .place-meta { margin-top: 2px; color: var(--muted); font-size: 0.75rem; }
.place-item .place-meta--details {
  color: var(--blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.78rem;
}
.place-item .place-meta--details .ph-caret-right { font-size: 0.9em; }
.no-places { padding: 16px 12px; color: var(--muted); font-size: 0.85rem; }

/* End-of-list / empty-state CTA: "Adicionar Lojista" / "Adicionar Nail" */
.places-list-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s, transform 0.05s;
}
.places-list-cta:hover  { background: #1a2a4a; }
.places-list-cta:active { transform: translateY(1px); }
.places-list-cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* In the two-button case, shrink each CTA so they don't fight for room
   on the narrow sidebar — and keep the label on a single line. */
.places-list-cta-row .places-list-cta {
  padding: 9px 8px;
  font-size: 0.82rem;
  gap: 6px;
  white-space: nowrap;
}
/* Stay stacked on mobile / narrow tablet — only sit side-by-side once
   the sidebar gets its desktop width (matches the 700px breakpoint used
   throughout the layout). */
@media (min-width: 700px) {
  .places-list-cta-row { flex-direction: row; }
  .places-list-cta-row .places-list-cta { flex: 1; }
}
.places-list-empty-cta { padding: 8px 12px 16px; }
.places-list-end-cta {
  padding: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

#map { flex: 1; }

@media (min-width: 700px) {
  .map-page { flex-direction: row; }
  .map-sidebar {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 340px;
    max-height: calc(100% - 32px);
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(27,54,93,.18);
    overflow: hidden;
    transform: translateX(0);
    opacity: 1;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 600;
  }
  .map-sidebar.collapsed {
    transform: translateX(calc(-100% - 24px));
    opacity: 0;
    pointer-events: none;
  }
  .map-sidebar.no-transition { transition: none; }
  .places-bottom-sheet {
    position: static;
    flex: 1;
    min-height: 0;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    transform: none !important;
    transition: none;
  }
  .places-bottom-sheet .places-list { min-height: 0; }
  .bottom-sheet-toggle { display: none; }
  .map-fab-stack,
  .map-drawer-backdrop { display: none !important; }
}

@media (max-width: 699px) {
  .sidebar-collapse-btn,
  .map-hamburger-btn { display: none !important; }

  /* Slim floating top bar (search + Ver tudo pill).
     No explicit z-index here on purpose — adding one would create a stacking
     context that traps the inner .sidebar-more-filters drawer (z 1300)
     below the backdrop (z 1250). Positioned `absolute` is enough to overlay
     the in-flow #map. */
  .map-sidebar {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(27,54,93,.14);
    max-height: none;
    overflow: visible;
  }
  .sidebar-header-bar {
    padding: 8px 10px 4px;
  }
  .sidebar-header-left {
    padding: 6px 10px;
  }
  /* "Ver tudo" → icon-only on mobile (aria-label preserves the name) */
  .sidebar-title-action {
    font-size: 0;
    line-height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
  .sidebar-filters {
    padding: 4px 10px 10px;
    gap: 6px;
  }
  /* Results header redundant — count is shown in bottom-sheet handle */
  .sidebar-results-header { display: none; }

  /* "Filtros" details renders as a bottom drawer */
  .sidebar-more-filters {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    background: #fff;
    border-top: none;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 28px rgba(27,54,93,.22);
    z-index: 1300;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform .25s ease;
    -webkit-overflow-scrolling: touch;
  }
  .sidebar-more-filters[open] {
    transform: translateY(0);
  }
  /* Force the body to always render so the slide transition is visible */
  .sidebar-more-filters > .more-filters-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px 24px;
  }
  .sidebar-more-filters > summary {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 16px 16px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    z-index: 1;
  }
  .sidebar-more-filters > summary::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #d4cfc6;
    border-radius: 2px;
  }
  .filter-row--radius {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .filter-row--radius select {
    width: 100%;
  }
  .filter-row--radius .filter-label-suffix { display: none; }

  /* De-clutter the brand chip — keep only the logo. Move to bottom-left so it
     does not collide with the right-side FAB stack. */
  .map-brand-version { display: none; }
  .map-brand {
    bottom: 56px;
    left: 12px;
    right: auto;
    padding: 6px 10px;
  }
}

/* ── Iframe mode ── */
.iframe-body main { min-height: 100svh; }
.iframe-body .map-page { height: 100svh; }

/* ── Auth / Form pages ── */
.auth-page, .form-page { padding: 24px 14px; }
.card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: 0 2px 16px rgba(27,54,93,.1);
}
.card h1, .card h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.25rem;
  color: var(--navy);
}

@media (min-width: 500px) {
  .auth-page, .form-page { max-width: 480px; margin: 36px auto; padding: 0 16px; }
  .card { padding: 28px 24px; }
}

.field { margin-bottom: 14px; }
.field-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.field-row .field {
  flex: 1;
  margin-bottom: 0;
}
.field-row .field--number { flex: 0 0 90px; }
.field label {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.87rem;
  color: var(--navy);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(71,112,219,.15);
}

/* Color input — overrides the generic .field input rule so the
   browser-native swatch is actually visible. */
.field input[type="color"] {
  width: 64px;
  height: 40px;
  padding: 2px;
  cursor: pointer;
  -webkit-appearance: auto;
  appearance: auto;
}

/* Checkbox/radio/file — restore native sizing (the generic .field input
   rule above forces 100% width + padding which breaks them). */
.field input[type="checkbox"],
.field input[type="radio"] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: auto;
  appearance: auto;
}
.field input[type="file"] {
  padding: 6px;
  background: #fff;
}
.color-field {
  display: flex;
  align-items: center;
  gap: 10px;
}
.color-field .color-preview {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  min-width: 90px;
  justify-content: center;
}
.field trix-editor {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  min-height: 120px;
}
.field trix-editor:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(71,112,219,.15);
}
.field trix-toolbar { margin-bottom: 6px; }
.field-hint { font-size: 0.78rem; color: var(--muted); margin-top: 3px; }

/* Roomy help block for the import screens (replaces cramped field-hint text) */
.import-help {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.import-help-block { display: flex; flex-direction: column; gap: 6px; }
.import-help-block p { margin: 0; }
.import-help-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.86rem;
}
.import-help code {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.92em;
  white-space: nowrap;
}


.btn-primary {
  width: 100%;
  padding: 12px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  letter-spacing: .01em;
}
.btn-primary:hover { background: var(--navy-hover); }

.form-footer {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.form-footer a { color: var(--blue); }

/* ── Errors ── */
.error-messages {
  background: #fef2f2;
  border: 1px solid #fbb;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: #991b1b;
}
.error-messages ul { margin: 4px 0 0 16px; padding: 0; }

/* ── My Places ── */
.my-places-page { padding: 20px 14px; }
.my-places-page h1 { margin-bottom: 16px; font-size: 1.3rem; color: var(--navy); }

@media (min-width: 700px) {
  .my-places-page { max-width: 960px; margin: 28px auto; padding: 0 16px; }
}

.page-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.btn-add {
  padding: 10px 18px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-add:hover { background: var(--navy-hover); }
.btn-add--secondary { background: var(--muted); }
.btn-add--secondary:hover { background: #4a5a6e; }

.place-cards { display: flex; flex-direction: column; gap: 10px; }
.place-card {
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 1px 6px rgba(27,54,93,.08);
}
.place-card-name { font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.place-card-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 2px; }
.place-card-coords { font-size: 0.75rem; color: var(--tan); margin-bottom: 8px; }
.place-card-actions { display: flex; gap: 8px; }

.places-table-wrap { overflow-x: auto; }
.places-table {
  display: none;
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(27,54,93,.08);
}
.places-table th,
.places-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #f0ebe4; font-size: 0.85rem; }
.places-table th { background: #f5f2ee; font-weight: 600; color: var(--navy); }
.places-table tr:last-child td { border-bottom: none; }
.places-table tr:hover td { background: #faf8f5; }

@media (min-width: 700px) {
  .place-cards { display: none; }
  .places-table { display: table; }
}

.btn-edit {
  padding: 5px 11px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
}
.btn-edit:hover { background: var(--navy-hover); }
.btn-delete {
  padding: 5px 11px;
  background: #dc2626;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.8rem;
}
.btn-delete:hover { background: #b91c1c; }
.btn-regeocode {
  padding: 5px 11px;
  background: #d97706;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-regeocode:hover { background: #b45309; }

.empty-state {
  padding: 32px 14px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border-radius: 8px;
}

/* ── Status badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  margin-left: 6px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .02em;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 1.4;
}
.badge-approved { background: #e8f0fb; color: var(--navy); border: 1px solid #c5d5f0; }
.badge-pending  { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.badge-geo-review { background: #fde8e8; color: #9b1c1c; border: 1px solid #f8b4b4; }

/* Admin manual pin adjustment map */
#admin-geo-map {
  height: 300px;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  z-index: 0;
}
.geo-review-flag { color: #9b1c1c; font-weight: 600; }

/* ── Promo tag chips ── */
.place-tag-chip {
  display: inline-block;
  padding: 3px 8px;
  margin-right: 4px;
  border-radius: 4px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
  vertical-align: middle;
}
.place-tag-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 4px 0;
}
.tag-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
  margin-bottom: 6px;
  cursor: pointer;
}
.tag-checkbox input[type="checkbox"] { margin: 0; }
.tag-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

/* ── Admin moderation page ── */
.admin-section-title {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.admin-submitter {
  margin-top: 4px;
  color: var(--text);
  font-size: 0.8rem;
}
.admin-submitter .ph { color: var(--blue); margin-right: 2px; }
.admin-submitter-date { color: var(--muted); }

.admin-place-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Admin "Locais" page polish ── */
.admin-page { max-width: 1100px; margin: 0 auto; padding: 20px 16px 60px; }
.admin-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.admin-page-header h1 { margin: 0; color: var(--navy); }
.admin-page-subtitle { margin: 4px 0 0; color: var(--muted); font-size: 0.88rem; }
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 1px 6px rgba(27,54,93,.06);
  margin-bottom: 18px;
}
.admin-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 320px;
  background: var(--cream);
  border-radius: 8px;
  padding: 6px 10px;
}
.admin-search i.ph { color: var(--muted); }
.admin-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
}
.admin-search-clear {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.admin-search-clear:hover { color: var(--navy); }
.admin-counts { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-filter {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 0.88rem;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
}
.admin-filter:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(71,112,219,.15);
}

/* ── Pagy nav ── */
.pagy-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(27,54,93,.06);
  flex-wrap: wrap;
}
.pagy-nav .pagy {
  display: inline-flex;
  gap: 4px;
  flex-wrap: wrap;
}
.pagy-nav .pagy a,
.pagy-nav .pagy .gap {
  display: inline-block;
  min-width: 34px;
  padding: 6px 10px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
.pagy-nav .pagy a:hover {
  background: var(--navy);
  color: var(--cream);
}
.pagy-nav .pagy a.current {
  background: var(--navy);
  color: var(--cream);
  pointer-events: none;
}
.pagy-nav .pagy a.disabled {
  opacity: .4;
  pointer-events: none;
}
.pagy-info {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Tag import summary + results table ── */
.import-summary {
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 1px 6px rgba(27,54,93,.06);
  margin-bottom: 18px;
}
.import-summary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.import-summary-row strong { color: var(--navy); }
.import-summary-meta {
  font-size: 0.82rem;
  color: var(--muted);
  gap: 18px;
}
.import-summary-meta i.ph { color: var(--blue); margin-right: 2px; }
.import-status--completed { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.import-status--processing,
.import-status--pending   { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.import-status--failed    { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.import-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.import-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid transparent;
}
.import-stat-value { font-size: 1.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.import-stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .04em; }
.import-stat--success { background: #f0fdf4; border-color: #bbf7d0; }
.import-stat--success .import-stat-value { color: #166534; }
.import-stat--error { background: #fef2f2; border-color: #fecaca; }
.import-stat--error .import-stat-value { color: #991b1b; }
.import-stat--skipped { background: #f5f3ff; border-color: #ddd6fe; }
.import-stat--skipped .import-stat-value { color: #5b21b6; }
.import-stat--updated { background: #f0f9ff; border-color: #bae6fd; }
.import-stat--updated .import-stat-value { color: #075985; }

.results-legend {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px dashed var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
.results-legend .badge { margin: 0; justify-self: start; }
.legend-text { color: var(--muted); }

.results-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(27,54,93,.06);
}
.results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.results-table th,
.results-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #f0ebe4;
  vertical-align: top;
}
.results-table th {
  background: #f5f2ee;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.results-table tr:last-child td { border-bottom: none; }
.results-row--success { background: #fbfffc; }
.results-row--error   { background: #fffafa; }
.results-row--skipped { background: #fbfaff; }
.results-row:hover    { background: #faf8f5; }
.results-row-num { color: var(--muted); font-variant-numeric: tabular-nums; }
.results-places { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.results-places i.ph { color: var(--blue); margin-right: 4px; font-size: 0.85em; }
.muted { color: var(--muted); }

.badge-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.badge-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.badge-skipped { background: #ede9fe; color: #5b21b6; border: 1px solid #ddd6fe; }
.badge-updated { background: #e0f2fe; color: #075985; border: 1px solid #bae6fd; }
.badge-success i.ph,
.badge-error i.ph,
.badge-updated i.ph,
.badge-skipped i.ph { font-size: 0.9em; margin-right: 2px; vertical-align: -1px; }

/* ── CSV template callout (tag import) ── */
.csv-template-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px dashed var(--tan);
  margin: 16px 0;
}
.csv-template-box > i.ph {
  font-size: 2rem;
  color: var(--blue);
}
.csv-template-box > div { flex: 1; min-width: 0; }
.csv-template-box strong { color: var(--navy); display: block; }
.csv-template-box p { margin: 2px 0 0; font-size: 0.82rem; color: var(--muted); }
.csv-template-box a { flex-shrink: 0; }
@media (max-width: 600px) {
  .csv-template-box { flex-direction: column; align-items: flex-start; }
}

.admin-place-row {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 4px solid transparent;
  box-shadow: 0 1px 6px rgba(27,54,93,.06);
  transition: box-shadow .15s ease, transform .15s ease;
}
.admin-place-row:hover { box-shadow: 0 4px 14px rgba(27,54,93,.12); }
.admin-place-row--pending  { border-left-color: #f59e0b; }
.admin-place-row--approved { border-left-color: #22c55e; }
.admin-place-row-main { flex: 1; min-width: 0; }
.admin-place-row-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.admin-place-name { font-weight: 700; color: var(--navy); font-size: 0.98rem; }
.admin-place-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 0.82rem;
  color: var(--muted);
}
.admin-place-row-meta i.ph { color: var(--blue); margin-right: 2px; }
.admin-place-row-actions {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  flex-shrink: 0;
}
.btn-edit--ghost {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1px solid var(--border);
}
.btn-edit--ghost:hover { background: var(--cream) !important; }

@media (max-width: 700px) {
  .admin-place-row { flex-direction: column; }
  .admin-place-row-actions { flex-wrap: wrap; }
}

/* ── Leaflet popup (map-anchored info card) ── */
.leaflet-popup.map-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(27,54,93,.22);
  padding: 4px;
}
.leaflet-popup.map-popup-wrapper .leaflet-popup-content {
  margin: 12px 14px;
  font-family: inherit;
  line-height: 1.4;
  min-width: 200px;
}
.leaflet-popup.map-popup-wrapper .leaflet-popup-tip { box-shadow: 0 8px 28px rgba(27,54,93,.22); }

.map-popup-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 6px;
  padding-right: 18px;
}
.map-popup-type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.map-popup-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text);
  margin-top: 8px;
}
.map-popup-row i {
  color: var(--blue);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.map-popup-row a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.map-popup-row a:hover { text-decoration: underline; }

/* Directions mini-menu (mobile-only "Como chegar") */
.map-popup-directions { margin-top: 8px; }
.map-popup-directions-toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border: none;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.map-popup-directions-toggle .ph-caret-down { margin-left: auto; transition: transform .15s; }
.map-popup-directions.is-open .ph-caret-down { transform: rotate(180deg); }
.map-popup-directions-menu { display: none; margin-top: 6px; }
.map-popup-directions.is-open .map-popup-directions-menu { display: flex; flex-direction: column; gap: 4px; }
.map-popup-directions-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy) !important;
  text-decoration: none;
}
.map-popup-directions-menu a:hover { background: #f5f2ee; text-decoration: none; }

/* ── Iframe login required ── */
.iframe-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 32px 20px;
  text-align: center;
}
.iframe-login p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.iframe-login a { color: var(--blue); font-weight: 600; }

/* ── LGPD consent banner (standalone only; iframe gets consent via postMessage) ── */
.consent-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(27,54,93,.18);
  padding: 14px 16px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text);
}
.consent-banner-text { margin: 0; line-height: 1.4; }
.consent-banner-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.consent-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.consent-btn--accept {
  background: var(--navy);
  color: #fff;
}
.consent-btn--accept:hover { background: #1a2a4a; }
.consent-btn--decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.consent-btn--decline:hover { background: #f4ede2; color: var(--text); }
@media (min-width: 700px) {
  .consent-banner {
    left: auto;
    right: 20px;
    bottom: 20px;
    max-width: 420px;
    flex-direction: row;
    align-items: center;
  }
  .consent-banner-text { flex: 1; }
  .consent-banner-actions { flex-shrink: 0; }
}
