/* ============================================
   VTC Booking - Thème neutre noir & blanc
   Indépendant des couleurs du thème WordPress
   ============================================ */

/* Variables et blindage : le formulaire impose ses couleurs, pas le thème */
.vtc-booking-container {
  --vtc-bg: #ffffff;
  --vtc-bg-alt: #f8f9fa;
  --vtc-text: #1a1a1a;
  --vtc-text-muted: #5c5c5c;
  --vtc-border: #e2e4e8;
  --vtc-border-focus: #2563eb;
  --vtc-btn-bg: #1a1a1a;
  --vtc-btn-text: #ffffff;
  --vtc-btn-hover: #2d2d2d;
  --vtc-accent: #2563eb;
  --vtc-accent-soft: rgba(37, 99, 235, 0.08);
  --vtc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --vtc-shadow-md: 0 2px 10px rgba(0, 0, 0, 0.06);
  --vtc-radius: 6px;
  --vtc-radius-lg: 8px;
  /* Empêcher le thème d'écraser le fond et la couleur du formulaire */
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}

.vtc-booking-container *,
.vtc-booking-container *::before,
.vtc-booking-container *::after {
  box-sizing: border-box;
}

/* Container principal */
.vtc-booking-container {
  max-width: 520px;
  margin: 16px auto;
  padding: 16px 18px;
  background: var(--vtc-bg);
  border-radius: var(--vtc-radius-lg);
  border: 1px solid var(--vtc-border);
  box-shadow: var(--vtc-shadow-md);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--vtc-text);
  animation: vtc-fadeIn 0.4s ease-out;
}

@keyframes vtc-fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Titre */
.vtc-booking-container h2 {
  text-align: center;
  color: var(--vtc-text);
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Indicateur de progression */
.vtc-progress-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 4px 0;
  position: relative;
}

.vtc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

.vtc-step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--vtc-bg-alt);
  color: var(--vtc-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid var(--vtc-border);
}

.vtc-step-label {
  margin-top: 3px;
  font-size: 9px;
  color: var(--vtc-text-muted);
  font-weight: 500;
  text-align: center;
  transition: color 0.25s ease, font-weight 0.2s ease;
}

.vtc-step-line {
  flex: 1;
  max-width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--vtc-border);
  margin: 0 4px;
  position: relative;
  top: -15px;
  z-index: 1;
  transition: background 0.3s ease;
}

/* Ronds : accent pour étape active et étapes complétées */
.vtc-step-active .vtc-step-number {
  background: var(--vtc-accent);
  color: #ffffff;
  border-color: var(--vtc-accent);
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.3);
}

.vtc-step-active .vtc-step-label {
  color: var(--vtc-accent);
  font-weight: 600;
}

.vtc-step-completed .vtc-step-number {
  background: var(--vtc-accent);
  color: #ffffff;
  border-color: var(--vtc-accent);
  box-shadow: var(--vtc-shadow-sm);
}

.vtc-step-completed .vtc-step-label {
  color: var(--vtc-text-muted);
}

.vtc-step-completed ~ .vtc-step-line {
  background: var(--vtc-accent);
  opacity: 0.9;
}


/* Sections du formulaire */
.vtc-form-section {
  animation: vtc-slideIn 0.4s ease-out;
}

@keyframes vtc-slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Layout */
.vtc-row {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}
.vtc-row .half {
  flex: 1;
  min-width: 0; /* évite débordement flex (dont widgets Places) sur les lignes multi-colonnes */
}

/*
 * Adresses départ / arrivée : toujours l’une sous l’autre (PlaceAutocomplete legacy + gmp-place-autocomplete)
 */
