/* ============================================================================
   Capi Când-IA Pro — Suggestion Pill (Fase 1)
   Pills do welcome state. Lucide icon + texto sugestivo.
   Hover: gold border + bg gold-dim + lift sutil.
   ============================================================================ */

.ds-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-sm);
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--ds-radius-lg);
  color: #ccc;
  font-family: var(--ds-font-sans);
  font-size: var(--ds-text-base);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.ds-pill:hover {
  border-color: rgba(212,160,23,0.45);
  background: rgba(212,160,23,0.05);
  color: var(--ds-text);
  transform: translateY(-1px);
}

.ds-pill svg {
  width: 13px;
  height: 13px;
  stroke: var(--ds-text-muted);
  flex-shrink: 0;
  transition: stroke 0.15s ease;
}

.ds-pill:hover svg {
  stroke: var(--ds-gold);
}
