:root {
  --gv-dark: #1E2639;
  --gv-accent: #FD6133;
  --gv-teal: #0F8B7D;
  --gv-gold: #F4B942;
  --gv-line: #e8ebf1;
  --gv-muted: #667085;
  --gv-bg: #f4f7f4;
  --gv-paper: #fbfcf8;
}

.gv-map-shell,
.gv-map-shell * {
  box-sizing: border-box;
}

.gv-map-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 390px) 1fr;
  grid-template-rows: minmax(560px, auto) auto;
  min-height: min(780px, calc(100vh - 32px));
  border: 1px solid rgba(30, 38, 57, 0.12);
  border-radius: 8px;
  overflow: hidden;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gv-dark);
  background:
    radial-gradient(circle at 82% 12%, rgba(15, 139, 125, .24), transparent 32%),
    linear-gradient(135deg, #111827, var(--gv-dark));
  box-shadow: 0 28px 80px rgba(30, 38, 57, 0.18);
}

.gv-map-filter-toggle,
.gv-map-panel-close {
  display: none;
}

.gv-map-panel {
  display: flex;
  flex-direction: column;
  grid-row: 1 / span 2;
  min-width: 0;
  border-right: 1px solid rgba(30, 38, 57, 0.1);
  background: #fff;
}

.gv-map-brand {
  position: relative;
  padding: 18px 16px 20px;
  background:
    linear-gradient(90deg, transparent 0 31px, rgba(255, 255, 255, .065) 32px),
    linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, .065) 32px),
    var(--gv-dark);
  background-size: 32px 32px;
  color: #fff;
  overflow: hidden;
}

.gv-map-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 0;
  line-height: 1;
}

.gv-map-panel-close::before {
  content: "x";
  font-size: 22px;
  line-height: 1;
}

.gv-map-brand::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.gv-map-brand strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.gv-map-brand span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.gv-map-brand small {
  display: inline-flex;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 800;
}

.gv-map-filters {
  display: grid;
  gap: 9px;
  padding: 12px;
  border-bottom: 1px solid rgba(30, 38, 57, 0.08);
  background: var(--gv-paper);
}

.gv-map-location-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  border: 1px solid rgba(30, 38, 57, .1);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

.gv-map-search,
.gv-map-near-button,
.gv-map-location-block .gv-radius-control {
  grid-column: 1 / -1;
}

.gv-map-search {
  position: relative;
  overflow: visible;
  z-index: 900;
}

.gv-map-near-button {
  min-height: 44px;
  white-space: nowrap;
}

.gv-map-quick-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.gv-map-quick-row button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid rgba(30, 38, 57, .1);
  border-radius: 8px;
  padding: 8px 9px;
  color: var(--gv-dark);
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.gv-map-quick-row button:hover,
.gv-map-quick-row button.is-active {
  border-color: rgba(253, 97, 51, .45);
  background: #fff4ef;
  transform: translateY(-1px);
}

.gv-map-date-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(253, 97, 51, .22);
  border-radius: 10px;
  padding: 10px;
  background: #fff7f2;
}

.gv-map-date-panel[hidden] {
  display: none;
}

.gv-map-date-panel > div {
  grid-column: 1 / -1;
  display: grid;
  gap: 2px;
}

.gv-map-date-panel strong {
  color: var(--gv-dark);
  font-size: 13px;
  font-weight: 950;
}

.gv-map-date-panel > div span {
  margin: 0;
  color: var(--gv-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}

.gv-map-date-panel input[type="date"] {
  min-height: 48px;
  font-size: 15px;
}

.gv-map-category-menu {
  position: relative;
  border: 1px solid rgba(30, 38, 57, .12);
  border-radius: 8px;
  background: #fff;
}

.gv-map-category-menu summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 9px 11px;
  cursor: pointer;
  list-style: none;
}

.gv-map-category-menu summary::-webkit-details-marker {
  display: none;
}

