.zone-page {
  --zone-brand: #0f172a;
  --zone-muted: #64748b;
  --zone-line: rgba(226, 232, 240, 0.72);
  --zone-glass: rgba(255, 255, 255, 0.88);
  --zone-glass-strong: rgba(255, 255, 255, 0.96);
  --zone-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
  --zone-radius: 24px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--zone-brand);
  font-family: "Inter", system-ui, sans-serif;
}

.zone-page *,
.zone-page *::before,
.zone-page *::after {
  box-sizing: border-box;
}

.zone-page__map {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.zone-page__map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #e2e8f0;
}

.zone-page__map .leaflet-control-zoom {
  border: 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
  border-radius: 14px;
  overflow: hidden;
}

.zone-page__map .leaflet-control-zoom a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--zone-brand);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--zone-line);
}

.zone-page__map .leaflet-control-zoom a:hover {
  background: #ffffff;
}

.zone-page__scrim {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.34) 0%, rgba(15, 23, 42, 0.08) 28%, rgba(15, 23, 42, 0.04) 100%),
    radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 0.12), transparent 55%);
}

.zone-page__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(16px, 3vw, 28px);
}

.zone-page__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.zone-page__brand img {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.18));
}

.zone-page__brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.zone-page__brand-copy strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 1px 10px rgba(15, 23, 42, 0.35);
}

.zone-page__brand-copy span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zone-page__header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.zone-page__filters {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 29;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 clamp(16px, 3vw, 28px) 12px;
  -webkit-overflow-scrolling: touch;
}

.zone-page__filters::-webkit-scrollbar {
  display: none;
}

.zone-page__filter-chip {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.zone-page__filter-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
}

.zone-page__filter-chip.is-active {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.zone-page__filter-chip:active {
  transform: scale(0.97);
}

.zone-page:not(.is-map-focus) .zone-page__filters {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.zone-page.is-map-focus .zone-page__filters {
  transition: opacity 0.28s ease;
}

.zone-page .nav-auth-dropdown {
  position: relative;
}

.zone-page__utilities {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.zone-page__menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.zone-page__menu-trigger:hover,
.zone-page__lang.open .zone-page__menu-trigger--lang,
.zone-page .nav-auth-dropdown.open .zone-page__menu-trigger--account {
  background: rgba(255, 255, 255, 0.14);
}

.zone-page__menu-trigger--account {
  padding-left: 4px;
  max-width: 180px;
}

.zone-page__menu-trigger--lang {
  padding-right: 10px;
}

.zone-page .nav-auth {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 500;
  gap: 8px;
}

.zone-page .nav-auth-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zone-page .nav-auth:not([data-authenticated="true"]) .nav-auth-text {
  display: none;
}

.zone-page .nav-auth-icon {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.zone-page .nav-auth[data-authenticated="true"] .nav-auth-icon {
  border-color: rgba(255, 255, 255, 0.72);
}

.zone-page .nav-auth-icon.nav-auth-icon--profile {
  background: transparent;
}

.zone-page .nav-auth-avatar-fallback {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.zone-page .nav-auth-chevron {
  color: rgba(255, 255, 255, 0.88);
}

.zone-page .lang-trigger {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 500;
}

.zone-page .lang-flag {
  width: 18px;
  height: 14px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.zone-page .lang-chevron {
  width: 14px;
  height: 14px;
  opacity: 0.88;
}

.zone-page__dropdown,
.zone-page .nav-auth-menu {
  top: calc(100% + 12px);
  right: 0;
  min-width: 232px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(22px);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 22px 54px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  z-index: 40;
}

.zone-page .lang-menu {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(22px);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 22px 54px rgba(15, 23, 42, 0.16);
}

.zone-page__lang.open .zone-page__dropdown,
.zone-page .nav-auth-dropdown.open .nav-auth-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.zone-page__dropdown-label {
  padding: 8px 12px 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.zone-page .lang-option {
  color: #0f172a;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.875rem;
}

.zone-page .lang-option:hover {
  background: #f1f5f9;
}

.zone-page .lang-option.active {
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.zone-page .lang-option-check {
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: #0f172a;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.zone-page .lang-option-check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.zone-page .lang-option.active .lang-option-check {
  opacity: 1;
  transform: scale(1);
}

.zone-page .lang-option-code {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
}

.zone-page .nav-auth-menu {
  position: absolute;
}

.zone-page .nav-auth-menu-label {
  padding: 8px 12px 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.zone-page .nav-auth-menu-user {
  padding: 12px 12px 10px;
}

.zone-page .nav-auth-menu-name {
  font-size: 0.9rem;
}

.zone-page .nav-auth-menu-email {
  font-size: 0.78rem;
}

.zone-page .nav-auth-menu-divider {
  margin: 4px 10px 6px;
  background: rgba(15, 23, 42, 0.08);
}

.zone-page .nav-auth-option {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.875rem;
}

.zone-page .nav-auth-option:hover {
  background: #f1f5f9;
}

.zone-page .nav-auth-option.is-active {
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.zone-page .nav-auth-option-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0f172a;
}

.zone-page .nav-auth-option--logout .nav-auth-option-icon {
  background: #fef2f2;
  color: #b91c1c;
}

.zone-page .nav-auth-option--logout:hover {
  background: rgba(239, 68, 68, 0.06);
}

.zone-page__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.zone-page__action:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
}

.zone-page__action svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.zone-page__action--icon {
  width: 42px;
  padding: 0;
}

.zone-page__action.is-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--zone-brand);
  border-color: transparent;
}

.zone-page__location-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.zone-page__locate.is-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--zone-brand);
  border-color: transparent;
}

.zone-page__locate.is-loading {
  opacity: 0.82;
  pointer-events: none;
}

.zone-page__locate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zone-page__locate-icon svg {
  width: 18px;
  height: 18px;
}

.zone-page__locate-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: zone-locate-spin 0.7s linear infinite;
  flex-shrink: 0;
}

.zone-page__locate.is-loading .zone-page__locate-icon {
  display: none;
}

.zone-page__locate.is-loading .zone-page__locate-spinner {
  display: block;
}

.zone-page__locate.is-active.is-loading .zone-page__locate-spinner {
  border-color: rgba(15, 23, 42, 0.14);
  border-top-color: var(--zone-brand);
}

.zone-page__locate.is-loading [data-locate-label] {
  opacity: 0.85;
}

@keyframes zone-locate-spin {
  to {
    transform: rotate(360deg);
  }
}

.zone-page__radius {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.zone-page__radius[hidden] {
  display: none;
}

.zone-page__radius-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.zone-page__radius input[type="range"] {
  width: 88px;
  height: 4px;
  appearance: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.zone-page__radius input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #0f172a;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.zone-page__radius input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #0f172a;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.zone-page__radius-value {
  min-width: 42px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.user-marker-wrap {
  background: transparent !important;
  border: none !important;
  z-index: 1000 !important;
}

.user-location-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 148px;
  pointer-events: none;
}

.user-location-badge {
  position: relative;
  padding: 6px 12px;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.24);
}

.user-location-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 8px;
  height: 8px;
  background: #0f172a;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 1px;
}

.user-location-dot-wrap {
  position: relative;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}

.user-location-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.22);
  animation: zone-user-pulse 2.2s ease-out infinite;
}

