/* ==========================================================================
   BOOK TICKETS - STEP 1: DESTINATION & ROPEWAY SELECTION
   Distraction-free booking wizard page (no site header/footer)
   ========================================================================== */

.book-page {
  background-color: #ffffff;
  min-height: 100vh;
  padding-bottom: 60px;
}

/* --------------------------------------------------------------------------
   TOP LOGO BAR
   -------------------------------------------------------------------------- */
.book-topbar {
  text-align: center;
  padding: 32px 20px 8px;
}

.book-topbar .logo-img {
  height: 56px;
  width: auto;
}

/* --------------------------------------------------------------------------
   STEP PROGRESS BAR
   -------------------------------------------------------------------------- */
.book-progress-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 160px;
  padding: 28px 0 30px;
}

.btn-go-back {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111827;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px 22px 12px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-go-back .go-back-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.btn-go-back:hover {
  background: #000000;
  transform: translateY(-1px);
}

.btn-book-next {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #c7cbd1;
  border: none;
  border-radius: 50px;
  padding: 10px 8px 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: not-allowed;
  transition: all 0.25s ease;
}

.btn-book-next .next-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef0f2;
  color: #c7cbd1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.btn-book-next.is-enabled {
  color: #111827;
  cursor: pointer;
}

.btn-book-next.is-enabled .next-icon {
  background: var(--button-gradient);
  color: #ffffff;
}

.book-steps-track {
  flex: 1 1 auto;
}

.book-steps-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.book-step {
  text-align: center;
  flex: 1 1 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

.book-step .book-step-sub {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.book-step.is-active {
  color: var(--primary-orange);
}

.book-step.is-active .book-step-sub {
  color: var(--primary-orange);
}

.book-progress-track {
  position: relative;
  height: 3px;
  background: #e5e7eb;
  border-radius: 4px;
  margin-top: 12px;
}

.book-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--button-gradient);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.book-progress-cabin {
  position: absolute;
  top: 0;
  left: 0%;
  width: 30px;
  height: auto;
  transform: translate(-50%, -6px);
  transition: left 0.4s ease;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   MAIN CONTENT: LEFT INTRO + RIGHT DESTINATION PANEL
   -------------------------------------------------------------------------- */
.book-main-row {
  margin-top: 20px;
}

.book-intro-col {
  padding: 28px;
  border: 1px solid #cbcbcb;
  border-radius: 30px;
}

.book-intro-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 18px;
}

.book-intro-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 32px;
}

.book-intro-illustration {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* --------------------------------------------------------------------------
   STEP PANELS - ONE VISIBLE AT A TIME, FULL SWAP ON NAVIGATION
   -------------------------------------------------------------------------- */
.book-step-panel {
  display: none;
}

.book-step-panel.is-active {
  display: flex;
  animation: bookPanelReveal 0.4s ease both;
}

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

.book-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.book-back-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--button-gradient);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.book-back-btn:hover {
  transform: translateX(-2px);
}

.book-panel-header .book-plan-title {
  margin-bottom: 0;
  flex: 1 1 auto;
}