.gv-map-category-menu summary span {
  margin: 0;
  color: var(--gv-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gv-map-category-menu summary strong {
  max-width: 190px;
  overflow: hidden;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--gv-teal);
  background: rgba(15, 139, 125, .1);
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gv-map-category-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  max-height: 178px;
  overflow: auto;
  border-top: 1px solid var(--gv-line);
  padding: 10px;
}

.gv-map-category-options label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid rgba(30, 38, 57, .08);
  border-radius: 8px;
  padding: 7px 8px;
  color: var(--gv-dark);
  background: var(--gv-paper);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.gv-map-category-options input {
  width: 17px;
  min-height: 17px;
  accent-color: var(--gv-accent);
}

.gv-map-clear-categories {
  margin: 0 10px 10px;
  border: 0;
  padding: 0;
  color: var(--gv-accent);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.gv-map-date-custom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gv-map-date-custom[hidden] {
  display: none;
}

.gv-map-filters[data-gv-live-filtering="true"]::after {
  display: none;
}

.gv-map-filters label span {
  display: block;
  margin-bottom: 6px;
  color: var(--gv-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gv-map-filters input,
.gv-map-filters select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(30, 38, 57, 0.12);
  border-radius: 8px;
  padding: 9px 11px;
  font: inherit;
  color: var(--gv-dark);
  background: #fff;
  outline: none;
}

.gv-map-filters input:focus,
.gv-map-filters select:focus {
  border-color: rgba(253, 97, 51, 0.52);
  box-shadow: 0 0 0 3px rgba(253, 97, 51, 0.12);
}

.gv-map-filter-toggle:focus-visible,
.gv-map-panel-close:focus-visible,
.gv-map-search-area:focus-visible,
.gv-map-filters button:focus-visible,
.gv-map-search-suggestions button:focus-visible,
.gv-map-card-link:focus-visible {
  outline: 3px solid rgba(253, 97, 51, .48);
  outline-offset: 3px;
}

.gv-map-search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1200;
  display: grid;
  max-height: min(340px, 54vh);
  overflow: auto;
  border: 1px solid rgba(30, 38, 57, 0.14);
  border-radius: 8px;
  padding: 6px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(30, 38, 57, 0.18);
}

.gv-map-search-suggestions[hidden] {
  display: none;
}

.gv-map-search-suggestions button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  padding: 8px 10px;
  color: var(--gv-dark);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.gv-map-search-suggestions button:hover,
.gv-map-search-suggestions button.is-active {
  background: #fff4ef;
}

.gv-map-search-suggestions button strong {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gv-map-search-suggestions button small {
  border-radius: 999px;
  padding: 3px 7px;
  color: var(--gv-teal);
  background: rgba(15, 139, 125, .1);
  font-size: 11px;
  font-weight: 900;
}

.gv-map-filters .gv-map-category-options input[type="checkbox"] {
  width: 17px;
  min-height: 17px;
  padding: 0;
  border-radius: 4px;
}

.gv-map-filters .gv-map-category-options label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.gv-map-filters .gv-map-category-options label span {
  margin: 0;
  color: var(--gv-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: none;
}

.gv-map-filter-subgroup {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(30, 38, 57, .10);
}

.gv-map-filter-subgroup > strong,
.gv-map-filter-subgroup > small {
  display: block;
  margin: 0 0 8px;
  color: var(--gv-muted);
  font-size: 12px;
}

.gv-map-category-options-exclude label {
  background: rgba(253, 97, 51, .08);
}

.gv-map-inline-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--gv-dark);
}

.gv-map-inline-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.gv-map-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gv-map-active-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(30, 38, 57, .12);
  border-radius: 999px;
  background: #fff;
  color: var(--gv-dark);
  font-size: 12px;
  font-weight: 700;
}

.gv-radius-control {
  border: 1px solid rgba(30, 38, 57, .1);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}

.gv-radius-control span {
  display: flex !important;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.gv-radius-control output {
  border-radius: 999px;
  padding: 3px 8px;
  color: #fff;
  background: var(--gv-accent);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.gv-radius-control input[type="range"] {
  min-height: 24px;
  padding: 0;
  accent-color: var(--gv-accent);
}

.gv-filter-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding-top: 4px;
}

.gv-live-filter-note {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--gv-teal);
  background: rgba(15, 139, 125, .1);
  font-size: 12px;
  font-weight: 900;
}

.gv-button {
  min-height: 42px;
  border: 1px solid var(--gv-accent);
  border-radius: 6px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 800;
  color: #fff;
  background: var(--gv-accent);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 12px 24px rgba(253, 97, 51, 0.18);
}

.gv-button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.gv-button-secondary {
  color: var(--gv-dark);
  border-color: #ccd3df;
  background: #fff;
  box-shadow: none;
}

.gv-button-secondary:hover {
  color: var(--gv-dark);
  background: #f8fafc;
}

.gv-map-main {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.gv-map-loader {
  position: absolute;
  inset: 18px;
  z-index: 760;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  max-width: 520px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(30, 38, 57, .92), rgba(13, 75, 82, .90)),
    radial-gradient(circle at 24% 24%, rgba(253, 97, 51, .26), transparent 34%);
  box-shadow: 0 24px 70px rgba(30, 38, 57, .24);
}

.gv-map-loader[hidden] {
  display: none;
}

.gv-map-loader.is-loading {
  cursor: wait;
}

.gv-map-loader.is-loading .gv-button {
  opacity: .72;
  cursor: progress;
}

.gv-map-loader span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  padding: 6px 10px;
  color: #FFB629;
  background: rgba(255, 255, 255, .10);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.gv-map-loader strong {
  display: block;
  max-width: 12ch;
  margin-top: 10px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: .95;
  font-weight: 950;
}

.gv-map-loader p {
  max-width: 38ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 750;
}

.gv-map-results-panel {
  min-width: 0;
  border-top: 1px solid rgba(30, 38, 57, 0.10);
  background: linear-gradient(180deg, #fff, #fbfcf8);
}

.gv-map-results-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 18px 20px 8px;
}

.gv-map-results-heading span {
  display: block;
  color: var(--gv-accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.gv-map-results-heading h2 {
  margin: 2px 0 0;
  color: var(--gv-dark);
  font-size: 24px;
  line-height: 1.15;
}

.gv-map-results-heading p {
  max-width: 320px;
  margin: 0;
  color: var(--gv-muted);
  font-size: 13px;
  font-weight: 800;
}

.gv-map-search-area {
  position: absolute;
  z-index: 750;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 42px;
  border: 1px solid rgba(30, 38, 57, .16);
  border-radius: 999px;
  padding: 9px 16px;
  color: #fff;
  background: var(--gv-dark);
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(30, 38, 57, .22);
}

.gv-map-search-area[hidden] {
  display: none;
}

.gv-map-app-search-status {
  position: absolute;
  z-index: 745;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  max-width: min(360px, calc(100% - 28px));
  border: 1px solid rgba(30, 38, 57, .12);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--gv-dark);
  background: rgba(255, 255, 255, .94);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 14px 36px rgba(30, 38, 57, .18);
  pointer-events: none;
}

.gv-map-app-search-status[hidden] {
  display: none;
}

.gv-map-shell.is-app-map .gv-map-search-area {
  background: #0f8b7d;
  box-shadow: 0 14px 34px rgba(15, 139, 125, .26);
}

.gv-map-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 12px;
  overflow: auto;
  padding: 14px 20px 22px;
  background:
    linear-gradient(180deg, #fff, #fbfcf8);
}

.gv-map-load-more {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 44px;
  border: 1px solid rgba(30, 38, 57, .12);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--gv-dark);
  background: #fff;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(30, 38, 57, .10);
}

.gv-map-summary {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
  border: 1px solid rgba(253, 97, 51, .18);
  border-radius: 10px;
  padding: 12px;
  background: #fff4ef;
}

.gv-map-summary strong {
  color: var(--gv-dark);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 950;
}

.gv-map-summary span,
.gv-map-summary small {
  color: var(--gv-muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.gv-map-debug {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  margin: 0 14px 12px;
  padding: 10px 12px;
  border: 1px solid rgba(253, 97, 51, 0.24);
  border-radius: 8px;
  background: #fff6f1;
  color: var(--gv-dark);
  font-size: 12px;
  line-height: 1.3;
}

.gv-map-debug strong {
  font-size: 13px;
}

.gv-map-debug span {
  color: var(--gv-dark);
}

.gv-map-debug small {
  display: block;
  overflow-wrap: anywhere;
  color: var(--gv-muted);
}

/* GiroVivo 2035: mappa pubblica piu premium senza aumentare il carico. */
.gv-map-shell {
  border-radius: 24px;
  border-color: rgba(30, 38, 57, .10);
  background:
    radial-gradient(circle at 82% 12%, rgba(253, 97, 51, .12), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f7fafb 100%);
  box-shadow: 0 30px 100px rgba(30, 38, 57, .14);
}

.gv-map-brand {
  background:
    radial-gradient(circle at 78% 18%, rgba(244, 185, 66, .18), transparent 28%),
    linear-gradient(135deg, #11182a 0%, #1E2639 54%, #0D4B52 100%);
}

.gv-map-brand span {
  color: #F4B942;
  font-weight: 950;
  text-transform: uppercase;
}

.gv-map-brand small {
  border-radius: 999px;
}

.gv-map-quick-row button,
.gv-map-category-menu,
.gv-result-card,
.gv-map-load-more {
  border-radius: 16px;
}

.gv-map-loader {
  background:
    radial-gradient(circle at 55% 44%, rgba(253, 97, 51, .22), transparent 22%),
    radial-gradient(circle at 42% 52%, rgba(15, 139, 125, .20), transparent 24%),
    linear-gradient(120deg, rgba(17, 24, 42, .88), rgba(30, 38, 57, .72));
}

.gv-map-loader strong {
  font-size: clamp(28px, 5vw, 58px);
}

.gv-map-canvas {
  border-radius: 0 24px 0 0;
}

.gv-result-card {
  box-shadow: 0 18px 50px rgba(30, 38, 57, .08);
}

.gv-result-card::before {
  border-radius: 999px;
}

.gv-result-chips span,
.gv-result-source,
.gv-map-legend button {
  border-radius: 999px;
}

.gv-map-legend {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 12px;
}

.gv-map-legend button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid color-mix(in srgb, var(--gv-cat, var(--gv-accent)) 34%, transparent);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--gv-dark);
  background: color-mix(in srgb, var(--gv-cat, var(--gv-accent)) 10%, #fff);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.gv-map-legend button:hover,
.gv-map-legend button.is-active {
  border-color: color-mix(in srgb, var(--gv-cat, var(--gv-accent)) 72%, transparent);
  background: color-mix(in srgb, var(--gv-cat, var(--gv-accent)) 18%, #fff);
  transform: translateY(-1px);
}

.gv-map-legend b {
  color: var(--gv-cat, var(--gv-accent));
}

.gv-result-card {
  position: relative;
  padding: 13px 13px 13px 15px;
  margin-bottom: 0;
  border: 1px solid rgba(30, 38, 57, 0.09);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(30, 38, 57, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.gv-result-card::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--gv-accent);
}

.gv-result-card:hover {
  border-color: rgba(253, 97, 51, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(30, 38, 57, 0.11);
}

.gv-result-card h3 {
  margin: 7px 0 6px;
  font-size: 17px;
  line-height: 1.25;
}

.gv-result-card h3 a {
  color: var(--gv-dark);
  text-decoration: none;
}

.gv-result-card p {
  margin: 3px 0;
  color: var(--gv-muted);
  font-size: 14px;
}

.gv-result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}

.gv-mini-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border: 1px solid var(--gv-line);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--gv-muted);
  background: var(--gv-paper);
  font-size: 11px;
  font-weight: 800;
}

.gv-mini-chip.is-category {
  border-color: color-mix(in srgb, var(--gv-cat, var(--gv-accent)) 35%, transparent);
  color: var(--gv-dark);
  background: color-mix(in srgb, var(--gv-cat, var(--gv-accent)) 11%, #fff);
}

.gv-mini-chip.is-warning {
  border-color: rgba(253, 97, 51, .28);
  color: #8a2e13;
  background: rgba(253, 97, 51, .10);
}

.gv-result-source {
  font-weight: 800;
}

.gv-map-no-coordinate-section {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
  margin-top: 4px;
  border: 1px solid rgba(47, 125, 101, .18);
  border-radius: 18px;
  padding: 12px;
  background: #f4faf7;
}

.gv-map-no-coordinate-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 3px;
}

.gv-map-no-coordinate-head strong {
  color: var(--gv-dark);
  font-size: 15px;
  font-weight: 950;
}

.gv-map-no-coordinate-head p {
  margin: 0;
  color: var(--gv-muted);
  font-size: 13px;
  line-height: 1.4;
}

.gv-result-card-no-map {
  cursor: default;
}

.gv-map-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 9px;
  border-radius: 999px;
  padding: 0 12px;
  color: #fff;
  background: var(--gv-green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.gv-pill,
.gv-source-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gv-accent);
  background: rgba(253, 97, 51, 0.12);
}

.gv-map-canvas {
  min-height: 620px;
  background:
    radial-gradient(circle at 70% 22%, rgba(253, 97, 51, .12), transparent 30%),
    #dbe6df;
}

.gv-map-shell.is-map-idle .gv-map-canvas {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    radial-gradient(circle at 62% 38%, rgba(253, 97, 51, .22), transparent 22%),
    linear-gradient(135deg, #172032, #0D4B52);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.gv-map-canvas .leaflet-control-zoom a {
  color: var(--gv-dark);
  font-weight: 900;
}

.gv-marker span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 0 0 7px rgba(253, 97, 51, 0.16), 0 8px 18px rgba(30, 38, 57, 0.28);
}

.gv-marker-indicative span {
  border-color: #1E2639;
  background: #F7C948 !important;
  box-shadow: 0 0 0 8px rgba(247, 201, 72, 0.22), 0 8px 18px rgba(30, 38, 57, 0.2);
}

.gv-center-marker span {
  display: block;
  width: 28px;
  height: 28px;
  border: 3px solid #fff;
  border-radius: 50%;
  background:
    linear-gradient(#1E2639, #1E2639) center/14px 3px no-repeat,
    linear-gradient(90deg, #1E2639, #1E2639) center/3px 14px no-repeat,
    #FD6133;
  box-shadow: 0 0 0 8px rgba(253, 97, 51, 0.18), 0 10px 22px rgba(30, 38, 57, 0.28);
}

.gv-popup-badge,
.gv-mini-chip.is-indicative,
.gv-mini-chip.is-precise {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 6px 0 0;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 900;
}

.gv-popup-category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin: 7px 0 0;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--gv-dark);
  background: color-mix(in srgb, var(--gv-cat, var(--gv-accent)) 11%, #fff);
  font-size: 12px;
  font-weight: 900;
}

.gv-popup-distance,
.gv-popup-place,
.gv-popup-source {
  margin-top: 4px;
  color: var(--gv-muted);
  font-size: 13px;
  font-weight: 800;
}

.gv-popup-badge.is-indicative,
.gv-mini-chip.is-indicative {
  color: #5b4200;
  background: rgba(247, 201, 72, 0.28);
}

.gv-popup-badge.is-precise,
.gv-mini-chip.is-precise {
  color: #0d6b57;
  background: rgba(36, 175, 137, 0.14);
}

.gv-popup-note,
.gv-result-note {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--gv-muted);
}

.gv-sources {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--gv-line);
  font-family: "Nunito Sans", system-ui, sans-serif;
}

.gv-sources h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.gv-sources ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.gv-sources a {
  color: var(--gv-dark);
  font-weight: 800;
}

.gv-sources li span {
  color: var(--gv-muted);
  font-size: 13px;
}

.gv-state {
  margin: 0;
  border: 1px dashed rgba(30, 38, 57, 0.16);
  border-radius: 8px;
  padding: 14px;
  color: var(--gv-muted);
  background: var(--gv-paper);
}

@media (min-width: 821px) {
  .gv-map-shell {
    grid-template-columns: minmax(310px, 390px) minmax(0, 1fr);
    grid-template-rows: minmax(620px, auto) auto;
    overflow: hidden;
    background:
      radial-gradient(circle at 82% 12%, rgba(15, 139, 125, .24), transparent 32%),
      linear-gradient(135deg, #111827, var(--gv-dark));
  }

  .gv-map-panel {
    grid-column: 1;
    grid-row: 1 / span 2;
    border-right: 1px solid rgba(30, 38, 57, 0.10);
    border-bottom: 0;
  }

  .gv-map-brand {
    display: block;
    padding: 18px 16px 20px;
  }

  .gv-map-brand::after {
    display: block;
  }

  .gv-map-brand strong {
    font-size: 24px;
  }

  .gv-map-brand small {
    margin-top: 10px;
  }

  .gv-map-filter-experience {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 9px;
    padding: 12px;
  }

  .gv-map-filter-experience .gv-map-location-block {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .gv-map-filter-experience .gv-map-search,
  .gv-map-filter-experience .gv-map-near-button,
  .gv-map-filter-experience .gv-map-location-block .gv-radius-control {
    grid-column: 1 / -1;
  }

  .gv-map-filter-experience .gv-map-quick-row {
    grid-column: auto;
    align-self: stretch;
    align-items: center;
    border: 1px solid rgba(30, 38, 57, .08);
    border-radius: 8px;
    padding: 8px;
    background: #fff;
  }

  .gv-map-filter-experience .gv-map-category-menu,
  .gv-map-filter-experience .gv-map-advanced-menu {
    align-self: stretch;
  }
}

.gv-map-advanced-menu {
  position: relative;
  border: 1px solid rgba(30, 38, 57, .12);
  border-radius: 8px;
  background: #fff;
}

.gv-map-advanced-menu summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 9px 11px;
  cursor: pointer;
  list-style: none;
}

.gv-map-advanced-menu summary::-webkit-details-marker {
  display: none;
}

.gv-map-advanced-menu summary span {
  color: var(--gv-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gv-map-advanced-menu summary strong {
  max-width: 190px;
  overflow: hidden;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--gv-teal);
  background: rgba(15, 139, 125, .1);
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gv-map-advanced-menu[open] {
  border-color: rgba(253, 97, 51, .28);
  box-shadow: 0 18px 44px rgba(30, 38, 57, .12);
}

.gv-map-advanced-menu:not([open]) .gv-map-advanced-grid {
  display: none;
}

.gv-map-advanced-menu .gv-map-advanced-grid {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 850;
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 10px;
  width: min(900px, calc(100vw - 36px));
  max-height: 430px;
  overflow: auto;
  border: 1px solid rgba(30, 38, 57, .12);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(30, 38, 57, .18);
}

.gv-map-advanced-grid .gv-map-date-custom {
  grid-column: span 2;
}

.gv-map-active-filters,
.gv-filter-actions {
  align-self: center;
}

@media (min-width: 821px) {
  .gv-map-main {
    grid-column: 2;
    grid-row: 1;
  }

  .gv-map-results-panel {
    grid-column: 2;
    grid-row: 2;
  }

  .gv-map-canvas {
    min-height: min(700px, calc(100vh - 150px));
  }
}

@media (max-width: 820px) {
  .gv-map-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    overflow: visible;
  }

  .gv-map-panel {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    max-height: 68vh;
    border-right: 0;
    border-top: 1px solid var(--gv-line);
    border-radius: 18px 18px 0 0;
    overflow: auto;
    box-shadow: 0 -24px 70px rgba(30, 38, 57, .22);
    transform: translateY(104%);
    transition: transform .22s ease;
  }

  .gv-map-main {
    grid-row: 1;
  }

  .gv-map-results-panel {
    grid-row: 2;
  }

  .gv-map-shell.is-filter-open .gv-map-panel {
    transform: translateY(0);
  }

  .gv-map-filter-toggle {
    position: fixed;
    z-index: 9999;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    min-height: 48px;
    border: 1px solid var(--gv-accent);
    border-radius: 999px;
    padding: 12px 18px;
    color: #fff;
    background: var(--gv-accent);
    font: inherit;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(253, 97, 51, .28);
  }

  .gv-map-panel-close {
    position: fixed;
    top: auto;
    right: auto;
    bottom: 18px;
    left: 18px;
    z-index: 10000;
    display: none;
    place-items: center;
    width: auto;
    height: 48px;
    min-width: 48px;
    border-color: rgba(30, 38, 57, .12);
    color: var(--gv-dark);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 42px rgba(30, 38, 57, .16);
  }

  .gv-map-shell.is-filter-open .gv-map-panel-close {
    display: grid;
  }

  .gv-map-results {
    grid-template-columns: 1fr;
    max-height: none;
    padding: 12px;
  }

  .gv-map-results-heading {
    display: grid;
    padding: 14px 12px 4px;
  }

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

/* GiroVivo public map premium surface */

.gv-map-shell {
  border-radius: 28px;
  border: 1px solid rgba(30, 38, 57, .08);
  background:
    radial-gradient(circle at 74% 16%, rgba(253, 97, 51, .16), transparent 20rem),
    radial-gradient(circle at 12% 76%, rgba(15, 139, 125, .18), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(246, 250, 249, .94));
  box-shadow: 0 34px 92px rgba(30, 38, 57, .14);
}

.gv-map-panel {
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(253, 97, 51, .18), transparent 22rem),
    linear-gradient(180deg, rgba(17, 24, 39, .95), rgba(10, 49, 55, .92));
  color: #fff;
}

.gv-map-brand {
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05)),
    radial-gradient(circle at 80% 12%, rgba(255, 182, 41, .18), transparent 34%);
}

.gv-map-brand strong,
.gv-map-brand span,
.gv-map-brand small {
  color: #fff;
}

.gv-map-search,
.gv-map-near-button,
.gv-map-location-block .gv-radius-control,
.gv-map-category-menu,
.gv-map-advanced-menu {
  border-radius: 18px;
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .08);
}

