/* =============================================
   PRIMELUX BOOKING WIDGET - Styles
   ============================================= */

/* --- Reset & Base --- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: transparent;
  color: #c39b35;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: #c39b35; text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Header --- */

.bw-header {
  background: #c39b35;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.bw-header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bw-logo img {
  height: 36px;
  object-fit: contain;
}

.bw-header-contact a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.bw-header-contact a:hover {
  opacity: 1;
  text-decoration: none;
}

/* --- Progress Bar --- */

.bw-progress {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 24px;
}

.bw-progress-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bw-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bw-progress-step span {
  font-size: 11px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}

.bw-progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.bw-progress-dot.active {
  background: #c39b35;
  color: #fff;
}

.bw-progress-dot.completed {
  background: #c39b35;
  color: #fff;
}

.bw-progress-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 8px;
  margin-bottom: 22px;
  min-width: 30px;
  transition: background 0.3s ease;
}

.bw-progress-line.active {
  background: #c39b35;
}

/* --- Main --- */

.bw-main {
  flex: 1;
  padding: 32px 24px;
}

.bw-step {
  display: none;
}

.bw-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.bw-step-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bw-step-narrow {
  max-width: 500px;
}

.bw-step-wide {
  max-width: 960px;
}

/* --- Two Column Layout --- */

.bw-two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.bw-col-side {
  position: sticky;
  top: 20px;
}

/* --- Typography --- */

.bw-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #c39b35;
}

.bw-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 28px;
}

/* --- Booking Type Toggle --- */

.bw-type-toggle {
  display: flex;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}

.bw-type-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #6b7280;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bw-type-btn.active {
  background: #c39b35;
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.2);
}

.bw-type-btn:not(.active):hover {
  color: #c39b35;
}

/* --- Form Fields --- */

.bw-field-group {
  margin-bottom: 16px;
}

.bw-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.bw-input-wrap {
  position: relative;
}

.bw-input-icon .bw-input {
  padding-left: 42px;
}

.bw-input-icon-svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  z-index: 1;
}

.bw-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: #c39b35;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.bw-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bw-input::placeholder {
  color: #9ca3af;
}

.bw-input.input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
  display: block;
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  min-height: 16px;
}

.bw-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* --- Rows --- */

.bw-row {
  display: flex;
  gap: 12px;
}

.bw-half {
  flex: 1;
}

/* --- Stepper (Passagiere) --- */

.bw-stepper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bw-stepper-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 8px;
  background: #c39b35;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.bw-stepper-btn:hover {
  background: #a6832a;
}

.bw-stepper-btn:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}

.bw-stepper-value {
  font-size: 20px;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

/* --- Return Toggle --- */

.bw-return-toggle {
  width: 100%;
  padding: 14px 20px;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  background: transparent;
  color: #374151;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  transition: all 0.2s;
}

.bw-return-toggle:hover {
  border-color: #c39b35;
  color: #c39b35;
}

.bw-return-toggle.active {
  border-color: #c39b35;
  background: #f0f0ff;
  color: #c39b35;
}

.bw-return-fields {
  margin-bottom: 16px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* --- Buttons --- */

.bw-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  background: #c39b35;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.bw-btn-primary:hover {
  background: #a6832a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}

.bw-btn-primary:active {
  transform: translateY(0);
}

.bw-btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.bw-btn-full {
  width: 100%;
  margin-top: 8px;
}

.bw-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.bw-btn-secondary:hover {
  border-color: #c39b35;
  color: #c39b35;
}

/* --- Loading Overlay --- */

.bw-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9999;
}

.bw-loading-overlay.active {
  display: flex;
}

.bw-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #c39b35;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.bw-loading-overlay p {
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
}

/* --- Skeleton Loading --- */

.bw-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Card --- */

.bw-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
}

.bw-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #c39b35;
}

/* --- Vehicle Card (Schritt 2) --- */

.bw-vehicle-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.bw-vehicle-card:hover {
  border-color: #c39b35;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bw-vehicle-card.selected {
  border-color: #c39b35;
  background: #fffdf5;
}

.bw-vehicle-img {
  width: 96px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  background: #f9fafb;
  flex-shrink: 0;
}

