/* Celestial Usher — guided booking wizard.
   Light, on-brand theme matched to the site (Arima headings, Roboto body,
   coral #E36955, white cards, soft shadow). Everything is scoped under
   .cu-booking-wrap so it never affects the rest of the site or the launcher. */

.cu-booking-wrap {
  --bk-ink:    #1E2436;
  --bk-body:   #636363;
  --bk-muted:  #9A9DA6;
  --bk-accent: #E36955;
  --bk-accent-soft: #FCE7E1;
  --bk-card:   #FFFFFF;
  --bk-line:   #ECECEC;
  --bk-line-2: #DDDDDD;
  --bk-shadow: 0 10px 60px rgba(0,0,0,0.10);
  --bk-shadow-sm: 0 6px 24px rgba(0,0,0,0.07);
  --bk-serif:  "Arima", Georgia, serif;
  --bk-sans:   "Roboto", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  font-family: var(--bk-sans);
  color: var(--bk-body);
  background: transparent;
  display: flex; justify-content: center;
  padding: clamp(16px, 3vw, 40px) 0;
}
.cu-booking-wrap *, .cu-booking-wrap *::before, .cu-booking-wrap *::after { box-sizing: border-box; }

.cu-booking-wrap .cu-bk-panel {
  position: relative; width: 100%; max-width: 680px;
  background: var(--bk-card); border: 1px solid var(--bk-line);
  border-radius: 6px; box-shadow: var(--bk-shadow);
  padding: clamp(24px, 4vw, 48px);
  background-size: cover; background-position: center;
}

/* Progress + eyebrow */
.cu-booking-wrap .cu-bk-progress { height: 4px; border-radius: 99px; background: #F0F0F2; overflow: hidden; margin-bottom: 18px; }
.cu-booking-wrap .cu-bk-progress__bar { height: 100%; background: var(--bk-accent); transition: width .4s cubic-bezier(.2,.7,.2,1); }
.cu-booking-wrap .cu-bk-eyebrow { display: inline-block; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--bk-accent); font-weight: 500; margin-bottom: 6px; }

/* Headings */
.cu-booking-wrap .cu-bk-title { font-family: var(--bk-serif); color: var(--bk-ink); font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; font-size: clamp(26px, 4vw, 38px); margin: 6px 0 8px; }
.cu-booking-wrap .cu-bk-sub { color: var(--bk-body); font-size: 16px; line-height: 1.8; margin: 0 0 26px; max-width: 52ch; }

