/* ============================================================
   NDF VTC — Booking Plugin CSS
   Design system: Gold #BF9B30 · Dark #080806 · Raleway + DM Sans
   ============================================================ */

:root {
  --gold:     #BF9B30;
  --gold-lt:  #D4AE4A;
  --gold-dk:  #9E7E22;
  --dark:     #080806;
  --dark-2:   #111109;
  --dark-3:   #1a1a17;
  --light-bg: #F8F5EE;
  --light-tx: #18160E;
  --white:    #ffffff;
  --gray:     #888880;
  --gray-lt:  #ccc;
  --error:    #c0392b;
  --success:  #27ae60;
  --ff-head:  'Raleway', sans-serif;
  --ff-body:  'DM Sans', sans-serif;
  --radius:   4px;
  --shadow:   0 8px 32px rgba(0,0,0,.45);
  --trans:    .25s ease;
}

/* ── Wrapper ─────────────────────────────────────────────── */
.ndfvtc-booking-wrap {
  font-family: var(--ff-body);
  color: var(--light-tx);
  max-width: 900px;
  margin: 0 auto;
}

/* ── Step bar ────────────────────────────────────────────── */
.ndfvtc-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 40px;
  max-width: 720px;
  padding: 0 16px;
}

.ndfvtc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.ndfvtc-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--gray);
  background: transparent;
  transition: var(--trans);
}

.ndfvtc-step.active .ndfvtc-step-num {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(191,155,48,.15);
}

.ndfvtc-step.done .ndfvtc-step-num {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
}

.ndfvtc-step-label {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray);
  text-align: center;
  white-space: nowrap;
}

.ndfvtc-step.active .ndfvtc-step-label { color: var(--gold); }
.ndfvtc-step.done .ndfvtc-step-label   { color: var(--light-tx); }

.ndfvtc-step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-lt);
  margin: 0 8px;
  margin-bottom: 28px;
  min-width: 24px;
}

/* ── Tabs ────────────────────────────────────────────────── */
.ndfvtc-tabs {
  background: var(--dark);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.ndfvtc-tab-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  border-bottom: 1px solid rgba(191,155,48,.15);
  background: var(--dark-2);
}

.ndfvtc-tab-nav li { flex: 1; }

.ndfvtc-tab-nav a {
  display: block;
  padding: 16px 12px;
  text-align: center;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray);
  text-decoration: none;
  transition: var(--trans);
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

.ndfvtc-tab-nav a:hover { color: var(--gold-lt); }
.ndfvtc-tab-nav a.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(191,155,48,.06); }

.ndfvtc-tab-panel { display: none; padding: 32px 28px; }
.ndfvtc-tab-panel.active { display: block; }

/* ── Fields ──────────────────────────────────────────────── */
.ndfvtc-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .ndfvtc-field-row { grid-template-columns: 1fr; }
  .ndfvtc-steps { gap: 0; }
  .ndfvtc-step-label { display: none; }
}

.ndfvtc-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ndfvtc-field label {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(240,237,227,.6);
}

.ndfvtc-field label .req { color: var(--gold); }
.ndfvtc-field label small { font-size: 10px; font-weight: 400; text-transform: none; color: var(--gray); letter-spacing: 0; }

.ndfvtc-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(191,155,48,.25);
  border-radius: var(--radius);
  color: #F0EDE3;
  font-family: var(--ff-body);
  font-size: 14px;
  transition: var(--trans);
  outline: none;
  box-sizing: border-box;
}

.ndfvtc-input:focus {
  border-color: var(--gold);
  background: rgba(191,155,48,.06);
  box-shadow: 0 0 0 3px rgba(191,155,48,.12);
}

.ndfvtc-input::placeholder { color: rgba(240,237,227,.3); }

textarea.ndfvtc-input { resize: vertical; min-height: 90px; }

/* Selects */
.ndfvtc-select-wrap {
  position: relative;
}

.ndfvtc-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  font-size: 12px;
}

.ndfvtc-select-wrap select,
.ndfvtc-field .ndfvtc-select {
  width: 100%;
  padding: 12px 36px 12px 14px;
  background: #1a1916;
  border: 1px solid rgba(191,155,48,.25);
  border-radius: var(--radius);
  color: #F0EDE3;
  font-family: var(--ff-body);
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: var(--trans);
  outline: none;
  /* Force dark background on the native dropdown list */
  color-scheme: dark;
}