.bw-vehicle-img-wrap {
  width: 96px;
  height: 68px;
  flex-shrink: 0;
}

.bw-vehicle-info {
  flex: 1;
  min-width: 0;
}

.bw-vehicle-name {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bw-vehicle-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.bw-vehicle-meta {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

.bw-vehicle-desc {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}

.bw-vehicle-price {
  text-align: right;
  flex-shrink: 0;
}

.bw-vehicle-price-amount {
  font-size: 18px;
  font-weight: 700;
  color: #c39b35;
}

.bw-vehicle-price-label {
  font-size: 11px;
  color: #9ca3af;
}

.bw-vehicle-price-old {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
}

/* --- Booking Summary (Rechte Spalte) --- */

.bw-summary {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}

.bw-summary-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.bw-summary-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

.bw-summary-route {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}

.bw-summary-route::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #d1d5db;
}

.bw-summary-point {
  position: relative;
  padding: 6px 0;
}

.bw-summary-point::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c39b35;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #c39b35;
}

.bw-summary-point:last-child::before {
  background: #f97316;
  box-shadow: 0 0 0 2px #f97316;
}

.bw-summary-point-address {
  font-size: 14px;
  font-weight: 500;
  color: #c39b35;
}

.bw-summary-point-time {
  font-size: 13px;
  color: #6b7280;
}

.bw-summary-point-meta {
  font-size: 12px;
  color: #9ca3af;
}

.bw-summary-divider {
  border: none;
  border-top: 1px solid #f3f4f6;
  margin: 16px 0;
}

.bw-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

.bw-summary-total-amount {
  font-size: 20px;
  font-weight: 700;
  color: #c39b35;
}

/* Trust Badges */

.bw-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.bw-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #6b7280;
  padding: 8px;
  background: #f9fafb;
  border-radius: 6px;
}

.bw-trust-badge svg {
  color: #c39b35;
  flex-shrink: 0;
}

/* Payment icons */

.bw-payment-icons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  opacity: 0.5;
}

.bw-payment-icons img {
  height: 20px;
}

/* --- Footer --- */

.bw-footer {
  background: #c39b35;
  color: #9ca3af;
  padding: 20px 24px;
  margin-top: auto;
}

.bw-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bw-footer p {
  font-size: 13px;
}

.bw-footer-links {
  display: flex;
  gap: 20px;
}

.bw-footer-links a {
  font-size: 13px;
  color: #9ca3af;
}

.bw-footer-links a:hover {
  color: #fff;
}

/* --- Navigation Buttons --- */

.bw-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
}

.bw-nav-choice {
  font-size: 14px;
  color: #6b7280;
}

.bw-nav-choice strong {
  color: #c39b35;
}

/* --- Upsell Card --- */

.bw-upsell {
  background: #fffdf5;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: all 0.2s;
}

.bw-upsell:hover {
  border-color: #c39b35;
}

.bw-upsell-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.bw-upsell-text {
  flex: 1;
}

.bw-upsell-title {
  font-size: 14px;
  font-weight: 600;
  color: #c39b35;
}

.bw-upsell-desc {
  font-size: 12px;
  color: #6b7280;
}

.bw-upsell-action {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c39b35;
  color: #fff;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

/* --- Extras Pills (Schritt 3) --- */

.bw-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.bw-pill {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  background: #fff;
  color: #374151;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.bw-pill:hover {
  border-color: #c39b35;
}

.bw-pill.active {
  background: #c39b35;
  color: #fff;
  border-color: #c39b35;
}

.bw-pill-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  margin-bottom: 0;
}

.bw-pill-content.open {
  max-height: 200px;
  margin-bottom: 16px;
}

/* --- Toggle Switch --- */

.bw-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.bw-toggle-label {
  font-size: 14px;
  font-weight: 500;
}

.bw-toggle-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bw-badge-free {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: #dcfce7;
  color: #166534;
}

.bw-badge-price {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: #fef3c7;
  color: #92400e;
}

.bw-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.bw-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.bw-switch-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.bw-switch-slider::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.bw-switch input:checked + .bw-switch-slider {
  background: #c39b35;
}

.bw-switch input:checked + .bw-switch-slider::before {
  transform: translateX(20px);
}

