/* Language-preserving property-market selector. Shared across the six landings. */

.market-selector {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-lg, 26px);
  background: var(--surface-soft, #f8f5fc);
  border: 1px solid var(--border, #ece5f4);
}

.market-selector-heading {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text, #17131d);
}

.market-selector-sub {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted, #655f72);
}

.market-selector-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.market-selector-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-strong, #4f4960);
}

.market-select {
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark, #3a6fd4);
  background: var(--surface-strong, #ffffff);
  border: 1px solid var(--border-strong, #dfd5eb);
  border-radius: 12px;
  padding: 9px 34px 9px 12px;
  min-height: 40px;
  min-width: 170px;
  cursor: pointer;
  appearance: auto;
}

.market-select:focus,
.market-select:focus-visible {
  outline: 2px solid var(--primary, #4f8bf6);
  outline-offset: 2px;
}

.market-selector-status {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark, #3a6fd4);
  min-height: 16px;
}

.market-selector-explainer {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted, #655f72);
}

@media (max-width: 640px) {
  .market-selector-row {
    flex-direction: column;
    align-items: stretch;
  }

  .market-select {
    width: 100%;
  }
}