.user-location-dot {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2563eb;
  border: 2.5px solid #ffffff;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.45);
}

@keyframes zone-user-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }

  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

.zone-page__lang {
  position: relative;
}

.zone-page__shell {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding:
    124px clamp(16px, 3vw, 28px)
    clamp(16px, 3vw, 28px);
}

.zone-search-chat {
  width: min(720px, 100%);
  max-height: calc(100dvh - 104px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--zone-radius);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--zone-glass);
  backdrop-filter: blur(22px);
  box-shadow: var(--zone-shadow);
}

.zone-search-chat__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px 16px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
}

.zone-search-chat__avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.zone-search-chat__avatar img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.zone-search-chat__meta {
  flex: 1;
  min-width: 0;
}

.zone-search-chat__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.zone-search-chat__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.zone-search-chat__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.zone-search-chat__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.zone-search-chat__close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.zone-search-chat__close svg {
  width: 18px;
  height: 18px;
}

.zone-search-chat__messages {
  flex: 1;
  min-height: 280px;
  overflow-y: auto;
  padding: 20px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #f8fafc 0%, rgba(248, 250, 252, 0.72) 100%);
  scrollbar-width: thin;
  scrollbar-color: var(--zone-brand) transparent;
}

.zone-search-chat__messages::-webkit-scrollbar {
  width: 6px;
}

.zone-search-chat__messages::-webkit-scrollbar-thumb {
  background: var(--zone-brand);
  border-radius: 999px;
}

.zone-search-chat__message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
  word-break: break-word;
}

.zone-search-chat__message--bot {
  align-self: flex-start;
  background: #ffffff;
  color: var(--zone-brand);
  border: 1px solid var(--zone-line);
  border-bottom-left-radius: 6px;
  white-space: pre-wrap;
}

.zone-search-chat__message--user {
  align-self: flex-end;
  background: var(--zone-brand);
  color: #ffffff;
  border-bottom-right-radius: 6px;
}

.zone-search-chat__message--typing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 68px;
  min-height: 44px;
}

.zone-search-chat__typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #94a3b8;
  animation: zone-search-typing 1.2s infinite ease-in-out;
}

.zone-search-chat__typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.zone-search-chat__typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes zone-search-typing {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.zone-search-chat__prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 14px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.72) 0%, #f8fafc 100%);
}

.zone-search-chat__prompt {
  border: 1px solid var(--zone-line);
  border-radius: 999px;
  padding: 8px 14px;
  background: #ffffff;
  color: var(--zone-brand);
  font-size: 0.82rem;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.zone-search-chat__prompt:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.zone-search-chat__results {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.zone-search-chat__result {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--zone-line);
  background: #f8fafc;
}

.zone-search-chat__result-thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  background: #e2e8f0;
}

