/* Container principal */
.vtc-booking-container {
  max-width: 640px;
  margin: 20px auto;
  padding: 20px;
  background: linear-gradient(135deg, #f9f9fb 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  font-family: 'Inter', 'Roboto', system-ui, sans-serif;
  color: #333;
  animation: vtc-fadeIn 0.5s ease-out;
}

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

/* Titre */
.vtc-booking-container h2 {
  text-align: center;
  background: linear-gradient(135deg, #1a2c5b 0%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 700;
}

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

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

.vtc-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef1f7;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #eef1f7;
}

.vtc-step-label {
  margin-top: 5px;
  font-size: 10px;
  color: #999;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.vtc-step-line {
  flex: 1;
  height: 2px;
  background: #eef1f7;
  margin: 0 8px;
  position: relative;
  top: -16px;
  z-index: 1;
  transition: all 0.3s ease;
}

.vtc-step-active .vtc-step-number {
  background: linear-gradient(135deg, #00bfff 0%, #0095cc 100%);
  color: #fff;
  border-color: #00bfff;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
  transform: scale(1.05);
  animation: vtc-pulse 2s infinite;
}

.vtc-step-active .vtc-step-label {
  color: #00bfff;
  font-weight: 600;
}

.vtc-step-completed .vtc-step-number {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: #fff;
  border-color: #28a745;
}

.vtc-step-completed .vtc-step-label {
  color: #28a745;
}

.vtc-step-completed ~ .vtc-step-line {
  background: linear-gradient(90deg, #28a745 0%, #00bfff 100%);
}

@keyframes vtc-pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.5);
  }
}


/* 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: 12px;
  margin-bottom: 14px;
}
.vtc-row .half {
  flex: 1;
}

.vtc-card {
  margin-bottom: 14px;
}

/* Labels */
.vtc-card label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #1a2c5b;
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 14px;
}
.vtc-card i {
  font-size: 16px;
  color: #00bfff;
}

/* Inputs */
.vtc-card input,
.vtc-card select,
.vtc-card textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid #eef1f7;
  font-size: 15px;
  background: #fff;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.vtc-card input:focus,
.vtc-card select:focus,
.vtc-card textarea:focus {
  border-color: #00bfff;
  outline: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.15);
  transform: translateY(-1px);
}

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

/* Sélecteur avec boutons + et - */
.vtc-counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #eef1f7;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.vtc-counter-wrapper:focus-within {
  border-color: #00bfff;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.15);
}

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

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

.vtc-counter-compact label {
  font-size: 13px;
  margin-bottom: 6px;
}

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

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

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

.vtc-counter-compact .vtc-counter-value {
  font-size: 20px;
  min-width: 28px;
}

.vtc-counter-btn {
  width: 44px;
  height: 44px;
  border: 2px solid #00bfff;
  border-radius: 10px;
  background: #fff;
  color: #00bfff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 191, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.vtc-counter-btn i {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.vtc-counter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 191, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.vtc-counter-btn:active::before {
  width: 200%;
  height: 200%;
}

.vtc-counter-btn:hover {
  background: #00bfff;
  color: #fff;
  border-color: #00bfff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.4);
}

.vtc-counter-btn:active {
  transform: scale(0.95);
}

.vtc-counter-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  background: #f5f5f5;
  border-color: #ddd;
  color: #999;
}

.vtc-counter-btn:disabled:hover {
  background: #f5f5f5;
  border-color: #ddd;
  color: #999;
  transform: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

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

.vtc-counter-value {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #1a2c5b;
  min-width: 36px;
  transition: all 0.3s ease;
  line-height: 1.2;
}

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

@keyframes vtc-counterBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    color: #00bfff;
  }
}