.vtc-row.vtc-row-addresses {
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.vtc-row.vtc-row-addresses .vtc-card.half {
  flex: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.vtc-row.vtc-row-addresses .vtc-input-wrapper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.vtc-booking-container .vtc-input-wrapper gmp-place-autocomplete {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Ligne compacte : date/heure (+ durée MAD) + passagers + bagages */
.vtc-row-inline-meta {
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 5px;
  margin-bottom: 8px;
}
.vtc-row-inline-meta .vtc-card {
  margin-bottom: 0;
}
.vtc-inline-datetime-shell {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
}
.vtc-inline-slot-trajet,
.vtc-inline-slot-mad {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.vtc-card-inline-datetime,
.vtc-card-inline-duration {
  padding: 6px 8px;
  margin-bottom: 0;
}
.vtc-mad-inline-fields {
  display: flex;
  gap: 4px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}
.vtc-mad-inline-fields .vtc-card {
  flex: 1 1 0;
  min-width: 0;
  padding: 6px 8px;
  margin-bottom: 0;
}
.vtc-mad-inline-fields .vtc-card-inline-datetime input,
.vtc-mad-inline-fields .vtc-card-inline-duration select {
  width: 100%;
}
.vtc-row-inline-meta .vtc-card label {
  font-size: 10px;
  font-weight: 600;
  gap: 3px;
  margin-bottom: 3px;
  line-height: 1.15;
}
.vtc-row-inline-meta .vtc-card label i {
  font-size: 11px;
}
.vtc-row-inline-meta .vtc-card-inline-datetime input,
.vtc-row-inline-meta .vtc-card-inline-duration select {
  font-size: 12px;
  padding: 5px 7px;
  min-height: 30px;
  line-height: 1.25;
  width: 100%;
}

.vtc-row-inline-meta .vtc-counter-cell {
  flex: 0 0 auto;
  width: clamp(104px, 22vw, 124px);
  min-width: 96px;
  padding: 6px 6px;
  display: flex;
  flex-direction: column;
}
.vtc-row-inline-meta .vtc-counter-cell .vtc-counter-wrapper {
  margin-top: auto;
}
.vtc-counter-wrapper.vtc-counter-ultra {
  gap: 2px;
  padding: 2px 4px;
  border-radius: 5px;
}
.vtc-row-inline-meta .vtc-counter-ultra .vtc-counter-btn {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  font-size: 14px !important;
  line-height: 1;
}
.vtc-row-inline-meta .vtc-counter-ultra .vtc-counter-btn .vtc-counter-symbol {
  font-size: 15px;
  line-height: 1;
}
.vtc-row-inline-meta .vtc-counter-ultra .vtc-counter-display {
  min-width: 20px;
  padding: 0 3px;
}
.vtc-row-inline-meta .vtc-counter-ultra .vtc-counter-value {
  font-size: 13px;
  font-weight: 700;
}

.vtc-card {
  margin-bottom: 8px;
  padding: 9px 11px;
  background: var(--vtc-bg);
  border: 1px solid var(--vtc-border);
  border-radius: var(--vtc-radius);
  box-shadow: var(--vtc-shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.vtc-card:focus-within {
  border-color: var(--vtc-border-focus);
  box-shadow: 0 0 0 1px var(--vtc-accent-soft);
}

/* Labels */
.vtc-card label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--vtc-text);
  margin-bottom: 4px;
  margin-top: 0;
  font-size: 13px;
}
.vtc-card i {
  font-size: 13px;
  color: var(--vtc-text-muted);
}

/* Inputs */
.vtc-card input,
.vtc-card select,
.vtc-card textarea {
  width: 100%;
  padding: 7px 9px;
  border-radius: 5px;
  border: 1px solid var(--vtc-border);
  font-size: 14px;
  background: var(--vtc-bg);
  color: var(--vtc-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vtc-card input:focus,
.vtc-card select:focus,
.vtc-card textarea:focus {
  border-color: var(--vtc-border-focus);
  outline: none;
  background: var(--vtc-bg);
  box-shadow: 0 0 0 3px var(--vtc-accent-soft);
}

/* Textarea */
.vtc-card textarea {
  min-height: 48px;
  resize: vertical;
}

/* Sélecteur avec boutons + et - */
.vtc-counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--vtc-bg);
  border: 1px solid var(--vtc-border);
  border-radius: 6px;
  padding: 5px;
  transition: border-color 0.2s ease;
}

.vtc-counter-wrapper:focus-within {
  border-color: var(--vtc-border-focus);
  box-shadow: 0 0 0 3px var(--vtc-accent-soft);
}

/* Version compacte pour passagers/bagages sur la même ligne */
.vtc-counter-compact .vtc-counter-wrapper {
  gap: 4px;
  padding: 4px;
  border-radius: 6px;
}

.vtc-counter-compact .vtc-card {
  margin-bottom: 0;
}

.vtc-counter-compact label {
  font-size: 12px;
  margin-bottom: 4px;
}

.vtc-counter-compact .vtc-counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border-width: 2px;
  font-size: 16px;
}

.vtc-counter-compact .vtc-counter-btn i {
  font-size: 16px;
  font-weight: 700;
}

.vtc-counter-compact .vtc-counter-display {
  min-width: 36px;
  padding: 0 6px;
}

.vtc-counter-compact .vtc-counter-value {
  font-size: 16px;
  min-width: 24px;
}

/* Boutons + / - : strictement neutres (aucune couleur du thème) */
.vtc-booking-container .vtc-counter-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px;
  background: #ffffff !important;
  color: #111111 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  position: relative;
}

/* Symboles + et − visibles dans les boutons */
.vtc-booking-container .vtc-counter-btn .vtc-counter-symbol {
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: inherit;
  user-select: none;
}

.vtc-booking-container .vtc-counter-btn:hover {
  background: #f5f5f5 !important;
  border-color: #666666 !important;
  color: #111111 !important;
}

.vtc-booking-container .vtc-counter-btn:active,
.vtc-booking-container .vtc-counter-btn:focus {
  border-color: #e0e0e0 !important;
  color: #111111 !important;
  outline: none;
}

.vtc-booking-container .vtc-counter-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f5f5 !important;
  border-color: #e0e0e0 !important;
  color: #666666 !important;
}

.vtc-booking-container .vtc-counter-btn:disabled:hover {
  background: #f5f5f5 !important;
  border-color: #e0e0e0 !important;
  color: #666666 !important;
}

.vtc-counter-display {
  min-width: 60px;
  text-align: center;
  padding: 0 12px;
}

.vtc-counter-value {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--vtc-text);
  min-width: 28px;
  transition: transform 0.2s ease;
  line-height: 1.2;
}