.cu-booking-wrap .cu-bk-err { display: none; background: #FCEEEC; border: 1px solid var(--bk-accent); color: #9A2E22; border-radius: 6px; padding: 11px 15px; font-size: 14px; margin-bottom: 16px; }

.cu-booking-wrap .cu-bk-body { margin-bottom: 26px; }

/* Inputs */
.cu-booking-wrap .cu-input, .cu-booking-wrap .cu-textarea {
  width: 100%; background: #fff; border: 1px solid var(--bk-line-2); color: var(--bk-ink);
  padding: 14px 16px; border-radius: 6px; font-size: 16px; font-family: inherit; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cu-booking-wrap .cu-input:focus, .cu-booking-wrap .cu-textarea:focus { border-color: var(--bk-accent); box-shadow: 0 0 0 3px var(--bk-accent-soft); }
.cu-booking-wrap .cu-textarea { resize: vertical; min-height: 96px; }

.cu-booking-wrap .cu-bk-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cu-booking-wrap .cu-bk-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.cu-booking-wrap .cu-bk-lbl { font-size: 13px; color: var(--bk-muted); }
@media (max-width: 520px) { .cu-booking-wrap .cu-bk-2col { grid-template-columns: 1fr; } }

/* Phone: country code + number */
.cu-booking-wrap .cu-bk-phone { display: flex; gap: 10px; }
.cu-booking-wrap .cu-bk-cc { flex: 0 0 auto; width: 118px; background: #fff; border: 1px solid var(--bk-line-2); border-radius: 6px; padding: 14px 10px; font-size: 15px; font-family: inherit; color: var(--bk-ink); }
.cu-booking-wrap .cu-bk-phone .cu-input { flex: 1 1 auto; min-width: 0; }
.cu-booking-wrap .cu-bk-hint { font-size: 13px; color: var(--bk-muted); margin-top: 8px; }

/* Package cards — text ALWAYS wraps */
.cu-booking-wrap .cu-bk-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.cu-booking-wrap .cu-bk-card {
  display: flex; flex-direction: column; gap: 8px; text-align: left; cursor: pointer; min-width: 0;
  background: #fff; border: 1px solid var(--bk-line); border-radius: 6px; padding: 20px;
  color: inherit; font: inherit; box-shadow: var(--bk-shadow-sm); transition: all .18s ease;
}
.cu-booking-wrap .cu-bk-card:hover { transform: translateY(-2px); box-shadow: var(--bk-shadow); border-color: var(--bk-line-2); }
.cu-booking-wrap .cu-bk-card.sel { border-color: var(--bk-accent); background: var(--bk-accent-soft); }
.cu-booking-wrap .cu-bk-card__name { font-weight: 700; font-size: 16px; color: var(--bk-ink); line-height: 1.35; overflow-wrap: anywhere; }
.cu-booking-wrap .cu-bk-card__price { font-weight: 700; font-size: 22px; color: var(--bk-accent); }
.cu-booking-wrap .cu-bk-card__blurb { font-size: 14px; color: var(--bk-body); line-height: 1.6; overflow-wrap: anywhere; white-space: normal; }

/* Slots */
.cu-booking-wrap .cu-bk-slots { max-height: 360px; overflow-y: auto; padding-right: 6px; }
.cu-booking-wrap .cu-bk-daylbl { font-size: 12px; color: var(--bk-muted); text-transform: uppercase; letter-spacing: .1em; margin: 18px 0 10px; }
.cu-booking-wrap .cu-bk-times { display: flex; flex-wrap: wrap; gap: 8px; }
.cu-booking-wrap .cu-chip {
  padding: 10px 14px; font-size: 14px; border-radius: 6px; cursor: pointer;
  background: #fff; border: 1px solid var(--bk-line-2); color: var(--bk-ink); font: inherit; transition: all .15s ease;
}
.cu-booking-wrap .cu-chip:hover { border-color: var(--bk-accent); }
.cu-booking-wrap .cu-chip.sel { background: var(--bk-accent-soft); border-color: var(--bk-accent); color: #9A2E22; font-weight: 600; }
.cu-booking-wrap .cu-bk-note { color: var(--bk-body); font-size: 15px; padding: 12px 0; }

/* Review */
.cu-booking-wrap .cu-bk-review { display: flex; flex-direction: column; }
.cu-booking-wrap .cu-bk-rrow { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--bk-line); font-size: 15px; }
.cu-booking-wrap .cu-bk-rk { color: var(--bk-muted); flex: 0 0 auto; }
.cu-booking-wrap .cu-bk-rv { color: var(--bk-ink); text-align: right; font-weight: 500; overflow-wrap: anywhere; }
.cu-booking-wrap .cu-bk-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--bk-body); margin: 18px 0 6px; line-height: 1.6; }
.cu-booking-wrap .cu-bk-consent a { color: var(--bk-accent); }

/* Buttons */
.cu-booking-wrap .cu-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 6px; background: var(--bk-accent); color: #fff; border: none;
  font-weight: 600; font-size: 15px; font-family: inherit; cursor: pointer; transition: filter .15s ease, transform .15s ease;
}
.cu-booking-wrap .cu-btn-primary:hover { filter: brightness(.95); transform: translateY(-1px); }
.cu-booking-wrap .cu-btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.cu-booking-wrap .cu-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px; padding: 13px 22px; border-radius: 6px;
  background: #fff; color: var(--bk-ink); border: 1px solid var(--bk-line-2); font-weight: 600; font-size: 15px; font-family: inherit; cursor: pointer;
}
.cu-booking-wrap .cu-btn-ghost:hover { border-color: var(--bk-accent); color: var(--bk-accent); }

.cu-booking-wrap .cu-bk-pay { width: 100%; margin-top: 20px; font-size: 16px; padding: 16px; }
.cu-booking-wrap .cu-bk-begin { font-size: 16px; padding: 15px 30px; }
.cu-booking-wrap .cu-bk-nav { display: flex; justify-content: space-between; gap: 12px; }
.cu-booking-wrap .cu-bk-nav--review { justify-content: flex-start; }
.cu-booking-wrap .cu-bk-wa { margin: 22px 0 0; font-size: 13px; color: var(--bk-muted); text-align: center; }
.cu-booking-wrap .cu-bk-wa a { color: var(--bk-accent); font-weight: 600; }

/* Fade-in per step */
@keyframes cu-bk-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.cu-booking-wrap .cu-in { animation: cu-bk-fade .4s cubic-bezier(.2,.7,.2,1) both; }
