/* ══════════════════════════════════════════════════════════════════
   Logaras Law — Integrated Resorts Map  |  map.css  v1.0.0
   All selectors scoped to #llr-wrap to prevent theme conflicts
══════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────── */
#llr-wrap {
  --navy:        #07101C;
  --navy-mid:    #0C1A2E;
  --navy-panel:  #0A162A;
  --gold:        #C9A84C;
  --gold-light:  #E2C47A;
  --gold-bright: #F0D48A;
  --gold-dim:    #7A6030;
  --gold-ghost:  rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.22);
  --cream:       #F0E8D8;
  --cream-dim:   #8A7A60;
  --s-op:        #4CAF7A;
  --s-con:       #E8A030;
  --s-app:       #7AB4E8;
  --s-pln:       #9A9AB0;
  --panel-w:     420px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  font-family: 'Georgia', 'Times New Roman', serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#llr-wrap *, #llr-wrap *::before, #llr-wrap *::after {
  box-sizing: border-box;
}

/* ── No-token notice ────────────────────────────────────────────── */
.llr-notice {
  background: #fff8e1;
  border-left: 4px solid #C9A84C;
  padding: 12px 18px;
  border-radius: 2px;
  font-family: sans-serif;
  font-size: 14px;
}

/* ── Filter Bar ─────────────────────────────────────────────────── */
#llr-wrap .llr-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #05101C 0%, #0D1E34 100%);
  border: 1px solid var(--gold-border);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

#llr-wrap .llr-filter-search-wrap {
  position: relative;
  flex: 1 1 220px;
  min-width: 180px;
}

#llr-wrap .llr-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--gold-dim);
  pointer-events: none;
  font-style: normal;
}

#llr-wrap .llr-search-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  padding: 9px 12px 9px 36px;
  outline: none;
  transition: .22s var(--ease);
}

#llr-wrap .llr-search-input::placeholder { color: var(--cream-dim); }
#llr-wrap .llr-search-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

#llr-wrap .llr-filter-selects {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#llr-wrap .llr-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  padding: 8px 10px;
  outline: none;
  cursor: pointer;
  transition: .2s var(--ease);
  min-width: 130px;
}

#llr-wrap .llr-select option { background: #0D1A2D; color: var(--cream); }
#llr-wrap .llr-select:focus { border-color: var(--gold); }

#llr-wrap .llr-btn-clear {
  font-family: 'Raleway', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--cream-dim);
  transition: .2s var(--ease);
}

#llr-wrap .llr-btn-clear:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-ghost); }

#llr-wrap .llr-filter-count {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--cream-dim);
  white-space: nowrap;
}

#llr-wrap #llr-resort-count {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: var(--gold-light);
}

/* Style switcher buttons */
#llr-wrap .llr-style-btns {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

#llr-wrap .llr-style-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid var(--gold-border);
  background: rgba(255,255,255,0.04);
  color: var(--cream-dim);
  transition: .2s var(--ease);
  white-space: nowrap;
}

#llr-wrap .llr-style-btn:hover { color: var(--gold); border-color: var(--gold); }
#llr-wrap .llr-style-btn.active {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--navy);
  border-color: transparent;
}

/* ── Map + Panel Container ─────────────────────────────────────── */
#llr-wrap .llr-map-panel-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

#llr-wrap #llr-map {
  position: absolute;
  inset: 0;
  transition: right .45s var(--ease);
}

#llr-wrap #llr-map.panel-open { right: var(--panel-w); }

/* Mapbox control overrides */
#llr-wrap .mapboxgl-ctrl-logo { opacity: .35 !important; }
#llr-wrap .mapboxgl-ctrl-attrib {
  background: rgba(7,16,28,0.82) !important;
  font-size: 9px !important;
}
#llr-wrap .mapboxgl-ctrl-attrib a { color: var(--gold-dim) !important; }
#llr-wrap .mapboxgl-ctrl-group {
  background: var(--navy-panel) !important;
  border: 1px solid var(--gold-border) !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.5) !important;
}
#llr-wrap .mapboxgl-ctrl-group button { background: var(--navy-panel) !important; }
#llr-wrap .mapboxgl-ctrl-group button:hover { background: var(--gold-ghost) !important; }
#llr-wrap .mapboxgl-ctrl-icon { filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(.85) !important; }
#llr-wrap .mapboxgl-ctrl-group button+button { border-top: 1px solid var(--gold-border) !important; }

/* ── Loading overlay ───────────────────────────────────────────── */
#llr-wrap .llr-loading {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 45%, #0e2040 0%, #050e1a 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity .5s ease;
}

#llr-wrap .llr-loading.gone {
  opacity: 0;
  pointer-events: none;
}