.gv-map-filters input,
.gv-map-filters select {
  border-radius: 14px;
}

.gv-map-quick-row {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 3px;
}

.gv-map-quick-row button {
  flex: 0 0 auto;
  border-radius: 999px;
}

.gv-map-loader {
  min-height: 520px;
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(253, 97, 51, .24), transparent 0 9%, rgba(255, 255, 255, .05) 10% 10.5%, transparent 11% 19%, rgba(255, 255, 255, .06) 20% 20.5%, transparent 21%),
    radial-gradient(circle at 72% 34%, rgba(255, 182, 41, .24), transparent 14rem),
    radial-gradient(circle at 22% 74%, rgba(15, 139, 125, .32), transparent 16rem),
    linear-gradient(145deg, #09111f, #102238 58%, #0b4c4c);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.gv-map-loader::before,
.gv-map-loader::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(58vw, 420px);
  height: min(58vw, 420px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.gv-map-loader::after {
  width: min(42vw, 300px);
  height: min(42vw, 300px);
  border-color: rgba(255, 182, 41, .18);
}

.gv-map-loader span,
.gv-map-loader strong,
.gv-map-loader p,
.gv-map-loader .gv-button {
  position: relative;
  z-index: 2;
}

.gv-map-loader strong {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(38px, 7vw, 82px);
  line-height: .9;
  text-wrap: balance;
}

.gv-map-loader p {
  max-width: 520px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

.gv-map-loader .gv-button {
  border: 0;
  color: #111827;
  background: linear-gradient(135deg, #ffb629, #fd6133);
  box-shadow: 0 18px 42px rgba(253, 97, 51, .28);
}

.gv-map-canvas {
  border-radius: 26px;
  min-height: 560px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(30, 38, 57, .08);
}

.gv-map-results-panel {
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: inset 0 0 0 1px rgba(30, 38, 57, .07);
}

.gv-map-results {
  gap: 10px;
}

.gv-map-results .gv-map-result,
.gv-map-results article,
.gv-map-summary {
  border-radius: 18px;
}

.gv-marker span {
  border: 2px solid #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 39, .28);
}

.marker-cluster div {
  background: linear-gradient(135deg, #fd6133, #ffb629);
  color: #111827;
  font-weight: 950;
}

.leaflet-popup-content-wrapper {
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(16, 24, 39, .22);
}

.leaflet-popup-content {
  min-width: 230px;
  color: #111827;
  font-family: "Nunito Sans", system-ui, sans-serif;
}

.leaflet-popup-content strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.18;
}

.gv-map-legend {
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 44px rgba(16, 24, 39, .12);
}

@media (max-width: 760px) {
  .gv-map-shell {
    border-radius: 22px;
  }

  .gv-map-panel,
  .gv-map-main,
  .gv-map-results-panel {
    border-radius: 20px;
  }

  .gv-map-loader {
    min-height: 360px;
  }

  .gv-map-loader strong {
    font-size: clamp(34px, 12vw, 52px);
  }

  .gv-map-canvas {
    min-height: 390px;
  }
}

@media (max-width: 820px) {
  .gv-map-loader {
    inset: 12px;
    max-width: none;
    padding: 22px;
  }

  .gv-map-loader strong {
    max-width: 13ch;
    font-size: 34px;
  }

  .gv-filter-actions {
    grid-template-columns: 1fr;
  }

  .gv-live-filter-note {
    width: 100%;
    justify-content: center;
  }

  .gv-map-location-block,
  .gv-map-category-options,
  .gv-map-date-custom,
  .gv-map-date-panel {
    grid-template-columns: 1fr;
  }

  .gv-map-near-button {
    width: 100%;
  }
}

@media (max-width: 1080px) {
  .gv-map-filter-experience {
    grid-template-columns: 1fr;
  }

  .gv-map-filter-experience .gv-map-location-block,
  .gv-map-filter-experience .gv-map-quick-row {
    grid-column: auto;
  }

  .gv-map-filter-experience .gv-map-location-block {
    grid-template-columns: 1fr;
  }

  .gv-map-filter-experience .gv-map-search,
  .gv-map-filter-experience .gv-map-near-button,
  .gv-map-filter-experience .gv-map-location-block .gv-radius-control {
    grid-column: auto;
  }

  .gv-map-advanced-menu .gv-map-advanced-grid {
    position: static;
    width: 100%;
    max-height: none;
    grid-template-columns: 1fr;
    border-radius: 0 0 8px 8px;
    box-shadow: none;
  }
}

.gv-existing-check {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(30, 38, 57, .12);
  border-radius: 8px;
  background: #fffaf7;
  color: #1e2639;
}

.gv-existing-check-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.gv-existing-check-head strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.gv-existing-check-head p,
.gv-existing-check-continue {
  margin: 4px 0 0;
  color: #5d6575;
  font-size: 14px;
}

.gv-existing-check-refresh {
  flex: 0 0 auto;
  border: 1px solid rgba(30, 38, 57, .16);
  border-radius: 999px;
  background: #fff;
  color: #1e2639;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.gv-existing-check-refresh:hover,
.gv-existing-check-refresh:focus {
  border-color: #fd6133;
  color: #fd6133;
}

.gv-existing-check-status {
  margin-top: 12px;
  font-weight: 800;
}

.gv-existing-check-status[data-state="loading"] {
  color: #6b7280;
}

.gv-existing-check-status[data-state="possible"] {
  color: #996800;
}

.gv-existing-check-status[data-state="empty"] {
  color: #0f7a55;
}

.gv-existing-check-results {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.gv-existing-check-results li {
  padding: 11px 12px;
  border: 1px solid rgba(30, 38, 57, .1);
  border-radius: 8px;
  background: #fff;
}

.gv-existing-check-results strong,
.gv-existing-check-results span {
  display: block;
}

.gv-existing-check-results span {
  margin-top: 3px;
  color: #5d6575;
  font-size: 14px;
}

.gv-existing-check-results a {
  display: inline-block;
  margin-top: 7px;
  color: #fd6133;
  font-weight: 800;
  text-decoration: none;
}

.gv-existing-check-results a:hover,
.gv-existing-check-results a:focus {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .gv-existing-check-head {
    display: block;
  }

  .gv-existing-check-refresh {
    width: 100%;
    margin-top: 10px;
  }
}