.ndfvtc-select-wrap select option,
.ndfvtc-field .ndfvtc-select option {
  background: #1a1916;
  color: #F0EDE3;
}

.ndfvtc-select-wrap select option:hover,
.ndfvtc-select-wrap select option:focus,
.ndfvtc-select-wrap select option:checked {
  background: #BF9B30;
  color: #080806;
}

.ndfvtc-select-wrap select:focus,
.ndfvtc-field .ndfvtc-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(191,155,48,.12);
}

/* Time inputs */
.ndfvtc-time-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ndfvtc-time-wrap .ndfvtc-select-wrap { flex: 1; }
.ndfvtc-time-sep { color: var(--gold); font-weight: 700; font-size: 18px; }

/* ── Buttons ─────────────────────────────────────────────── */
.ndfvtc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--dark) !important;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}

.ndfvtc-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(191,155,48,.35);
}

.ndfvtc-btn-submit { margin-top: 24px; }
.ndfvtc-btn-confirm { width: 100%; justify-content: center; margin-top: 28px; font-size: 14px; padding: 16px; }

.ndfvtc-btn-select {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  font-size: 12px;
  padding: 12px 20px;
}

/* ── Loading ─────────────────────────────────────────────── */
.ndfvtc-loading {
  text-align: center;
  padding: 48px 20px;
  color: rgba(240,237,227,.5);
  font-family: var(--ff-head);
}

.ndfvtc-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(191,155,48,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: ndfvtc-spin .7s linear infinite;
  margin: 0 auto 16px;
}

@keyframes ndfvtc-spin { to { transform: rotate(360deg); } }

/* ── Trip summary badge ──────────────────────────────────── */
.ndfvtc-trip-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: rgba(191,155,48,.08);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: #F0EDE3;
}

.ndfvtc-dist-badge,
.ndfvtc-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(191,155,48,.15);
  border: 1px solid rgba(191,155,48,.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--gold-lt);
}

/* ── Vehicle heading ─────────────────────────────────────── */
.ndfvtc-vehicle-heading {
  font-family: var(--ff-head);
  font-weight: 300;
  font-size: 24px;
  color: #F0EDE3;
  letter-spacing: .5px;
  margin: 0 0 24px;
}

.ndfvtc-vehicle-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}

/* ── Vehicle grid ────────────────────────────────────────── */
.ndfvtc-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.ndfvtc-vehicle-card {
  background: var(--dark-3);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
  cursor: pointer;
}

.ndfvtc-vehicle-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}

.ndfvtc-vehicle-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(191,155,48,.25), 0 12px 32px rgba(0,0,0,.4);
}

.ndfvtc-vehicle-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-2);
}

.ndfvtc-vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.ndfvtc-vehicle-card:hover .ndfvtc-vehicle-img img {
  transform: scale(1.04);
}

.ndfvtc-vehicle-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ndfvtc-vehicle-name {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: #F0EDE3;
  margin: 0;
  letter-spacing: .3px;
}

.ndfvtc-vehicle-desc {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

.ndfvtc-vehicle-specs {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: rgba(240,237,227,.5);
}

.ndfvtc-vehicle-price {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .5px;
}

/* ── Vehicle selection / step 2 in dark context ──────────── */
.ndfvtc-vehicle-selection {
  padding: 32px 28px;
  background: var(--dark);
  border: 1px solid rgba(191,155,48,.15);
  border-top: none;
}

/* ── Step 3: Passenger form ──────────────────────────────── */
.ndfvtc-booking-step3 {
  background: var(--dark);
  border: 1px solid rgba(191,155,48,.15);
  border-top: none;
  padding: 32px 28px;
}

.ndfvtc-section-title {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 600;
  color: #F0EDE3;
  margin: 28px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(191,155,48,.15);
  letter-spacing: .3px;
}

.ndfvtc-section-title:first-child { margin-top: 0; }

/* ── Recap card ──────────────────────────────────────────── */
.ndfvtc-recap-card {
  background: var(--dark-3);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 24px;
}

.ndfvtc-recap-title {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ndfvtc-recap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

@media (max-width: 600px) { .ndfvtc-recap-grid { grid-template-columns: 1fr; } }

.ndfvtc-recap-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ndfvtc-recap-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray);
  font-family: var(--ff-head);
  font-weight: 600;
}

