/* Passenger call simulator — local v1 */

.map-float--sim-entry {
  top: var(--top-pad);
  left: var(--side-pad);
  max-width: min(calc(100% - 24px), 240px);
}

.sim-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(25, 113, 194, 0.22);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(243, 247, 252, 0.95) 100%);
  box-shadow: 0 6px 22px rgba(25, 113, 194, 0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.sim-entry:hover {
  border-color: rgba(25, 113, 194, 0.45);
  box-shadow: 0 8px 26px rgba(25, 113, 194, 0.2);
}

.sim-entry:active {
  transform: scale(0.98);
}

.sim-entry-text {
  flex: 1;
  min-width: 0;
}

.sim-entry-brand {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1.2;
}

.sim-entry-cta {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 2px;
}

.sim-entry-sub {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 2px;
}

.sim-entry-phone {
  flex-shrink: 0;
  width: 36px;
  height: 52px;
  border: 2px solid var(--text);
  border-radius: 8px;
  position: relative;
  background: #fff;
}

.sim-entry-phone::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: var(--muted);
  opacity: 0.5;
}

.sim-entry-phone::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
  opacity: 0.45;
}

.sim-dev-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 5px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: #c0392b;
  border-radius: 4px;
  vertical-align: middle;
}

.sim-ver-badge {
  display: inline-block;
  margin-left: 5px;
  padding: 1px 5px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #4a6278;
  background: rgba(74, 98, 120, 0.14);
  border-radius: 4px;
  vertical-align: middle;
}

.sim-ver-badge--phone {
  font-size: 0.62rem;
  margin-left: 4px;
  vertical-align: baseline;
}

/* Modal */

.sim-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15, 22, 32, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: sim-fade-in 0.2s ease;
}

.sim-backdrop.hidden {
  display: none !important;
}

@keyframes sim-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sim-dialog {
  position: relative;
  width: min(100%, 340px);
}

.sim-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  box-shadow: 0 2px 12px var(--shadow);
}

.sim-phone {
  background: #1a2332;
  border-radius: 28px;
  padding: 12px 10px 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.sim-phone-notch {
  width: 80px;
  height: 22px;
  margin: 0 auto 8px;
  background: #0d1219;
  border-radius: 0 0 14px 14px;
}

.sim-phone-screen {
  background: #f4f6f8;
  border-radius: 18px;
  min-height: 420px;
  max-height: min(68dvh, 520px);
  overflow-y: auto;
  padding: 12px 14px 20px;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.sim-app-bar {
  flex-shrink: 0;
  text-align: center;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.sim-app-bar-brand {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.sim-screen-centered {
  width: 100%;
  margin: auto 0;
  flex: 0 0 auto;
}

.sim-field-label--center {
  text-align: center;
  margin-top: 10px;
}

.sim-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sim-step-lead {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 14px;
}

.sim-disclaimer {
  font-size: 0.78rem;
  line-height: 1.45;
  padding: 10px 12px;
  background: #e8eef5;
  border-radius: 10px;
  margin-bottom: 14px;
  border-left: 3px solid var(--accent);
}

.sim-field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 6px;
}

.sim-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
  margin-bottom: 12px;
}

.sim-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(25, 113, 194, 0.15);
}

.sim-btn {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: 12px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}

.sim-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sim-btn-primary {
  background: var(--accent);
  color: #fff;
}

.sim-btn-ghost {
  background: transparent;
  color: var(--accent);
  margin-top: 8px;
}

.sim-btn-secondary {
  background: #2d6a4f;
  color: #fff;
  margin-top: 4px;
}

.sim-route-summary {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.sim-route-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.4;
  margin-bottom: 6px;
}

.sim-route-k {
  flex: 0 0 auto;
  font-weight: 600;
  color: var(--muted);
  min-width: 3.2rem;
}

.sim-route-v {
  flex: 1;
  color: var(--text);
  font-weight: 600;
}

.sim-route-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  font-size: 0.76rem;
  color: var(--muted);
}

.sim-route-stat {
  flex: 1;
  min-width: 0;
}

.sim-route-stat--dist {
  text-align: left;
}

