/* CSH router. Loaded once per page by csh-components.php. Tokens from csh-tokens.css with fallbacks. */
.csh-router, .csh-router *, .csh-router *::before, .csh-router *::after { box-sizing: border-box; }
.csh-router { max-width: 760px; font-family: var(--csh-font-body, Inter, system-ui, sans-serif); }
.csh-router a, .csh-router button, .csh-router select, .csh-router input { background-color: transparent; }
.csh-router a:hover, .csh-router a:focus, .csh-router button:focus { background-color: transparent; }

/* visually hidden labels */
.csh-router .csh-vh { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---- bar ---- */
.csh-router__form {
  display: flex; gap: 6px; padding: 6px; margin: 0;
  background: var(--csh-vapor-0, #ffffff);
  border-radius: var(--csh-radius-md, 10px);
}
.csh-router__service { flex: 0 0 236px; position: relative; }
.csh-router__where   { flex: 1 1 auto; min-width: 0; position: relative; }

.csh-router select, .csh-router input {
  display: block; width: 100%; height: 48px; margin: 0;
  padding: 0 14px; border: 0; border-radius: var(--csh-radius-sm, 6px);
  font-family: inherit; font-size: 16px; line-height: 48px;
  color: var(--csh-navy-900, #10243c);
}
.csh-router select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5' stroke='%236e93b4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  border-right: 1px solid var(--csh-vapor-200, #dfe6ec); border-radius: var(--csh-radius-sm, 6px) 0 0 var(--csh-radius-sm, 6px);
}
.csh-router input::placeholder { color: var(--csh-vapor-500, #74879a); opacity: 1; }
.csh-router select:focus-visible, .csh-router input:focus-visible {
  outline: 3px solid var(--csh-focus, #ecb854); outline-offset: -3px;
}

/* the one amber element */
.csh-router__go {
  flex: 0 0 auto; height: 48px; padding: 0 24px; border: 0; cursor: pointer;
  border-radius: var(--csh-radius-sm, 6px);
  background-color: var(--csh-amber-500, #e8a83b);
  color: var(--csh-navy-950, #0a1828);
  font-family: inherit; font-weight: 600; font-size: 16px; line-height: 1;
}
.csh-router__go:hover, .csh-router__go:focus { background-color: var(--csh-amber-600, #d08e23); color: var(--csh-navy-950, #0a1828); }
.csh-router__go:active { background-color: var(--csh-amber-600, #d08e23); }
.csh-router__go:focus-visible { outline: 3px solid var(--csh-focus, #ecb854); outline-offset: 2px; }

/* ---- suggestions ---- */
.csh-router__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 30;
  margin: 0; padding: 6px; list-style: none;
  background: var(--csh-vapor-0, #ffffff);
  border: 1px solid var(--csh-vapor-200, #dfe6ec);
  border-radius: var(--csh-radius-md, 10px);
  box-shadow: var(--csh-shadow-card, 0 1px 2px rgba(16,36,60,.05), 0 10px 30px -12px rgba(16,36,60,.18));
  max-height: 320px; overflow-y: auto; text-align: left;
}
.csh-router__list[hidden] { display: none; }
.csh-router__opt {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 10px 12px; border-radius: var(--csh-radius-sm, 6px); cursor: pointer;
  font-size: 15px; color: var(--csh-navy-900, #10243c);
}
.csh-router__opt small { font-size: 13px; color: var(--csh-vapor-600, #566a7e); white-space: nowrap; }
.csh-router__opt:hover, .csh-router__opt[aria-selected="true"] { background: var(--csh-vapor-100, #eef2f5); }

/* ---- status line (coverage gap, service fallback, pick a match) ---- */
.csh-router__status { margin: 12px 0 0; font-size: 15px; line-height: 1.5; color: inherit; }
.csh-router__status[hidden] { display: none; }
.csh-router__status a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* ---- tablet and mobile ---- */
@media (max-width: 1024px) { .csh-router__service { flex-basis: 200px; } }
@media (max-width: 767px) {
  .csh-router__form { flex-direction: column; gap: 0; padding: 6px; }
  .csh-router__service { flex-basis: auto; }
  .csh-router select {
    border-right: 0; border-bottom: 1px solid var(--csh-vapor-200, #dfe6ec);
    border-radius: var(--csh-radius-sm, 6px) var(--csh-radius-sm, 6px) 0 0; height: 52px; line-height: 52px;
  }
  .csh-router input { height: 52px; line-height: 52px; }
  .csh-router__go { width: 100%; height: 52px; margin-top: 6px; }
}