.ndfvtc-recap-value {
  font-size: 14px;
  color: #F0EDE3;
}

/* Total price */
.ndfvtc-total-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(191,155,48,.15);
  font-family: var(--ff-head);
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ndfvtc-total-price strong {
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .5px;
}

.ndfvtc-total-price small {
  font-size: 11px;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0;
}

/* ── Payment options ─────────────────────────────────────── */
.ndfvtc-payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.ndfvtc-payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
}

.ndfvtc-payment-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(191,155,48,.08);
}

.ndfvtc-payment-option input { accent-color: var(--gold); width: 16px; height: 16px; cursor: pointer; }

.ndfvtc-payment-label {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 13px;
  color: #F0EDE3;
}

/* Terms */
.ndfvtc-terms {
  margin-top: 8px;
}

.ndfvtc-terms label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  font-size: 13px;
  color: rgba(240,237,227,.6);
  font-family: var(--ff-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}

.ndfvtc-terms input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; }
.ndfvtc-terms a { color: var(--gold); }

/* ── Confirmation ────────────────────────────────────────── */
.ndfvtc-confirmation { max-width: 680px; margin: 0 auto; }

.ndfvtc-confirmation-header {
  text-align: center;
  padding: 40px 24px;
  background: var(--dark);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: 6px 6px 0 0;
  margin-bottom: 2px;
}

.ndfvtc-checkmark {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: ndfvtc-pop .5s cubic-bezier(.175,.885,.32,1.275);
}

@keyframes ndfvtc-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.ndfvtc-confirmation-header h2 {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 300;
  color: #F0EDE3;
  margin: 0 0 10px;
  letter-spacing: .5px;
}

.ndfvtc-confirmation-header p {
  color: rgba(240,237,227,.6);
  font-size: 14px;
  margin: 0;
  max-width: 440px;
  margin: 0 auto;
}

.ndfvtc-confirmation-body {
  background: var(--dark-3);
  border: 1px solid rgba(191,155,48,.15);
  border-top: none;
  padding: 28px;
}

.ndfvtc-confirmation-cta {
  text-align: center;
  padding: 24px;
  background: var(--dark);
  border: 1px solid rgba(191,155,48,.15);
  border-top: none;
  border-radius: 0 0 6px 6px;
  color: rgba(240,237,227,.6);
  font-size: 14px;
}

.ndfvtc-confirmation-cta a { color: var(--gold); text-decoration: none; }
.ndfvtc-confirmation-cta strong { font-size: 16px; }

/* ── Notices ─────────────────────────────────────────────── */
.ndfvtc-notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
}

.ndfvtc-notice--error {
  background: rgba(192,57,43,.12);
  border: 1px solid rgba(192,57,43,.3);
  color: #f1948a;
}

.ndfvtc-notice--warning {
  background: rgba(191,155,48,.08);
  border: 1px solid rgba(191,155,48,.2);
  color: var(--gold-lt);
}

.ndfvtc-notice a { color: var(--gold); }

/* ── Stripe form ─────────────────────────────────────────── */
.ndfvtc-stripe-form {
  background: var(--dark-3);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: 6px;
  padding: 28px;
}

.ndfvtc-stripe-form h3 {
  font-family: var(--ff-head);
  color: #F0EDE3;
  margin: 0 0 14px;
}

.ndfvtc-stripe-summary {
  background: rgba(191,155,48,.08);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 24px;
  color: rgba(240,237,227,.7);
  font-size: 14px;
}

.ndfvtc-payment-errors {
  display: none;
  color: #f1948a;
  background: rgba(192,57,43,.1);
  border: 1px solid rgba(192,57,43,.3);
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 13px;
}

/* ── jQuery UI datepicker overrides ──────────────────────── */
.ui-datepicker {
  background: var(--dark-2) !important;
  border: 1px solid rgba(191,155,48,.3) !important;
  border-radius: 6px !important;
  box-shadow: var(--shadow) !important;
  font-family: var(--ff-body) !important;
  font-size: 13px !important;
  z-index: 9999 !important;
  /* Mobile: prevent overflow off-screen */
  max-width: calc(100vw - 32px) !important;
  left: 16px !important;
  right: 16px !important;
  width: auto !important;
}

