/* =========================================================================
   LUXIO — Page de reservation (calendrier convivial)
   ========================================================================= */

.booking { padding: clamp(6.5rem, 12vh, 8rem) 0 4rem; min-height: 100vh; }
.booking-head { text-align: center; max-width: 640px; margin: 0 auto 2.4rem; }

/* ---- Barre d'etapes ---- */
.stepper { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.stepper .st { display: flex; align-items: center; gap: 0.6rem; color: var(--text-mute); font-size: 0.9rem; font-family: var(--font-display); font-weight: 600; }
.stepper .st .dot { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--stroke-2); font-size: 0.85rem; transition: 0.35s var(--ease); flex: none; }
.stepper .st.active { color: var(--text); }
.stepper .st.active .dot { background: var(--grad-brand); border-color: transparent; box-shadow: 0 6px 16px -6px rgba(124,58,237,.6); color: #fff; }
.stepper .st.done .dot { background: var(--grad-brand); border-color: transparent; color: #fff; font-size: 0; }
.stepper .st.done .dot::after { content: '✓'; font-size: 0.95rem; }   /* le chiffre devient une coche */
.stepper .bar { width: 34px; height: 2px; background: var(--stroke-2); border-radius: 2px; position: relative; overflow: hidden; }
.stepper .bar::after { content: ''; position: absolute; inset: 0; width: 0; background: var(--grad-brand); border-radius: 2px; transition: width 0.5s var(--ease); }
.stepper .bar.done::after { width: 100%; }   /* la barre se remplit quand l'étape est franchie */
@media (max-width: 640px) { .stepper .st span { display: none; } .stepper .bar { width: 20px; } }

/* ---- Grille : contenu + resume ---- */
.booking-grid { display: grid; grid-template-columns: 1fr 340px; gap: 1.6rem; align-items: start; }
@media (max-width: 940px) { .booking-grid { grid-template-columns: 1fr; } }

.panel { padding: clamp(1.4rem, 3vw, 2.2rem); }
.panel h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.panel .sub { color: var(--text-dim); margin-bottom: 1.6rem; }
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeUp 0.5s var(--ease); }
/* Transitions DIRECTIONNELLES : avancer = glisser à gauche, revenir = à droite */
.steps-host.fwd .step-panel.active { animation: stepInFwd 0.45s var(--ease); }
.steps-host.bwd .step-panel.active { animation: stepInBwd 0.45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes stepInFwd { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
@keyframes stepInBwd { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: none; } }

/* ---- Choix du forfait ---- */
.svc-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 560px) { .svc-pick { grid-template-columns: 1fr; } }
.svc-opt { text-align: left; padding: 1.1rem 1.2rem; border-radius: var(--r); border: 1px solid var(--stroke-2); background: rgba(255,255,255,0.55); cursor: pointer; transition: 0.3s var(--ease); position: relative; display: flex; gap: 0.9rem; align-items: flex-start; }
.svc-opt:hover { border-color: var(--stroke-strong); transform: translateY(-3px); }
.svc-opt.sel { border-color: var(--violet); background: rgba(168,85,247,.12); box-shadow: var(--glow-sm); }
.svc-opt .oi { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(124,58,237,.1); color: #7c3aed; flex: none; }
.svc-opt .oi svg { width: 22px; height: 22px; }
.svc-opt h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.svc-opt .meta { display: flex; gap: 0.8rem; margin-top: 0.5rem; color: var(--text-mute); font-size: 0.82rem; }
.svc-opt .meta b { color: var(--violet-2); font-family: var(--font-display); }
.svc-opt .badge { position: absolute; top: -9px; right: 12px; font-size: 0.68rem; padding: 0.2rem 0.6rem; border-radius: 100px; background: var(--grad-cta); color: #fff; font-weight: 700; }
.svc-opt .check { position: absolute; top: 12px; right: 12px; width: 22px; height: 22px; border-radius: 50%; background: var(--violet); display: grid; place-items: center; transform: scale(0); transition: transform 0.35s cubic-bezier(.34,1.56,.64,1); }
.svc-opt.sel .check { transform: scale(1); }   /* pop élastique */
/* Poids au clic sur tous les éléments interactifs du wizard */
.svc-opt:active, .loc-opt:active { transform: scale(0.97); transition-duration: 0.08s; }
.cal-day:not(:disabled):active, .slot:not(:disabled):active { transform: scale(0.94); transition-duration: 0.08s; }
.svc-opt .check svg { width: 13px; height: 13px; color: #fff; }

/* ---- Catégories de véhicule (tuiles image 3D) ---- */
.veh-pick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
@media (max-width: 560px) { .veh-pick { grid-template-columns: 1fr 1fr; } }
.veh-opt { position: relative; text-align: center; padding: 0.9rem 0.6rem; border-radius: var(--r); border: 1px solid var(--stroke-2); background: rgba(255,255,255,0.55); cursor: pointer; transition: 0.3s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 0.35rem; box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 4px 12px -8px rgba(63,35,112,.16); }
.veh-opt:hover { border-color: var(--stroke-strong); transform: translateY(-3px); }
.veh-opt:active { transform: scale(0.97); transition-duration: 0.08s; }
.veh-opt.sel { border-color: var(--violet); background: rgba(168,85,247,.12); box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 0 0 1px var(--violet), 0 12px 28px -14px rgba(124,58,237,.5); }
.veh-img { position: relative; width: 100%; height: 62px; display: grid; place-items: center; }
.veh-img .veh-ic { width: 46px; height: 34px; color: #7c3aed; }
.veh-img img { position: absolute; inset: 0; margin: auto; max-width: 100%; max-height: 62px; object-fit: contain; }
.veh-t b { display: block; font-size: 0.92rem; line-height: 1.15; }
.veh-t small { color: var(--text-mute); font-size: 0.72rem; }
.veh-opt .check { position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; border-radius: 50%; background: var(--violet); display: grid; place-items: center; transform: scale(0); transition: transform 0.35s cubic-bezier(.34,1.56,.64,1); }
.veh-opt.sel .check { transform: scale(1); }
.veh-opt .check svg { width: 12px; height: 12px; color: #fff; }
.veh-pick-2 { margin-bottom: 0.8rem; }

/* ---- Traitements supplémentaires (cases à cocher) ---- */
.treatments.hidden { display: none; }
.treat-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
@media (max-width: 560px) { .treat-pick { grid-template-columns: 1fr; } }
.treat-opt { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.6rem; text-align: left; padding: 0.7rem 0.8rem; border-radius: 14px; border: 1px solid var(--stroke-2); background: rgba(255,255,255,0.5); cursor: pointer; transition: 0.25s var(--ease); }
.treat-opt:hover { border-color: var(--stroke-strong); }
.treat-opt.sel { border-color: var(--violet); background: rgba(168,85,247,.1); }
.treat-opt .tk { width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--stroke-strong); display: grid; place-items: center; }
.treat-opt.sel .tk { background: var(--violet); border-color: var(--violet); }
.treat-opt .tk svg { width: 13px; height: 13px; color: #fff; opacity: 0; }
.treat-opt.sel .tk svg { opacity: 1; }
.treat-opt .tt b { display: block; font-size: 0.9rem; }
.treat-opt .tt small { color: var(--text-mute); font-size: 0.74rem; }
.treat-opt .tp { color: var(--violet-2); font-weight: 700; font-size: 0.85rem; font-family: var(--font-display); white-space: nowrap; }

/* ---- Photos (étape coordonnées) ---- */
.photo-sec { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px dashed var(--stroke); }
.photo-sec-lbl { font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; }
.photo-sec-lbl span { font-size: 0.7rem; color: var(--text-mute); background: rgba(124,58,237,.08); padding: 0.1rem 0.5rem; border-radius: 100px; font-weight: 500; }
.photo-sec-sub { color: var(--text-mute); font-size: 0.82rem; margin: 0.3rem 0 0.7rem; line-height: 1.4; }
.photo-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.photo-slot { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.35rem; padding: 0.9rem 0.5rem; border-radius: 14px; border: 1.5px dashed var(--stroke-strong); background: rgba(255,255,255,.5); cursor: pointer; transition: 0.2s; color: var(--violet-2); }
.photo-slot:hover { background: rgba(168,85,247,.08); border-color: var(--violet); }
.photo-slot .ps-ic svg { width: 24px; height: 24px; }
.photo-slot .ps-t { font-size: 0.8rem; color: var(--text-dim); font-weight: 500; }
.photo-thumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.7rem; }
.photo-thumb { position: relative; width: 72px; height: 72px; border-radius: 12px; overflow: hidden; border: 1px solid var(--stroke-2); }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-thumb .pt-x { position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 50%; background: rgba(20,8,40,.62); color: #fff; font-size: 0.7rem; display: grid; place-items: center; line-height: 1; border: none; cursor: pointer; }
.photo-consent { display: flex; align-items: flex-start; gap: 0.5rem; margin-top: 0.8rem; font-size: 0.8rem; color: var(--text-dim); line-height: 1.4; cursor: pointer; }
.photo-consent.hidden { display: none; }
.photo-consent input { margin-top: 0.15rem; flex: none; }

/* ---- Calendrier ---- */
.cal-layout { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.cal { }
.cal-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.cal-top .m { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; text-transform: capitalize; }
.cal-nav { display: flex; gap: 0.5rem; }
.cal-nav button { width: 38px; height: 38px; border-radius: 11px; border: 1px solid var(--stroke-2); display: grid; place-items: center; transition: 0.25s; }
.cal-nav button:hover:not(:disabled) { border-color: var(--violet); background: rgba(168,85,247,.12); }
.cal-nav button:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-grid .wd { text-align: center; font-size: 0.72rem; color: var(--text-mute); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding-bottom: 0.4rem; }
.cal-day { aspect-ratio: 1; border-radius: 11px; border: 1px solid transparent; background: rgba(124,58,237,0.05); color: var(--text-dim); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; display: grid; place-items: center; cursor: pointer; transition: 0.2s; position: relative; }
.cal-day:hover:not(:disabled) { border-color: var(--violet); color: var(--text); transform: translateY(-2px); }
.cal-day:disabled { opacity: 0.22; cursor: not-allowed; }
.cal-day.empty { background: none; border: none; cursor: default; }
.cal-day.sel { background: var(--grad-cta); color: #fff; box-shadow: var(--glow-sm); }
.cal-day.today::after { content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--violet-2); }
.cal-day.sel.today::after { background: #fff; }

/* ---- Creneaux ---- */
.slots-head { margin: 1.6rem 0 0.9rem; font-family: var(--font-display); font-weight: 600; color: var(--text-dim); font-size: 0.95rem; }
.slots-group { margin-bottom: 1.2rem; }
.slots-group .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.4rem; }
.slots { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.slot { padding: 0.62rem 1rem; border-radius: 11px; border: 1px solid var(--stroke-2); background: rgba(255,255,255,0.6); color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: 0.2s; }
.slot:hover:not(:disabled) { border-color: var(--violet); background: rgba(168,85,247,.14); transform: translateY(-2px); }
.slot:disabled { opacity: 0.28; cursor: not-allowed; text-decoration: line-through; }
.slot.sel { background: var(--grad-cta); border-color: transparent; color: #fff; box-shadow: var(--glow-sm); }
.slots-empty { color: var(--text-mute); font-style: italic; padding: 1rem 0; }

/* ---- Resume (sticky) ---- */
.summary { position: sticky; top: 6rem; padding: 1.6rem; }
.summary h3 { font-size: 1.1rem; margin-bottom: 1.1rem; display: flex; align-items: center; gap: 0.5rem; }
.sum-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px dashed var(--stroke); font-size: 0.92rem; }
.sum-row .k { color: var(--text-mute); } .sum-row .v { color: var(--text); text-align: right; font-weight: 500; }
.sum-row .v.empty { color: var(--text-mute); font-style: italic; font-weight: 400; }
/* Chaque valeur qui change clignote une fois en violet (geste -> conséquence visible) */
.sum-row .v.bump { animation: sumBump 0.55s var(--ease); }
@keyframes sumBump { 0%, 45% { color: var(--violet); } 100% { color: var(--text); } }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1rem; padding-top: 1rem; }
.sum-total .k { color: var(--text-dim); } .sum-total .v { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; font-variant-numeric: tabular-nums; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
/* Total vide : « — » en mute (pas de barre magenta qui ressemble à un glitch) */
.sum-total .v.empty { background: none; -webkit-text-fill-color: var(--text-mute); color: var(--text-mute); font-size: 1.2rem; font-weight: 500; }
.summary .hint { margin-top: 1rem; font-size: 0.82rem; color: var(--text-mute); display: flex; gap: 0.5rem; }

/* ---- Navigation entre etapes ---- */
.step-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.step-actions .btn-back { color: var(--text-dim); }

/* ---- Confirmation ---- */
.confirm { text-align: center; padding: clamp(1.6rem, 4vw, 3rem); }
.confirm .badge-ok { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1.4rem; display: grid; place-items: center; background: radial-gradient(circle, rgba(52,211,153,.25), rgba(52,211,153,.05)); border: 1px solid rgba(52,211,153,.4); }
.confirm .badge-ok svg { width: 42px; height: 42px; color: var(--ok); }
.confirm h2 { font-size: 1.9rem; margin-bottom: 0.6rem; }
.confirm .code { display: inline-block; margin: 1.2rem 0; padding: 0.7rem 1.4rem; border-radius: 12px; border: 1px dashed var(--stroke-strong); font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; letter-spacing: 0.15em; background: rgba(168,85,247,.08); color: var(--lilac); }
.confirm-details { max-width: 420px; margin: 1.4rem auto; text-align: left; }
.confirm-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ---- Chargement des creneaux ---- */
.slots-loading { display: flex; align-items: center; gap: 0.6rem; color: var(--text-mute); padding: 1rem 0; }
.slots-loading .ring { width: 20px; height: 20px; border: 2px solid rgba(168,85,247,.25); border-top-color: var(--magenta); border-radius: 50%; }
.closed-day { padding: 1.4rem; border-radius: var(--r); background: rgba(251,191,36,.08); border: 1px solid rgba(251,191,36,.3); color: var(--warn); font-size: 0.92rem; }

/* ---- M6 : verre usiné (biseau de lumière + pile d'ombres sur les cartes d'option) ---- */
.svc-opt, .loc-opt { box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 4px 12px -8px rgba(63,35,112,.16); }
.svc-opt.sel, .loc-opt.sel { box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 0 0 1px var(--violet), 0 12px 28px -14px rgba(124,58,237,.5); }

/* ---- M9 : champ en erreur ---- */
.field input.invalid, .field textarea.invalid { border-color: var(--danger) !important; box-shadow: 0 0 0 3px rgba(251,113,133,.18); }

/* ---- Indice frais de déplacement (sous le champ adresse) ---- */
.field-hint { display: block; margin-top: 0.4rem; font-size: 0.82rem; color: var(--text-mute); line-height: 1.4; }
.field-hint.ok { color: var(--violet-2); font-weight: 600; }
.field-hint.warn { color: var(--text-dim); }

/* ---- M7 : la confirmation = le payoff (badge ressort + coche dessinée) ---- */
#panel-4.active .badge-ok { animation: badgePop 0.6s cubic-bezier(.34,1.56,.64,1); }
@keyframes badgePop { 0% { transform: scale(0); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }
.confirm .badge-ok svg path { stroke-dasharray: 30; stroke-dashoffset: 30; }
#panel-4.active .badge-ok svg path { animation: checkDraw 0.5s ease-out 0.25s forwards; }
@keyframes checkDraw { to { stroke-dashoffset: 0; } }

/* ---- E7 · MÉDAILLON DU FORFAIT (conciergerie) : se pose dans le résumé dès qu'un forfait est choisi ---- */
.sum-medallion { display: flex; align-items: center; gap: 0.8rem; margin: -0.1rem 0 1.1rem;
  padding: 0.7rem 0.85rem; border-radius: 14px; border: 1px solid var(--stroke-2);
  background: linear-gradient(120deg, rgba(168,85,247,.1), rgba(217,70,239,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  transition: opacity 0.4s var(--ease), background 0.4s var(--ease); }
.sum-medallion .mi { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center;
  color: #fff; background: var(--grad-cta); box-shadow: 0 8px 18px -8px rgba(124,58,237,.6); }
.sum-medallion .mi svg { width: 22px; height: 22px; }
.sum-medallion .mt { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.sum-medallion .mt b { font-family: var(--font-display); font-size: 1rem; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sum-medallion .mt small { color: var(--text-mute); font-size: 0.82rem; }
/* État vide (avant sélection) : discret, l'étoile en creux */
.sum-medallion.empty { opacity: 0.72; background: rgba(124,58,237,.05); }
.sum-medallion.empty .mi { background: rgba(124,58,237,.12); color: var(--violet-2); box-shadow: none; }
/* Petit ressort quand le forfait se pose */
.sum-medallion.pop { animation: medPop 0.5s cubic-bezier(.34,1.56,.64,1); }
@keyframes medPop { 0% { transform: scale(0.94); } 60% { transform: scale(1.03); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .sum-medallion.pop { animation: none; } }

/* ---- M8 · BARRE DE TOTAL COLLANTE (mobile uniquement) ---- */
.reserve-mobar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 320;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.8rem clamp(1rem, 5vw, 1.4rem);
  padding-bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(248,243,255,.95));
  backdrop-filter: blur(16px) saturate(1.15); -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-top: 1px solid var(--stroke-2); box-shadow: 0 -14px 34px -22px rgba(60,35,110,.55);
  transform: translateY(120%); transition: transform 0.42s var(--ease); }
.reserve-mobar .mb-svc { font-family: var(--font-display); font-weight: 600; color: var(--text-dim);
  font-size: 0.92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reserve-mobar .mb-total { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; flex: none;
  font-variant-numeric: tabular-nums; background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.reserve-mobar .mb-total.empty { background: none; -webkit-text-fill-color: var(--text-mute); font-size: 1.05rem; font-weight: 600; }
@media (max-width: 940px) {
  .reserve-overlay.open .reserve-mobar { display: flex; }        /* présente dès l'ouverture (mais glissée sous l'écran) */
  .reserve-overlay.open.mobar-on .reserve-mobar { transform: none; }  /* remonte pendant les étapes 1→3 */
  .reserve-overlay.open.mobar-on .reserve-sheet { padding-bottom: 5.4rem; }  /* la barre ne cache pas les boutons */
}

/* ---- RABAIS DUO : bascule « ajouter un 2e véhicule » (même créneau, −30 %) ---- */
.duo { margin-top: 1.2rem; border: 1px dashed var(--stroke-2); border-radius: var(--r); overflow: hidden;
  background: linear-gradient(120deg, rgba(168,85,247,.05), rgba(217,70,239,.03)); transition: border-color .25s; }
.duo.on { border-style: solid; border-color: var(--violet); }
.duo-toggle { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: .15rem .8rem;
  width: 100%; text-align: left; padding: 1rem 1.1rem; }
.duo-check { grid-row: 1 / span 2; align-self: center; width: 26px; height: 26px; border-radius: 8px;
  border: 1.5px solid var(--stroke-strong); display: grid; place-items: center; color: #fff;
  background: transparent; transition: .25s var(--ease); }
.duo-check svg { width: 15px; height: 15px; opacity: 0; transition: opacity .2s; }
.duo.on .duo-check { background: var(--grad-cta); border-color: transparent; }
.duo.on .duo-check svg { opacity: 1; }
.duo-label { font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: 1rem; }
.duo-badge { display: inline-block; margin-left: .3em; font-size: .72rem; font-weight: 800; color: #fff;
  background: var(--grad-accent); padding: .12em .5em; border-radius: 100px; vertical-align: middle;
  box-shadow: 0 6px 14px -8px rgba(217,70,239,.6); }
.duo-hint { grid-column: 2; font-size: .84rem; color: var(--text-mute); }
.duo-body { padding: 0 1.1rem 1.1rem; }
.duo-body .sub { margin: .1rem 0 .8rem; }
/* Rabais dans le résumé */
.sum-row .v.save { color: var(--magenta); font-weight: 600; font-style: normal; }

/* Diagnostic client (première lecture des photos, sur la confirmation) */
.cf-diag { margin: .9rem 0; }
.cf-diag #cfDiagBtn { width: 100%; }
.diag-list { list-style: none; padding: 0; margin: .9rem 0 0; text-align: left; display: grid; gap: .45rem; }
.diag-list li { font-size: .92rem; color: #574767; background: rgba(124,58,237,.06); border: 1px solid rgba(124,58,237,.14); border-radius: 10px; padding: .5rem .7rem; }
.diag-list li b { color: #2a0d84; }
.diag-note { margin: .7rem 0 0; font-size: .9rem; color: #574767; text-align: left; }
.diag-fine { margin: .5rem 0 0; font-size: .78rem; color: #78668d; font-style: italic; text-align: left; }
.diag-hint { margin: .6rem 0 0; font-size: .88rem; color: #78668d; }
