/* ================================================================
 * ProVsup Design System — pv-load.css
 * Page de chargement (fallback).
 * ================================================================ */

.pv-load-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  z-index: 10;
}

.pv-load-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  text-align: center;
  padding: 48px 32px;
}

.pv-load-spinner {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}

.pv-load-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-ui);
  letter-spacing: -0.02em;
  margin: 0;
}

.pv-load-sub {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-ui);
  line-height: 1.6;
  margin: 0;
}

.pv-load-hint {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--font-ui);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  margin: 0;
}

.pv-load-hint i {
  color: var(--accent);
  flex: none;
}

.pv-load-hint kbd {
  display: inline-block;
  padding: 1px 6px;
  font-size: 11px;
  font-family: var(--font-ui);
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  box-shadow: 0 1px 0 var(--border-2);
  color: var(--text);
}
