/* ============================================================
   chip.css — Radio chips (Q1, Q4, Q9)
   ============================================================ */

.chip{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(245,242,232,.03);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--sand);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: all .25s var(--ease);
  font-family: var(--font-b);
  width: 100%;
}

.chip:hover{
  background: var(--bg-elev-2);
  border-color: var(--gold);
  transform: translateX(2px);
}

.chip .dot{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--warm);
  flex-shrink: 0;
  position: relative;
  transition: all .25s var(--ease);
}

.chip.selected{
  background: var(--bg-elev-2);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(198,156,109,.25);
}

.chip.selected .dot{
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 12px rgba(198,156,109,.6);
}

.chip.selected .dot::after{
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--bg-deep);
  border-radius: 50%;
}

.chip .letter{
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
}
