/* Shared guided demo tour bar — used on marketing pages, app, and station screens */

.demo-tour-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #141c28 0%, #1e2a3a 100%);
  color: #c8d4e4;
  border-top: 2px solid #f97316;
  z-index: 500;
  padding: 12px 20px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}

.demo-tour-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.demo-tour-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.demo-tour-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f97316;
}

.demo-tour-step-count {
  font-size: 0.78rem;
  color: #94a3b8;
}

.demo-tour-track {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.demo-tour-fill {
  height: 100%;
  background: #f97316;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.demo-tour-info {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-tour-info strong {
  color: #fff;
  font-size: 0.92rem;
}

.demo-tour-info span {
  font-size: 0.78rem;
  color: #94a3b8;
}

.demo-tour-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.demo-tour-exit {
  font-size: 0.78rem;
  color: #64748b;
  margin-left: 8px;
}

.demo-tour-exit:hover { color: #fff; }

@media (max-width: 768px) {
  .demo-tour-inner { flex-direction: column; align-items: stretch; }
  .demo-tour-actions { margin-left: 0; justify-content: flex-end; }
}
