/* ============================================
   BOOKING WIZARD COMPONENT - ELITE LEVEL
   ============================================
   Performance-optimized modal with accessibility
   - GPU-accelerated animations
   - Focus trap and keyboard navigation
   - ARIA live regions for dynamic updates
   - Respects prefers-reduced-motion
   ============================================ */

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.success-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.success-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.success-modal.is-active .success-modal-content {
  transform: scale(1) translateY(0);
}

.success-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  animation: successIconPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successIconPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-modal-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 16px;
  line-height: 1.2;
}

.success-modal-message {
  font-size: 16px;
  color: var(--dark-grey);
  margin: 0 0 12px;
  line-height: 1.6;
}

.success-modal-note {
  font-size: 14px;
  color: var(--grey);
  margin: 0 0 32px;
  line-height: 1.5;
}

.success-modal-close {
  min-width: 200px;
}

@media (max-width: 768px) {
  .success-modal-content {
    padding: 40px 32px;
    max-width: 90%;
  }
  
  .success-modal-title {
    font-size: 24px;
  }
  
  .success-modal-message {
    font-size: 15px;
  }
  
  .success-modal-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-modal,
  .success-modal-content,
  .success-modal-icon {
    transition: none;
    animation: none;
  }
}

/* Google Places Autocomplete dropdown styling */
.pac-container {
  z-index: 10000 !important;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  font-family: inherit;
}

.pac-item {
  padding: 12px 16px;
  cursor: pointer;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.pac-item:first-child {
  border-top: none;
}

.pac-item:hover,
.pac-item-selected {
  background-color: rgba(255, 214, 38, 0.1);
}

.pac-item-query {
  font-size: 14px;
  color: var(--black);
}

.pac-matched {
  font-weight: 600;
  color: var(--black);
}

.pac-icon {
  margin-right: 8px;
}

/* CSS Custom Properties */
:root {
  --wizard-transition-duration: 0.3s;
  --wizard-transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --modal-backdrop: rgba(10, 10, 10, 0.7);
}

.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  /* Performance optimizations */
  will-change: opacity, visibility;
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Smooth transitions */
  transition: 
    opacity var(--wizard-transition-duration) var(--wizard-transition-timing),
    visibility var(--wizard-transition-duration) var(--wizard-transition-timing);
}

.booking-modal.is-active {
  display: flex;
  visibility: visible;
  opacity: 1;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .booking-modal {
    transition: none;
  }
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: var(--modal-backdrop);
  /* Performance optimization */
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: opacity var(--wizard-transition-duration) var(--wizard-transition-timing);
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal__overlay {
    transition: none;
  }
}

.booking-modal__dialog {
  position: relative;
  width: min(1100px, 95%);
  max-height: 90vh;
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  /* Performance optimizations */
  will-change: transform, opacity;
  transform: translateZ(0) scale(0.95);
  backface-visibility: hidden;
  transition: 
    transform var(--wizard-transition-duration) var(--wizard-transition-timing),
    opacity var(--wizard-transition-duration) var(--wizard-transition-timing);
}

.booking-modal.is-active .booking-modal__dialog {
  transform: translateZ(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal__dialog {
    transform: translateZ(0) scale(1);
    transition: none;
  }
  
  .booking-modal.is-active .booking-modal__dialog {
    transform: translateZ(0) scale(1);
  }
}

.booking-modal__dialog::-webkit-scrollbar {
  width: 8px;
}

.booking-modal__dialog::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

.booking-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--dark-grey);
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  /* Accessibility */
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal__close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.booking-modal__close:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.booking-modal__close:active {
  transform: scale(0.95);
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal__close {
    transition: none;
  }
  
  .booking-modal__close:active {
    transform: none;
  }
}

.wizard-header {
  margin-bottom: 18px;
}

.wizard-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--dark-grey);
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
  gap: 10px;
  font-weight: 600;
  color: var(--dark-grey);
}

.wizard-progress li {
  text-align: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--light-grey);
  font-size: 14px;
}

.wizard-progress li.active {
  background: var(--yellow);
  color: var(--black);
}

.wizard-layout {
  display: flex;
  gap: 24px;
}

.wizard-content {
  flex: 1;
  min-width: 0;
}

.wizard-sidebar {
  width: 280px;
}

.wizard-step {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  /* Performance optimization */
  will-change: opacity, transform;
  transition: 
    opacity var(--wizard-transition-duration) var(--wizard-transition-timing),
    transform var(--wizard-transition-duration) var(--wizard-transition-timing);
}