#llr-wrap .llr-loading-inner { text-align: center; }

#llr-wrap .llr-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--gold-border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: llrSpin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes llrSpin { to { transform: rotate(360deg); } }

#llr-wrap .llr-loading-text {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ── Error state ───────────────────────────────────────────────── */
#llr-wrap .llr-error {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #E87070;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  z-index: 10;
}

/* ── Marker pulse animation ────────────────────────────────────── */
@keyframes llrPulse {
  0%   { transform: translate(-50%,-50%) scale(.3); opacity: .8; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

.llr-m-ring {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  animation: llrPulse 2.8s ease-out infinite;
  pointer-events: none;
  top: 0;
  left: 0;
}

.llr-resort-svg {
  width: 44px;
  height: 56px;
  cursor: pointer;
  transition: transform .2s var(--ease), filter .2s var(--ease);
  transform-origin: center bottom;
  display: block;
}

.llr-resort-svg:hover { transform: scale(1.18) translateY(-3px); filter: drop-shadow(0 6px 14px rgba(201,168,76,.5)); }
.llr-resort-svg.active { transform: scale(1.22) translateY(-4px); filter: drop-shadow(0 8px 18px rgba(201,168,76,.6)); }

/* Mapbox popup for tooltips */
.llr-tooltip .mapboxgl-popup-content {
  background: rgba(7,16,28,0.94) !important;
  border: 1px solid var(--gold-border, rgba(201,168,76,0.22)) !important;
  border-radius: 3px !important;
  padding: 7px 14px !important;
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #E2C47A !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.5) !important;
}

.llr-tooltip .mapboxgl-popup-tip { border-top-color: rgba(7,16,28,0.94) !important; }

/* ── Side Panel ────────────────────────────────────────────────── */
#llr-wrap .llr-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--panel-w);
  bottom: 0;
  background: linear-gradient(180deg, #0A162A 0%, #07101C 100%);
  border-left: 1px solid var(--gold-border);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
  z-index: 5;
}

#llr-wrap .llr-panel::-webkit-scrollbar { width: 3px; }
#llr-wrap .llr-panel::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
#llr-wrap .llr-panel.open { transform: translateX(0); }

#llr-wrap .llr-panel-close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 10;
  background: var(--gold-ghost);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s var(--ease);
  font-family: sans-serif;
}

#llr-wrap .llr-panel-close:hover { background: rgba(201,168,76,.25); transform: scale(1.1); }

/* Panel photo carousel */
#llr-wrap .llr-carousel {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #04101C, #0A1828);
  flex-shrink: 0;
}

#llr-wrap .llr-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .65s ease;
}

#llr-wrap .llr-carousel img.on { opacity: 1; }

#llr-wrap .llr-c-nav {
  position: absolute;
  bottom: 11px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 5;
}

#llr-wrap .llr-c-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(201,168,76,0.28);
  transition: .2s var(--ease);
  border: none;
  padding: 0;
}

#llr-wrap .llr-c-dot.on { background: var(--gold); transform: scale(1.35); }

#llr-wrap .llr-c-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7,16,28,0.72);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: .2s var(--ease);
}

#llr-wrap .llr-c-btn:hover { background: var(--gold-ghost); }
#llr-wrap .llr-c-btn.L { left: 10px; }
#llr-wrap .llr-c-btn.R { right: 10px; }

#llr-wrap .llr-no-photo {
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #04101C, #0A1828);
  color: var(--cream-dim);
  gap: 10px;
}

/* Panel body content */
#llr-wrap .llr-p-body { padding: 22px 24px 44px; }

#llr-wrap .llr-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 2px;
  margin-bottom: 12px;
}

#llr-wrap .llr-status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
#llr-wrap .llr-sb-op  { color: var(--s-op);  background: rgba(76,175,122,.1);  border: 1px solid rgba(76,175,122,.3);  }
#llr-wrap .llr-sb-con { color: var(--s-con); background: rgba(232,160,48,.1);  border: 1px solid rgba(232,160,48,.3);  }
#llr-wrap .llr-sb-app { color: var(--s-app); background: rgba(122,180,232,.1); border: 1px solid rgba(122,180,232,.3); }
#llr-wrap .llr-sb-pln { color: var(--s-pln); background: rgba(154,154,176,.1); border: 1px solid rgba(154,154,176,.3); }

#llr-wrap .llr-p-name {
  font-family: 'Georgia', 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin: 0 0 6px;
}

#llr-wrap .llr-p-loc {
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  color: var(--cream-dim);
  letter-spacing: .1em;
  margin-bottom: 18px;
}

#llr-wrap .llr-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,.4), transparent);
  margin: 18px 0;
}

