/* ═══════════════════════════════════════════════════
           TAXI.PHP — Instant Transfer Booking
           Extends index.css tokens (--accent, --gold, radii, shadows, fonts)
           ═══════════════════════════════════════════════════ */

.taxi-page {
  padding-top: 96px;
  background: var(--bg-primary);
}

/* ─── Intro ─── */
.taxi-intro {
  padding: 36px 0 8px;
}

.taxi-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  margin-top: 8px;
  max-width: 700px;
}

.taxi-title em {
  font-style: italic;
  color: var(--accent-dark);
}

.taxi-sub {
  margin-top: 14px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.taxi-trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.taxi-trust-row .trust-badge {
  color: var(--text-secondary);
}

.taxi-trust-row .trust-badge i {
  color: var(--accent-dark);
}

/* ─── Toast ─── */
.taxi-toast {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  z-index: 1200;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s var(--ease-out);
}

.taxi-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.taxi-toast i {
  width: 15px;
  height: 15px;
  color: var(--accent-light);
}

/* ═══════════════════════════════════════════════════
           WIZARD SHELL
           ═══════════════════════════════════════════════════ */
.taxi-wizard-shell {
  display: grid;
  grid-template-columns: minmax(360px, 460px) 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 32px;
  padding-bottom: 90px;
}

.wizard-card {
  border-radius: var(--radius-xl);
  padding: 26px 26px 24px;
  position: relative;
  overflow: hidden;
}

/* progress dots */
.wizard-progress {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 26px;
}

.wizard-progress::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: rgba(10, 26, 20, 0.1);
  z-index: 0;
}

.wizard-progress-fill {
  position: absolute;
  top: 13px;
  left: 24px;
  height: 2px;
  background: var(--accent);
  z-index: 1;
  width: 0%;
  transition: width 0.5s var(--ease-out);
}

.wizard-progress-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.wp-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid rgba(10, 26, 20, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  transition: all 0.35s var(--ease-out);
}

.wp-num i {
  width: 12px;
  height: 12px;
}

.wp-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}

.wizard-progress-step.active .wp-num {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 4px var(--accent-subtle);
}

.wizard-progress-step.active .wp-label {
  color: var(--text-primary);
}

.wizard-progress-step.done .wp-num {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--accent-dark);
}

.wizard-progress-step.done .wp-label {
  color: var(--accent-dark);
}

/* steps */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeSlideUp 0.4s var(--ease-out) forwards;
}

.wizard-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.wizard-step-hint {
  font-size: 12.5px;
  color: var(--text-tertiary);
  margin-bottom: 18px;
}

/* trip type toggle */
.trip-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.trip-type-btn {
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(10, 26, 20, 0.1);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.trip-type-btn i {
  width: 13px;
  height: 13px;
}

.trip-type-btn[data-active="true"] {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.taxi-return-fields {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}

.taxi-return-fields.open {
  max-height: 200px;
}

.stop-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 12px;
}

.stop-toggle-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stop-toggle-label i {
  width: 14px;
  height: 14px;
  color: var(--accent-dark);
}

/* mini switch */
.mini-switch {
  width: 38px;
  height: 22px;
  border-radius: var(--radius-full);
  background: rgba(10, 26, 20, 0.15);
  position: relative;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.mini-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease-spring);
}

.mini-switch[data-on="true"] {
  background: var(--accent);
}

.mini-switch[data-on="true"]::after {
  transform: translateX(16px);
}

.taxi-stop-field {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}

.taxi-stop-field.open {
  max-height: 100px;
}

/* ═══════════════════════════════════════════════════
           STEP 2 — RIDE OPTIONS
           ═══════════════════════════════════════════════════ */
.ride-option-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ride-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(10, 26, 20, 0.08);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.ride-option:hover {
  border-color: var(--border-hover);
}

.ride-option[data-active="true"] {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 4px 18px var(--accent-glow);
}

.ride-option[data-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(0.4);
}