.wizard-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .wizard-step {
    transform: translateY(0);
    transition: none;
  }
  
  .wizard-step.active {
    transform: translateY(0);
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.category-card {
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  padding: 16px;
  background: var(--light-grey);
  font-weight: 600;
  cursor: pointer;
  /* Performance optimization */
  will-change: border-color, background-color, transform;
  transform: translateZ(0);
  transition: 
    border-color 0.2s var(--wizard-transition-timing),
    background-color 0.2s var(--wizard-transition-timing),
    transform 0.15s var(--wizard-transition-timing);
  /* Accessibility */
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Only show focus outline for keyboard navigation, not mouse clicks */
.category-card:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.category-card:focus:not(:focus-visible) {
  outline: none;
}

.category-card.selected {
  border-color: var(--yellow);
  background: rgba(255, 214, 38, 0.2);
  transform: translateY(0);
}

/* Ensure deselected cards return to default state */
.category-card:not(.selected) {
  border-color: var(--light-grey);
  background: var(--light-grey);
}

@media (prefers-reduced-motion: reduce) {
  .category-card {
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }
  
  .category-card:hover,
  .category-card.selected {
    transform: none;
  }
}

.item-sections {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0;
}

.item-section {
  border: 1px solid var(--light-grey);
  border-radius: 16px;
  padding: 18px;
  display: none;
}

.item-section.active {
  display: block;
}

.item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-grey);
}

.item-row:last-child {
  border-bottom: none;
}

.item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--light-grey);
  background: var(--light-grey);
  font-size: 18px;
  cursor: pointer;
}

.wizard-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.wizard-fields-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 900px) {
  .wizard-fields-row {
    grid-template-columns: 1fr 1fr;
  }
}

.wizard-fields input,
.wizard-fields select,
.wizard-fields textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--light-grey);
  background: var(--light-grey);
  font-size: 16px;
  font-family: inherit;
}

.wizard-fields .field-invalid,
.wizard-fields input.field-invalid,
.wizard-fields select.field-invalid,
.wizard-fields textarea.field-invalid {
  border-color: #d64545;
  background: rgba(214, 69, 69, 0.08);
}

.wizard-fields input,
.wizard-fields select {
  height: 52px;
}

.wizard-fields textarea {
  min-height: 120px;
  resize: vertical;
  overflow: hidden;
}

.wizard-fields select {
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23888' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-position: calc(100% - 16px) center;
  background-size: 12px 8px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
}

.pill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-option {
  border-radius: 999px;
  border: 1px solid var(--light-grey);
  padding: 8px 16px;
  background: var(--light-grey);
  cursor: pointer;
}

.pill-option.active {
  border-color: var(--yellow);
  background: rgba(255, 214, 38, 0.2);
}

.sidebar-sticky {
  position: sticky;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-box {
  border: 1px solid var(--light-grey);
  border-radius: 18px;
  padding: 20px;
  background: var(--light-grey);
}

.price-label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--dark-grey);
}

.price-value {
  font-size: 36px;
  font-weight: 800;
  margin: 8px 0;
  line-height: 1.2;
}

.price-vat {
  font-size: 12px;
  color: var(--dark-grey);
  font-weight: 500;
  margin-left: 4px;
  vertical-align: baseline;
}

.price-rut {
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 6px;
}

.rut-toggle {
  margin: 12px 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(26, 26, 26, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.rut-toggle label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
}

.rut-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid rgba(26, 26, 26, 0.3);
  accent-color: var(--yellow);
}

.price-breakdown {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  color: var(--dark-grey);
  font-size: 14px;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.wizard-error {
  color: #d64545;
  min-height: 0;
  margin-top: 12px;
  font-weight: 600;
  /* Accessibility - ARIA live region styling */
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  /* Hide when empty */
  display: none;
}

.wizard-error:not(:empty) {
  display: block;
  min-height: 18px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(214, 69, 69, 0.1);
  border-left: 3px solid #d64545;
}

/* Loading state */
.wizard-loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--light-grey);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .wizard-loading {
    animation: none;
  }
}

.summary-box {
  border: 1px solid var(--light-grey);
  border-radius: 16px;
  padding: 16px;
  margin-top: 16px;
  background: var(--light-grey);
  font-size: 14px;
}

.summary-box h4 {
  margin-bottom: 8px;
}

.terms-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--light-grey);
  background: rgba(26, 26, 26, 0.04);
  font-size: 14px;
}

.terms-box p {
  margin-bottom: 10px;
  color: var(--dark-grey);
}

.terms-box a {
  color: var(--black);
  font-weight: 600;
}

