/* ── Smart Suggestion Engine — Shared Hosting CSS ── */
* { font-family: 'Inter', sans-serif; box-sizing: border-box; }

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-hover { transition: all 0.25s ease; }
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.suggestion-item { transition: all 0.15s ease; cursor: pointer; }
.suggestion-item:hover {
  background: linear-gradient(135deg, rgba(102,126,234,0.08), rgba(118,75,162,0.08));
  padding-left: 1.25rem;
}

.keyword-chip { transition: all 0.2s ease; cursor: pointer; }
.keyword-chip:hover { transform: scale(1.05); }

.pulse-dot { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.search-glow:focus-within {
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.25);
}

.bar-fill { transition: width 1s ease; }

.tab-btn { transition: all 0.2s ease; }
.tab-btn.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
}

.category-badge { font-size: 0.65rem; }

.step-badge {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #667eea; border-radius: 3px; }
#autocomplete-box {
  scrollbar-width: thin;
  scrollbar-color: #667eea #f1f5f9;
}

#toast {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