.book-dest-badge {
  flex: 0 0 auto;
  background: var(--button-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
}

.book-plan-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.book-visit-summary {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.book-visit-summary i {
  color: var(--primary-orange);
  margin-right: 4px;
}

.book-ride-detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.book-ride-detail-label i {
  color: var(--primary-orange);
}

.book-ride-box {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  background: #ffffff;
}

.book-ride-row + .book-ride-row {
  border-top: 1px solid #eef0f2;
  margin-top: 16px;
  padding-top: 16px;
}

.book-ride-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.book-ride-value {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.book-ride-time {
  color: var(--text-dark);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   GET THE BEST DEALS - TICKET TYPE CARDS
   -------------------------------------------------------------------------- */
.book-deals-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.book-deals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.book-deal-card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 24px;
  padding: 26px 28px;
  min-height: 170px;
  text-align: left;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.book-deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
}

.book-deal-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 800;
}

.book-deal-heading i {
  font-size: 0.8rem;
  opacity: 0.85;
}

.book-deal-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 78%;
  opacity: 0.95;
  margin: 0;
}

.book-deal-icon {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: 3rem;
  opacity: 0.3;
  transform: rotate(-8deg);
}

.deal-green {
  background: linear-gradient(135deg, #8bd46b 0%, #3e9f52 100%);
}

.deal-orange {
  background: linear-gradient(135deg, #ff8a50 0%, #e5484d 100%);
}

.deal-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #c13fbf 100%);
}

.deal-blue {
  background: linear-gradient(135deg, #4c7ef0 0%, #2f4fc4 100%);
}

.book-destination-panel {
  background: #f2f3f5;
  border-radius: 32px;
  padding: 32px;
}

.book-destination-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.book-destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.book-dest-card {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  border-radius: 20px;
  transition: transform 0.25s ease;
}

.book-dest-card:hover {
  transform: translateY(-4px);
}

.book-dest-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid transparent;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.book-dest-card.is-selected .book-dest-img-box {
  border-color: var(--primary-orange);
  box-shadow: 0 8px 22px rgba(252, 113, 68, 0.35);
}

.book-dest-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-dest-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 14px;
}

.book-dest-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   IMPORTANT INFORMATION ACCORDION (TICKETS / ADD-ONS STEPS)
   -------------------------------------------------------------------------- */
.book-info-accordion {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fef2f0;
  border: 1.5px solid #fbd0c5;
  border-radius: 16px;
  padding: 14px 18px;
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
}

.book-info-accordion span {
  flex: 1 1 auto;
}

.book-info-toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.book-info-toggle-icon.is-open {
  transform: rotate(180deg);
}

.book-info-panel {
  background: #fef8f7;
  border: 1.5px solid #fbd0c5;
  border-top: none;
  border-radius: 0 0 16px 16px;
  margin-top: -2px;
  padding: 14px 18px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   TICKET / ADD-ON LINE ITEMS + STEPPER
   -------------------------------------------------------------------------- */
.book-ticket-panel {
  background: #f2f3f5;
  border-radius: 32px;
  padding: 28px;
}

.book-ticket-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.book-ticket-group-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.book-ticket-group-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.book-ticket-group-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.book-line-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.book-line-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f2f3f5;
  color: var(--primary-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.book-line-info {
  flex: 1 1 auto;
  min-width: 0;
}

.book-line-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.book-line-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-top: 2px;
}

.book-line-info-icon {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: help;
}

.book-line-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

.book-line-action {
  flex: 0 0 auto;
}

.book-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  color: #ffffff;
  background: var(--text-dark);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 10px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.book-add-btn i {
  font-size: 0.7rem;
}

.book-add-btn:hover {
  background: var(--primary-orange);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   TICKETS STEP - COLLAPSIBLE TICKET-TYPE ACCORDION
   -------------------------------------------------------------------------- */
.book-ticket-accordion-group {
  margin-bottom: 16px;
}

.book-ticket-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1.5px solid #ececec;
  border-radius: 20px;
  padding: 14px 20px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.book-ticket-accordion-group.is-expanded {
  border: 3px solid var(--primary-yellow);
  border-radius: 26px;
  padding: 6px;
}

.book-ticket-accordion-group.is-expanded .book-ticket-accordion-toggle {
  background: var(--primary-yellow);
  border: none;
  border-radius: 20px;
}

.book-ticket-thumb {
  width: 52px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.book-ticket-accordion-name {
  flex: 1 1 auto;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.book-ticket-accordion-toggle > i {
  color: var(--text-dark);
  font-size: 0.9rem;
}

.book-ticket-accordion-body {
  padding: 14px 8px 4px;
}

.book-ticket-accordion-body .book-line-item {
  margin-bottom: 10px;
}

.book-ticket-accordion-body .book-line-item:last-child {
  margin-bottom: 4px;
}

.book-ticket-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #f8f9fa;
  border-radius: 24px;
  padding: 22px 26px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.book-ticket-footer span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  max-width: 320px;
}

/* --------------------------------------------------------------------------
   ADD-ONS STEP - "NEED OTHER SERVICES" ROWS
   -------------------------------------------------------------------------- */
.book-service-list {
  max-height: 430px;
  overflow-y: auto;
  padding-right: 10px;
  margin-right: -10px;
}

.book-service-list::-webkit-scrollbar {
  width: 6px;
}

.book-service-list::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 4px;
}

.book-service-list::-webkit-scrollbar-thumb {
  background: var(--primary-orange);
  border-radius: 4px;
}

.book-service-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1.5px solid #ececec;
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 14px;
}

.book-service-thumb {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex: 0 0 auto;
}

.addon-icon-lounge {
  background: #f5ead9;
  color: #b5651d;
}

.addon-icon-food {
  background: #fbe4e2;
  color: #d9534f;
}

.addon-icon-temple {
  background: #fbeecb;
  color: #c9971f;
}

.addon-icon-coupon {
  background: #dbe7fb;
  color: #3b6fd6;
}

.addon-icon-merch {
  background: #d9f0ea;
  color: #1f9d80;
}

.addon-icon-guide {
  background: #ece3fb;
  color: #7c4fe0;
}

.book-service-info {
  flex: 1 1 auto;
  min-width: 0;
}

.book-service-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.book-service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.book-service-action {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.book-service-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.book-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--primary-orange);
  border-radius: 50px;
  padding: 6px 10px;
}

.book-stepper button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--primary-orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.book-stepper span {
  min-width: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--text-dark);
}

.book-coupon-row {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  margin: 20px 0;
}

.book-coupon-row input {
  flex: 1 1 auto;
  border: none;
  outline: none;
  font-size: 0.9rem;
  background: transparent;
}

.book-coupon-row button {
  border: none;
  background: var(--text-dark);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
}

.book-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e2e4e8;
  padding-top: 20px;
  flex-wrap: wrap;
}