/* --- Payment Method Cards --- */

.bw-payment-option {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bw-payment-option:hover {
  border-color: #c39b35;
}

.bw-payment-option.selected {
  border-color: #c39b35;
  background: #fffdf5;
}

.bw-payment-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s;
}

.bw-payment-option.selected .bw-payment-radio {
  border-color: #c39b35;
}

.bw-payment-option.selected .bw-payment-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #c39b35;
  border-radius: 50%;
}

.bw-payment-info {
  flex: 1;
}

.bw-payment-title {
  font-size: 14px;
  font-weight: 600;
}

.bw-payment-desc {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

/* --- Confirmation (Schritt 4) --- */

.bw-confirm-center {
  text-align: center;
  padding: 40px 0;
}

.bw-confirm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.bw-confirm-icon svg {
  width: 80px;
  height: 80px;
}

.bw-confirm-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bw-confirm-text {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

.bw-confirm-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.bw-confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.bw-confirm-row-label {
  color: #6b7280;
}

.bw-confirm-row-value {
  font-weight: 500;
  text-align: right;
}

.bw-badge-paid {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  background: #dcfce7;
  color: #166534;
}

.bw-badge-pending {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  background: #fef3c7;
  color: #92400e;
}

.bw-confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.bw-confirm-contact {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 24px;
}

/* --- Map --- */

.bw-map-container {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  margin-bottom: 16px;
  position: relative;
}

.bw-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #9ca3af;
  font-size: 14px;
}

/* --- Section Titles (Step 3) --- */

.bw-section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #c39b35;
}

.bw-section-subtitle {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 20px;
  color: #374151;
}

/* --- Textarea --- */

.bw-textarea {
  height: auto;
  min-height: 80px;
  padding: 12px 16px;
  resize: vertical;
}

/* --- Phone Row --- */

.bw-phone-row {
  display: flex;
  gap: 8px;
}

.bw-phone-country {
  width: 110px;
  flex-shrink: 0;
}

.bw-phone-input {
  flex: 1;
}

/* --- Radio Card --- */

.bw-radio-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.bw-radio-card:has(input:checked) {
  border-color: #c39b35;
  background: #fffdf5;
}

.bw-radio-card input {
  accent-color: #c39b35;
}

/* --- Tooltip --- */

.bw-tooltip {
  cursor: help;
  font-size: 14px;
}

/* --- Error Box --- */

.bw-error-box {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
}

.bw-error-box p {
  margin-bottom: 16px;
}

/* --- Summary Extras --- */

.bw-summary-section-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bw-summary-edit {
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
}

.bw-summary-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #6b7280;
  padding: 3px 0;
}

/* --- Copy Button --- */

.bw-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  color: #6b7280;
  font-size: 12px;
}

.bw-copy-btn:hover {
  border-color: #c39b35;
  color: #c39b35;
}

/* --- Price Hint --- */

.bw-price-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #c39b35;
  margin-bottom: 16px;
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .bw-main {
    padding: 20px 10px;
  }

  .bw-two-col {
    grid-template-columns: 1fr;
  }

  .bw-col-side {
    position: static;
  }

  .bw-row {
    flex-direction: column;
    gap: 0;
  }

  .bw-half {
    flex: none;
  }

  .bw-title {
    font-size: 22px;
  }

  .bw-map-container {
    height: 200px;
  }

  .bw-vehicle-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .bw-vehicle-price {
    text-align: center;
  }

  .bw-footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .bw-progress-step span {
    font-size: 10px;
  }

  .bw-nav-row {
    flex-direction: column;
  }

  .bw-confirm-actions {
    flex-direction: column;
  }

  .bw-confirm-actions .bw-btn-primary,
  .bw-confirm-actions .bw-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .bw-header {
    padding: 0 16px;
  }

  .bw-progress {
    padding: 16px 12px;
  }

  .bw-progress-line {
    min-width: 16px;
  }
}

/* Quantity buttons for child seats */
.bw-qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #c39b35;
  background: #fff;
  color: #c39b35;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.bw-qty-btn:hover:not(:disabled) {
  background: #c39b35;
  color: #fff;
}
.bw-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