.vtc-counter-value.animate {
  animation: vtc-counterBounce 0.3s ease;
}

@keyframes vtc-counterBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Options (passagers / bagages) - Ancien style (conservé pour compatibilité) */
.vtc-options {
  display: flex;
  gap: 6px;
}
.vtc-options button {
  flex: 1;
  padding: 8px 6px;
  border: 1px solid var(--vtc-border);
  border-radius: 6px;
  background: var(--vtc-bg);
  color: var(--vtc-text);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.vtc-options button:hover {
  background: var(--vtc-bg-alt);
  border-color: var(--vtc-text-muted);
}
.vtc-options button.active {
  background: var(--vtc-text);
  color: var(--vtc-btn-text);
  border-color: var(--vtc-text);
}

/* Boutons principaux - neutres */
.vtc-button-gradient {
  display: block;
  width: 100%;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--vtc-btn-text);
  background: var(--vtc-btn-bg);
  transition: background 0.2s ease, opacity 0.2s ease;
  margin-top: 2px;
}

.vtc-button-gradient:hover {
  background: var(--vtc-btn-hover);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.vtc-button-gradient:active {
  opacity: 0.9;
}

/* Bouton calcul */
#vtc-calc-button {
  background: var(--vtc-btn-bg);
  color: var(--vtc-btn-text);
}

#vtc-calc-button:hover {
  background: var(--vtc-btn-hover);
}

#vtc-calc-button:active {
  opacity: 0.9;
}

.vtc-booking-container #vtc-calc-button,
.vtc-booking-container .vtc-button-gradient {
  border: none !important;
  outline: none;
}
.vtc-booking-container #vtc-calc-button:focus,
.vtc-booking-container .vtc-button-gradient:focus {
  outline: none !important;
  box-shadow: none !important;
}

#vtc-calc-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Bouton réservation */
.vtc-button.vtc-reserve {
  margin-top: 6px;
  background: var(--vtc-btn-bg);
  color: var(--vtc-btn-text);
}

.vtc-button.vtc-reserve:hover {
  background: var(--vtc-btn-hover);
}

.vtc-button.vtc-reserve:active {
  opacity: 0.9;
}

/* Bouton "Continuer vers les informations" - même style que les autres CTA (visible, cliquable) */
.vtc-booking-container #vtc-continue-button {
  display: block !important;
  width: 100%;
  margin-top: 10px;
  padding: 8px 12px;
  background: #111111 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.vtc-booking-container #vtc-continue-button:hover {
  background: #333333 !important;
  color: #ffffff !important;
}

.vtc-booking-container #vtc-continue-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Bouton "Voir le récapitulatif" - sobre comme les autres CTA (classique) */
.vtc-booking-container:not(.vtc-style-futuristic) #vtc-btn-show-recap {
  background: #1a1a1a !important;
  color: #ffffff !important;
  border: none !important;
}

.vtc-booking-container:not(.vtc-style-futuristic) #vtc-btn-show-recap:hover {
  background: #2d2d2d !important;
  color: #ffffff !important;
}

/* Résultat */
#resultat {
  margin-top: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--vtc-text);
  animation: vtc-fadeIn 0.4s ease-out;
}

/* Carte tarif - neutre */
.vtc-tarif-card {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--vtc-accent-soft);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--vtc-radius-lg);
  text-align: center;
  color: var(--vtc-text);
  animation: vtc-tarifAppear 0.4s ease-out;
  box-shadow: var(--vtc-shadow-sm);
}

