/* ═══════════════════════════════════════════════════════════════════
   Skip Wizard — Dr. Lad-phrased multi-step skip flow, rendered inline
   inside an item card. Chips toggle between neutral and active states;
   sensation step is multi-select and requires a Next; other steps
   auto-advance on pick.
   ═══════════════════════════════════════════════════════════════════ */
.skip-wizard {
  font-size: 0.875rem;
  line-height: 1.35;
}

.skip-wizard__q {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.82);
  margin-bottom: 0.5rem;
}

.skip-wizard__hint {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.45);
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

.skip-wizard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skip-wizard__chips--stacked {
  flex-direction: column;
  align-items: stretch;
}

.skip-wizard__chip {
  font-size: 0.8rem;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(120, 113, 108, 0.28);
  background-color: rgba(255, 255, 255, 0.55);
  color: rgba(0, 0, 0, 0.72);
  cursor: pointer;
  transition: background-color 120ms ease-out, border-color 120ms ease-out, color 120ms ease-out;
  white-space: nowrap;
}

.skip-wizard__chip:hover {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: rgba(120, 113, 108, 0.55);
}

.skip-wizard__chip--active,
.skip-wizard__chip[aria-pressed="true"] {
  background-color: rgba(168, 85, 247, 0.14);
  border-color: rgba(168, 85, 247, 0.55);
  color: rgba(88, 28, 135, 0.95);
}

.skip-wizard__chip--wide {
  white-space: normal;
  text-align: left;
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
}

.skip-wizard__back {
  background: transparent;
  border: none;
  cursor: pointer;
}