.sim-route-stat--eta {
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

.sim-route-stat--price {
  text-align: right;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.sim-criteria-body {
  padding-top: 4px;
}

.sim-radius-picker {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.sim-radius-opt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 4px 10px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.sim-radius-opt--on {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  background: #f0f6fc;
}

.sim-radius-hex {
  display: block;
  width: 100%;
  line-height: 0;
}

.sim-hex-icon {
  width: 100%;
  height: auto;
  display: block;
}

.sim-radius-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}

.sim-radius-opt--on .sim-radius-label {
  color: var(--accent);
}

.sim-pack-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.sim-pack-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 6px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.sim-pack-opt--on {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  background: #f0f6fc;
  color: var(--accent);
}

.sim-pack-xl {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sim-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.sim-chip {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.sim-chip--on {
  background: #e8f0fa;
  border-color: var(--accent);
  color: var(--accent);
}

.sim-info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.sim-info-box--compact {
  margin-bottom: 10px;
}

.sim-info-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
}

.sim-info-k {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.sim-demand-box {
  background: #e4eaf2;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.sim-demand-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}

.sim-price-note {
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--muted);
}

.sim-step-lead--sm {
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.sim-phone-map--pickup {
  height: 200px;
  margin-top: 4px;
}

.sim-btn-locate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 6px;
  padding: 11px 14px;
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  background: #fff;
  color: var(--accent);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}

.sim-btn-locate:hover:not(:disabled) {
  background: #f0f6fc;
}

.sim-btn-locate:disabled,
.sim-locate-btn--busy {
  opacity: 0.65;
  cursor: wait;
}

.sim-locate-pin {
  font-size: 1.1rem;
  line-height: 1;
}

.sim-input--compact {
  margin-bottom: 6px;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.sim-pickup-pin-hint {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 8px 0 12px;
  text-align: center;
}

.sim-phone-map {
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  background: #dde4ec;
  z-index: 0;
}

.sim-phone-map .leaflet-control-zoom {
  border: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.sim-you-marker {
  background: none;
  border: none;
}

.sim-you-dot {
  display: block;
  width: 18px;
  height: 18px;
  margin: 2px;
  border-radius: 50%;
  background: #1971c2;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.sim-pickup-status {
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.35;
}

.sim-pickup-confirmed {
  padding: 12px 14px;
  background: #e8f0fa;
  border: 1px solid #b8cfe8;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 14px;
  color: var(--text);
}

.sim-confirm-spinner {
  width: 32px;
  height: 32px;
  margin: 24px auto;
  border: 3px solid #d0dae6;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: sim-spin 0.8s linear infinite;
}

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

.sim-robot-list {
  text-align: left;
  margin: 16px 0;
}

.sim-robot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  opacity: 0.45;
}

.sim-robot--active {
  opacity: 1;
  border-color: var(--accent);
  background: #f0f6fc;
}

.sim-robot--done {
  opacity: 1;
  border-color: #2d6a4f;
  background: #eef6f0;
}

.sim-robot-n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sim-robot--done .sim-robot-n {
  background: #2d6a4f;
}

.sim-autocomplete {
  position: relative;
  margin-bottom: 8px;
}

.sim-autocomplete .sim-input {
  margin-bottom: 0;
}

.sim-suggest-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px var(--shadow);
}

.sim-suggest-item {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--text);
}

.sim-suggest-item:hover,
.sim-suggest-item:focus {
  background: #f0f6fc;
  outline: none;
}

.sim-suggest-hint {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 10px;
  min-height: 1em;
}

.sim-empty {
  padding: 16px;
  background: #fff3e0;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  line-height: 1.45;
}

.sim-searching {
  text-align: center;
  padding: 32px 12px;
}

.sim-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border: 3px solid #dde4ec;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: sim-spin 0.8s linear infinite;
}

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

.sim-car-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 4px;
  padding: 0 0 4px;
}

.sim-zone-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.sim-zone-sheet {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sim-zone-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  background: #f8fafc;
}

.sim-zone-head::-webkit-details-marker {
  display: none;
}

.sim-zone-head::after {
  content: "▾";
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
  transition: transform 0.15s;
}

.sim-zone-sheet:not([open]) .sim-zone-head::after {
  transform: rotate(-90deg);
}

.sim-zone-hex {
  flex: 0 0 44px;
  width: 44px;
}

.sim-zone-hex .sim-hex-icon {
  width: 44px;
  height: 38px;
}

.sim-zone-title {
  flex: 1;
  line-height: 1.3;
}

.sim-zone-count {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.sim-zone-empty {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 8px 12px 12px;
  margin: 0;
}

.sim-driver-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  margin: 0 8px 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  width: calc(100% - 16px);
  transition: border-color 0.15s, background 0.15s;
}

.sim-driver-card:hover {
  border-color: var(--accent);
  background: #f0f6fc;
}

.sim-driver-name {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.sim-driver-car {
  font-size: 0.76rem;
  color: var(--text);
  margin-top: 2px;
}

.sim-driver-class {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.sim-driver-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.sim-driver-eta {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent);
  white-space: nowrap;
}

.sim-driver-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.sim-offers-lead {
  text-align: center;
}

.sim-offers .sim-step-title {
  text-align: center;
}

.sim-car-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  width: 100%;
  transition: border-color 0.15s, background 0.15s;
}

.sim-car-card:hover {
  border-color: var(--accent);
  background: #f0f6fc;
}

.sim-car-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}