@keyframes vtc-tarifAppear {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.vtc-tarif-badge {
  display: inline-block;
  padding: 3px 8px;
  background: var(--vtc-border);
  color: var(--vtc-text-muted);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.vtc-tarif-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin: 6px 0;
}

.vtc-tarif-value {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--vtc-text);
  animation: vtc-pulseNumber 0.4s ease-out;
}

@keyframes vtc-pulseNumber {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.vtc-tarif-currency {
  font-size: 13px;
  font-weight: 600;
  color: var(--vtc-text-muted);
}

.vtc-tarif-label {
  font-size: 11px;
  color: var(--vtc-text-muted);
  margin-top: 3px;
}

.vtc-tarif-remise {
  font-size: 12px;
  color: #16a34a;
  margin: 4px 0 0;
  font-weight: 600;
}

/* Code promo - section 3, avant paiement */
.vtc-promo-block {
  margin: 14px 0;
  padding: 12px 0;
  border-top: 1px solid var(--vtc-border);
}

.vtc-promo-block label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--vtc-text);
  margin-bottom: 8px;
  font-size: 13px;
}

.vtc-promo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vtc-promo-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.vtc-promo-row input {
  flex: 1;
  padding: 7px 10px;
  border-radius: 5px;
  border: 1px solid var(--vtc-border);
  font-size: 14px;
}

.vtc-promo-row .vtc-button-outline {
  flex-shrink: 0;
  width: auto;
  padding: 7px 14px;
  font-size: 13px;
}

.vtc-promo-feedback {
  font-size: 12px;
  min-height: 18px;
}

.vtc-promo-feedback.vtc-promo-err {
  color: #dc2626;
}

.vtc-promo-feedback.vtc-promo-ok {
  color: #16a34a;
}

.vtc-promo-tarif {
  font-size: 13px;
  color: var(--vtc-text-muted);
  margin: 4px 0 0;
}

.vtc-promo-tarif strong {
  color: var(--vtc-text);
}

@media (max-width: 480px) {
  .vtc-promo-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.vtc-tarif {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--vtc-text);
}
.vtc-distance {
  font-size: 12px;
  color: var(--vtc-text-muted);
}

/* Résumé */
.vtc-summary {
  margin-top: 8px;
  padding: 10px;
  background: var(--vtc-bg-alt);
  border: 1px solid var(--vtc-border);
  border-radius: 6px;
  animation: vtc-slideIn 0.3s ease-out;
}
.vtc-summary h3 {
  margin-top: 0;
  margin-bottom: 6px;
  color: var(--vtc-text);
  font-size: 13px;
}
.vtc-summary-line {
  margin: 2px 0;
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 13px;
  color: var(--vtc-text);
}
.vtc-summary-price,
.vtc-summary-distance,
.vtc-summary-duration {
  margin-top: 6px;
}

/* Section Récapitulatif avant envoi */
.vtc-recap-section {
  margin-top: 4px;
}
.vtc-recap-section .vtc-recap-card {
  margin-top: 0;
  padding: 14px 16px;
  background: var(--vtc-bg-alt);
  border: 1px solid var(--vtc-border);
  border-radius: var(--vtc-radius-lg);
  box-shadow: var(--vtc-shadow-sm);
}
.vtc-recap-section .vtc-recap-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--vtc-text);
  letter-spacing: -0.01em;
}
.vtc-recap-content .vtc-recap-grid {
  display: grid;
  gap: 6px 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--vtc-text);
  line-height: 1.4;
}
.vtc-recap-content .vtc-recap-grid p {
  margin: 0;
}
.vtc-recap-tarif-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--vtc-accent, #2563eb);
  letter-spacing: -0.02em;
}
/* Boutons section 2 (modifier / continuer) - sur la même ligne, même hauteur */
.vtc-section-2-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: stretch;
  margin-top: 20px;
}
.vtc-section-2-actions .vtc-button {
  flex: 1;
  min-width: 0;
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vtc-recap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--vtc-border);
}

/* Carte itinéraire (section Détails) */
.vtc-route-map {
  width: 100%;
  height: 220px;
  margin-top: 10px;
  border-radius: 6px;
  border: 1px solid var(--vtc-border);
  background: var(--vtc-bg-alt);
}

/* Autocomplete BAN (Stack gratuite) */
.vtc-ban-autocomplete-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--vtc-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 220px;
  overflow-y: auto;
}
.vtc-ban-autocomplete-item {
  padding: 9px 11px;
  font-size: 14px;
  color: var(--vtc-text);
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.vtc-ban-autocomplete-item:last-child { border-bottom: none; }
.vtc-ban-autocomplete-item:hover { background: var(--vtc-bg-alt); }

/* Espacement bloc client */
#vtc-client-info {
  margin-top: 8px;
}

