/* ==========================================================================
   Dealer Locator — css/dealer-locator.css
   Scoped to body.dealer-locator-page. Dark theme, brand tokens from styles.css.
   ========================================================================== */

.dealer-locator-page {
  --accent: #EE3A23;
  --accent-soft: #f2523a;
  --accent-hover: #d6321f;
  --accent-glow: rgba(238, 58, 35, 0.35);
  --dl-bg: #000;
  --dl-panel: #08090c;
  --dl-panel-2: #0e1014;
  --dl-line: rgba(255, 255, 255, 0.10);
  --dl-line-soft: rgba(255, 255, 255, 0.06);
  --dl-muted: rgba(244, 245, 247, 0.55);
  --dl-muted-2: rgba(244, 245, 247, 0.38);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--dl-bg);
}

.dl-main {
  padding-top: 70px;
  background: var(--dl-bg);
  flex: 1;
}
@media (max-width: 600px) {
  .dl-main { padding-top: 60px; }
}

.dealer-locator-page .mission-divider,
.dealer-locator-page .site-footer {
  position: relative;
  z-index: 2;
}

/* Shared eyebrow */
.dl-eyebrow {
  margin: 0 0 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==========================================================================
   Hero — compact band so the locator starts high on the page
   ========================================================================== */

.dl-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--dl-line-soft);
  background: var(--dl-bg);
}
.dl-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(46% 150% at 18% -30%, rgba(238, 58, 35, 0.14), transparent 70%),
    radial-gradient(28% 120% at 88% -20%, rgba(58, 160, 255, 0.06), transparent 70%);
}
.dl-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 56px);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px) 28px;
}
.dl-hero-copy .dl-eyebrow {
  margin-bottom: 8px;
}
.dl-hero-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  color: #fff;
}
.dl-hero-accent { color: var(--accent); }
.dl-hero-lead {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--dl-muted);
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  line-height: 1.55;
}
.dl-hero-stats {
  list-style: none;
  display: flex;
  flex-shrink: 0;
  gap: clamp(24px, 3.4vw, 52px);
  margin: 0;
  padding: 0;
}
.dl-hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dl-hero-stats strong {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1;
  color: #fff;
}
.dl-hero-stats span {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dl-muted-2);
}
@media (max-width: 860px) {
  .dl-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ==========================================================================
   Locator app shell
   ========================================================================== */

.dl-locator {
  border-bottom: 1px solid var(--dl-line-soft);
  background: var(--dl-bg);
  scroll-margin-top: 70px;
}
@media (max-width: 600px) {
  .dl-locator { scroll-margin-top: 60px; }
}
.dl-app {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 440px) 1fr;
  height: clamp(600px, calc(100vh - 70px), 900px);
}

/* --- View toggle (mobile only) --- */
.dl-view-toggle {
  display: none;
}

/* ==========================================================================
   Left panel — search, filters, results
   ========================================================================== */

.dl-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--dl-panel);
  border-right: 1px solid var(--dl-line);
}

.dl-controls {
  padding: 20px 20px 16px;
}

/* --- Search box --- */
.dl-search {
  position: relative;
}
.dl-search-ico {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  color: var(--dl-muted-2);
  pointer-events: none;
}
#dl-search-input {
  width: 100%;
  height: 48px;
  padding: 0 52px 0 42px;
  box-sizing: border-box;
  background: var(--dl-panel-2);
  border: 1px solid var(--dl-line);
  border-radius: 11px;
  color: #f4f5f7;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
#dl-search-input::placeholder { color: var(--dl-muted-2); }
#dl-search-input:focus {
  border-color: rgba(238, 58, 35, 0.55);
  box-shadow: 0 0 0 3px rgba(238, 58, 35, 0.14);
}
.dl-near-me {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: var(--dl-muted);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.dl-near-me svg { width: 18px; height: 18px; }
.dl-near-me:hover,
.dl-near-me.is-busy {
  color: var(--accent);
  background: rgba(238, 58, 35, 0.10);
}
.dl-near-me.is-busy svg {
  animation: dl-spin 1.1s linear infinite;
}
@keyframes dl-spin { to { transform: rotate(360deg); } }
.dl-near-me.is-busy { pointer-events: none; }

/* --- Suggestions dropdown --- */
.dl-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 340px;
  overflow-y: auto;
  background: #0d0f13;
  border: 1px solid var(--dl-line);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}
.dl-suggest-group {
  padding: 9px 14px 5px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dl-muted-2);
}
.dl-suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  color: #f4f5f7;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  text-align: left;
  cursor: pointer;
}
.dl-suggest-item:hover,
.dl-suggest-item.is-active {
  background: rgba(255, 255, 255, 0.05);
}
.dl-suggest-item .dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dl-muted-2);
}
.dl-suggest-item .lbl {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dl-suggest-item .sub {
  flex-shrink: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dl-muted-2);
}
.dl-suggest-item.dl-suggest-geo { color: var(--accent-soft); }
.dl-suggest-item.dl-suggest-geo .dot { background: var(--accent); }