.zone-search-chat__result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zone-search-chat__result-body strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.zone-search-chat__result-body span {
  display: block;
  font-size: 0.78rem;
  color: var(--zone-muted);
}

.zone-search-chat__result-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.76rem;
  color: var(--zone-muted);
}

.zone-search-chat__result-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--zone-brand);
  font-weight: 600;
}

.zone-search-chat__composer-wrap {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--zone-line);
  background: var(--zone-glass-strong);
}

.zone-search-chat__composer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zone-search-chat__mic {
  width: 42px;
  height: 42px;
  border: 1px solid var(--zone-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--zone-brand);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.zone-search-chat__mic:hover:not(:disabled) {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.16);
}

.zone-search-chat__mic:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.zone-search-chat__mic.is-recording {
  background: #fee2e2;
  border-color: #fecaca;
  color: #b91c1c;
  animation: zone-mic-pulse 1.2s ease-in-out infinite;
}

.zone-search-chat__mic svg {
  width: 18px;
  height: 18px;
}

@keyframes zone-mic-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.28);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
}

.zone-search-chat__composer.is-transcribing .zone-search-chat__input {
  color: var(--zone-muted);
}

.zone-search-chat__input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--zone-line);
  border-radius: 999px;
  padding: 13px 18px;
  font: inherit;
  font-size: 0.92rem;
  color: var(--zone-brand);
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.zone-search-chat__input::placeholder {
  color: var(--zone-muted);
}

.zone-search-chat__input:focus {
  outline: none;
  border-color: var(--zone-brand);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.zone-search-chat__send {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--zone-brand);
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.zone-search-chat__send:hover:not(:disabled) {
  transform: translateY(-1px);
}

.zone-search-chat__send:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.zone-search-chat__send svg {
  width: 18px;
  height: 18px;
}

.zone-search-chat__hint {
  margin-top: 10px;
  font-size: 0.74rem;
  color: var(--zone-muted);
  text-align: center;
}

.zone-page.is-map-focus .zone-page__shell {
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.zone-page:not(.is-map-focus) .zone-page__shell {
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.zone-search-launcher {
  position: fixed;
  left: 50%;
  bottom: clamp(20px, 4vw, 32px);
  z-index: 35;
  min-height: 56px;
  padding: 0 22px 0 16px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  box-shadow:
    0 4px 14px rgba(15, 23, 42, 0.2),
    0 18px 40px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease,
    visibility 0.22s ease;
  isolation: isolate;
}

.zone-search-launcher::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(15, 23, 42, 0.08);
  opacity: 0.65;
  animation: zone-launcher-ring 2.8s ease-out infinite;
  pointer-events: none;
}

@keyframes zone-launcher-ring {
  0% {
    transform: scale(0.96);
    opacity: 0.55;
  }

  70% {
    transform: scale(1.08);
    opacity: 0;
  }

  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

.zone-search-launcher[hidden] {
  display: none;
}

.zone-search-launcher:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.24),
    0 22px 48px rgba(15, 23, 42, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.zone-search-launcher:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.zone-search-launcher__icon {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.zone-search-launcher__bubble {
  width: 22px;
  height: 22px;
  opacity: 0.92;
}

.zone-search-launcher__lens {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.zone-search-launcher__label {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .zone-page__filters {
    top: 56px;
  }

  .zone-page__brand-copy {
    display: none;
  }

  .zone-page__action span:not(.lang-label) {
    display: none;
  }

  .zone-page__locate.is-active span[data-locate-label] {
    display: inline;
  }

  .zone-page__location-tools {
    gap: 8px;
  }

  .zone-page__radius {
    width: 100%;
    justify-content: space-between;
  }

  .zone-page__radius input[type="range"] {
    flex: 1;
    min-width: 0;
  }

  .zone-page__utilities {
    gap: 4px;
    padding: 3px;
  }

  .zone-page__menu-trigger--lang .lang-label {
    display: none;
  }

  .zone-page__menu-trigger--account {
    max-width: none;
    padding-right: 8px;
  }

  .zone-page .nav-auth[data-authenticated="true"] .nav-auth-text {
    display: none;
  }

  .zone-page__shell {
    align-items: flex-end;
    padding:
      72px 0 0;
  }

  .zone-search-chat {
    width: 100%;
    max-height: calc(100dvh - 72px);
    border-radius: 24px 24px 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .zone-search-chat__messages {
    min-height: 220px;
  }

  .zone-search-launcher {
    min-height: 52px;
    padding: 0 18px 0 14px;
    gap: 10px;
  }

  .zone-search-launcher__icon {
    width: 34px;
    height: 34px;
  }

  .zone-search-launcher__label {
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zone-search-chat__prompt,
  .zone-search-chat__send,
  .zone-page__action,
  .zone-page.is-map-focus .zone-page__shell,
  .zone-page:not(.is-map-focus) .zone-page__shell {
    transition: none;
  }

  .zone-search-chat__typing-dot {
    animation: none;
  }

  .zone-search-launcher::before,
  .zone-search-chat__mic.is-recording {
    animation: none;
  }
}