#vtc-client-info #vtc-stripe-container,
#vtc-client-info .vtc-button {
  margin-top: 10px;
}

/* Loader */
.vtc-loader {
  border: 3px solid var(--vtc-border);
  border-top-color: var(--vtc-text);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: vtc-spin 0.8s linear infinite;
  margin: 10px auto;
}
@keyframes vtc-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Messages - neutres avec léger contraste sémantique */
.vtc-success {
  padding: 10px 14px;
  background: var(--vtc-bg-alt);
  border: 1px solid var(--vtc-border);
  color: var(--vtc-text);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}

.vtc-error {
  padding: 10px 14px;
  background: var(--vtc-bg-alt);
  border: 1px solid var(--vtc-text-muted);
  color: var(--vtc-text);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}


/* Champs d'erreur et validation - neutres */
.vtc-error-field,
.vtc-field-invalid {
  border-color: var(--vtc-text-muted) !important;
  background: var(--vtc-bg-alt) !important;
}

.vtc-field-valid {
  border-color: var(--vtc-border-focus) !important;
}

.vtc-field-error {
  display: block;
  color: var(--vtc-text);
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}

/* Feedback de validation en temps réel */
.vtc-field-feedback {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-top: 4px;
  margin-left: 8px;
  animation: vtc-fadeIn 0.2s ease-out;
}

.vtc-field-feedback i {
  font-size: 14px;
}

.vtc-field-success {
  color: var(--vtc-text-muted);
}

.vtc-field-error {
  color: var(--vtc-text);
}

/* Wrapper pour inputs avec boutons */
.vtc-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.vtc-input-wrapper input {
  padding-right: 40px;
}

/* Carte d’adresse en focus : on remonte tout le bloc au-dessus des cartes voisines (date, compteurs)
 * pour que la liste de suggestions Google ne soit jamais recouverte. */
.vtc-row.vtc-row-addresses .vtc-card.half {
  position: relative;
  z-index: 1;
}
.vtc-row.vtc-row-addresses .vtc-card.half:focus-within,
.vtc-row.vtc-row-addresses .vtc-card.half:hover {
  z-index: 2000;
}
.vtc-input-wrapper:focus-within {
  z-index: 2;
}

/* Bloc « Mise à disposition » : la carte du lieu de prise en charge doit aussi passer
 * au-dessus des autres lignes quand elle reçoit le focus (mêmes raisons que .vtc-row-addresses) */
#vtc-block-mad > .vtc-card {
  position: relative;
  z-index: 1;
}
#vtc-block-mad > .vtc-card:focus-within {
  z-index: 2000;
}

/* Empêche la rangée date/heure + compteurs de capter le contexte d’empilement */
.vtc-row.vtc-row-inline-meta {
  z-index: 0;
}

/* Champ Google Places (nouvelle API) : ne pas passer sous le bouton géoloc, et pouvoir étendre
 * sa liste de suggestions au-dessus des autres cartes. */
.vtc-booking-container .vtc-input-wrapper > gmp-place-autocomplete[data-vtc-injected='1'] {
  flex: 1 1 auto;
  min-width: 0;
  width: calc(100% - 42px);
  max-width: calc(100% - 42px);
  margin-right: 40px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

/* Boutons géoloc : strictement neutres (aucune couleur du thème) */
.vtc-booking-container .vtc-geoloc-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid #e0e0e0 !important;
  background: #ffffff !important;
  color: #111111 !important;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 100;
  pointer-events: auto;
}

/* Icône géoloc (SVG) - hérite de la couleur du bouton */
.vtc-booking-container .vtc-geoloc-btn .vtc-icon-geoloc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.vtc-booking-container .vtc-geoloc-btn .vtc-icon-geoloc svg {
  display: block;
  width: 16px;
  height: 16px;
}

.vtc-booking-container .vtc-geoloc-btn:hover {
  background: #f5f5f5 !important;
  border-color: #666666 !important;
  color: #111111 !important;
}

.vtc-booking-container .vtc-geoloc-btn:active,
.vtc-booking-container .vtc-geoloc-btn:focus {
  border-color: #e0e0e0 !important;
  color: #111111 !important;
  outline: none;
}

.vtc-booking-container .vtc-geoloc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.vtc-geoloc-loading {
  animation: vtc-spin 1s linear infinite;
}

.vtc-booking-container .vtc-geoloc-success {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
}

