/**
 * MonAutoClean — styles du tunnel de réservation.
 * Reprend la charte : marine + turquoise + ambre.
 */
.macr-widget {
  --macr-navy: #0a1e33;
  --macr-navy-600: #1f4d78;
  --macr-teal: #17c3b2;
  --macr-teal-light: #d6f7f2;
  --macr-amber: #ff9f1c;
  --macr-ink: #0c1824;
  --macr-slate: #4a5b6b;
  --macr-line: #e2ebf1;
  --macr-mist: #f3f7fa;

  max-width: 720px;
  margin-inline: auto;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--macr-ink);
}

/* Barre de progression */
.macr-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.2rem;
  position: relative;
  gap: 0.5rem;
}
.macr-progress__bar {
  position: absolute;
  top: 16px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: var(--macr-line);
  border-radius: 3px;
  z-index: 0;
}
.macr-progress__fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--macr-teal), var(--macr-navy-600));
  border-radius: 3px;
  transition: width .45s cubic-bezier(.4,0,.2,1);
}
.macr-progress__step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.macr-progress__num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--macr-line);
  color: var(--macr-slate);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
}
.macr-progress__label {
  font-size: 0.82rem;
  color: var(--macr-slate);
  font-weight: 500;
  transition: color .3s ease;
}
.macr-progress__step.is-active .macr-progress__num {
  background: var(--macr-teal);
  border-color: var(--macr-teal);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 6px 16px -4px rgba(23,195,178,0.6);
}
.macr-progress__step.is-active .macr-progress__label {
  color: var(--macr-navy);
  font-weight: 700;
}
.macr-progress__step.is-done .macr-progress__num {
  background: var(--macr-navy-600);
  border-color: var(--macr-navy-600);
  color: #fff;
  font-size: 0; /* on cache le chiffre pour la coche */
}
.macr-progress__step.is-done .macr-progress__num::after {
  content: "✓";
  font-size: 1rem;
}

/* Étapes */
.macr-step { display: none; }
.macr-step.is-active {
  display: block;
  animation: macrSlideIn .4s cubic-bezier(.2,.7,.3,1);
}
.macr-step.is-leaving {
  display: block;
  animation: macrSlideOut .28s ease forwards;
}
@keyframes macrSlideIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes macrSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-28px); }
}
.macr-step h3 {
  font-size: 1.5rem;
  margin: 0 0 1.2rem;
  color: var(--macr-navy);
}

/* Options (radios stylés) */
.macr-options { display: flex; flex-direction: column; gap: 0.9rem; }
.macr-options--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.macr-options--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.macr-option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 2px solid var(--macr-line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .16s ease, box-shadow .2s ease;
  position: relative;
  background: #fff;
}
.macr-option:hover {
  border-color: var(--macr-teal);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(23,195,178,0.7);
}
.macr-option input { position: absolute; opacity: 0; pointer-events: none; }
.macr-option:has(input:checked) {
  border-color: var(--macr-teal);
  background: var(--macr-teal-light);
  box-shadow: 0 8px 22px -12px rgba(23,195,178,0.6);
}
.macr-option:has(input:focus-visible) { outline: 3px solid var(--macr-teal); outline-offset: 2px; }

/* Icône de l'option */
.macr-option__icon {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--macr-mist);
  color: var(--macr-navy-600);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .2s ease, color .2s ease;
}
.macr-option__icon svg { width: 40px; height: 40px; }
.macr-option:has(input:checked) .macr-option__icon {
  background: var(--macr-teal);
  color: #fff;
  transform: scale(1.08) rotate(-3deg);
}
.macr-option__icon--vehicle { width: 46px; height: 46px; }
.macr-option__icon--vehicle svg { width: 34px; height: 34px; }