#llr-wrap .llr-p-desc {
  font-family: 'Georgia', serif;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(240,232,216,.78);
  margin-bottom: 20px;
}

#llr-wrap .llr-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 20px;
}

#llr-wrap .llr-stat-card {
  background: var(--gold-ghost);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: 12px 14px;
}

#llr-wrap .llr-stat-lbl {
  font-family: 'Raleway', sans-serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 4px;
}

#llr-wrap .llr-stat-val {
  font-family: 'Georgia', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--gold-light);
}

#llr-wrap .llr-cf-row {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
}

#llr-wrap .llr-cf-row:last-child { border-bottom: none; }

#llr-wrap .llr-cf-lbl {
  flex: 0 0 115px;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding-top: 2px;
}

#llr-wrap .llr-cf-val {
  flex: 1;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--cream);
  line-height: 1.55;
}

#llr-wrap .llr-p-cta {
  display: block;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--navy);
  text-align: center;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: .25s var(--ease);
  margin-top: 18px;
}

#llr-wrap .llr-p-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
  color: var(--navy);
}

/* ── Legend ─────────────────────────────────────────────────────── */
#llr-wrap .llr-legend {
  position: absolute;
  bottom: 22px;
  left: 16px;
  background: linear-gradient(135deg, rgba(7,16,28,.96), rgba(12,26,46,.96));
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 13px 17px;
  z-index: 1000;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

/* Make legend position relative to the map-panel-wrap */
#llr-wrap .llr-map-panel-wrap { position: relative; }

#llr-wrap .llr-leg-title {
  font-family: 'Raleway', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

#llr-wrap .llr-leg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: var(--cream-dim);
}

#llr-wrap .llr-leg-item:last-child { margin-bottom: 0; }

#llr-wrap .llr-leg-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #llr-wrap { --panel-w: 100%; }

  #llr-wrap .llr-filter-bar { flex-direction: column; align-items: stretch; gap: 8px; padding: 12px; }
  #llr-wrap .llr-filter-search-wrap { min-width: 100%; }
  #llr-wrap .llr-filter-selects { flex-wrap: wrap; }
  #llr-wrap .llr-select { min-width: calc(50% - 4px); flex: 1; }
  #llr-wrap .llr-style-btns { margin-left: 0; }

  #llr-wrap .llr-panel { width: 100%; top: auto; bottom: 0; height: 70%; transform: translateY(100%); }
  #llr-wrap .llr-panel.open { transform: translateY(0); }
  #llr-wrap #llr-map.panel-open { right: 0; bottom: 70%; }

  #llr-wrap .llr-legend { display: none; }
}

/* ── Leaflet overrides ──────────────────────────────────────────── */
#llr-wrap .leaflet-tile {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
#llr-wrap .leaflet-tile-container {
  will-change: transform;
}
#llr-wrap .leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.5) !important;
}
#llr-wrap .leaflet-control-zoom a {
  background: var(--navy-panel, #0A162A) !important;
  color: var(--gold, #C9A84C) !important;
  border: 1px solid var(--gold-border, rgba(201,168,76,0.22)) !important;
  font-size: 16px !important;
  width: 32px !important; height: 32px !important; line-height: 32px !important;
}
#llr-wrap .leaflet-control-zoom a:hover { background: rgba(201,168,76,.12) !important; }
#llr-wrap .leaflet-control-attribution {
  background: rgba(7,16,28,.82) !important;
  color: rgba(138,122,96,.6) !important;
  font-size: 9px !important;
}
#llr-wrap .leaflet-control-attribution a { color: var(--gold-dim, #7A6030) !important; }
#llr-wrap .llr-tooltip {
  background: rgba(7,16,28,.94) !important;
  border: 1px solid rgba(201,168,76,.22) !important;
  border-radius: 3px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.5) !important;
  padding: 0 !important;
  color: #E2C47A !important;
}
#llr-wrap .llr-tooltip::before { display: none !important; }
#llr-wrap .llr-div-icon { background: none !important; border: none !important; }
#llr-wrap .llr-pin-wrap { position: relative; width: 40px; height: 52px; }
#llr-wrap .llr-pin-pulse {
  position: absolute; width: 48px; height: 48px;
  border-radius: 50%; border: 1.5px solid currentColor;
  top: 0; left: 0; margin: -4px 0 0 -4px;
  animation: llrPinPulse 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes llrPinPulse {
  0%   { transform: scale(.3); opacity: .8; }
  100% { transform: scale(2.4); opacity: 0; }
}
#llr-wrap .llr-pin-wrap svg {
  cursor: pointer;
  transition: transform .2s, filter .2s;
  transform-origin: center bottom;
  display: block;
}
#llr-wrap .llr-pin-wrap:hover svg {
  transform: scale(1.18) translateY(-3px);
  filter: drop-shadow(0 6px 14px rgba(201,168,76,.5));
}

