/* Napfogyatkozás-helykereső — világos, papírszerű felület */

:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-2: #fbf9f6;
  --line: #e3ddd3;
  --line-strong: #cfc7ba;
  --ink: #191510;
  --ink-2: #4b443c;
  --muted: #857d72;
  --sun: #ef9a12;
  --sun-deep: #d4720c;
  --moon: #2b241c;
  --sky-hi: #bcd6ea;
  --sky-lo: #f6d9a8;

  --s-100: #1f8a4c;
  --s-80:  #7cbf3f;
  --s-60:  #e9c227;
  --s-35:  #ef8f37;
  --s-0:   #d6483f;

  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(30, 22, 10, .06), 0 2px 8px rgba(30, 22, 10, .06);
  --shadow-md: 0 2px 6px rgba(30, 22, 10, .08), 0 12px 32px rgba(30, 22, 10, .10);
  --sans: ui-sans-serif, -apple-system, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Az alkalmazás pontosan egy képernyőt tölt ki; a hosszú felelősségkizárás
   közvetlenül alatta, görgetéssel érhető el. */
.app { display: flex; flex-direction: column; height: 100vh; height: 100dvh; }
h1, h2, h3, h4 { margin: 0; font-weight: 640; letter-spacing: -.015em; }
button { font: inherit; color: inherit; }