.book-summary-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.book-summary-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.book-cta-btn {
  border: none;
  background: var(--button-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.book-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(252, 33, 102, 0.35);
  color: #ffffff;
}

.book-cta-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.book-cta-full {
  width: 100%;
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   BILLING FORM + ORDER SUMMARY
   -------------------------------------------------------------------------- */
.book-billing-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.book-billing-card {
  border: 1.5px solid #ececec;
  border-radius: 24px;
  padding: 22px;
}

.book-billing-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.book-field {
  position: relative;
  display: flex;
  align-items: center;
}

/* Placeholder-style label so the required "*" can be shown in red */
.book-field-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #9ca3af;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.book-field-label i {
  color: #e5484d;
  font-style: normal;
}

.book-form-input:not(:placeholder-shown) ~ .book-field-label {
  opacity: 0;
}

.book-field-label-phone {
  left: 96px;
}

.book-form-input {
  flex: 1 1 auto;
  width: 100%;
  background: #fbfbfb;
  border: 1.5px solid #ececec;
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 1rem;
  font-family: var(--font-family);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}

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

.book-form-input:focus {
  border-color: var(--primary-orange);
}

.book-form-input.is-invalid {
  border-color: #e5484d;
}

.book-field-phone {
  background: #fbfbfb;
  border: 1.5px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
}

.book-field-phone .book-form-input {
  border: none;
  border-radius: 0;
  background: transparent;
}

.book-phone-code {
  flex: 0 0 auto;
  border: none;
  border-right: 1.5px solid #ececec;
  background: transparent;
  padding: 18px 12px 18px 20px;
  font-size: 1rem;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
  cursor: pointer;
}

.book-terms-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px 2px;
}

.book-terms-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  accent-color: var(--primary-orange);
  cursor: pointer;
  flex: 0 0 auto;
}

.book-terms-row a {
  color: var(--primary-pink);
  font-weight: 700;
}

.book-terms-row.is-invalid span {
  color: #e5484d;
}

/* --------------------------------------------------------------------------
   BILLING STEP - ORANGE "REVIEW YOUR BOOKING" TICKET STUB
   -------------------------------------------------------------------------- */
.book-review-ticket {
  position: relative;
  background: linear-gradient(160deg, #fc8a4f 0%, #f9642f 55%, #fb7a35 100%);
  border-radius: 28px 28px 0 0;
  padding: 28px 28px 34px;
  color: #ffffff;
  overflow: hidden;
}

.book-review-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.book-review-head-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex: 0 0 auto;
}

.book-review-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.book-review-sub {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.92;
  margin: 0;
}

.book-review-perforation {
  position: relative;
  border-top: 2px dashed rgba(255, 255, 255, 0.75);
  margin: 24px -28px;
}

.book-review-perforation::before,
.book-review-perforation::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.book-review-perforation::before {
  left: -15px;
}

.book-review-perforation::after {
  right: -15px;
}

.book-review-label {
  color: var(--primary-yellow);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 16px;
}

.book-review-dest {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.book-review-dest img {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
  flex: 0 0 auto;
}

.book-review-dest-name {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.book-review-dest-loc {
  font-size: 0.95rem;
  opacity: 0.92;
}

.book-review-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.book-review-meta-label {
  font-size: 0.9rem;
  opacity: 0.92;
  margin-bottom: 4px;
}

.book-review-meta-value {
  font-size: 1.15rem;
  font-weight: 700;
}

.book-review-divider {
  border-top: 1.5px solid rgba(255, 255, 255, 0.35);
  margin: 22px 0;
}

.book-review-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.book-review-line-info {
  flex: 1 1 auto;
  min-width: 0;
}

.book-review-line-kind {
  font-size: 0.85rem;
  opacity: 0.9;
}

.book-review-line-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.book-review-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.book-review-stepper button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.book-review-stepper button:hover {
  background: rgba(255, 255, 255, 0.5);
}

.book-review-stepper span {
  min-width: 14px;
  text-align: center;
  font-weight: 700;
}

.book-review-line-price {
  flex: 0 0 auto;
  min-width: 84px;
  text-align: right;
  font-size: 1.05rem;
  font-weight: 700;
}

.book-review-tax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
}

.book-review-scallop {
  height: 22px;
  margin: 26px -28px -34px;
  background-image: radial-gradient(
    circle at 11px 0,
    transparent 11px,
    #ffffff 12px
  );
  background-size: 22px 22px;
  background-repeat: repeat-x;
}

.book-order-summary {
  background: #f2f3f5;
  border-radius: 32px;
  padding: 28px;
}

.book-summary-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 14px;
}