.checkbox {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.checkbox input[type="checkbox"] {
  margin-top: 0;
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  /* Prevent background scroll on mobile */
  touch-action: none;
  -webkit-overflow-scrolling: none;
}

html.modal-open {
  overflow: hidden;
  height: 100%;
}

@media (max-width: 900px) {
  .wizard-layout {
    flex-direction: column;
  }

  .wizard-sidebar {
    width: 100%;
  }

  .sidebar-sticky {
    position: static;
    gap: 16px;
  }

  .wizard-actions {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .booking-modal__dialog {
    width: min(95%, 100%);
    max-width: none;
    max-height: 85vh;
    height: auto;
    border-radius: 20px;
    padding: 20px 16px;
    margin: 20px auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
  }

  /* Header - clean and compact */
  .wizard-header {
    margin-bottom: 16px;
  }

  .wizard-header h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .wizard-header p {
    font-size: 13px;
    margin: 0;
    color: var(--dark-grey);
    line-height: 1.4;
  }

  /* Progress bar - compact but readable */
  .wizard-progress {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin: 16px 0 20px;
    padding: 0;
    font-size: 10px;
  }

  .wizard-progress li {
    padding: 8px 4px;
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Extra small screens - reduce font size further */
  @media (max-width: 400px) {
    .wizard-progress {
      gap: 3px;
      font-size: 9px;
    }

    .wizard-progress li {
      padding: 7px 3px;
      font-size: 9px;
    }
  }

  /* Layout - balanced spacing */
  .wizard-layout {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .wizard-content {
    min-width: 0;
    order: 1;
  }

  .wizard-sidebar {
    width: 100%;
    order: 2;
  }

  .sidebar-sticky {
    position: static;
    margin-bottom: 0;
    gap: 16px;
  }

  /* Step content - compact */
  .wizard-step {
    padding: 0;
  }

  .wizard-step h3 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1.3;
  }

  .wizard-step > p {
    font-size: 13px;
    margin-bottom: 14px;
    color: var(--dark-grey);
    line-height: 1.4;
  }

  /* Category Grid - Mobile - compact */
  .category-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 0;
  }

  .category-card {
    padding: 12px 14px;
    font-size: 14px;
    min-height: 44px;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  /* Item Sections - Mobile - compact */
  .item-sections {
    gap: 12px;
    margin: 0;
  }

  .item-section {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--light-grey);
  }

  .item-section h4 {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .item-row {
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .item-row:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .item-row > div:first-child {
    flex: 1;
    min-width: 0;
  }

  .item-name {
    font-size: 14px;
    margin-bottom: 2px;
    font-weight: 600;
  }

  .item-price {
    font-size: 12px;
    color: var(--dark-grey);
  }

  .item-qty {
    gap: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .qty-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .qty-value {
    font-size: 15px;
    min-width: 24px;
    text-align: center;
    font-weight: 600;
  }

  /* Wizard Fields - Mobile - compact */
  .wizard-fields {
    gap: 14px;
    margin-top: 0;
  }

  .wizard-fields-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wizard-fields label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: var(--black);
  }

  .wizard-fields input,
  .wizard-fields select,
  .wizard-fields textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .wizard-fields input,
  .wizard-fields select {
    height: 46px;
  }

  /* Date and time inputs - consistent styling on mobile */
  .wizard-fields input[type="date"],
  .wizard-fields input[type="time"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--light-grey);
    color: var(--black);
    font-family: inherit;
    position: relative;
  }

  /* iOS date/time picker styling */
  .wizard-fields input[type="date"]::-webkit-calendar-picker-indicator,
  .wizard-fields input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  /* Add custom calendar icon for date */
  .wizard-fields input[type="date"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234B4B4B' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    padding-right: 40px;
  }

  /* Add custom clock icon for time */
  .wizard-fields input[type="time"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234B4B4B' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    padding-right: 40px;
  }

  .wizard-fields textarea {
    min-height: 90px;
    padding: 12px;
    resize: vertical;
  }

  /* Pill Options - Mobile */
  .pill-options {
    gap: 8px;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .pill-option {
    padding: 12px 10px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    width: 100%;
  }

  /* Price Box - Mobile - compact sticky at bottom */
  .price-box {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--light-grey);
  }

  .price-label {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .price-value {
    font-size: 26px;
    margin: 4px 0;
    line-height: 1.2;
  }

  .price-vat {
    font-size: 10px;
  }

  .price-rut {
    font-size: 15px;
    margin: 6px 0 2px;
    font-weight: 700;
  }

  .price-note {
    font-size: 11px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 1.3;
  }

  .price-breakdown {
    font-size: 12px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  /* RUT Toggle - Mobile - compact */
  .rut-toggle {
    padding: 12px;
    margin: 0;
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.03);
  }

  .rut-toggle label {
    font-size: 13px;
    gap: 8px;
    line-height: 1.3;
  }

  .rut-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  /* Summary Box - Mobile - compact */
  .summary-box {
    padding: 12px;
    margin-top: 14px;
    font-size: 12px;
    border: 1px solid var(--light-grey);
    border-radius: 10px;
  }

  .summary-box h4 {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  /* Terms Box - Mobile - compact */
  .terms-box {
    padding: 12px;
    margin-top: 14px;
    font-size: 12px;
    border: 1px solid var(--light-grey);
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.02);
  }

  .terms-box p {
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--dark-grey);
  }

  .checkbox {
    font-size: 12px;
    gap: 10px;
    line-height: 1.4;
  }

  .checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* Wizard Actions - Mobile - clean buttons */
  .wizard-actions {
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--light-grey);
    flex-direction: column-reverse;
  }

  .wizard-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
    min-height: 48px;
    font-weight: 700;
    border-radius: 12px;
  }

  .wizard-error {
    font-size: 13px;
    margin-top: 12px;
  }

  .wizard-error:not(:empty) {
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 10px;
  }

  /* Close button - Mobile - in header */
  .booking-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    z-index: 10;
  }

}