.ride-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-dark);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ride-option-icon i {
  width: 20px;
  height: 20px;
}

.ride-option-info {
  flex: 1;
  min-width: 0;
}

.ride-option-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.ride-option-tagline {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 1px;
}

.ride-option-meta {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
}

.ride-option-meta span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.ride-option-meta i {
  width: 11px;
  height: 11px;
}

.ride-option-price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.ride-option-price {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.ride-option-eta {
  font-size: 10px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-top: 2px;
}

.ride-option-note {
  font-size: 9.5px;
  color: var(--text-tertiary);
  margin-top: 2px;
  max-width: 90px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════
           STEP 3 — EXTRAS
           ═══════════════════════════════════════════════════ */
.extras-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px;
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
}

.extras-row:last-of-type {
  border-bottom: none;
}

.extras-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.extras-label i {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.extras-label small {
  display: block;
  font-size: 10.5px;
  font-weight: 400;
  color: var(--text-tertiary);
  margin-top: 1px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(10, 26, 20, 0.15);
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.qty-btn i {
  width: 12px;
  height: 12px;
}

.qty-val {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  min-width: 14px;
  text-align: center;
}

.taxi-textarea {
  width: 100%;
  margin-top: 10px;
  padding: 11px 14px;
  background: rgba(10, 26, 20, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 26, 20, 0.06);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text-primary);
  resize: vertical;
  min-height: 64px;
  outline: none;
  transition: all 0.3s ease;
}

.taxi-textarea:focus {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.taxi-flight-field {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}

.taxi-flight-field.open {
  max-height: 100px;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════
           STEP 4 — REVIEW
           ═══════════════════════════════════════════════════ */
.review-summary {
  background: rgba(10, 26, 20, 0.03);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.review-route {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.4;
}

.review-route i {
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin: 0 4px;
  color: var(--accent-dark);
}

.review-meta-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 11.5px;
  color: var(--text-secondary);
}

.review-meta-list span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-meta-list i {
  width: 13px;
  height: 13px;
  color: var(--accent-dark);
}

.fare-breakdown {
  margin-bottom: 14px;
}

.fare-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 7px 2px;
  font-size: 12.5px;
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--border-color);
}

.fare-row span:last-child {
  font-family: var(--font-mono);
  color: var(--text-primary);
  font-weight: 500;
}

.fare-row.fare-total {
  border-bottom: none;
  padding-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.fare-row.fare-total span:last-child {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 26, 20, 0.08);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pay-option:hover {
  border-color: var(--border-hover);
}

.pay-option input {
  accent-color: var(--accent);
}

.pay-option i {
  width: 15px;
  height: 15px;
  color: var(--accent-dark);
}

/* nav buttons */
.wizard-nav-btns {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.wizard-btn-back {
  flex: 0 0 auto;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 26, 20, 0.12);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.wizard-btn-back:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.wizard-btn-back i {
  width: 14px;
  height: 14px;
}

.wizard-btn-next {
  flex: 1;
  justify-content: center;
}

.wizard-btn-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.wizard-warn {
  font-size: 11.5px;
  color: #b8541f;
  margin-top: 8px;
  display: none;
  align-items: center;
  gap: 6px;
}

.wizard-warn.show {
  display: flex;
}

.wizard-warn i {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
           BOOKING OVERLAY (searching + driver found)
           ═══════════════════════════════════════════════════ */
.booking-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  color: var(--text-inverse);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  z-index: 5;
}

.booking-overlay.hidden {
  display: none;
}

.radar-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.radar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent-light);
  opacity: 0;
  animation: radarPulse 2.4s ease-out infinite;
}

.radar-ring:nth-child(2) {
  animation-delay: 0.8s;
}

.radar-ring:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes radarPulse {
  0% {
    transform: scale(0.4);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.radar-car {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--accent-glow);
  z-index: 2;
}

.radar-car i {
  width: 24px;
  height: 24px;
  color: var(--bg-dark);
}

.booking-status-text {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-inverse-muted);
  min-height: 18px;
  transition: opacity 0.3s ease;
}

.booking-headline {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 6px;
}

/* driver found card */
.driver-found {
  display: none;
  width: 100%;
  max-width: 380px;
}

.driver-found.show {
  display: block;
  animation: fadeSlideUp 0.5s var(--ease-out) forwards;
}

.driver-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
}

.driver-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.driver-name {
  font-weight: 600;
  font-size: 14.5px;
}

.driver-rating {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-light);
  margin-top: 2px;
}