/* Google Places pac-container - z-index élevé pour mobile */
.pac-container {
  z-index: 99999 !important;
}

/* Indicateur de recherche autocomplete */
.vtc-autocomplete-searching {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px !important;
}

/* Message de sauvegarde automatique */
.vtc-autosave-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--vtc-text);
  color: var(--vtc-btn-text);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  animation: vtc-slideInRight 0.3s ease-out;
}

@keyframes vtc-slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Confirmation améliorée */
.vtc-confirmation-success {
  text-align: center;
  animation: vtc-scaleIn 0.5s ease-out;
}

@keyframes vtc-scaleIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* État désactivé / loading */
.vtc-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Responsive - Tablette */
@media (max-width: 768px) {
  .vtc-booking-container {
    max-width: 90%;
    padding: 16px 14px;
  }

  .vtc-booking-container h2 {
    font-size: 18px;
  }

  .vtc-progress-steps {
    padding: 8px 0;
    margin-bottom: 16px;
  }

  .vtc-step-label {
    font-size: 10px;
  }

  /* Tablette / mobile : date-heure en pleine largeur (une ligne de texte), compteurs en dessous */
  .vtc-row-inline-meta {
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 6px;
  }
  .vtc-inline-datetime-shell {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .vtc-row-inline-meta .vtc-inline-slot-trajet,
  .vtc-row-inline-meta .vtc-inline-slot-mad {
    max-width: 100%;
  }
  .vtc-row-inline-meta .vtc-card-inline-datetime,
  .vtc-row-inline-meta .vtc-mad-inline-fields {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .vtc-row-inline-meta .vtc-card-inline-datetime input,
  .vtc-row-inline-meta .vtc-mad-inline-fields .vtc-card-inline-datetime input,
  .vtc-row-inline-meta .vtc-mad-inline-fields .vtc-card-inline-duration select {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    max-width: 100%;
  }
  .vtc-row-inline-meta .vtc-counter-cell {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
  }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .vtc-booking-container {
    padding: 14px 12px;
    margin: 12px auto;
    max-width: 100%;
    border-radius: 10px;
  }

  .vtc-booking-container h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  /* Indicateur de progression : rester compact, cibles tactiles correctes */
  .vtc-progress-steps {
    padding: 8px 0;
    margin-bottom: 14px;
  }

  .vtc-step-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .vtc-step-label {
    font-size: 9px;
    margin-top: 4px;
  }

  .vtc-step-line {
    margin: 0 3px;
  }

  .vtc-row {
    gap: 8px;
    margin-bottom: 10px;
  }

  .vtc-row.vtc-row-addresses {
    gap: 12px;
    margin-bottom: 12px;
  }

  .vtc-row .vtc-counter-compact {
    flex: 1;
    min-width: 0;
  }

  .vtc-row .half {
    flex: 1;
  }

  /* Cartes et champs : compact avec cibles tactiles */
  .vtc-card {
    margin-bottom: 12px;
    padding: 10px 12px;
  }

  /* Ligne date/heure + compteurs : rester sur une ligne lisible (iOS évite zoom avec 16px dans la zone date) */
  .vtc-row-inline-meta .vtc-card:not(.vtc-counter-cell) {
    padding: 7px 9px;
  }
  .vtc-row-inline-meta .vtc-counter-cell {
    padding: 7px 6px;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
  }
  .vtc-row-inline-meta .vtc-counter-ultra .vtc-counter-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }
  .vtc-row-inline-meta .vtc-counter-ultra .vtc-counter-btn .vtc-counter-symbol {
    font-size: 17px;
  }

  .vtc-card label {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .vtc-card input,
  .vtc-card select,
  .vtc-card textarea {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 16px; /* Évite le zoom automatique sur iOS */
    border-radius: 6px;
  }

  /* Date/heure : une seule ligne visuelle, jamais par-dessus les compteurs (ligne du dessus en ≤768px) */
  .vtc-row-inline-meta .vtc-card-inline-datetime input,
  .vtc-row-inline-meta .vtc-mad-inline-fields .vtc-card-inline-datetime input,
  .vtc-row-inline-meta .vtc-mad-inline-fields .vtc-card-inline-duration select {
    min-height: 42px;
    padding: 7px 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    box-sizing: border-box;
  }

  .vtc-return-time-input {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 16px;
  }

  /* Boutons : cibles tactiles 44px min */
  .vtc-booking-container .vtc-button,
  .vtc-booking-container button[type="submit"],
  .vtc-booking-container #vtc-calc-button,
  .vtc-booking-container #vtc-continue-button,
  .vtc-booking-container #vtc-stripe-submit,
  .vtc-booking-container #vtc-stripe-pay-at-board-btn,
  .vtc-booking-container .vtc-link-new-booking {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 15px;
  }

  .vtc-booking-container .vtc-geoloc-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 0 10px;
  }

  .vtc-geoloc-btn i {
    font-size: 16px;
  }

  .vtc-input-wrapper input {
    padding-right: 48px;
  }

  .vtc-booking-container .vtc-counter-btn {
    min-width: 44px;
    min-height: 44px;
  }

  .vtc-counter-compact .vtc-counter-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .vtc-options button {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 14px;
  }

  /* Tarif et récap : rester compact */
  .vtc-tarif-card {
    padding: 14px 16px;
  }

  .vtc-tarif-value {
    font-size: 26px;
  }

  .vtc-summary {
    padding: 12px;
  }

  .vtc-summary h3 {
    font-size: 15px;
  }

  .vtc-recap-section .vtc-recap-card {
    padding: 14px 16px;
  }

  .vtc-confirmation-block {
    padding: 18px 14px;
  }

  .vtc-confirmation-desc .vtc-link-new-booking {
    min-height: 44px;
    padding: 12px 20px;
  }

  /* Onglets */
  .vtc-tabs-bar {
    padding: 4px;
  }

  .vtc-tab-label {
    padding: 8px 14px;
    min-height: 44px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .vtc-autosave-message {
    top: 8px;
    right: 8px;
    left: 8px;
    font-size: 12px;
    padding: 8px 12px;
  }

  .vtc-route-map {
    height: 200px;
  }

  .vtc-success,
  .vtc-error {
    padding: 10px 12px;
    font-size: 14px;
  }

  /* Flatpickr date/heure - responsive mobile */
  .vtc-booking-container input.flatpickr-input {
    max-width: 100%;
    min-width: 0;
  }
  .vtc-booking-container .flatpickr-calendar {
    z-index: 9999;
    max-width: calc(100vw - 24px);
  }
  .vtc-booking-container .flatpickr-calendar.static {
    position: relative;
    margin-top: 4px;
  }
  .vtc-booking-container .flatpickr-months {
    max-width: 100%;
  }
  .vtc-booking-container .flatpickr-calendar.hasTime .flatpickr-time {
    max-width: 100%;
  }
}

/* Responsive - Petit mobile */
@media (max-width: 400px) {
  .vtc-booking-container {
    padding: 12px 10px;
    margin: 10px auto;
  }

  .vtc-booking-container h2 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .vtc-tab-label {
    padding: 6px 12px;
    font-size: 12px;
    min-height: 40px;
  }

  .vtc-step-number {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .vtc-step-label {
    font-size: 8px;
  }

  .vtc-summary-return {
    padding: 6px 10px;
    font-size: 12px;
  }

  .vtc-counter-compact .vtc-counter-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    font-size: 14px;
  }

  .vtc-counter-compact .vtc-counter-value {
    font-size: 18px;
  }

  .vtc-counter-compact .vtc-counter-display {
    min-width: 36px;
    padding: 0 8px;
  }

  .vtc-counter-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .vtc-counter-value {
    font-size: 24px;
  }

  .vtc-options button {
    padding: 12px 8px;
    font-size: 14px;
  }

  .vtc-tarif-value {
    font-size: 32px;
  }
}

/* --- Paiement Stripe (préautorisation) - neutre --- */
.vtc-stripe-container {
  background: var(--vtc-bg-alt);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--vtc-border);
}

.vtc-stripe-card-wrapper {
  margin-bottom: 12px;
}

.vtc-stripe-card-wrapper label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--vtc-text);
}