/* --- Origin ("nearest first") bar --- */
.dl-origin {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(238, 58, 35, 0.08);
  border: 1px solid rgba(238, 58, 35, 0.30);
  border-radius: 9px;
  color: var(--dl-muted);
  font-size: 12.5px;
}
.dl-origin[hidden] { display: none; }
.dl-origin svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--accent);
}
.dl-origin span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dl-origin strong { color: #f4f5f7; font-weight: 600; }
.dl-origin button {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--dl-muted);
  cursor: pointer;
}
.dl-origin button:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.dl-origin button svg { width: 12px; height: 12px; color: inherit; }

/* --- Results bar --- */
.dl-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-top: 1px solid var(--dl-line-soft);
  border-bottom: 1px solid var(--dl-line-soft);
  background: rgba(255, 255, 255, 0.015);
}
#dl-count {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dl-muted-2);
}
#dl-count strong { color: #f4f5f7; font-weight: 500; }
#dl-reset {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--accent-soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
#dl-reset:hover { color: #fff; }

/* --- Results list --- */
.dl-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}
.dl-list::-webkit-scrollbar { width: 8px; }
.dl-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
}

.dl-card {
  position: relative;
  padding: 15px 20px 15px 23px;
  border-bottom: 1px solid var(--dl-line-soft);
  cursor: pointer;
  transition: background 0.14s ease;
}
.dl-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: transparent;
  transition: background 0.14s ease;
}
.dl-card:hover { background: rgba(255, 255, 255, 0.028); }
.dl-card.is-selected { background: rgba(238, 58, 35, 0.07); }
.dl-card.is-selected::before { background: var(--accent); }
.dl-card:focus-visible {
  outline: 2px solid rgba(238, 58, 35, 0.7);
  outline-offset: -2px;
}