.driver-vehicle {
  font-size: 11.5px;
  color: var(--text-inverse-muted);
  margin-top: 4px;
}

.driver-eta {
  margin-left: auto;
  text-align: center;
  flex-shrink: 0;
}

.driver-eta-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-light);
}

.driver-eta-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-inverse-muted);
}

/* trip timeline */
.trip-timeline {
  display: flex;
  justify-content: space-between;
  margin: 22px 0;
  position: relative;
}

.trip-timeline::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.tl-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-dot i {
  width: 10px;
  height: 10px;
  color: var(--bg-dark);
}

.tl-step.done .tl-dot {
  background: var(--accent);
  border-color: var(--accent);
}

.tl-step.active .tl-dot {
  border-color: var(--accent-light);
  animation: pulse 1.6s ease-in-out infinite;
}

.tl-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-inverse-muted);
  text-align: center;
}

.tl-step.active .tl-label,
.tl-step.done .tl-label {
  color: var(--text-inverse);
}

.driver-cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.driver-cta-row .result-cta {
  margin-top: 0;
}

.driver-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}

.driver-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.driver-cta-secondary i {
  width: 14px;
  height: 14px;
}

.driver-disclaimer {
  font-size: 10.5px;
  color: var(--text-inverse-muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
           MAP
           ═══════════════════════════════════════════════════ */
.taxi-map-wrap {
  position: sticky;
  top: 96px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 620px;
  box-shadow: var(--shadow-lg);
}

#taxi-map {
  width: 100%;
  height: 100%;
}

.map-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}

.map-chip-item {
  display: flex;
  flex-direction: column;
}

.map-chip-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.map-chip-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}

.map-fallback-note {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text-tertiary);
  font-size: 12.5px;
  text-align: center;
  padding: 30px;
}

.map-fallback-note.show {
  display: flex;
}

/* ═══════════════════════════════════════════════════
           MOBILE STICKY FARE BAR
           ═══════════════════════════════════════════════════ */
.mobile-fare-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 12px 18px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

.mobile-fare-price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
}

.mobile-fare-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-inverse-muted);
}

.mobile-fare-btn {
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 12.5px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════
           VALUE STRIP
           ═══════════════════════════════════════════════════ */
.taxi-values-section {
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.taxi-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.taxi-value-item {
  text-align: center;
  padding: 0 8px;
}

.taxi-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.taxi-value-icon i {
  width: 20px;
  height: 20px;
}

.taxi-value-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.taxi-value-desc {
  font-size: 11.5px;
  color: var(--text-tertiary);
  margin-top: 4px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .taxi-wizard-shell {
    grid-template-columns: 1fr;
  }

  .taxi-map-wrap {
    position: relative;
    top: 0;
    height: 340px;
    order: -1;
  }

  .taxi-values-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }
}

@media (max-width: 640px) {
  .taxi-page {
    padding-top: 84px;
  }

  .wizard-card {
    padding: 20px 18px 18px;
  }

  .wp-label {
    display: none;
  }

  .taxi-values-grid {
    grid-template-columns: 1fr;
  }

  .mobile-fare-bar {
    display: flex;
  }

  .taxi-wizard-shell {
    padding-bottom: 30px;
  }

  .map-chip {
    gap: 12px;
    padding: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .radar-ring,
  .tl-step.active .tl-dot {
    animation: none !important;
  }
}
