* { box-sizing: border-box; }

.step-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: background 0.3s;
}
.step-dot.active { background: #F59E0B; }
.step-dot.done { background: #10B981; }

.payment-option,
.booking-type { cursor: pointer; transition: all 0.2s; }

input, button { -webkit-tap-highlight-color: transparent; }

#fare-breakdown.hidden { display: none !important; }

.field-error {
  display: block;
  color: #EF4444;
  font-size: 0.75rem;
  margin-top: 2px;
  min-height: 1rem;
}

.field-error:empty { display: none; }

@media (max-width: 380px) {
  .grid-cols-2 { gap: 0.5rem; }
  .grid-cols-3 { gap: 0.3rem; }
  .p-3 { padding: 0.6rem; }
}