/* ── TurtleGrove locale picker ───────────────────────────────────────────── */
#locale-switcher {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}

.locale-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1.5px solid #c8dcc4;
  border-radius: 20px;
  background: #f8fbf4;
  color: #3a5c36;
  font-size: 12px;
  font-family: system-ui, sans-serif;
  cursor: pointer;
  transition: border-color .12s, background .12s, transform .1s;
  white-space: nowrap;
}

.locale-btn:hover {
  border-color: #2d5429;
  background: #edf5e9;
  transform: translateY(-1px);
}

.locale-btn.active {
  border-color: #2d5429;
  background: #2d5429;
  color: #fff;
}

.locale-flag {
  font-size: 16px;
  line-height: 1;
}

.locale-name {
  font-weight: 500;
}