/* Options (passagers / bagages) - Ancien style (conservé pour compatibilité) */
.vtc-options {
  display: flex;
  gap: 8px;
}
.vtc-options button {
  flex: 1;
  padding: 10px 8px;
  border: 2px solid #eef1f7;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.vtc-options button:hover {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: #00bfff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 191, 255, 0.2);
}
.vtc-options button.active {
  background: linear-gradient(135deg, #00bfff 0%, #0095cc 100%);
  color: #fff;
  border-color: #00bfff;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
  transform: translateY(-2px);
}

/* Boutons avec gradient */
.vtc-button-gradient {
  display: block;
  width: 100%;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin-top: 4px;
}

.vtc-button-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.vtc-button-gradient:hover::before {
  left: 100%;
}

/* Bouton calcul */
#vtc-calc-button {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

#vtc-calc-button:hover {
  background: linear-gradient(135deg, #218838 0%, #1ea080 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

#vtc-calc-button:active {
  transform: translateY(0) scale(0.98);
}

/* Bouton réservation */
.vtc-button.vtc-reserve {
  margin-top: 12px;
  background: linear-gradient(135deg, #00bfff 0%, #0095cc 100%);
}

.vtc-button.vtc-reserve:hover {
  background: linear-gradient(135deg, #0095cc 0%, #007aa3 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.vtc-button.vtc-reserve:active {
  transform: translateY(0) scale(0.98);
}

/* Résultat */
#resultat {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: #1a2c5b;
  animation: vtc-fadeIn 0.5s ease-out;
}

/* Carte tarif premium */
.vtc-tarif-card {
  margin-top: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
  animation: vtc-tarifAppear 0.6s ease-out;
}

.vtc-tarif-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: vtc-shine 3s infinite;
}

@keyframes vtc-tarifAppear {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  50% {
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes vtc-shine {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.vtc-tarif-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

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

.vtc-tarif-value {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  animation: vtc-pulseNumber 1s ease-out;
}

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

.vtc-tarif-currency {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.9;
}

.vtc-tarif-label {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 10px;
}

.vtc-tarif {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.vtc-distance {
  font-size: 16px;
  color: #555;
}

/* Résumé */
.vtc-summary {
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(0, 191, 255, 0.1);
  animation: vtc-slideIn 0.4s ease-out;
}
.vtc-summary h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #1a2c5b;
  font-size: 18px;
}
.vtc-summary-line {
  margin: 4px 0;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
}
.vtc-summary-price,
.vtc-summary-distance {
  margin-top: 10px;
}

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

/* Loader */
.vtc-loader {
  border: 4px solid #eef1f7;
  border-top: 4px solid #00bfff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: vtc-spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  margin: 10px auto;
}
@keyframes vtc-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Messages */
.vtc-success {
  padding: 12px;
  background: #d1f5d3;
  border: 1px solid #1a7f37;
  color: #1a7f37;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}

.vtc-error {
  padding: 12px;
  background: #ffe5e5;
  border: 1px solid #b30000;
  color: #b30000;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}


/* Champs d'erreur et validation */
.vtc-error-field,
.vtc-field-invalid {
  box-shadow: inset 0 0 0 2px #d9534f !important;
  background: #fff5f5 !important;
  border-color: #d9534f !important;
}

.vtc-field-valid {
  border-color: #28a745 !important;
  background: #f0fff4 !important;
}

.vtc-field-error {
  display: block;
  color: #d9534f;
  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.3s ease-out;
}

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

.vtc-field-success {
  color: #28a745;
}

.vtc-field-error {
  color: #d9534f;
}

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

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

.vtc-geoloc-btn {
  position: absolute;
  right: 8px;
  width: 36px;
  height: 36px;
  border: 2px solid #00bfff;
  background: #fff;
  color: #00bfff;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 191, 255, 0.2);
}

.vtc-geoloc-btn i {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.vtc-geoloc-btn:hover {
  background: #00bfff;
  color: #fff;
  border-color: #00bfff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.4);
}

.vtc-geoloc-btn:active {
  transform: scale(0.95);
}

.vtc-geoloc-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

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

.vtc-geoloc-success {
  background: #28a745 !important;
  border-color: #28a745 !important;
  color: #fff !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='%2300bfff' 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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  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: 25px;
  }

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

  .vtc-progress-steps {
    padding: 15px 0;
    margin-bottom: 30px;
  }

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

/* Responsive - Mobile */
@media (max-width: 600px) {
  .vtc-booking-container {
    padding: 18px;
    margin: 15px auto;
    border-radius: 16px;
  }

  .vtc-autosave-message {
    top: 10px;
    right: 10px;
    left: 10px;
    font-size: 13px;
    padding: 10px 15px;
  }

  .vtc-geoloc-btn {
    width: 32px;
    height: 32px;
    right: 6px;
    border-width: 2px;
  }

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

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

  .vtc-geoloc-btn {
    min-width: 90px;
    height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .vtc-geoloc-btn-text {
    font-size: 10px;
  }

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

  .vtc-booking-container h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  /* Indicateur de progression mobile */
  .vtc-progress-steps {
    padding: 12px 0;
    margin-bottom: 25px;
    gap: 5px;
  }

  .vtc-step-number {
    width: 32px;
    height: 32px;
    font-size: 13px;
    border-width: 2px;
  }

  .vtc-step-label {
    font-size: 9px;
    margin-top: 5px;
    line-height: 1.2;
  }

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

  /* Layout - Les lignes avec .half (passagers/bagages) restent en row même sur mobile */
  .vtc-row {
    gap: 10px;
    margin-bottom: 14px;
  }
  
  /* Les autres lignes (sans .half) passent en column sur mobile */
  .vtc-row:first-of-type {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }

  /* Garder passagers et bagages côte à côte même sur mobile */
  .vtc-row .vtc-counter-compact {
    flex: 1;
    min-width: 0; /* Permet au flex de fonctionner correctement */
  }
  
  /* Forcer le row pour les lignes avec des éléments half (passagers/bagages) */
  .vtc-row .half {
    flex: 1;
  }

  .vtc-card {
    margin-bottom: 16px;
  }

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

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

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

  /* Sélecteur avec boutons + et - */
  .vtc-counter-wrapper {
    gap: 10px;
    padding: 6px;
  }

  .vtc-counter-compact .vtc-counter-wrapper {
    gap: 6px;
    padding: 5px;
  }

  .vtc-counter-compact .vtc-counter-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    min-width: 40px; /* Touch-friendly */
    border-width: 2px;
  }

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

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

  .vtc-counter-compact .vtc-counter-display {
    min-width: 45px;
    padding: 0 10px;
  }

  .vtc-counter-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
    min-width: 48px; /* Touch-friendly */
  }

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

  .vtc-counter-display {
    min-width: 70px;
    padding: 0 16px;
  }

  /* Options (passagers / bagages) - Ancien style */
  .vtc-options {
    gap: 8px;
  }

  .vtc-options button {
    padding: 14px 10px;
    font-size: 15px;
    min-height: 44px; /* Touch-friendly */
  }

  /* Boutons */
  #vtc-calc-button,
  .vtc-button.vtc-reserve,
  #vtc-continue-button {
    padding: 14px;
    font-size: 16px;
    min-height: 48px; /* Touch-friendly */
    border-radius: 10px;
  }

  /* Résumé */
  .vtc-summary {
    padding: 18px;
    border-radius: 12px;
  }

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

  /* Carte tarif mobile */
  .vtc-tarif-card {
    padding: 20px 18px;
    border-radius: 12px;
  }

  .vtc-tarif-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

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

  .vtc-tarif-currency {
    font-size: 18px;
  }

  .vtc-tarif-label {
    font-size: 13px;
  }

  /* Messages */
  .vtc-success,
  .vtc-error {
    padding: 14px;
    font-size: 15px;
  }
}

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

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

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

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

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

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

  .vtc-counter-compact .vtc-counter-display {
    min-width: 40px;
    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;
  }
}
