/* ================================================================
   SAAPHONE — Wizard reprise iPhone (v2)
   Styles scopés pour la section .wiz-page de reprise.html
   ================================================================ */

.wiz-page { padding: 32px 16px 80px; max-width: 1180px; margin: 0 auto; background: var(--bg-light, #FAFAFA); }

.wiz-progress { display: flex; gap: 6px; margin: 24px 0 32px; }
.wiz-progress .pip { flex: 1; height: 4px; background: #E2E8F0; border-radius: 2px; transition: background 0.3s; }
.wiz-progress .pip.done, .wiz-progress .pip.current { background: var(--primary, #DC2626); }

.wiz-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
@media (max-width: 1024px) {
  .wiz-layout { grid-template-columns: 1fr; }
  .wiz-recap { order: -1; position: relative !important; top: auto !important; }
  .wiz-recap-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .wiz-recap-item { flex: 1 1 calc(50% - 4px); min-width: 140px; }
}

.wiz-main { background: white; border-radius: 16px; padding: 36px; box-shadow: 0 1px 3px rgba(10,22,40,0.04); }
.wiz-main h2 { font-size: 1.6rem; margin: 0 0 6px; font-weight: 800; line-height: 1.25; }
.wiz-main .subtitle { color: var(--text-light, #64748B); font-size: 0.95rem; margin: 0 0 28px; }

.step { display: none; animation: wizFadeIn 0.25s ease; }
.step.active { display: block; }
@keyframes wizFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.search-box { position: relative; margin-bottom: 16px; }
.search-box input { width: 100%; padding: 14px 16px 14px 44px; border: 1px solid #E2E8F0; border-radius: 10px; font-size: 1rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; }
.search-box input:focus { outline: none; border-color: var(--primary, #DC2626); box-shadow: 0 0 0 3px rgba(220,38,38,0.08); }
.search-box .search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #94A3B8; pointer-events: none; }
.search-box .clear-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: 0; color: #94A3B8; cursor: pointer; padding: 6px; font-size: 1rem; display: none; }
.search-box .clear-btn:hover { color: var(--primary, #DC2626); }
.search-box.has-value .clear-btn { display: block; }

.models-list { background: white; border: 1px solid #E2E8F0; border-radius: 10px; max-height: 280px; overflow-y: auto; margin-bottom: 12px; }
.models-list .model-item { padding: 14px 18px; cursor: pointer; border-bottom: 1px solid #F1F5F9; transition: background 0.15s; font-size: 0.96rem; }
.models-list .model-item:last-child { border-bottom: 0; }
.models-list .model-item:hover { background: var(--bg-soft, #FEF2F2); color: var(--primary, #DC2626); }
.models-list .model-item.empty { color: #94A3B8; cursor: default; padding: 24px; text-align: center; }
.models-list .model-item.empty:hover { background: white; color: #94A3B8; }

.wiz-page .helper { color: var(--text-light, #64748B); font-size: 0.88rem; margin: 12px 0 24px; display: flex; gap: 8px; align-items: flex-start; }
.wiz-page .helper i { color: var(--accent, #D4AF37); margin-top: 2px; flex-shrink: 0; }

.capacity-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; }
.cap-btn { padding: 18px 14px; border: 1.5px solid #E2E8F0; border-radius: 12px; background: white; cursor: pointer; font-size: 1.05rem; font-weight: 700; font-family: inherit; transition: all 0.2s; position: relative; color: var(--text); }
.cap-btn:hover { border-color: var(--primary, #DC2626); transform: translateY(-1px); }
.cap-btn.selected { border-color: var(--primary, #DC2626); background: var(--bg-soft, #FEF2F2); box-shadow: 0 0 0 1px var(--primary, #DC2626); }
.cap-btn.selected::after { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 50%; right: 12px; transform: translateY(-50%); color: var(--primary, #DC2626); font-size: 0.9rem; }

.empty-msg { color: #94A3B8; font-style: italic; padding: 12px 0; }

.options { display: flex; flex-direction: column; gap: 10px; }
.option-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1.5px solid #E2E8F0; border-radius: 12px; background: white; cursor: pointer; transition: all 0.2s; position: relative; }
.option-card:hover { border-color: var(--primary, #DC2626); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(220,38,38,0.06); }
.option-card.selected { border-color: var(--primary, #DC2626); background: var(--bg-soft, #FEF2F2); box-shadow: 0 0 0 1px var(--primary, #DC2626); }
.option-card.selected::after { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 50%; right: 18px; transform: translateY(-50%); color: var(--primary, #DC2626); font-size: 1.1rem; }
.option-card .opt-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.option-card .opt-icon.green  { background: #ECFDF5; color: #10B981; }
.option-card .opt-icon.yellow { background: #FFFBEB; color: #F59E0B; }
.option-card .opt-icon.orange { background: #FFF7ED; color: #EA580C; }
.option-card .opt-icon.red    { background: #FEF2F2; color: #DC2626; }
.option-card .opt-icon.dark   { background: #F1F5F9; color: #475569; }
.option-card .opt-text strong { display: block; font-size: 1.02rem; font-weight: 700; margin-bottom: 2px; }
.option-card .opt-text small { color: var(--text-light, #64748B); font-size: 0.88rem; line-height: 1.4; }
.option-card .opt-pct { margin-left: auto; padding: 6px 12px; background: #F1F5F9; border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--text-light, #64748B); margin-right: 28px; }

.wiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid #F1F5F9; }
.wiz-nav.hidden { display: none !important; }
.btn-wiz { padding: 14px 24px; border-radius: 10px; font-weight: 700; font-family: inherit; font-size: 0.98rem; cursor: pointer; transition: all 0.2s; border: 0; display: inline-flex; align-items: center; gap: 8px; }
.btn-wiz.prev { background: white; color: var(--text-light, #64748B); border: 1.5px solid #E2E8F0; }
.btn-wiz.prev:hover { border-color: var(--text, #0A1628); color: var(--text, #0A1628); }
.btn-wiz.next { background: var(--gradient, linear-gradient(135deg, #DC2626, #991B1B)); color: white; box-shadow: 0 4px 14px rgba(220,38,38,0.25); }
.btn-wiz.next:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(220,38,38,0.35); }
.btn-wiz:disabled { opacity: 0.4; cursor: not-allowed; }

.wiz-recap { background: white; border-radius: 16px; padding: 24px; box-shadow: 0 1px 3px rgba(10,22,40,0.04); position: sticky; top: 24px; }
.wiz-recap h3 { margin: 0 0 18px; font-size: 1.1rem; font-weight: 800; }
.wiz-recap-list { list-style: none; margin: 0; padding: 0; }
.wiz-recap-item { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; cursor: pointer; transition: opacity 0.2s; }
.wiz-recap-item:hover { opacity: 0.7; }
.wiz-recap-item .pip-circle { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #E2E8F0; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: white; transition: all 0.2s; }
.wiz-recap-item.done .pip-circle { background: var(--primary, #DC2626); border-color: var(--primary, #DC2626); }
.wiz-recap-item.done .pip-circle::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.wiz-recap-item .label { font-size: 0.78rem; color: var(--text-light, #64748B); display: block; line-height: 1.2; margin-bottom: 2px; }
.wiz-recap-item .value { font-weight: 700; color: var(--text, #0A1628); font-size: 0.95rem; line-height: 1.3; }
.wiz-recap-item .value.empty { color: #CBD5E1; font-weight: 400; }

.result-card { background: white; border: 2px solid var(--primary, #DC2626); border-radius: 18px; padding: 32px; text-align: center; margin-bottom: 24px; background-image: linear-gradient(135deg, rgba(220,38,38,0.02), rgba(212,175,55,0.04)); }
.result-card .model { color: var(--text-light, #64748B); font-size: 1rem; margin-bottom: 12px; }
.result-card .price { font-size: 4rem; font-weight: 900; color: var(--primary, #DC2626); line-height: 1; margin: 8px 0; font-family: 'Satoshi', sans-serif; letter-spacing: -2px; }
.result-card .price small { font-size: 2rem; font-weight: 700; }
.result-card .range { color: var(--text-light, #64748B); font-size: 0.92rem; margin-top: 4px; }

.cta-stack { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.cta-btn { padding: 16px 24px; border-radius: 12px; border: 0; cursor: pointer; font-weight: 700; font-family: inherit; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 12px; transition: all 0.2s; text-decoration: none; }
.cta-btn.primary { background: linear-gradient(135deg, #25D366, #128C7E); color: white; padding: 20px 24px; font-size: 1.08rem; box-shadow: 0 4px 14px rgba(37,211,102,0.3); }
.cta-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); color: white; }
.cta-btn.primary i { font-size: 1.5rem; }
.cta-btn.primary .label-block { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.cta-btn.primary .label-block strong { font-size: 1.1rem; }
.cta-btn.primary .label-block small { opacity: 0.92; font-weight: 500; font-size: 0.82rem; }
.cta-btn.snap { background: #FFFC00; color: #000; }
.cta-btn.snap:hover { box-shadow: 0 4px 14px rgba(255,252,0,0.4); transform: translateY(-1px); color: #000; }
.cta-btn.sms { background: #007AFF; color: white; }
.cta-btn.sms:hover { box-shadow: 0 4px 14px rgba(0,122,255,0.3); transform: translateY(-1px); color: white; }
.cta-row-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .cta-row-secondary { grid-template-columns: 1fr; } }

.pre-visit { background: var(--bg-soft, #FEF2F2); border-radius: 14px; padding: 20px; margin: 24px 0; }
.pre-visit h4 { margin: 0 0 14px; font-size: 1rem; font-weight: 800; color: var(--text, #0A1628); display: flex; align-items: center; gap: 8px; }
.pre-visit h4 i { color: var(--primary, #DC2626); }
.pre-visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .pre-visit-grid { grid-template-columns: 1fr; } }
.pre-visit-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 12px; background: white; border-radius: 8px; }
.pre-visit-item i { color: var(--primary, #DC2626); margin-top: 3px; }
.pre-visit-item div strong { display: block; font-size: 0.92rem; margin-bottom: 2px; }
.pre-visit-item div small { color: var(--text-light, #64748B); font-size: 0.82rem; line-height: 1.35; }

.boutique-info { background: var(--secondary, #0A1628); color: white; border-radius: 14px; padding: 22px; text-align: center; }
.boutique-info h4 { margin: 0 0 10px; font-size: 1.05rem; font-weight: 800; }
.boutique-info h4 i { color: var(--accent, #D4AF37); margin-right: 6px; }
.boutique-info p { margin: 4px 0; font-size: 0.95rem; opacity: 0.92; }
.boutique-info p strong { color: var(--accent, #D4AF37); }

.social-block { text-align: center; padding: 24px; margin-top: 18px; border-radius: 14px; background: white; border: 1px solid #E2E8F0; }
.social-block h4 { margin: 0 0 6px; font-size: 1rem; font-weight: 800; }
.social-block p { margin: 0 0 16px; color: var(--text-light, #64748B); font-size: 0.88rem; }
.social-icons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.social-icons a { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: white; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.social-icons a:hover { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(0,0,0,0.15); }
.social-icons a.fb     { background: #1877F2; }
.social-icons a.ig     { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icons a.snap   { background: #FFFC00; color: #000; }
.social-icons a.tt     { background: #000; }
.social-icons a.wa     { background: #25D366; }

.disclaimer { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; background: #F8FAFC; border-radius: 10px; font-size: 0.85rem; color: var(--text-light, #64748B); line-height: 1.5; margin-top: 18px; }
.disclaimer i { color: var(--accent, #D4AF37); margin-top: 2px; flex-shrink: 0; }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--text, #0A1628); color: white; padding: 14px 22px; border-radius: 12px; font-weight: 600; box-shadow: 0 12px 32px rgba(10,22,40,0.25); z-index: 9999; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); display: flex; align-items: center; gap: 10px; max-width: 90%; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: #10B981; }

.selected-brand { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--bg-soft, #FEF2F2); border-radius: 10px; margin-bottom: 18px; }
.selected-brand i { color: var(--primary, #DC2626); font-size: 1.3rem; }
.selected-brand strong { font-size: 1.05rem; }
.selected-brand span { color: var(--text-light, #64748B); font-size: 0.9rem; }

.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; font-size: 0.95rem; }
.summary-grid .full { grid-column: 1/-1; }
.summary-grid .lbl { color: var(--text-light, #64748B); font-size: 0.82rem; display: block; }

.result-actions { display: flex; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid #F1F5F9; }
@media (max-width: 480px) { .result-actions { flex-direction: column; } }
.result-actions button { flex: 1; padding: 14px 18px; border-radius: 10px; font-weight: 700; font-family: inherit; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.result-actions .btn-edit { background: white; color: var(--text, #0A1628); border: 1.5px solid #E2E8F0; }
.result-actions .btn-edit:hover { border-color: var(--primary, #DC2626); color: var(--primary, #DC2626); }
.result-actions .btn-reset { background: var(--bg-soft, #FEF2F2); color: var(--primary, #DC2626); border: 1.5px solid var(--primary, #DC2626); }
.result-actions .btn-reset:hover { background: var(--primary, #DC2626); color: white; }

/* ================================================================
   ENHANCEMENTS — animations, profondeur visuelle, typo plus marquée
   ================================================================ */

/* Fond de section : très léger wash rosé pour cohérence avec les blobs */
.wiz-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F5 60%, #FAFAFA 100%);
  padding: 8px 0 0;
}

/* BLOBS — gros, solides, peu floutés, couleurs SaaPhone vives */
.wiz-section::before,
.wiz-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
  will-change: transform;
}
/* Blob 1 — gros rouge SaaPhone, top-right (le plus visible) */
.wiz-section::before {
  width: 620px; height: 620px;
  top: -180px; right: -160px;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.55) 0%, rgba(220, 38, 38, 0.30) 35%, rgba(220, 38, 38, 0.08) 60%, transparent 80%);
  animation: wizFloat 14s ease-in-out infinite;
}
/* Blob 2 — or champagne, bottom-left */
.wiz-section::after {
  width: 540px; height: 540px;
  bottom: -180px; left: -140px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.50) 0%, rgba(212, 175, 55, 0.25) 35%, rgba(212, 175, 55, 0.06) 60%, transparent 80%);
  animation: wizFloat 18s ease-in-out infinite reverse;
}

/* Blob 3 — petit rouge clair en flottement libre, milieu droit */
.wiz-page::before {
  content: '';
  position: absolute;
  top: 30%; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 113, 113, 0.40) 0%, rgba(248, 113, 113, 0.15) 40%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  animation: wizFloatAlt 22s ease-in-out infinite;
  will-change: transform;
}

/* Trajectoire en zigzag à 4 points clés — moins prévisible que ping-pong */
@keyframes wizFloat {
  0%, 100% { transform: translate(0, 0)        scale(1); }
  25%      { transform: translate(60px, 35px)  scale(1.10); }
  50%      { transform: translate(-30px, 70px) scale(1.18); }
  75%      { transform: translate(50px, -25px) scale(1.05); }
}
@keyframes wizFloatAlt {
  0%, 100% { transform: translate(0, 0)         scale(1); }
  33%      { transform: translate(-80px, 60px)  scale(1.20); }
  66%      { transform: translate(40px, -50px)  scale(0.92); }
}

/* La page wizard reste AU-DESSUS des blobs */
.wiz-page { position: relative; z-index: 1; background: transparent; }

/* Cards opaques (blanc presque pur) — laissent voir les blobs en marge */
.wiz-main, .wiz-recap {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.10), 0 2px 8px rgba(10, 22, 40, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

/* Canvas effet "cendres rouges" — site-wide, fixe au viewport */
.wiz-ash {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

/* Subtil wash interne pour casser le blanc plat DANS la carte */
.wiz-main::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(220, 38, 38, 0.05) 0%, transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 35%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.wiz-main > * { position: relative; z-index: 1; }

/* Typographie : poids +1 partout, sous-titres plus contrastés */
.wiz-main { font-weight: 500; }
.wiz-main .subtitle { color: #475569; font-weight: 500; }
.wiz-page .helper { font-weight: 500; color: #475569; }
.option-card .opt-text small,
.pre-visit-item div small,
.boutique-info p,
.disclaimer span { font-weight: 500; }
.option-card .opt-text strong,
.pre-visit-item div strong { font-weight: 800; }
.wiz-recap-item .label { font-weight: 600; color: #475569; }
.wiz-recap h3, .pre-visit h4, .boutique-info h4, .social-block h4 { font-weight: 900; }

/* Progress pips : plus visibles + pulse sur l'étape courante */
.wiz-progress .pip { height: 6px; border-radius: 3px; }
.wiz-progress .pip.current {
  background: linear-gradient(90deg, #DC2626, #F87171);
  animation: wizPipPulse 2.4s ease-in-out infinite;
}
@keyframes wizPipPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.45); transform: scaleY(1); }
  50%      { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); transform: scaleY(1.4); }
}

/* Apparition staggerée des cards d'options */
.step.active .option-card {
  animation: wizStaggerIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}
.step.active .option-card:nth-child(1) { animation-delay: 0.05s; }
.step.active .option-card:nth-child(2) { animation-delay: 0.10s; }
.step.active .option-card:nth-child(3) { animation-delay: 0.15s; }
.step.active .option-card:nth-child(4) { animation-delay: 0.20s; }
.step.active .option-card:nth-child(5) { animation-delay: 0.25s; }
@keyframes wizStaggerIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Boutons capacité : même stagger */
.step.active .cap-btn { animation: wizStaggerIn 0.4s ease backwards; }
.step.active .cap-btn:nth-child(1) { animation-delay: 0.05s; }
.step.active .cap-btn:nth-child(2) { animation-delay: 0.10s; }
.step.active .cap-btn:nth-child(3) { animation-delay: 0.15s; }
.step.active .cap-btn:nth-child(4) { animation-delay: 0.20s; }

/* Recap : pop animé quand un item devient "done" */
.wiz-recap-item.done .pip-circle {
  animation: wizCheckPop 0.45s cubic-bezier(0.5, 1.5, 0.5, 1);
}
@keyframes wizCheckPop {
  0%   { transform: scale(0.4); }
  60%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* WhatsApp CTA : pulse léger pour attirer l'œil */
.cta-btn.primary { animation: wizCtaPulse 3.2s ease-in-out infinite; }
@keyframes wizCtaPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3); }
  50%      { box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* Result card : shimmer + prix en gradient texte */
.result-card { position: relative; overflow: hidden; }
.result-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(220, 38, 38, 0.07) 50%, transparent 70%);
  animation: wizShimmer 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes wizShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.result-card .price {
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 60%, #D4AF37 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 6px 16px rgba(220, 38, 38, 0.18));
}
.result-card .price small {
  -webkit-text-fill-color: var(--primary, #DC2626);
  color: var(--primary, #DC2626);
}

/* Hover plus expressif sur les cards */
.option-card:hover { box-shadow: 0 8px 22px rgba(220, 38, 38, 0.10); }
.cap-btn:hover     { box-shadow: 0 8px 22px rgba(220, 38, 38, 0.10); }

/* Brand card étape 1 : petit gradient pour casser la blancheur */
.selected-brand {
  background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 60%, #FFFBEB 100%);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

/* Boutique info : profondeur premium */
.boutique-info {
  background:
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #0A1628 0%, #1E293B 100%);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.18);
}

/* Toast : plus visible quand il pop */
.toast.show { animation: wizToastPop 0.35s cubic-bezier(0.5, 1.5, 0.5, 1); }
@keyframes wizToastPop {
  0%   { transform: translateX(-50%) translateY(40px) scale(0.9); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0)    scale(1);   opacity: 1; }
}

/* Accessibilité : couper toutes les animations si l'utilisateur le demande */
@media (prefers-reduced-motion: reduce) {
  .wiz-section::before,
  .wiz-section::after,
  .wiz-progress .pip.current,
  .step.active .option-card,
  .step.active .cap-btn,
  .wiz-recap-item.done .pip-circle,
  .cta-btn.primary,
  .result-card::before,
  .toast.show {
    animation: none !important;
  }
}