#vtc-stripe-card-element {
  padding: 12px 14px;
  background: var(--vtc-bg);
  border: 1px solid var(--vtc-border);
  border-radius: 8px;
}

.vtc-stripe-errors {
  color: var(--vtc-text);
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}

.vtc-stripe-hint {
  font-size: 13px;
  color: var(--vtc-text-muted);
  margin: 12px 0 16px;
  line-height: 1.5;
}

/* Bouton "Valider le paiement" - même style que les autres CTA (bien visible) */
.vtc-booking-container #vtc-stripe-submit {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 14px 20px;
  background: #111111 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.vtc-booking-container #vtc-stripe-submit:hover {
  background: #333333 !important;
  color: #ffffff !important;
}

.vtc-booking-container #vtc-stripe-submit:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Payer à bord en cas d'échec Stripe */
.vtc-stripe-pay-at-board {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--vtc-border);
}

.vtc-button-outline {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: transparent !important;
  color: var(--vtc-text) !important;
  border: 2px solid var(--vtc-border) !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vtc-button-outline:hover {
  background: var(--vtc-bg-alt) !important;
  border-color: var(--vtc-text-muted) !important;
}

/* Bloc confirmation (succès réservation / paiement) */
.vtc-confirmation-block {
  padding: 20px 18px;
  font-size: 16px;
}

.vtc-confirmation-icon {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1;
}

.vtc-confirmation-title {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--vtc-text);
}