/* ── Filter toggle button ──────────────────────────────────────── */
#llr-wrap .llr-filter-toggle {
  font-family:'Raleway',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:.15em; text-transform:uppercase;
  padding:8px 16px; border-radius:3px; cursor:pointer;
  border:1px solid var(--gold-border); background:var(--gold-ghost);
  color:var(--gold); transition:.2s var(--ease);
  display:flex; align-items:center; gap:7px; position:relative;
}
#llr-wrap .llr-filter-toggle:hover { background:rgba(201,168,76,.2); }
#llr-wrap .llr-filter-toggle-icon { font-size:9px; }
#llr-wrap .llr-active-badge {
  background:var(--gold); color:var(--navy);
  border-radius:50%; width:18px; height:18px;
  font-size:10px; font-weight:700; display:inline-flex;
  align-items:center; justify-content:center; margin-left:2px;
}

/* ── Filter Panel ──────────────────────────────────────────────── */
#llr-wrap .llr-filter-panel {
  background:linear-gradient(135deg,#05101C,#0D1E34);
  border:1px solid var(--gold-border); border-top:none;
  border-radius:0 0 4px 4px;
}
#llr-wrap .llr-filter-panel-inner {
  display:flex; flex-wrap:wrap; gap:0;
  padding:18px 20px; align-items:flex-start;
}
#llr-wrap .llr-filter-group {
  flex:1 1 180px; min-width:160px;
  padding:0 20px 0 0; margin-bottom:10px;
  border-right:1px solid var(--gold-border);
  margin-right:20px;
}
#llr-wrap .llr-filter-group:last-of-type { border-right:none; margin-right:0; }
#llr-wrap .llr-filter-group-title {
  font-family:'Raleway',sans-serif; font-size:8.5px; font-weight:700;
  letter-spacing:.28em; text-transform:uppercase;
  color:var(--gold); margin-bottom:12px;
}
#llr-wrap .llr-check-label {
  display:flex; align-items:center; gap:9px;
  font-family:'Raleway',sans-serif; font-size:12px;
  color:var(--cream); cursor:pointer; margin-bottom:9px;
  user-select:none;
}
#llr-wrap .llr-check-label:last-child { margin-bottom:0; }
#llr-wrap .llr-check-label input[type=checkbox] { display:none; }
#llr-wrap .llr-check-box {
  width:16px; height:16px; border-radius:3px; flex-shrink:0;
  border:1.5px solid var(--gold-border);
  background:transparent; transition:.2s var(--ease);
  position:relative;
}
#llr-wrap .llr-check-label input:checked + .llr-check-box {
  background:var(--gold); border-color:var(--gold);
}
#llr-wrap .llr-check-label input:checked + .llr-check-box::after {
  content:''; position:absolute; left:4px; top:1px;
  width:5px; height:9px; border:2px solid var(--navy);
  border-top:none; border-left:none; transform:rotate(45deg);
}
#llr-wrap .llr-check-icon { font-size:14px; }
#llr-wrap .llr-filter-actions {
  display:flex; align-items:flex-end; padding-bottom:4px;
}

/* ── Fullscreen button ─────────────────────────────────────────── */
#llr-wrap .llr-fullscreen-btn {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: 1000;
  width: 32px;
  height: 32px;
  background: var(--navy-panel, #0A162A);
  border: 2px solid rgba(201,168,76,0.5);
  color: var(--gold, #C9A84C);
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: .2s ease;
  padding: 0;
  box-shadow: 0 1px 5px rgba(0,0,0,0.4);
}
#llr-wrap .llr-fullscreen-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold, #C9A84C);
}

/* ── Fullscreen mode ───────────────────────────────────────────── */
#llr-wrap.llr-fullscreen {
  position:fixed; inset:0; z-index:99999;
  display:flex; flex-direction:column;
}
#llr-wrap.llr-fullscreen .llr-map-panel-wrap { flex:1; height:auto !important; }

/* ── Category badge in panel ───────────────────────────────────── */
#llr-wrap .llr-cat-badge {
  display:inline-flex; align-items:center; gap:5px;
  font-family:'Raleway',sans-serif; font-size:8.5px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  padding:4px 11px; border-radius:2px; border:1px solid;
  margin-bottom:9px;
}
#llr-wrap .llr-subcats { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:12px; }
#llr-wrap .llr-subcat-pill {
  font-family:'Raleway',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:.1em; padding:3px 10px; border-radius:20px;
  background:var(--gold-ghost); border:1px solid var(--gold-border);
  color:var(--cream-dim);
}