.macr-option__body { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.macr-option__title { font-weight: 600; font-size: 1.05rem; color: var(--macr-navy); }
.macr-option__price { color: var(--macr-teal); font-weight: 700; }
.macr-option:has(input:checked) .macr-option__price { color: var(--macr-navy-600); }
.macr-option__desc { color: var(--macr-slate); font-size: 0.88rem; }

/* Coche animée */
.macr-option__check {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--macr-line);
  position: relative;
  transition: border-color .2s ease, background .2s ease;
}
.macr-option__check::after {
  content: "";
  position: absolute;
  left: 7px; top: 3px;
  width: 6px; height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.macr-option:has(input:checked) .macr-option__check {
  background: var(--macr-teal);
  border-color: var(--macr-teal);
}
.macr-option:has(input:checked) .macr-option__check::after { transform: rotate(45deg) scale(1); }

/* Carte véhicule : disposition verticale compacte */
.macr-option--vehicle {
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
  padding: 1.1rem 0.8rem;
}
.macr-option--vehicle .macr-option__body { align-items: center; }
.macr-option--vehicle .macr-option__check {
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px;
}
.macr-option--vehicle .macr-option__check::after { left: 5.5px; top: 2px; width: 5px; height: 9px; }

/* Add-on extérieur */
.macr-addon {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--macr-line);
}
.macr-check {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  cursor: pointer;
  padding: 1rem;
  border: 2px solid var(--macr-line);
  border-radius: 12px;
  transition: border-color .2s ease, background .2s ease, transform .16s ease;
}
.macr-check:hover { transform: translateY(-2px); }
.macr-check:has(input:checked) { border-color: var(--macr-teal); background: var(--macr-teal-light); }
.macr-check input { position: absolute; opacity: 0; }
.macr-check__icon {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  color: var(--macr-navy-600);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), color .2s ease;
}
.macr-check:has(input:checked) .macr-check__icon { color: var(--macr-teal); transform: scale(1.15) rotate(6deg); }
.macr-check__icon svg { width: 34px; height: 34px; }
.macr-check em { display: block; color: var(--macr-slate); font-style: normal; font-size: 0.9rem; margin-top: 0.2rem; }