.book-summary-block:empty {
  display: none;
}

.book-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 6px 0;
}

.book-summary-row span {
  color: var(--text-muted);
}

.book-summary-grand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   BOOKING CONFIRMED
   -------------------------------------------------------------------------- */
.book-confirmation-card {
  text-align: center;
  padding: 60px 20px;
}

.book-confirmation-icon {
  font-size: 3.5rem;
  color: #3e9f52;
  margin-bottom: 18px;
}

.book-confirmation-card .book-plan-title {
  justify-content: center;
}

.book-confirmation-card .book-intro-desc {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.book-confirmation-card .book-cta-btn {
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   VISIT DATE CALENDAR DRAWER
   -------------------------------------------------------------------------- */
.book-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.book-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.book-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  padding: 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.book-drawer-wide {
  max-width: 600px;
}

.book-drawer-overlay.is-open .book-drawer {
  transform: translateX(0);
}

.book-drawer-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.book-drawer-title {
  flex: 1 1 auto;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
}

.book-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: #f2f3f5;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.book-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.book-calendar-nav button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-size: 1.1rem;
  cursor: pointer;
}

.book-calendar-nav button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.book-calendar-month {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
}

.book-calendar-subtitle {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.book-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.book-calendar-grid {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.book-cal-cell {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
  background: #f2f3f5;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.15s ease;
}

.book-cal-cell.is-empty {
  background: transparent;
  cursor: default;
}

.book-cal-cell.is-disabled {
  color: #d1d5db;
  background: #f9fafb;
  cursor: not-allowed;
}

.book-cal-cell:not(.is-disabled):not(.is-empty):hover {
  background: #e5e7eb;
}

.book-cal-cell.is-selected {
  background: var(--text-dark);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   SELECT TIME PANEL
   -------------------------------------------------------------------------- */
.book-time-panel {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 24px;
}

.book-time-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.book-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.book-time-slot {
  border: none;
  border-radius: 12px;
  padding: 12px 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.book-time-slot.is-available {
  background: #d6f2df;
  color: #1e6b3a;
  width: 115px;
}

.book-time-slot.is-available:hover {
  background: #c1ecce;
}

.book-time-slot.is-selected {
  background: var(--text-dark);
  color: #ffffff;
}

.book-time-slot.is-soldout {
  background: #fbdde0;
  color: #b23a44;
  cursor: not-allowed;
}

.book-time-legend {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 600;
}

.book-time-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.book-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}

.legend-selected {
  background: var(--text-dark);
}

.legend-available {
  background: #8bd46b;
}

.legend-soldout {
  background: #f4a3ab;
}

.book-calendar-proceed {
  width: 100%;
  border: none;
  background: var(--button-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.25s ease;
}

.book-calendar-proceed:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(252, 33, 102, 0.35);
}

.book-calendar-proceed:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.book-proceed-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .book-progress-wrapper {
    justify-content: space-between;
  }

  .book-destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-intro-title {
    font-size: 2rem;
  }

  .book-plan-title {
    font-size: 1.8rem;
  }
}

/* --------------------------------------------------------------------------
   MOBILE: keep the step track visible as a compact bar, hide the top
   Go-back/Next pill buttons (per-step back navigation + the step tabs
   themselves are the only nav people need on a phone).
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .btn-go-back,
  .btn-book-next {
    display: none;
  }

  .book-progress-wrapper {
    padding: 18px 0 20px;
  }

  .book-step {
    font-size: 0.68rem;
  }

  .book-step .book-step-sub {
    font-size: 10px;
  }
  .book-intro-col {
    display: none;
  }
  .vik-offer-panel {
    display: block;
  }
}

@media (max-width: 575px) {
  .book-destination-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .book-destination-grid {
    gap: 16px;
  }

  .book-deals-grid {
    grid-template-columns: 1fr;
  }

  .book-deal-desc {
    max-width: 100%;
  }

  .book-ticket-panel,
  .book-order-summary {
    padding: 18px;
    border-radius: 24px;
  }

  .book-line-item {
    flex-wrap: wrap;
  }

  .book-summary-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .book-summary-bar .book-cta-btn {
    width: 100%;
  }

  .book-drawer {
    max-width: 100%;
    padding: 20px;
  }

  .book-calendar-weekdays,
  .book-calendar-grid {
    grid-template-columns: repeat(14, 40px);
    overflow-x: auto;
  }

  .book-time-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