.sim-car-eta {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  white-space: nowrap;
}

.sim-price-band {
  padding: 12px 14px;
  background: #e8f4e8;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.sim-price-band strong {
  font-size: 1.05rem;
}

.sim-done-icon {
  font-size: 2.5rem;
  text-align: center;
  margin: 12px 0;
}

.sim-done-screen {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  width: 100%;
}

.sim-done-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sim-done-check {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2d6a4f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(45, 106, 79, 0.35);
}

.sim-done-trace {
  flex: 1;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d0d8e2;
  background: #eef1f5;
}

.sim-done-trace-svg {
  display: block;
  width: 100%;
  height: 38px;
}

.sim-done-close {
  flex-shrink: 0;
  margin-top: 4px;
}

.sim-booking-card {
  padding: 0;
  background: #fff;
  border: 1px solid #d8e2ee;
  border-radius: 16px;
  text-align: left;
  flex: 1 1 auto;
  min-height: 0;
  box-shadow: 0 6px 18px rgba(26, 42, 58, 0.07);
}

.sim-booking-hero {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: linear-gradient(135deg, #eef4fb 0%, #f8fbff 100%);
  border-bottom: 1px solid #e4ebf3;
}

.sim-driver-avatar {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #6a9fd8 0%, #4a7fb8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(74, 127, 184, 0.35);
}

.sim-driver-avatar-initials {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.sim-driver-avatar-smile {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e4ebf3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  line-height: 1;
  color: #f5a623;
}

.sim-booking-identity {
  min-width: 0;
  flex: 1;
}

.sim-booking-stats {
  font-weight: 700;
  font-size: 0.84rem;
  line-height: 1.35;
  color: #1a1a1a;
  word-break: break-word;
}

.sim-driver-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2d6a4f;
  background: #e8f5ee;
  border: 1px solid #b7dfc8;
}

.sim-booking-facts {
  list-style: none;
  margin: 0;
  padding: 10px 12px 0;
}

.sim-booking-facts li {
  font-size: 0.84rem;
  line-height: 1.4;
  color: #334155;
  padding: 5px 0;
  border-bottom: 1px dashed #e8edf3;
}

.sim-booking-facts li:last-child {
  border-bottom: none;
}

.sim-booking-fare {
  font-size: 0.95rem !important;
  font-weight: 700;
  color: #1a1a1a !important;
  padding-top: 10px !important;
}

.sim-booking-vehicle {
  margin: 6px 12px 10px;
  padding: 8px 10px;
  background: #f4f7fb;
  border-radius: 10px;
}

.sim-booking-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.sim-booking-eta {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
}

.sim-booking-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: #1a1a1a;
}

.sim-booking-trip {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0 0 10px;
  color: #1a1a1a;
}

.sim-booking-driver {
  font-weight: 700;
  font-size: 0.92rem;
}

.sim-booking-car {
  font-size: 0.85rem;
  font-weight: 600;
}

.sim-booking-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

.sim-contact-row {
  padding: 0 12px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sim-btn-contact {
  text-align: center;
  text-decoration: none;
  font-size: 0.82rem;
  padding: 10px 8px;
}

.sim-contact-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 14px 14px;
  line-height: 1.35;
}

.sim-map-hint {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 640px) {
  .map-float--sim-entry {
    top: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: var(--side-pad);
    right: auto;
    max-width: min(calc(100% - var(--side-pad) - var(--side-pad-r) - 128px), 260px);
    z-index: 420;
  }
}

@media (max-width: 480px) {
  .map-float--sim-entry {
    max-width: min(calc(100% - var(--side-pad) - var(--side-pad-r) - 120px), 240px);
  }

  .sim-entry-sub {
    display: block;
    font-size: 0.6rem;
  }

  .sim-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .sim-dialog {
    width: 100%;
    max-height: 96dvh;
  }

  .sim-close {
    top: 8px;
    right: 12px;
    z-index: 2;
  }

  .sim-phone {
    border-radius: 20px 20px 0 0;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}