.ui-datepicker .ui-datepicker-header {
  background: var(--dark-3) !important;
  border: none !important;
  border-bottom: 1px solid rgba(191,155,48,.15) !important;
  border-radius: 6px 6px 0 0 !important;
  padding: 10px !important;
}

.ui-datepicker .ui-datepicker-title {
  font-family: var(--ff-head) !important;
  font-weight: 600 !important;
  color: #F0EDE3 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  font-size: 12px !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 10px !important;
  cursor: pointer !important;
}

.ui-datepicker .ui-icon { background-image: none !important; }
.ui-datepicker .ui-datepicker-prev::before { content: '‹'; color: var(--gold); font-size: 18px; }
.ui-datepicker .ui-datepicker-next::before { content: '›'; color: var(--gold); font-size: 18px; }

.ui-datepicker table { margin: 0 !important; }
.ui-datepicker th { color: var(--gray) !important; font-weight: 600 !important; padding: 8px 4px !important; font-size: 11px !important; }
.ui-datepicker td { padding: 2px !important; }
.ui-datepicker td a, .ui-datepicker td span {
  color: rgba(240,237,227,.7) !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 50% !important;
  text-align: center !important;
  padding: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  font-size: 14px !important;
  min-width: 36px !important;
}

.ui-datepicker td a:hover { background: rgba(191,155,48,.15) !important; color: var(--gold) !important; border-color: rgba(191,155,48,.2) !important; }
.ui-datepicker .ui-state-active { background: var(--gold) !important; color: var(--dark) !important; border-color: var(--gold) !important; }
.ui-datepicker .ui-state-disabled { opacity: .35 !important; }

/* ── Passenger form on light bg (step 3 comes after dark area) */
.ndfvtc-passenger-form .ndfvtc-field label { color: rgba(240,237,227,.6); }
.ndfvtc-passenger-form .ndfvtc-input {
  background: rgba(255,255,255,.06);
  color: #F0EDE3;
}

/* ── PayPal loader ───────────────────────────────────────── */
.ndfvtc-paypal-loading {
  text-align: center;
  padding: 32px;
  font-family: var(--ff-head);
  color: var(--gold);
  font-size: 14px;
  background: var(--dark-3);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: var(--radius);
}

/* ── Step bar wrapper ────────────────────────────────────── */
.ndfvtc-step-bar {
  padding: 32px 16px 24px;
}

/* ══ RESPONSIVE COMPLET — Tous téléphones et tablettes ══════════════════════ */

/* Tablette large (≤ 900px) */
@media (max-width: 900px) {
  .ndfvtc-booking-wrap { margin: 0; border-radius: 0; }
}

/* Tablette (≤ 720px) */
@media (max-width: 720px) {
  .ndfvtc-tab-panel { padding: 20px 16px; }
  .ndfvtc-vehicle-selection,
  .ndfvtc-booking-step3 { padding: 20px 16px; }
  .ndfvtc-vehicle-grid { grid-template-columns: 1fr; gap: 12px; }
  .ndfvtc-recap-grid { grid-template-columns: 1fr; }
  .ndfvtc-total-price { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ndfvtc-payment-options { flex-direction: column; }
  .ndfvtc-field-row { grid-template-columns: 1fr; }
  .ndfvtc-tab-nav a { font-size: 11px; padding: 12px 6px; letter-spacing: 0; }
  .ndfvtc-vehicle-card { flex-direction: column; }
  .ndfvtc-vehicle-img { width: 100%; height: 160px; }
  .ndfvtc-vehicle-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px 4px 0 0; }
}