/* Date + créneaux */
.macr-datetime { display: flex; flex-direction: column; gap: 1.2rem; }
.macr-field { display: flex; flex-direction: column; gap: 0.35rem; }
.macr-field span { font-weight: 500; font-size: 0.92rem; color: var(--macr-navy); }
.macr-field input, .macr-field textarea {
  border: 2px solid var(--macr-line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  color: var(--macr-ink);
  transition: border-color .18s ease;
  width: 100%;
}
.macr-field input:focus, .macr-field textarea:focus {
  outline: none;
  border-color: var(--macr-teal);
}
.macr-slots { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.macr-slots__hint { color: var(--macr-slate); font-size: 0.95rem; margin: 0; }
.macr-slots__hint--empty { color: var(--macr-amber); font-weight: 500; }
.macr-slot {
  border: 2px solid var(--macr-line);
  background: #fff;
  border-radius: 10px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all .16s ease;
  color: var(--macr-navy);
}
.macr-slot:hover { border-color: var(--macr-teal); }
.macr-slot.is-selected { background: var(--macr-teal); border-color: var(--macr-teal); color: #fff; }

/* Champs coordonnées */
.macr-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.macr-field--full { grid-column: 1 / -1; }

/* Récap prix */
.macr-summary {
  margin-top: 1.8rem;
  padding: 1.2rem;
  background: var(--macr-mist);
  border-radius: 12px;
}
.macr-summary__line {
  display: flex; justify-content: space-between;
  padding: 0.3rem 0;
  color: var(--macr-slate);
  font-size: 0.95rem;
}
.macr-summary__total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.6rem;
  padding-top: 0.8rem;
  border-top: 2px solid var(--macr-line);
  font-size: 1.1rem;
}
.macr-summary__total strong {
  font-size: 1.6rem;
  color: var(--macr-navy);
}

/* Boutons navigation */
.macr-nav-btns {
  display: flex; justify-content: space-between; gap: 1rem;
  margin-top: 1.6rem;
}
.macr-btn {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease;
}
.macr-btn--next, .macr-btn--submit {
  background: var(--macr-amber);
  color: var(--macr-navy);
  margin-left: auto;
}
.macr-btn--next:hover, .macr-btn--submit:hover { transform: translateY(-2px); }
.macr-btn--submit { background: var(--macr-teal); color: #fff; }
.macr-btn--back {
  background: transparent;
  color: var(--macr-slate);
  border-color: var(--macr-line);
}
.macr-btn--back:hover { border-color: var(--macr-slate); }
.macr-btn:disabled { opacity: 0.6; cursor: wait; }

/* Message */
.macr-message {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  background: #fff4e5;
  border: 1px solid var(--macr-amber);
  border-radius: 10px;
  color: #a35a00;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 680px) {
  .macr-widget { max-width: 100%; }

  /* Barre de progression : labels plus compacts */
  .macr-progress__label { font-size: 0.68rem; }
  .macr-progress__num { width: 30px; height: 30px; font-size: 0.85rem; }
  .macr-progress__bar { top: 14px; }

  /* Étapes */
  .macr-step h3 { font-size: 1.3rem; }

  /* Cartes formules : une seule colonne */
  .macr-options--cards { grid-template-columns: 1fr; }

  /* Types de véhicule : 2 colonnes au lieu de 4 */
  .macr-options--grid { grid-template-columns: 1fr 1fr; }

  /* Coordonnées : une seule colonne */
  .macr-fields { grid-template-columns: 1fr; }

  /* Récap total plus compact */
  .macr-summary__total strong { font-size: 1.4rem; }

  /* Boutons de navigation : pleine largeur, empilés proprement */
  .macr-nav-btns { gap: 0.6rem; }
  .macr-btn { padding: 0.8rem 1.2rem; font-size: 1.05rem; }

  /* Bloc véhicule un peu plus serré */
  .macr-vehicle { padding: 1rem; }

  /* Calendrier : cases un poil plus grandes pour le tactile */
  .macr-cal-grid { gap: 4px; padding: 0.4rem 0.8rem 1rem; }
  .macr-cal-head { padding: 0.9rem 1rem; }
  .macr-cal-title { font-size: 1.1rem; }
  .macr-cal-nav { width: 44px; height: 44px; } /* cible tactile confortable */
  .macr-cal-cell { font-size: 0.85rem; border-radius: 8px; }
  .macr-cal-legend { padding: 0.7rem 1rem 0.3rem; gap: 1rem; font-size: 0.8rem; }

  /* Créneaux horaires : plus faciles à taper */
  .macr-slot { padding: 0.6rem 1.1rem; }

  /* Badge prochain créneau : passe en pleine largeur lisible */
  .macr-next-slot { width: 100%; justify-content: flex-start; }
}

@media (max-width: 380px) {
  /* Très petits écrans : types de véhicule en 1 colonne */
  .macr-options--grid { grid-template-columns: 1fr; }
  .macr-progress__label { display: none; } /* on garde juste les pastilles numérotées */
  .macr-cal-cell { font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .macr-step.is-active { animation: none; }
  .macr-btn:hover { transform: none; }
}

/* ==========================================================================
   MINI-PLANNING (calendrier visuel, version ludique)
   ========================================================================== */
.macr-calendar {
  border: none;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 1.4rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -12px rgba(10,30,51,0.28);
  background: #fff;
}
.macr-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 1.1rem 1.3rem;
  background: linear-gradient(120deg, var(--macr-navy) 0%, var(--macr-navy-600) 60%, var(--macr-teal) 140%);
  color: #fff;
  position: relative;
}
.macr-cal-head::after {
  content: "";
  position: absolute; right: -20px; top: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(23,195,178,0.35), transparent 65%);
  pointer-events: none;
}
.macr-cal-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: -0.01em;
  z-index: 1;
}
.macr-cal-nav {
  width: 40px; height: 40px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 1.3rem;
  cursor: pointer;
  color: #fff;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.macr-cal-nav:hover:not(:disabled) {
  background: rgba(255,255,255,0.2);
  border-color: var(--macr-teal);
  transform: scale(1.08);
}
.macr-cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.macr-cal-legend {
  display: flex;
  gap: 1.4rem;
  font-size: 0.85rem;
  color: var(--macr-slate);
  padding: 0.9rem 1.3rem 0.4rem;
  font-weight: 500;
}
.macr-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 4px;
}
.macr-dot--free { background: var(--macr-teal); box-shadow: 0 0 0 3px var(--macr-teal-light); }
.macr-dot--full { background: #e57373; box-shadow: 0 0 0 3px #fbeaea; }
.macr-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  padding: 0.5rem 1.3rem 1.3rem;
}
.macr-cal-dow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--macr-slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 0;
}
.macr-cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.95rem;
  border: 2px solid transparent;
  font-family: inherit;
  font-weight: 600;
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.macr-cal-cell--empty { background: transparent; }
.macr-cal-cell--available {
  background: var(--macr-teal-light);
  color: var(--macr-navy);
  cursor: pointer;
  position: relative;
}
.macr-cal-cell--available::after {
  content: "";
  position: absolute; bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--macr-teal);
}
.macr-cal-cell--available:hover {
  border-color: var(--macr-teal);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px -6px rgba(23,195,178,0.6);
}
.macr-cal-cell--available.is-selected {
  background: var(--macr-teal);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(23,195,178,0.7);
}
.macr-cal-cell--available.is-selected::after { background: #fff; }
.macr-cal-cell--full {
  background: #fbeaea;
  color: #d99;
  cursor: not-allowed;
  text-decoration: line-through;
}
.macr-cal-cell--closed {
  background: transparent;
  color: #cfd8de;
  cursor: default;
}
.macr-field--model { margin-top: 1.2rem; }

/* Petite pulsation d'invitation sur le 1er jour dispo (ludique) */
@keyframes macrPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(23,195,178,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(23,195,178,0); }
}
.macr-cal-cell--available.macr-hint { animation: macrPulse 1.8s ease-in-out 2; }

/* ==========================================================================
   RÉCAP PRIX ANIMÉ + BOUTONS VIVANTS
   ========================================================================== */