/* ---------------- fejléc ---------------- */
.topbar {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 10px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { width: 30px; height: 30px; flex: 0 0 auto; }
.brand-text h1 { font-size: 16px; line-height: 1.2; }
.brand-text p { margin: 2px 0 0; font-size: 12px; color: var(--muted); line-height: 1.25; }

.tools { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.search { position: relative; }
.search input {
  width: 260px; padding: 8px 12px; font-size: 14px;
  border: 1px solid var(--line-strong); border-radius: 9px;
  background: var(--surface-2); color: var(--ink);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.search input:focus { border-color: var(--sun); box-shadow: 0 0 0 3px rgba(239,154,18,.18); background: #fff; }
.results {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  margin: 0; padding: 4px; list-style: none; max-height: 320px; overflow: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.results li { padding: 8px 10px; border-radius: 7px; cursor: pointer; font-size: 13px; line-height: 1.3; }
.results li:hover, .results li[aria-selected="true"] { background: var(--surface-2); }
.results .r-sub { display: block; color: var(--muted); font-size: 11.5px; margin-top: 1px; }

.btn {
  padding: 8px 13px; border-radius: 9px; cursor: pointer;
  border: 1px solid var(--line-strong); background: var(--surface-2);
  font-size: 13.5px; font-weight: 520; white-space: nowrap;
  transition: background .15s, border-color .15s, transform .08s;
}
.btn:hover { background: #fff; border-color: var(--muted); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-primary:hover { background: #2c261e; border-color: #2c261e; }

/* ---------------- elrendezés ---------------- */
.layout { flex: 1 1 auto; display: flex; min-height: 0; }
.mapwrap { position: relative; flex: 1 1 auto; min-width: 0; }
#map { position: absolute; inset: 0; }
.sidebar {
  flex: 0 0 404px; width: 404px; overflow-y: auto; overscroll-behavior: contain;
  background: var(--surface); border-left: 1px solid var(--line);
}

/* ---------------- térképi vezérlők ---------------- */
.map-ui { position: absolute; z-index: 5; }
.map-ui-top { top: 12px; left: 12px; display: flex; flex-direction: column; gap: 8px; max-width: 232px; }

.layerbox {
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 9px 11px; box-shadow: var(--shadow-sm); font-size: 12.5px;
}
.layerbox-title {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.layerbox label { display: flex; align-items: center; gap: 7px; padding: 2.5px 0; cursor: pointer; }
.layerbox input { accent-color: var(--sun-deep); margin: 0; }
.layerbox hr { border: 0; border-top: 1px solid var(--line); margin: 7px 0 5px; }

.legend {
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 9px 11px; box-shadow: var(--shadow-sm); max-width: 290px;
}
.legend h4 { font-size: 10px; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.legend .bar { height: 9px; border-radius: 5px; margin-bottom: 5px; }
.legend .ticks { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.legend .note { margin: 7px 0 0; font-size: 10.5px; color: var(--muted); line-height: 1.35; }

.hint {
  position: absolute; left: 50%; top: 14px; transform: translateX(-50%);
  background: rgba(25,21,16,.86); color: #fff; font-size: 12.5px;
  padding: 7px 13px; border-radius: 20px; z-index: 6; pointer-events: none;
  transition: opacity .4s; box-shadow: var(--shadow-sm);
}
.hint.gone { opacity: 0; }

/* ---------------- alsó panoráma ---------------- */
.dock {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 6;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.dock-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 8px 13px; background: none; border: 0; cursor: pointer; text-align: left;
}
.dock-title { font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.chev { width: 9px; height: 9px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
.dock[data-open="false"] .chev { transform: rotate(-135deg) translateY(-2px); }
.dock-body { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .22s ease; }
.dock-body > * { min-height: 0; overflow: hidden; }
.dock[data-open="false"] .dock-body { grid-template-rows: 0fr; }
.skyview { padding: 0 10px 10px; }
.skyview svg { display: block; width: 100%; height: auto; border-radius: 8px; }

/* ---------------- oldalsó panel ---------------- */
.panel { padding: 16px 18px 32px; }
.panel-empty { padding: 40px 22px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

.place { margin-bottom: 14px; }
.place h2 { font-size: 18px; line-height: 1.25; }
.place .coords { margin-top: 3px; font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }

.scorecard {
  display: flex; align-items: center; gap: 15px;
  padding: 14px; border-radius: var(--radius);
  background: var(--surface-2); border: 1px solid var(--line);
}
.ring { flex: 0 0 auto; width: 76px; height: 76px; position: relative; }
.ring svg { transform: rotate(-90deg); display: block; }
.ring .val {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.scorecard .meta { min-width: 0; }
.scorecard .grade { font-size: 15px; font-weight: 700; letter-spacing: .01em; }
.scorecard .sub { margin-top: 3px; font-size: 12.5px; color: var(--ink-2); line-height: 1.45; }

.headline {
  margin-top: 14px; padding: 13px 14px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface);
}
.headline .k { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.headline .big { margin-top: 4px; font-size: 27px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -.02em; line-height: 1; }
.headline .big small { font-size: 14px; font-weight: 600; color: var(--muted); margin-left: 3px; letter-spacing: 0; }
.headline .cmp { margin-top: 7px; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }

.rows { margin-top: 14px; border-top: 1px solid var(--line); }
.row { display: flex; justify-content: space-between; gap: 12px; padding: 8.5px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.row .lbl { color: var(--ink-2); }
.row .val { font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }
.row .val .dim { font-weight: 400; color: var(--muted); }

.sect { margin-top: 22px; }
.sect > h3 {
  font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 9px;
}
.sect p.lead { margin: 0 0 9px; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
.chart svg { display: block; width: 100%; height: auto; }

.phases { display: flex; gap: 4px; }
.phase { flex: 1 1 0; text-align: center; }
.phase svg { display: block; width: 100%; height: auto; max-width: 46px; margin: 0 auto; }
.phase .t { margin-top: 4px; font-size: 11px; font-weight: 620; font-variant-numeric: tabular-nums; }
.phase .o { font-size: 10.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.phase.is-gone .t { color: var(--s-0); }

.callout {
  margin-top: 12px; padding: 11px 12px; border-radius: 10px;
  background: #fdf6e8; border: 1px solid #f0dfba; font-size: 12.5px; line-height: 1.5; color: #5c4a26;
}
.callout b { font-weight: 660; }

.bestlist { list-style: none; margin: 0; padding: 0; }
.bestlist li {
  display: flex; align-items: center; gap: 11px; padding: 9px 10px; margin-bottom: 5px;
  border: 1px solid var(--line); border-radius: 10px; cursor: pointer; background: var(--surface);
  transition: border-color .15s, background .15s;
}
.bestlist li:hover { border-color: var(--muted); background: var(--surface-2); }
.bestlist .pill {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 9px; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.bestlist .nm { display: block; font-size: 13px; font-weight: 600; line-height: 1.25; }
.bestlist .ds { display: block; font-size: 11.5px; color: var(--muted); margin-top: 1px; font-variant-numeric: tabular-nums; }

.radios { display: flex; gap: 5px; margin-bottom: 10px; flex-wrap: wrap; }
.radios button {
  padding: 5px 10px; font-size: 12px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line-strong); background: var(--surface-2);
}
.radios button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

.foot { margin-top: 26px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 11.5px; color: var(--muted); line-height: 1.55; }
.foot a { color: var(--ink-2); }
.foot p { margin: 0 0 7px; }

/* ---------------- betöltés ---------------- */
.loading {
  position: fixed; inset: 0; z-index: 100; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  transition: opacity .35s; font-size: 13.5px; color: var(--muted);
}
.loading.done { opacity: 0; pointer-events: none; }
.spinner {
  width: 34px; height: 34px; border-radius: 50%;
  border: 3px solid var(--line-strong); border-top-color: var(--sun);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.maplibregl-ctrl-attrib { font-size: 10px; }
.marker-dot {
  width: 16px; height: 16px; border-radius: 50%; background: var(--sun);
  border: 3px solid #fff; box-shadow: 0 1px 6px rgba(0,0,0,.35); cursor: pointer;
}
.marker-best {
  width: 24px; height: 24px; border-radius: 50%; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font: 700 11px/1 var(--sans); color: #fff; box-shadow: 0 1px 5px rgba(0,0,0,.35); cursor: pointer;
}

/* ---------------- mobil ---------------- */
@media (max-width: 1000px) {
  .app { height: auto; }
  .topnote { padding: 8px 13px 9px; }
  .topnote .mission { font-size: 12px; }
  .topnote .credit { white-space: normal; display: block; margin-top: 3px; }
  .sitefoot { padding: 22px 15px 30px; }
  .sitefoot p { font-size: 12.5px; }
  .map-ui-top { max-width: calc(100% - 24px); }
  .layerbox { display: flex; flex-wrap: wrap; align-items: center; gap: 3px 12px; padding: 7px 10px; }
  .layerbox-title, .layerbox hr { display: none; }
  .layerbox label { font-size: 11.5px; }
  .topbar { flex-wrap: wrap; gap: 10px 14px; padding: 10px 13px; }
  .tools { width: 100%; margin-left: 0; }
  .search { flex: 1 1 auto; }
  .search input { width: 100%; }
  .layout { flex-direction: column; }
  .mapwrap { flex: 0 0 auto; height: 58vh; min-height: 340px; }
  .sidebar { flex: 1 1 auto; width: 100%; border-left: 0; border-top: 1px solid var(--line); overflow: visible; }
  #legend { display: none; }
  .hint { top: auto; bottom: 10px; font-size: 12px; }
  .dock { left: 8px; right: 8px; bottom: 8px; }
  .dock:not([data-open="false"]) ~ .hint { display: none; }
  .dock[data-open="false"] .dock-open-hint { font-size: 12.5px; }
  .ctxmenu { min-width: 210px; font-size: 13.5px; }
  .ctxmenu button { padding: 10px 9px; }
  .tour { padding: 14px; align-items: flex-end; }
  .tour-card { width: 100%; }
  .tour-body { padding: 18px 18px 16px; }
  .tour-card h2 { font-size: 18px; }
  .tour-card p { font-size: 13.5px; }
  .tour-foot { flex-wrap: wrap; padding: 11px 12px 12px; }
  .tour-btns { flex: 1 1 auto; justify-content: flex-end; }
}
@media (max-width: 620px) {
  .brand-text p { display: none; }
  .btn { padding: 8px 10px; font-size: 12.5px; flex: 1 1 auto; }
  .btn-icon { flex: 0 0 auto; width: 34px; }
  .tools { flex-wrap: wrap; }
  .search { flex: 1 1 100%; }
  .mapwrap { height: 62vh; min-height: 380px; }
  .topnote .mission { font-size: 11.5px; line-height: 1.4; }
  .topnote .disclaim-short { font-size: 11px; }
  .tour-btns .btn { padding: 9px 12px; }
}

/* ---------------- felhőzet a látóvonal mentén ---------------- */
.cloudbars { display: flex; gap: 6px; margin-top: 10px; }
.cb { flex: 1 1 0; text-align: center; }
.cb-track {
  height: 54px; border-radius: 6px;
  background: linear-gradient(180deg, #cfe1ef 0%, #eaf1f6 65%, #f7efdf 100%);
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.cb-fill { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, #9aa7b6, #6d7a8b); }
.cb-v { margin-top: 4px; font-size: 11.5px; font-weight: 640; font-variant-numeric: tabular-nums; }
.cb-k { font-size: 10.5px; color: var(--muted); }

/* ================= küldetés + rövid felelősségkizárás ================= */
.topnote {
  flex: 0 0 auto;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  padding: 8px 18px 9px;
  text-align: center;
}
.topnote .mission {
  margin: 0 auto; max-width: 980px;
  font-size: 12.5px; line-height: 1.45; color: var(--ink-2);
}
.topnote .mission b { color: var(--ink); font-weight: 660; }
.topnote .credit { white-space: nowrap; color: var(--muted); }
.topnote .credit a { color: var(--sun-deep); text-decoration: none; border-bottom: 1px solid rgba(212,114,12,.35); }
.topnote .credit a:hover { border-bottom-color: var(--sun-deep); }
.topnote .disclaim-short {
  margin: 6px auto 0; max-width: 980px;
  font-size: 11.5px; line-height: 1.4; color: #8a5a12;
}

/* ================= alsó felelősségkizárás ================= */
.sitefoot { background: #241f18; color: #d9d1c5; padding: 26px 18px 34px; }
.sitefoot-inner { max-width: 1080px; margin: 0 auto; }
.sitefoot h2 {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: #f0a02a; margin-bottom: 12px;
}
.sitefoot p { margin: 0 0 12px; font-size: 13px; line-height: 1.65; max-width: 62rem; }
.sitefoot b { color: #fff; font-weight: 650; }
.sitefoot a { color: #f0a02a; }
.sitefoot-meta { font-size: 11.5px; color: #9d9488; border-top: 1px solid #3a332a; padding-top: 12px; margin-top: 4px; }

/* ================= gombváltozatok ================= */
.btn-icon {
  width: 34px; padding: 0; height: 34px; border-radius: 50%;
  font-weight: 700; font-size: 15px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-ghost { border-color: transparent; background: none; color: var(--muted); }
.btn-ghost:hover { background: var(--surface-2); border-color: transparent; color: var(--ink-2); }

/* ================= összecsukott horizontnézet ================= */
.dock-eye { display: none; }
.dock-open-hint { display: none; }
.dock[data-open="false"] {
  left: 50%; right: auto; transform: translateX(-50%);
  background: var(--sun); border-color: var(--sun-deep);
  box-shadow: 0 3px 10px rgba(160, 90, 5, .30), 0 10px 26px rgba(30, 22, 10, .18);
  animation: dockpulse 2.6s ease-in-out 3;
}
.dock[data-open="false"] .dock-toggle { gap: 10px; padding: 10px 18px; justify-content: center; }
.dock[data-open="false"] .dock-title { display: none; }
.dock[data-open="false"] .dock-open-hint {
  display: inline; color: #33230a; font-size: 13.5px; font-weight: 680; letter-spacing: -.005em;
}
.dock[data-open="false"] .dock-eye { display: inline-flex; color: #33230a; width: 22px; }
.dock[data-open="false"] .dock-eye svg { width: 22px; height: 13px; display: block; }
.dock[data-open="false"] .chev { border-color: #33230a; }
/* összecsukva a belső térköz se maradjon meg */
.dock[data-open="false"] .skyview { padding: 0; }
.dock[data-open="false"]:hover { background: #f5ab24; }
@keyframes dockpulse {
  0%, 100% { box-shadow: 0 3px 10px rgba(160,90,5,.30), 0 10px 26px rgba(30,22,10,.18); }
  50%      { box-shadow: 0 3px 10px rgba(160,90,5,.30), 0 0 0 7px rgba(239,154,18,.22); }
}

/* ================= helyi menü (jobb klikk) ================= */
.ctxmenu {
  position: absolute; z-index: 30; min-width: 232px;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 10px; box-shadow: var(--shadow-md); padding: 5px;
  font-size: 13px;
}
.ctxmenu .ctx-head {
  padding: 5px 9px 7px; font-size: 11px; color: var(--muted);
  font-variant-numeric: tabular-nums; border-bottom: 1px solid var(--line); margin-bottom: 4px;
}
.ctxmenu button {
  display: flex; align-items: center; gap: 9px; width: 100%;
  padding: 8px 9px; border: 0; background: none; border-radius: 7px;
  cursor: pointer; text-align: left; line-height: 1.25;
}
.ctxmenu button:hover { background: var(--surface-2); }
.ctxmenu button .ico { width: 15px; flex: 0 0 auto; text-align: center; opacity: .75; }

/* ================= visszajelző buborék ================= */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(8px);
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 550;
  padding: 10px 16px; border-radius: 22px; z-index: 200;
  box-shadow: var(--shadow-md); opacity: 0; transition: opacity .18s, transform .18s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ================= bemutató ================= */
.tour {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(24, 19, 12, .55); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 1; transition: opacity .2s;
}
.tour[hidden] { display: none; }
.tour.fade { opacity: 0; }
.tour-card {
  width: min(520px, 100%); background: var(--surface);
  border-radius: 16px; box-shadow: 0 20px 60px rgba(20, 14, 6, .35);
  overflow: hidden; animation: tourin .24s cubic-bezier(.2,.8,.3,1);
}
@keyframes tourin { from { opacity: 0; transform: translateY(10px) scale(.985); } }
.tour-body { padding: 22px 24px 20px; }
.tour-step {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--sun-deep); margin-bottom: 8px;
}
.tour-card h2 { font-size: 20px; line-height: 1.25; margin-bottom: 10px; }
.tour-card p { margin: 0 0 10px; font-size: 14px; line-height: 1.6; color: var(--ink-2); }
.tour-card p:last-child { margin-bottom: 0; }
.tour-card b { color: var(--ink); font-weight: 650; }
.tour-fig {
  margin: 4px 0 12px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line); background: var(--surface-2);
}
.tour-fig svg { display: block; width: 100%; height: auto; }
.tour-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px 14px; border-top: 1px solid var(--line); background: var(--surface-2);
}
.tour-dots { display: flex; gap: 6px; padding-left: 8px; }
.tour-dots i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong);
  transition: background .15s, width .15s;
}
.tour-dots i.on { background: var(--sun-deep); width: 18px; border-radius: 4px; }
.tour-btns { display: flex; gap: 7px; }

/* kiválasztott pont gyorsműveletei */
.placeacts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.btn-sm { padding: 5px 10px; font-size: 12px; border-radius: 7px; font-weight: 540; }


/* ================= mobil: összecsukható rétegválasztó ================= */
.layers-toggle { display: none; }

@media (max-width: 1000px) {
  .layers-toggle {
    display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
    padding: 7px 12px; border-radius: 999px; cursor: pointer;
    background: rgba(255,255,255,.95); border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm); font-size: 12.5px; font-weight: 600;
  }
  .layers-toggle .lt-ico { font-size: 14px; line-height: 1; opacity: .7; }
  .map-ui-top .layerbox { display: none; }
  .map-ui-top.open .layerbox { display: flex; }
  .map-ui-top.open .layers-toggle { background: var(--ink); color: #fff; border-color: var(--ink); }

  .topnote { padding: 7px 12px 8px; }
  .topnote .mission { font-size: 11px; line-height: 1.35; }
  .topnote .disclaim-short { margin-top: 5px; font-size: 10.5px; line-height: 1.35; }
}

/* a listában és a térképen is látszódjon, melyik javaslatot nézzük épp */
.bestlist li.is-current { border-color: var(--sun-deep); background: #fff8ec; }
.bestlist .tag {
  display: inline-block; margin-left: 6px; padding: 1px 6px; border-radius: 999px;
  background: var(--sun); color: #33230a; font-size: 10px; font-weight: 700;
  letter-spacing: .02em; vertical-align: 1px;
}
.marker-best.is-current {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--sun-deep), 0 2px 8px rgba(0,0,0,.35);
  z-index: 2;
}