/* Mobile (≤ 480px) — iPhone 14/13/12/11, Galaxy S */
@media (max-width: 480px) {
  .ndfvtc-tab-panel { padding: 16px 12px; }
  .ndfvtc-tabs { border-radius: 0; border-left: none; border-right: none; }
  .ndfvtc-tab-nav a { font-size: 10px; padding: 10px 4px; }
  .ndfvtc-input, .ndfvtc-select { font-size: 16px !important; } /* prevent iOS zoom */
  .ndfvtc-time-wrap { gap: 4px; }
  .ndfvtc-step-bar { padding: 20px 12px 16px; }
  .bk-steps { gap: 0; padding: .5rem .75rem; overflow-x: auto; }
  .ndfvtc-vehicle-price { font-size: 1.4rem; }
  .ndfvtc-mad-options { grid-template-columns: 1fr; }
  .ndfvtc-mad-actions { flex-direction: column; align-items: center; }
  .nav-btns { flex-direction: column; gap: .75rem; }
  .nav-btns .btn { width: 100%; justify-content: center; }

  /* Datepicker plein écran sur petit mobile */
  .ui-datepicker {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 340px !important;
    max-width: calc(100vw - 24px) !important;
    padding: 12px !important;
  }
  .ui-datepicker td a, .ui-datepicker td span {
    width: 38px !important;
    height: 38px !important;
    font-size: 14px !important;
  }
  .ui-datepicker th { font-size: 11px !important; padding: 6px 2px !important; }
  .ui-datepicker .ui-datepicker-title { font-size: 13px !important; }
  .ui-datepicker-title select { font-size: 13px !important; background: var(--dark-3) !important; color: #F0EDE3 !important; border: 1px solid rgba(191,155,48,.3) !important; border-radius: 4px !important; padding: 2px 4px !important; }
}

/* iPhone SE / très petit (≤ 380px) */
@media (max-width: 380px) {
  .ndfvtc-tab-nav a { font-size: 9px; padding: 9px 3px; }
  .ui-datepicker { width: 300px !important; }
  .ui-datepicker td a, .ui-datepicker td span {
    width: 34px !important;
    height: 34px !important;
    font-size: 13px !important;
  }
}

/* ── Prix non calculé (clé API manquante) ── */
.ndfvtc-price-unknown { background: rgba(255,193,7,.08); border: 1px solid rgba(255,193,7,.3); border-radius: 4px; padding: .5rem .75rem; }
.ndfvtc-price-devis   { font-family: var(--fh, sans-serif); font-weight: 700; font-size: .9rem; color: #f39c12; }

/* ══ MAD — Sur devis block ══════════════════════════════════════════════════ */
.ndfvtc-mad-devis {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg2, #1a1a16);
  border: 1px solid rgba(191,155,48,.2);
  border-top: 3px solid var(--gold, #BF9B30);
  border-radius: 6px;
}
.ndfvtc-mad-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.ndfvtc-mad-devis h3 {
  font-family: var(--fh, sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold, #BF9B30);
  margin-bottom: .75rem;
}
.ndfvtc-mad-devis > p {
  font-size: .85rem;
  color: var(--tx2, #aaa);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}
.ndfvtc-mad-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1.5rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.ndfvtc-mad-opt {
  background: rgba(191,155,48,.08);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: 4px;
  padding: .6rem .8rem;
  font-size: .78rem;
  color: var(--tx, #fff);
  text-align: left;
}
.ndfvtc-mad-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ndfvtc-btn-gold {
  background: linear-gradient(135deg,#9a7520,#BF9B30,#d4b44a);
  color: #050503 !important;
  border: 1px solid #BF9B30;
  padding: .75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all .3s;
}
.ndfvtc-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(191,155,48,.4); }
.ndfvtc-btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border: none;
  padding: .75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all .3s;
}
.ndfvtc-btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.ndfvtc-mad-note {
  font-size: .72rem !important;
  color: var(--tx3, #666) !important;
  margin: 0 !important;
}
@media(max-width:480px) {
  .ndfvtc-mad-options { grid-template-columns: 1fr; }
  .ndfvtc-mad-actions { flex-direction: column; align-items: center; }
}

/* ── MAD price rows ── */
.ndfvtc-mad-prices {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: .75rem 0 1.25rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.ndfvtc-mad-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(191,155,48,.08);
  border: 1px solid rgba(191,155,48,.2);
  border-radius: 4px;
  padding: .55rem 1rem;
  font-size: .82rem;
}
.ndfvtc-mad-price-row span { color: rgba(240,237,227,.8); }
.ndfvtc-mad-price-row strong { color: var(--gold, #BF9B30); font-family: var(--ff-head); }
