.lux-transfer-wrap { max-width: 920px; }

.lux-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.lux-field label { display: block; font-weight: 600; margin-bottom: 6px; }

.lux-field input, .lux-field select, .lux-field textarea { width: 100%; padding: 10px; box-sizing: border-box; }

.lux-subfield { margin-top: 8px; }
.lux-full { grid-column: 1 / -1; }

.lux-radio label { margin-right: 14px; font-weight: 500; }

.lux-btn { padding: 10px 16px; cursor: pointer; }

.lux-msg { margin-top: 10px; }

.lux-hint { margin-top: 6px; font-size: 0.9em; opacity: 0.85; }

.lux-price-box {
  border: 1px solid rgba(0,0,0,0.12);
  padding: 12px;
  border-radius: 10px;
}

.lux-price-line { display:flex; justify-content:space-between; align-items:center; padding: 4px 0; }
.lux-price-title { font-weight:600; }

.lux-hp { position: absolute; left: -99999px; top: -99999px; height: 0; width: 0; overflow: hidden; }

/* Wizard */
.lux-steps { display:flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.lux-step {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  font-weight: 600;
  opacity: 0.7;
}
.lux-step.active { opacity: 1; }

.lux-step-panel { display:none; }
.lux-step-panel.active { display:block; }

.lux-nav { display:flex; gap: 10px; align-items:center; }


/* Segmented control for Roundtrip */
.lux-seg {
  display: inline-flex;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0,0,0,0.02);
}

.lux-seg-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
}

.lux-seg-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lux-seg-opt span {
  display: inline-block;
}

.lux-seg-opt:has(input:checked) {
  background: rgba(0,0,0,0.08);
}

.lux-seg-opt + .lux-seg-opt {
  border-left: 1px solid rgba(0,0,0,0.12);
}


.lux-btn.is-disabled,
.lux-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.lux-seat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}

.lux-seat-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
}

.lux-seat-row input[type="number"] {
  width: 110px;
}
