.truck-marker {
  transition: transform 0.15s ease;
}
.truck-marker:hover {
  transform: scale(1.25);
}

/* Language selector container – top-left overlay */
.px-lang-switcher {
  position: fixed;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85); /* matches dark Puestazo vibe */
  backdrop-filter: blur(8px);
  z-index: 9999;
}

/* Each flag button */
.px-lang-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 999px;
  font-size: 16px;        /* size of emoji flag */
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.px-lang-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.px-lang-btn--active {
  opacity: 1;
  background: rgba(248, 250, 252, 0.18);
}

/* Optional: flag span, in case you add text later */
.px-lang-flag {
  display: inline-block;
}