.dl-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.dl-card-name {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  color: #f4f5f7;
}
.dl-card-dist {
  flex-shrink: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--accent-soft);
  white-space: nowrap;
}
.dl-card-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c, var(--dl-muted));
}
.dl-card-type .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c, var(--accent));
}
.dl-card-addr {
  margin: 7px 0 0;
  color: var(--dl-muted);
  font-size: 12.8px;
  line-height: 1.5;
}
.dl-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.dl-card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid var(--dl-line);
  border-radius: 7px;
  color: var(--dl-muted);
  font-size: 11.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.14s ease;
}
.dl-card-actions a svg { width: 11px; height: 11px; }
.dl-card-actions a:hover {
  border-color: rgba(238, 58, 35, 0.5);
  color: #fff;
  background: rgba(238, 58, 35, 0.08);
}
.dl-card-actions a.dl-act-dir {
  border-color: rgba(238, 58, 35, 0.45);
  color: #ffb4a8;
}
.dl-card-actions a.dl-act-dir:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* --- Empty state --- */
.dl-empty {
  padding: 44px 28px;
  text-align: center;
  color: var(--dl-muted);
}
.dl-empty strong {
  display: block;
  margin-bottom: 8px;
  color: #f4f5f7;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dl-empty p { margin: 0 0 16px; font-size: 13.5px; line-height: 1.6; }
.dl-empty button {
  padding: 9px 18px;
  border: 1px solid rgba(238, 58, 35, 0.55);
  border-radius: 8px;
  background: rgba(238, 58, 35, 0.1);
  color: #ffb4a8;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}
.dl-empty button:hover { background: var(--accent); color: #fff; }

/* ==========================================================================
   Map
   ========================================================================== */

.dl-map-wrap {
  position: relative;
  min-height: 0;
  background: #0a0c10;
}
#dl-map {
  position: absolute;
  inset: 0;
}
#dl-map canvas { outline: none; }

/* MapLibre chrome overrides */
.dealer-locator-page .maplibregl-ctrl-group {
  background: #101318;
  border: 1px solid var(--dl-line);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.dealer-locator-page .maplibregl-ctrl-group button {
  width: 34px;
  height: 34px;
  background: transparent;
}
.dealer-locator-page .maplibregl-ctrl-group button + button {
  border-top: 1px solid var(--dl-line-soft);
}
.dealer-locator-page .maplibregl-ctrl-group button:hover {
  background: rgba(255, 255, 255, 0.07);
}
.dealer-locator-page .maplibregl-ctrl button .maplibregl-ctrl-icon {
  filter: invert(1) opacity(0.85);
}
.dealer-locator-page .maplibregl-ctrl-attrib {
  background: rgba(8, 9, 12, 0.72);
  color: var(--dl-muted-2);
  font-size: 10px;
}
.dealer-locator-page .maplibregl-ctrl-attrib a { color: var(--dl-muted); }

/* Popup */
.dealer-locator-page .maplibregl-popup { max-width: 300px !important; }
.dealer-locator-page .maplibregl-popup-content {
  padding: 0;
  background: #101318;
  border: 1px solid var(--dl-line);
  border-radius: 13px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}
.dealer-locator-page .maplibregl-popup-anchor-bottom .maplibregl-popup-tip { border-top-color: #101318; }
.dealer-locator-page .maplibregl-popup-anchor-top .maplibregl-popup-tip { border-bottom-color: #101318; }
.dealer-locator-page .maplibregl-popup-anchor-left .maplibregl-popup-tip { border-right-color: #101318; }
.dealer-locator-page .maplibregl-popup-anchor-right .maplibregl-popup-tip { border-left-color: #101318; }
.dealer-locator-page .maplibregl-popup-close-button {
  top: 6px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  color: var(--dl-muted);
  font-size: 16px;
  line-height: 1;
}
.dealer-locator-page .maplibregl-popup-close-button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.dl-pop { padding: 15px 16px 14px; font-family: "Inter", sans-serif; }
.dl-pop-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c, var(--dl-muted));
}
.dl-pop-type .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c, var(--accent));
}
.dl-pop-name {
  margin: 7px 0 0;
  padding-right: 14px;
  color: #f4f5f7;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
}
.dl-pop-addr {
  margin: 6px 0 0;
  color: var(--dl-muted);
  font-size: 12px;
  line-height: 1.5;
}
.dl-pop-dist {
  margin: 6px 0 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--accent-soft);
}
.dl-pop-actions {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.dl-pop-actions a {
  flex: 1;
  padding: 7px 4px;
  border-radius: 7px;
  border: 1px solid var(--dl-line);
  color: var(--dl-muted);
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.14s ease;
}
.dl-pop-actions a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.dl-pop-actions a.pri {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.dl-pop-actions a.pri:hover { background: var(--accent-hover); }

/* --- Search this area --- */
.dl-search-area {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(238, 58, 35, 0.55);
  border-radius: 999px;
  background: rgba(10, 11, 14, 0.88);
  backdrop-filter: blur(8px);
  color: #f4f5f7;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
  transition: all 0.15s ease;
}
.dl-search-area svg { width: 13px; height: 13px; color: var(--accent); }
.dl-search-area:hover { background: var(--accent); border-color: var(--accent); }
.dl-search-area:hover svg { color: #fff; }
.dl-search-area[hidden] { display: none; }

/* --- Mobile FAB (map view -> back to list) --- */
.dl-map-fab {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  padding: 11px 22px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(238, 58, 35, 0.4);
}
.dl-map-fab[hidden] { display: none; }

/* --- Map fallback --- */
.dl-map-fallback {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: grid;
  place-content: center;
  gap: 4px;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(60% 60% at 50% 38%, rgba(238, 58, 35, 0.07), transparent 70%),
    #0a0c10;
  color: var(--dl-muted);
  font-size: 14px;
}
.dl-map-fallback[hidden] { display: none; }
.dl-map-fallback strong { color: #f4f5f7; }

/* ==========================================================================
   Become a dealer CTA
   ========================================================================== */

.dl-cta {
  background: var(--dl-bg);
}
.dl-cta-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  max-width: var(--maxw, 1180px);
  margin: clamp(56px, 8vw, 100px) auto;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--dl-line);
  border-radius: 18px;
  background:
    radial-gradient(70% 130% at 0% 50%, rgba(238, 58, 35, 0.14), transparent 62%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
}
.dl-cta-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  text-transform: uppercase;
  color: #fff;
}
.dl-cta-lead {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--dl-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.dl-cta-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1180px) {
  .dl-cta-inner { margin-left: 28px; margin-right: 28px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1240px) {
  .dl-app { grid-template-columns: minmax(340px, 400px) 1fr; }
}

@media (max-width: 1020px) {
  .dl-app {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .dl-view-toggle {
    position: sticky;
    top: 60px;
    z-index: 50;
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dl-line-soft);
  }
  .dl-view-toggle button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--dl-line);
    border-radius: 9px;
    background: transparent;
    color: var(--dl-muted);
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s ease;
  }
  .dl-view-toggle button svg { width: 15px; height: 15px; }
  .dl-view-toggle button.is-on {
    border-color: rgba(238, 58, 35, 0.6);
    background: rgba(238, 58, 35, 0.13);
    color: #fff;
  }

  .dl-panel {
    border-right: none;
  }
  .dl-list {
    flex: none;
    max-height: none;
    overflow: visible;
  }

  .dl-map-wrap {
    height: calc(100dvh - 60px - 53px);
    min-height: 480px;
  }

  /* view switching */
  .dl-app[data-view="list"] .dl-map-wrap { display: none; }
  .dl-app[data-view="map"] .dl-panel { display: none; }
  .dl-app[data-view="map"] .dl-map-fab { display: inline-flex; }
}

@media (max-width: 640px) {
  .dl-hero-inner { padding: 18px 16px; }
  .dl-hero-lead { display: none; }
  .dl-hero-stats { gap: 22px; }
  .dl-controls { padding: 16px 16px 14px; }
  .dl-results-bar { padding: 10px 16px; }
  .dl-card { padding: 14px 16px 14px 19px; }
  .dl-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 16px;
    margin-right: 16px;
  }
  .dl-view-toggle { top: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .dl-card,
  .dl-search-area { transition: none; }
  .dl-near-me.is-busy svg { animation: none; }
}