.macr-total-amount {
  display: inline-block;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.macr-total-amount.macr-bump { animation: macrBump .4s cubic-bezier(.34,1.56,.64,1); }
@keyframes macrBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); color: var(--macr-teal); }
  100% { transform: scale(1); }
}
.macr-summary__line {
  animation: macrLineIn .3s ease;
}
@keyframes macrLineIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: none; }
}
.macr-btn--next, .macr-btn--submit {
  position: relative;
  overflow: hidden;
}
.macr-btn--next::after, .macr-btn--submit::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .5s ease, height .5s ease;
}
.macr-btn--next:active::after, .macr-btn--submit:active::after {
  width: 220px; height: 220px;
}

/* ==========================================================================
   ÉCRAN DE CONFIRMATION (gratifiant)
   ========================================================================== */
.macr-success {
  text-align: center;
  padding: 2rem 1rem;
  animation: macrSlideIn .5s cubic-bezier(.2,.7,.3,1);
}
.macr-success__check {
  width: 92px; height: 92px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--macr-teal);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(23,195,178,0.65);
  animation: macrPop .5s cubic-bezier(.34,1.56,.64,1);
}
.macr-success__check svg { width: 48px; height: 48px; }
.macr-success__check svg path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: macrDraw .5s .25s ease forwards;
}
@keyframes macrPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}
@keyframes macrDraw { to { stroke-dashoffset: 0; } }
.macr-success h3 { font-size: 1.7rem; color: var(--macr-navy); margin-bottom: 0.6rem; }
.macr-success p { color: var(--macr-slate); max-width: 42ch; margin: 0 auto 0.4rem; }
.macr-success__btn {
  display: inline-block;
  margin-top: 1.6rem;
  text-decoration: none;
}

/* Confettis légers */
.macr-confetti {
  position: absolute;
  width: 9px; height: 9px;
  opacity: 0;
}
.macr-confetti.macr-go { animation: macrConfetti 1.2s ease-out forwards; }
@keyframes macrConfetti {
  0% { opacity: 1; transform: translateY(0) rotate(0); }
  100% { opacity: 0; transform: translateY(180px) rotate(360deg); }
}

/* ==========================================================================
   MULTI-VÉHICULES
   ========================================================================== */
.macr-step__hint { color: var(--macr-slate); font-size: 0.95rem; margin: -0.4rem 0 1.2rem; }
.macr-vehicle {
  border: 2px solid var(--macr-line);
  border-radius: 14px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  transition: opacity .2s ease, transform .2s ease;
  background: #fff;
}
.macr-vehicle__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.macr-vehicle__num {
  font-family: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--macr-navy);
  background: var(--macr-teal-light);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}
.macr-vehicle__remove {
  background: #fbeaea;
  border: none;
  color: #d9534f;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background .16s ease, transform .16s ease;
}
.macr-vehicle__remove:hover { background: #f5c6c6; transform: scale(1.1); }
.macr-vehicle__field { margin-bottom: 1.1rem; }
.macr-vehicle__label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--macr-navy);
  margin-bottom: 0.5rem;
}
.macr-add-vehicle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 2px dashed var(--macr-teal);
  color: var(--macr-navy);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background .16s ease, transform .16s ease;
}
.macr-add-vehicle span { font-size: 1.3rem; color: var(--macr-teal); }
.macr-add-vehicle:hover { background: var(--macr-teal-light); transform: translateY(-2px); }
.macr-multi-note {
  background: #fff8ec;
  border: 1px solid var(--macr-amber);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  color: #a35a00;
  font-size: 0.9rem;
}

/* ==========================================================================
   BADGE « PROCHAIN CRÉNEAU » (page d'accueil)
   ========================================================================== */
.macr-next-slot {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 2px solid var(--macr-teal, #17c3b2);
  border-radius: 999px;
  padding: 0.6rem 1.3rem 0.6rem 1rem;
  text-decoration: none;
  box-shadow: 0 8px 22px -12px rgba(23,195,178,0.6);
  transition: transform .16s ease, box-shadow .16s ease;
  font-family: "Inter", sans-serif;
}
.macr-next-slot:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(23,195,178,0.75); }
.macr-next-slot__pulse {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #17c3b2;
  position: relative;
  flex: 0 0 auto;
}
.macr-next-slot__pulse::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #17c3b2;
  animation: macrNextPulse 1.6s ease-out infinite;
}
@keyframes macrNextPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.macr-next-slot__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4a5b6b;
  font-weight: 600;
  display: block;
  line-height: 1.1;
}
.macr-next-slot__value {
  font-weight: 700;
  color: #0a1e33;
  font-size: 1rem;
  line-height: 1.1;
}
.macr-next-slot > span:nth-child(2),
.macr-next-slot > span:nth-child(3) { display: block; }
.macr-next-slot__label, .macr-next-slot__value { margin-left: 0; }
.macr-next-slot--none {
  border-color: var(--macr-line, #e2ebf1);
  color: #4a5b6b;
  font-size: 0.9rem;
}

/* Paiement en cartes */
.macr-option--pay { padding: 1rem 1.2rem; }
