/* ============================================
   GABRIEL TOUR — Naceniť Online (Pricing Wizard)
   ============================================ */

/* ---- Page Layout ---- */

.pricing-page {
  min-height: 100vh;
  background: var(--color-midnight);
  padding-top: 80px;
  display: flex;
  flex-direction: column;
}

.pricing-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.pricing-bg video,
.pricing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

/* ---- Wizard Container ---- */

.wizard-wrapper {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-5);
  min-height: calc(100vh - 80px);
}

.wizard-container {
  width: 100%;
  max-width: 680px;
}

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

.wizard-progress {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  padding: 0 var(--space-2);
}

.wizard-progress__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  opacity: 0.35;
  transition: opacity var(--duration-normal) ease;
}

.wizard-progress__step.active,
.wizard-progress__step.completed {
  opacity: 1;
}

.wizard-progress__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all var(--duration-normal) ease;
}

.wizard-progress__step.active .wizard-progress__icon {
  background: var(--color-teal);
  border-color: var(--color-teal);
  box-shadow: 0 0 20px rgba(184, 154, 131, 0.4);
}

.wizard-progress__step.completed .wizard-progress__icon {
  background: var(--color-teal-dark);
  border-color: var(--color-teal);
}

.wizard-progress__icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.wizard-progress__step.active .wizard-progress__icon svg,
.wizard-progress__step.completed .wizard-progress__icon svg {
  color: var(--color-white);
}

.wizard-progress__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  white-space: nowrap;
  transition: color var(--duration-normal) ease;
}

.wizard-progress__step.active .wizard-progress__label {
  color: var(--color-white);
}

.wizard-progress__step.completed .wizard-progress__label {
  color: rgba(255, 255, 255, 0.7);
}

.wizard-progress__line {
  flex: 0.5;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 22px;
  transition: background var(--duration-normal) ease;
}

.wizard-progress__line.completed {
  background: var(--color-teal);
}

/* ---- Step Panel ---- */

.wizard-step {
  display: none;
  animation: wizardFadeIn 0.4s var(--ease-out);
}

.wizard-step.active {
  display: block;
}

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

.wizard-step__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.wizard-step__header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.wizard-step__header p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Counter Input ---- */

.counter-group {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
}

.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
}

.counter-row + .counter-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.counter-row__label {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-white);
  font-weight: 500;
}

.counter-row__sublabel {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.counter-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.counter-btn:hover:not(:disabled) {
  border-color: var(--color-teal);
  background: rgba(184, 154, 131, 0.15);
}

.counter-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.counter-btn svg {
  width: 18px;
  height: 18px;
}

.counter-value {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-white);
  min-width: 32px;
  text-align: center;
}

/* ---- Children Age Tags ---- */

.children-ages {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.children-ages__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-3);
}

.children-ages__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.child-age-input {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
}

.child-age-input span {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.child-age-input select {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-1) var(--space-1);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.child-age-input select option {
  background: var(--color-charcoal);
  color: var(--color-white);
}

/* ---- Date Inputs ---- */

.date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

@media (max-width: 480px) {
  .date-grid {
    grid-template-columns: 1fr;
  }
}

.date-field {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
}

.date-field label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.date-field input[type="date"] {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  padding: var(--space-1) 0;
}

.date-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
  cursor: pointer;
}

/* ---- Nights Counter (inside step 2) ---- */

.nights-field {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nights-field__label {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-white);
  font-weight: 500;
}

/* ---- Multi-Select Cards ---- */

.select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .select-grid--rooms {
    grid-template-columns: repeat(3, 1fr);
  }
}

.select-card {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.select-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.select-card.selected {
  border-color: var(--color-teal);
  background: rgba(184, 154, 131, 0.1);
  box-shadow: 0 0 20px rgba(184, 154, 131, 0.15);
}

.select-card__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--duration-fast) ease;
}

.select-card.selected .select-card__check {
  opacity: 1;
  transform: scale(1);
}

.select-card__check svg {
  width: 14px;
  height: 14px;
  color: var(--color-white);
}

.select-card__icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-2);
}

.select-card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.select-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

/* ---- Radio Cards (single select for airport) ---- */

.radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.radio-card {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.radio-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.radio-card.selected {
  border-color: var(--color-teal);
  background: rgba(184, 154, 131, 0.1);
}

.radio-card__dot {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) ease;
}

.radio-card.selected .radio-card__dot {
  border-color: var(--color-teal);
}

.radio-card__dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-teal);
  opacity: 0;
  transform: scale(0);
  transition: all var(--duration-fast) ease;
}

.radio-card.selected .radio-card__dot::after {
  opacity: 1;
  transform: scale(1);
}

.radio-card__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-white);
}

.radio-card__code {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  margin-left: var(--space-2);
}

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

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
  gap: var(--space-4);
}

.wizard-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.wizard-btn svg {
  width: 18px;
  height: 18px;
}

.wizard-btn--back {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.wizard-btn--back:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.wizard-btn--next {
  background: var(--color-teal);
  border: 1px solid var(--color-teal);
  color: var(--color-white);
  margin-left: auto;
}

.wizard-btn--next:hover {
  background: var(--color-teal-light);
  border-color: var(--color-teal-light);
  transform: translateX(2px);
}

.wizard-btn--next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* ---- Results Page ---- */

.results-container {
  max-width: 800px;
  width: 100%;
}

.results-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.results-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.results-header p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Summary Bar ---- */

.results-summary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-6);
}