.vtc-confirmation-desc {
  font-size: 13px;
  color: var(--vtc-text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.vtc-confirmation-desc p {
  margin: 0 0 6px;
}

.vtc-link-new-booking {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: var(--vtc-btn-bg) !important;
  color: var(--vtc-btn-text) !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s ease;
}

.vtc-link-new-booking:hover {
  background: var(--vtc-btn-hover) !important;
  color: var(--vtc-btn-text) !important;
}

/* ============================================
   Onglets type de trajet (au-dessus du titre)
   ============================================ */

.vtc-tabs-bar {
  display: inline-flex;
  gap: 0;
  margin-bottom: 10px;
  padding: 3px;
  background: var(--vtc-bg-alt);
  border: 1px solid var(--vtc-border);
  border-radius: 999px;
  font-size: 0;
  transition: border-color 0.2s ease;
}

.vtc-tab {
  margin: 0;
  cursor: pointer;
}

.vtc-tab input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.vtc-tab-label {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--vtc-text-muted);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.vtc-tab:hover .vtc-tab-label {
  color: var(--vtc-text);
}

.vtc-tab input:focus-visible + .vtc-tab-label {
  outline: 2px solid var(--vtc-accent);
  outline-offset: 2px;
}

.vtc-tab:has(input:checked) .vtc-tab-label {
  background: #fff;
  color: var(--vtc-text);
  box-shadow: var(--vtc-shadow-sm);
}

/* Onglets désactivés à partir de l'étape Détails */
.vtc-tabs-bar-disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Sélecteur de véhicule (menu déroulant) */
.vtc-vehicle-selector {
  margin-bottom: 8px;
}
.vtc-vehicle-selector .vtc-label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--vtc-text);
}
.vtc-vehicle-select-wrapper {
  position: relative;
}
.vtc-vehicle-select {
  width: 100%;
  max-width: 100%;
  padding: 8px 36px 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vtc-text);
  background: var(--vtc-bg-alt);
  border: 1px solid var(--vtc-border);
  border-radius: 6px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vtc-vehicle-select:hover {
  border-color: var(--vtc-border-focus);
}
.vtc-vehicle-select:focus {
  outline: none;
  border-color: var(--vtc-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.vtc-vehicle-select option {
  padding: 8px;
  font-weight: 500;
}

/* Heure de retour : compact, même style que les autres champs */
.vtc-return-time-wrapper {
  margin-bottom: 10px;
}

.vtc-return-time-wrapper .vtc-return-time-label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--vtc-text);
}

.vtc-return-time-input {
  width: 100%;
  padding: 7px 9px;
  border: 1px solid var(--vtc-border);
  border-radius: 5px;
  font-size: 14px;
  color: var(--vtc-text);
  background: var(--vtc-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vtc-return-time-input:focus {
  border-color: var(--vtc-border-focus);
  outline: none;
  box-shadow: 0 0 0 3px var(--vtc-accent-soft);
}

.vtc-return-time-wrapper .vtc-field-hint {
  margin-top: 3px;
  font-size: 11px;
  color: var(--vtc-text-muted);
  line-height: 1.3;
}

/* Hint générique */
.vtc-field-hint {
  margin-top: 6px;
  font-size: 12px;
  color: var(--vtc-text-muted);
  line-height: 1.4;
}

/* Résumé aller-retour : compact */
.vtc-summary-return {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  padding: 8px 12px;
  background: #e8f5e9;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1b5e20;
}

.vtc-summary-return-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #2e7d32;
}

/* Crédit plugin - discret, en bas à droite */
.vtc-booking-credit {
  text-align: right;
  margin: 12px 0 0;
  padding: 8px 0 0;
  font-size: 9px;
  line-height: 1.4;
  color: var(--vtc-text-muted);
  border-top: 1px solid var(--vtc-border);
  opacity: 0.8;
}

.vtc-booking-credit a {
  color: var(--vtc-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.vtc-booking-credit a:hover {
  color: var(--vtc-accent);
}

/* Masqué visuellement uniquement - le lien reste dans le DOM pour le référencement */
.vtc-booking-credit-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
