/* ==========================================================================
   common.css — styles partagés par les 3 templates (variables, resets)
   ========================================================================== */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --text-dark: #0f172a;
  --text-muted: #64748b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Bouton flottant pour revenir au sélecteur de modèles (mode démo) */
.template-switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: #111827;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0.9;
}
.template-switcher a { color: #fff; }
.template-switcher:hover { opacity: 1; }