.results-summary__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.results-summary__tag svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

/* ---- Price Table ---- */

.price-table-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: var(--space-6);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.price-table thead th {
  padding: var(--space-4) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.price-table thead th:first-child {
  text-align: left;
  padding-left: var(--space-6);
}

.price-table tbody td {
  padding: var(--space-4);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  font-size: var(--text-base);
}

.price-table tbody td:first-child {
  text-align: left;
  padding-left: var(--space-6);
  font-weight: 500;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.price-cell[data-room] {
  cursor: pointer;
  position: relative;
  transition: all var(--duration-fast) ease;
}

.price-cell[data-room]:hover {
  background: rgba(184, 154, 131, 0.08);
}

.price-cell.selected {
  background: rgba(184, 154, 131, 0.12);
  box-shadow: inset 0 0 0 2px var(--color-gold);
}

.price-cell__inner {
  position: relative;
}

.price-cell__check {
  position: absolute;
  top: -6px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--duration-fast) ease;
}

.price-cell.selected .price-cell__check {
  opacity: 1;
  transform: scale(1);
}

.price-cell__check svg {
  width: 12px;
  height: 12px;
  color: var(--color-white);
}

.price-cell__amount {
  font-weight: 600;
  color: var(--color-teal-light);
  font-size: var(--text-base);
}

.price-cell__note {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  margin-top: 2px;
}

.price-table__note {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

/* ---- Flight Card ---- */

.flight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
}

.flight-card__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.flight-card__routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

@media (max-width: 480px) {
  .flight-card__routes {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.flight-route__label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.flight-route__cities {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.flight-route__details {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ---- Stripe Button ---- */

.stripe-section {
  text-align: center;
  padding: var(--space-6) 0;
}

.stripe-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-10);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-midnight);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: 0 4px 20px rgba(184, 154, 131, 0.3);
}

.stripe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 154, 131, 0.4);
}

.stripe-btn svg {
  width: 20px;
  height: 20px;
}

.stripe-section__note {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
}

.stripe-section__divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: var(--text-sm);
}

.stripe-section__divider::before,
.stripe-section__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-fallback {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--color-whatsapp);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-normal) ease;
}

.whatsapp-fallback:hover {
  background: rgba(37, 211, 102, 0.2);
}

.whatsapp-fallback svg {
  width: 20px;
  height: 20px;
}

/* ---- Edit Selections Link ---- */

.results-edit {
  text-align: center;
  margin-top: var(--space-4);
}

.results-edit a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color var(--duration-fast) ease;
}

.results-edit a:hover {
  color: var(--color-white);
}

/* ---- Price Table Intro ---- */

.price-table__intro {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-table__room-name {
  font-weight: 500;
}

/* ---- Flight Card: Multi-airport ---- */

.flight-card__airports {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.flight-airport-tag {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-white);
  font-weight: 500;
}

.flight-card__multi-note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ---- Offer Actions (after selection) ---- */

.offer-actions {
  background: rgba(184, 154, 131, 0.08);
  border: 1px solid rgba(184, 154, 131, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
  animation: wizardFadeIn 0.3s var(--ease-out);
}

.offer-actions__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-3);
}

.offer-actions__summary {
  margin-bottom: var(--space-5);
}

.offer-selected-tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-white);
  margin: var(--space-1);
}

.offer-actions__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-8);
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.order-btn:hover {
  background: rgba(184, 154, 131, 0.1);
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.order-btn svg {
  width: 20px;
  height: 20px;
}

/* ---- Results Divider ---- */

.results-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-4) 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: var(--text-sm);
  text-align: center;
}

.results-divider::before,
.results-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.results-container > .whatsapp-fallback {
  display: flex;
  margin: 0 auto;
}

/* ---- Order Form Overlay ---- */

.order-form-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(11, 22, 35, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  overflow-y: auto;
  animation: wizardFadeIn 0.3s var(--ease-out);
}

.order-form {
  background: var(--color-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  max-width: 520px;
  width: 100%;
}

.order-form h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--space-2);
}

.order-form > p {
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-6);
}

.order-form__selected {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-6);
}

.order-form__item {
  font-size: var(--text-sm);
  color: var(--color-gold-light);
  padding: var(--space-1) 0;
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--duration-fast) ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-6);
}

.form-actions .wizard-btn--back {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Confirmation ---- */

.order-confirmation {
  text-align: center;
}

.confirmation__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.confirmation__icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-success);
}

.order-confirmation h3 {
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.order-confirmation p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.confirmation__actions .stripe-btn {
  text-decoration: none;
}

/* ---- Responsive ---- */

@media (max-width: 640px) {
  .wizard-progress__label {
    display: none;
  }

  .wizard-progress__icon {
    width: 38px;
    height: 38px;
  }

  .wizard-progress__icon svg {
    width: 16px;
    height: 16px;
  }

  .select-grid {
    grid-template-columns: 1fr;
  }

  .select-grid--rooms {
    grid-template-columns: 1fr !important;
  }

  .price-table thead th,
  .price-table tbody td {
    padding: var(--space-3) var(--space-2);
    font-size: var(--text-sm);
  }

  .price-table thead th:first-child,
  .price-table tbody td:first-child {
    padding-left: var(--space-3);
  }
}
