/* ============================================================
   BEGAN TUR — RESERVATION.CSS  (Modal + 8-step form)
   ============================================================ */

/* ---- Overlay ---- */
.reservation-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  animation: overlayFadeIn .25s ease;
}
.reservation-overlay.open {
  display: flex;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- Container ---- */
.reservation-container {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  animation: modalSlideIn .3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Close button ---- */
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,.07);
  color: #475569;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, transform .2s;
}
.modal-close:hover {
  background: #f97316;
  color: #fff;
  transform: rotate(90deg);
}

/* ---- Modal header ---- */
.modal-header {
  background: #0f172a;
  padding: 20px 56px 0 24px;
  flex-shrink: 0;
}
.modal-header h2 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

/* ---- Progress bar ---- */
.progress-bar {
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.progress-bar::-webkit-scrollbar { display: none; }

.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: 16px;
  min-width: max-content;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: #334155;
  color: #94a3b8;
  border: 2px solid #475569;
  transition: all .25s ease;
}

.step-item.active .step-circle {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(249,115,22,.25);
}

.step-item.completed .step-circle {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

.step-label {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.step-item.active .step-label   { color: #fdba74; }
.step-item.completed .step-label { color: #4ade80; }

.step-line {
  height: 2px;
  width: 20px;
  background: #334155;
  flex-shrink: 0;
  margin-bottom: 14px;
  transition: background .25s ease;
}
.step-line.completed { background: #22c55e; }

/* ---- Modal body (scrollable) ---- */
.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  scroll-behavior: smooth;
}
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

/* ---- Step content ---- */
.step-content {}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

/* ---- Choice cards (Trip type & Vehicle) ---- */
.choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
}
.choice-card {
  position: relative;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 18px;
  cursor: pointer;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, background .2s;
  background: #f8fafc;
}
.choice-card:hover {
  border-color: #f97316;
  background: #fff7ed;
}
.choice-card.selected {
  border-color: #f97316;
  background: #fff7ed;
  box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
.choice-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.choice-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.choice-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}
.choice-card small { color: #f97316; font-weight: 600; }
.choice-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ---- Tab bar (district / map) ---- */
.tab-bar {
  display: flex;
  gap: 0;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 3px;
  margin-bottom: 18px;
}
.tab-btn {
  flex: 1;
  padding: 9px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.tab-btn.active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.tab-btn:hover:not(.active) { color: #0f172a; }

.tab-panel { }
.tab-panel.hidden { display: none; }

.map-placeholder {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder-inner {
  text-align: center;
  color: #94a3b8;
}
.map-placeholder-inner > :first-child { font-size: 40px; margin-bottom: 12px; display: block; }
.map-placeholder-inner p { font-size: 15px; font-weight: 600; color: #475569; margin-bottom: 4px; }
.map-placeholder-inner small { font-size: 13px; color: #94a3b8; }

/* ---- Form elements ---- */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 7px;
}
.optional {
  font-weight: 400;
  color: #94a3b8;
  font-size: 12px;
  margin-left: 4px;
}
.form-input, .form-select, .form-textarea {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  color: #0f172a;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
  appearance: auto;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-textarea {
  min-height: 90px;
  resize: vertical;
}
.form-hint {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 5px;
}
.selected-location {
  margin-top: 10px;
  font-size: 14px;
  color: #334155;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 8px 12px;
}
.selected-location strong { color: #16a34a; }

/* ---- Vehicle cards ---- */
.vehicle-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.vehicle-card {
  position: relative;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  background: #f8fafc;
}
.vehicle-card:hover { border-color: #f97316; }
.vehicle-card.selected {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
.vehicle-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.vehicle-info {
  padding: 12px 14px 14px;
}
.vehicle-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}
.vehicle-info p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 10px;
}
.vehicle-features {
  list-style: none;
  padding: 0;
}
.vehicle-features li {
  font-size: 12px;
  color: #475569;
  padding: 2px 0;
}

/* ---- Counter input ---- */
.counter-input {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.counter-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #475569;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
  line-height: 1;
}
.counter-btn:hover:not(:disabled) { background: #f97316; color: #fff; }
.counter-btn:disabled { opacity: .35; cursor: not-allowed; }
.counter-value {
  min-width: 52px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  padding: 0 8px;
  background: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #e2e8f0;
  border-right: 2px solid #e2e8f0;
}

/* ---- Checkbox ---- */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #f97316;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.checkbox-label a { color: #f97316; text-decoration: underline; }
.checkbox-label a:hover { color: #ea6c0a; }

/* ---- Alert box ---- */
.alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.alert-warning {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  color: #92400e;
}
.alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ---- Airport rules box ---- */
.airport-rules-box {
  background: #1e40af;
  color: #fff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 22px;
}
.airport-rules-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #bfdbfe;
  letter-spacing: .02em;
}
.airport-rules-box > p:first-of-type {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
  line-height: 1.5;
}
.waiting-table { margin-bottom: 14px; }
.waiting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
}
.waiting-row:last-child { border-bottom: none; }
.waiting-row .time { color: rgba(255,255,255,.8); font-weight: 500; }
.waiting-row .fee { font-weight: 700; color: #fff; }
.waiting-row .fee.free { color: #86efac; }
.waiting-row .fee.danger { color: #fca5a5; }
.airport-note {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  background: rgba(249,115,22,.2);
  border: 1px solid rgba(249,115,22,.4);
  border-radius: 8px;
  padding: 10px 12px;
}
.airport-note strong { color: #fdba74; }

/* ---- Summary (step 8) ---- */
.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.summary-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
}
.summary-card.full-width { grid-column: 1 / -1; }
.summary-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.summary-value {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

/* ---- Price box ---- */
.price-box {
  border: 2px solid #f97316;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  background: #fff7ed;
  margin-bottom: 20px;
}
.price-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #c2410c;
  margin-bottom: 10px;
}
.price-value {
  font-size: 32px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.price-note {
  font-size: 13px;
  color: #64748b;
}

/* ---- Confirm button ---- */
.btn-confirm {
  display: block;
  width: 100%;
  padding: 15px;
  background: #f97316;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-align: center;
}
.btn-confirm:hover {
  background: #ea6c0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.4);
}

/* ---- Step error ---- */
.step-error {
  width: 100%;
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #991b1b;
  margin-bottom: 8px;
  animation: shake .35s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-6px); }
  75%       { transform: translateX(6px); }
}

/* ---- Modal footer ---- */
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 8px;
}
.modal-footer .btn-outline,
.modal-footer .btn-primary {
  padding: 10px 20px;
  font-size: 14px;
  min-width: 90px;
  justify-content: center;
}
.modal-footer .btn-prev { min-width: 90px; }
.modal-footer .btn-next { min-width: 90px; }

.step-indicator {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  flex: 1;
}

/* ---- Harita ---- */
.map-tab-content { padding: 4px 0 8px; }
.map-help {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.map-canvas {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.map-selected-info {
  margin-top: 10px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}
.map-pin-icon { font-size: 16px; flex-shrink: 0; }

/* ---- Fiyat ekranı ---- */
.price-display {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  border: 2px solid #f97316;
  border-radius: 14px;
  padding: 22px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.price-distance {
  color: #475569;
  font-size: 14px;
  margin-bottom: 6px;
}
.price-note {
  color: #475569;
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 600;
}
.price-amount {
  font-size: 42px;
  font-weight: 800;
  color: #f97316;
  margin: 10px 0;
  line-height: 1;
}
.price-amount small {
  font-size: 18px;
  color: #64748b;
  font-weight: 600;
}
.price-extra {
  color: #475569;
  font-size: 13px;
  margin-top: 6px;
}
.price-disclaimer {
  background: #fef3c7;
  color: #78350f;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  margin-top: 12px;
}
.price-over-limit {
  background: #fef2f2;
  border: 2px solid #ef4444;
  color: #991b1b;
  padding: 20px;
  border-radius: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.6;
}
.price-error {
  color: #991b1b;
  padding: 14px 16px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.loading-spinner {
  color: #c2410c;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .reservation-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .reservation-container {
    max-width: 100%;
    max-height: 95svh;
    border-radius: 20px 20px 0 0;
    animation: modalSlideUp .3s cubic-bezier(0.34,1.56,0.64,1);
  }
  @keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(100%); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .choice-cards  { grid-template-columns: 1fr; }
  .vehicle-cards { grid-template-columns: 1fr; }
  .summary-grid  { grid-template-columns: 1fr; }

  .modal-body { padding: 18px; }
  .modal-header { padding: 16px 48px 0 18px; }

  .modal-footer {
    padding: 12px 14px;
    gap: 6px;
  }
  .modal-footer .btn-outline,
  .modal-footer .btn-primary {
    padding: 9px 14px;
    font-size: 13px;
    min-width: 70px;
  }
  .step-indicator { font-size: 12px; }

  .step-line { width: 14px; }
}

/* ============================================================
   AŞAMA C-2 — YENİ BİLEŞENLER
   ============================================================ */

/* ---- Geniş container (Sayfa 3) ---- */
.reservation-container.rs-wide {
  max-width: 880px;
}

/* ---- Özet şerit (Sayfa 2 üstü) ---- */
.rs-summary-bar {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.rs-sb-route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.rs-sb-loc {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rs-sb-arrow {
  color: #f97316;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.rs-sb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
  align-items: center;
}
.rs-sb-dot { color: #cbd5e1; }
.rs-sb-loading { color: #94a3b8; font-style: italic; }

/* ---- Araç kartı yeni elementler ---- */
.vc-recommended {
  border-color: #f97316 !important;
  box-shadow: 0 0 0 3px rgba(249,115,22,.15) !important;
}
.vc-disabled {
  opacity: .45;
  cursor: not-allowed !important;
  pointer-events: none;
}
.vc-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f97316;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.vc-price {
  font-size: 22px;
  font-weight: 800;
  color: #f97316;
  margin: 10px 0 8px;
  line-height: 1;
}
.vc-price-loading { font-size: 18px; color: #94a3b8; margin: 10px 0 8px; }
.vc-price-call    { font-size: 13px; color: #ef4444; font-weight: 700; margin: 10px 0 8px; }
.vc-cap-warn {
  font-size: 12px;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: 8px;
  font-weight: 600;
}
.vc-select-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 9px 0;
  background: #f97316;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
}
.vc-select-btn:hover { background: #ea6c0a; }
.vc-select-btn.selected { background: #22c55e; }

/* ---- Bizi arayın kutusu (>11 yolcu) ---- */
.rs-call-box {
  text-align: center;
  background: #fef2f2;
  border: 2px solid #fca5a5;
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 20px;
}
.rs-call-icon { font-size: 32px; margin-bottom: 10px; }
.rs-call-title { font-size: 16px; font-weight: 700; color: #991b1b; margin-bottom: 6px; }
.rs-call-sub   { font-size: 14px; color: #b91c1c; margin-bottom: 14px; line-height: 1.5; }
.rs-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s;
}
.rs-wa-btn:hover { background: #1fba57; color: #fff; }

/* ---- Sayfa 3 izgara düzeni ---- */
.rs-page3-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}

/* ---- Onay özet kutusu ---- */
.rs-confirm-summary {
  background: #0f172a;
  color: #fff;
  border-radius: 16px;
  padding: 22px;
  position: sticky;
  top: 0;
}
.rs-cs-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
}
.rs-cs-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.rs-cs-loc {
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rs-cs-arrow { color: #f97316; font-weight: 800; flex-shrink: 0; }
.rs-cs-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 12px 0;
}
.rs-cs-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  min-height: 24px;
}
.rs-cs-line span  { color: rgba(255,255,255,.55); }
.rs-cs-line strong { color: #fff; font-weight: 600; text-align: right; }
.rs-cs-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 4px;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
.rs-cs-total-val {
  font-size: 24px;
  font-weight: 800;
  color: #f97316;
}
.rs-cs-note {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-top: 12px;
  line-height: 1.5;
}

/* ---- Onay formu ---- */
.rs-confirm-form { /* form natural width */ }

/* ---- Mobile: Sayfa 3 ---- */
@media (max-width: 640px) {
  .rs-page3-grid {
    grid-template-columns: 1fr;
  }
  .rs-page3-grid > .rs-confirm-form    { order: 2; }
  .rs-page3-grid > .rs-confirm-summary { order: 1; position: static; }
  .rs-confirm-summary { border-radius: 12px; }
}

/* ---- Mobile: Sayfa 2 ---- */
@media (max-width: 600px) {
  .rs-summary-bar { padding: 10px 12px; }
  .rs-sb-route { font-size: 13px; }
}

/* ---- Sayfa 3: Fiyat gösterimi ---- */
.rs-price-strike {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.rs-price-main {
  font-size: 36px;
  font-weight: 700;
  color: #f97316;
  line-height: 1.1;
  margin-bottom: 6px;
}
.rs-price-discount-badge {
  font-size: 13px;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 8px;
}
.rs-price-child {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 4px;
}

/* ---- Sayfa 3: Uzun mesafe kutusu ---- */
.rs-long-dist-box {
  text-align: center;
  padding: 8px 0 4px;
}
.rs-ld-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.rs-ld-desc {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  margin-bottom: 16px;
}
.rs-ld-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}
.rs-ld-wa-btn:hover { background: #1fba57; color: #fff; }

/* ---- Çocuk koltuğu ipucu ---- */
.rs-child-hint {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 6px;
  margin-left: 2px;
}

/* ---- Toast animasyonu ---- */
@keyframes rsToastIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
