/* =========================================================
   Booking styles (refactored)
========================================================= */

:root {
  --primary-color: #f79321;
  --primary-hover: #e6861e;
  --danger-red: #d6382d;
  --dark-rose: var(--text-color);
  --light-gray: #8a8a8a;
  --white: #ffffff;
  --dark-bg: #0c0f15;
  --page-bg: #f5f5f7;
  --surface-bg: #ffffff;
  --text-color: #2f2f2f;
  --muted-text: #8a8a8a;
  --border-color: rgba(0, 0, 0, 0.08);
  --input-bg: #ffffff;
  --input-border: rgba(0, 0, 0, 0.12);
  --input-text: #2f2f2f;
  --chip-bg: rgba(247, 147, 33, 0.08);
  --chip-border: rgba(247, 147, 33, 0.25);
  --chip-text: var(--text-color);
  --home-bg: var(--page-bg);
  --home-bg-mobile: var(--page-bg);
  --home-card-bg: rgba(255, 255, 255, 0.88);
  --home-card-border: rgba(0, 0, 0, 0.08);
  --home-text: #1d1f23;
  --home-label: rgba(47, 47, 47, 0.7);
  --home-input-bg: #ffffff;
  --home-input-border: rgba(0, 0, 0, 0.12);
  --home-input-text: #2f2f2f;
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --dark-bg: #0c0f15;
  --page-bg: #0c0f15;
  --surface-bg: #0c0f15;
  --text-color: #eef1f6;
  --muted-text: rgba(255, 255, 255, 0.68);
  --border-color: rgba(255, 255, 255, 0.08);
  --input-bg: #0c0f15;
  --input-border: rgba(255, 255, 255, 0.16);
  --input-text: #f5f6f8;
  --chip-bg: rgba(255, 255, 255, 0.08);
  --chip-border: rgba(255, 255, 255, 0.22);
  --chip-text: rgba(255, 255, 255, 0.9);
  --home-bg: var(--dark-bg);
  --home-bg-mobile: var(--dark-bg);
  --home-card-bg: rgba(12, 15, 21, 0.72);
  --home-card-border: rgba(255, 255, 255, 0.14);
  --home-text: #f2f4f8;
  --home-label: rgba(255, 255, 255, 0.68);
  --home-input-bg: #0c0f15;
  --home-input-border: rgba(255, 255, 255, 0.18);
  --home-input-text: #f5f7fa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Roboto", "Open Sans", sans-serif;
  background: var(--page-bg);
  color: var(--text-color);
}

body.page-booking a,
body.page-booking a:visited,
body.page-booking a:hover,
body.page-booking a:focus {
  text-decoration: none;
}

body.page-booking button {
  text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.theme-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10001;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  color: var(--text-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.theme-toggle i {
  font-size: 16px;
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 26px rgba(247, 147, 33, 0.25);
}

.btn:hover,
.btn:focus {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-bg);
  border-color: var(--dark-bg);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.btn-dark:hover,
.btn-dark:focus {
  background: var(--dark-bg);
  border-color: var(--dark-bg);
  filter: brightness(1.08);
}

/* Search form system */
body.page-booking .search-container {
  padding: 28px 22px 24px;
  background: var(--home-card-bg);
  border: 1px solid var(--home-card-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  color: var(--home-text);
}

body.page-booking .search-container .search-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 14px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

body.page-booking .search-container .search-box {
  max-width: none;
  margin: 0;
}

body.page-booking .search-container .search-row .centered {
  width: auto;
  justify-content: flex-start;
  align-self: end;
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--input-text);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
  color: var(--muted-text);
}

.form-input:focus {
  border-color: rgba(247, 147, 33, 0.6);
  box-shadow: 0 0 0 3px rgba(247, 147, 33, 0.15);
  outline: none;
}

.btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 34px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(247, 147, 33, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-search:hover,
.btn-search:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(247, 147, 33, 0.35);
}

.dropdown-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1000;
  list-style: none;
  padding: 8px 0;
  margin: 6px 0 0 0;
  max-height: 240px;
  overflow-y: auto;
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  display: none;
}

.dropdown-list.show,
.dropdown-list.active {
  display: block;
}

.dropdown-list li {
  padding: 12px 16px;
  cursor: pointer;
  color: var(--input-text);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-list li:last-child {
  border-bottom: none;
}

.dropdown-list li:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.dropdown-list li.active,
.dropdown-list li[aria-selected="true"] {
  background-color: var(--primary-color);
  color: var(--white);
}

.dropdown-menu {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  color: var(--input-text);
}

.dropdown-menu .dropdown-item {
  color: var(--input-text);
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background: var(--primary-color);
  color: var(--white);
}

/* Booking base */
body.page-booking {
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text-color);
}

body.page-booking .container {
  width: min(980px, 92vw);
  margin: 56px auto 40px;
  padding: 28px 24px;
  background: var(--surface-bg);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  color: var(--text-color);
}

/* Booking home */
body.page-booking:has(.links-menu) {
  background: var(--home-bg);
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  padding: 16px 0;
}

body.page-booking:has(.links-menu) .container {
  margin: 0 auto;
  padding: 28px 22px 24px;
  background: var(--home-card-bg);
  border: 1px solid var(--home-card-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  color: var(--home-text);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 20px;
  grid-row: 1;
}

body.page-booking:has(.links-menu) .container > div {
  width: 100%;
}

body.page-booking:has(.links-menu) .container > div:nth-of-type(2),
body.page-booking:has(.links-menu) .container > div:nth-of-type(3),
body.page-booking:has(.links-menu) .container > div:nth-of-type(4),
body.page-booking:has(.links-menu) .container > div:nth-of-type(6) {
  min-width: 0;
}

body.page-booking:has(.links-menu) .container > div:nth-of-type(6) {
  align-self: end;
  display: flex;
  align-items: flex-end;
}

body.page-booking:has(.links-menu) .title,
body.page-booking:has(.links-menu) .separator,
body.page-booking:has(.links-menu) .separatora,
body.page-booking:has(.links-menu) .links-menu {
  grid-column: 1 / -1;
}

body.page-booking:has(.links-menu) .title {
  color: var(--home-text);
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: 0.24em;
  margin-bottom: 4px;
}

body.page-booking:has(.links-menu) .label {
  color: var(--home-label);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
}

body.page-booking:has(.links-menu) .separator,
body.page-booking:has(.links-menu) .separatora {
  border-top-color: var(--home-card-border);
}

body.page-booking:has(.links-menu) .search-box {
  max-width: none;
  margin: 0;
}

body.page-booking:has(.links-menu) .search-box .row {
  align-items: stretch;
}

body.page-booking:has(.links-menu) .form-input,
body.page-booking:has(.links-menu) .form-select,
body.page-booking:has(.links-menu) .input-area,
body.page-booking:has(.links-menu) .search-box input,
body.page-booking:has(.links-menu) .search-box select,
body.page-booking:has(.links-menu) input.text,
body.page-booking:has(.links-menu) .text,
body.page-booking .search-container .form-input,
body.page-booking .search-container .form-select,
body.page-booking .search-container .input-area,
body.page-booking .search-container .search-box input,
body.page-booking .search-container .search-box select,
body.page-booking .search-container input.text,
body.page-booking .search-container .text {
  background: var(--home-input-bg);
  border-color: var(--home-input-border);
  color: var(--home-input-text);
}

body.page-booking:has(.links-menu) .form-input::placeholder,
body.page-booking:has(.links-menu) .input-area::placeholder,
body.page-booking .search-container .form-input::placeholder,
body.page-booking .search-container .input-area::placeholder {
  color: var(--home-label);
}

body.page-booking:has(.links-menu) input[type="date"],
body.page-booking .search-container input[type="date"] {
  height: 48px !important;
  background: var(--home-input-bg);
  border-color: var(--home-input-border);
  color: var(--home-input-text);
}

body.page-booking:has(.links-menu) .centered {
  width: 100%;
  justify-content: flex-start;
}


body.page-booking:has(.links-menu) .select2-container--default .select2-selection--single {
  background: var(--home-input-bg);
  border-color: var(--home-input-border);
}

body.page-booking:has(.links-menu) .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--home-input-text);
}

body.page-booking:has(.links-menu) .next-button {
  width: 100%;
}

/* Booking typography and layout */
body.page-booking .title,
body.page-booking .search-title {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--dark-rose);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

body.page-booking .label {
  display: block;
  font-weight: 700;
  color: var(--dark-rose);
  margin: 0 0 6px;
}

body.page-booking .center {
  text-align: center;
}

body.page-booking .centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

body.page-booking .space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body.page-booking .space-between.nav-split {
  flex-direction: row-reverse;
}

body.page-booking .separator,
body.page-booking .separatora {
  width: 60%;
  border-top: 2px solid rgba(247, 147, 33, 0.35);
  margin: 18px auto;
}

body.page-booking .text-small,
body.page-booking .small-text {
  font-size: 13px;
  font-weight: 600;
}

body.page-booking .sm-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
}

body.page-booking .small-text-thin {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-text);
}

body.page-booking .med-text {
  font-size: 15px;
  font-weight: 600;
}

body.page-booking .big-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-rose);
}

body.page-booking .text-orange {
  color: var(--primary-color);
}

body.page-booking .swal2-actions .swal2-confirm {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 22px rgba(247, 147, 33, 0.25);
}

body.page-booking .swal2-actions .swal2-confirm:hover,
body.page-booking .swal2-actions .swal2-confirm:focus {
  background: var(--primary-hover);
}

body.page-booking .swal2-actions .swal2-confirm:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

body.page-booking .typebus {
  color: var(--text-color);
}

body.page-booking .typebus--prime {
  color: var(--primary-color);
}


/* Search inputs */
body.page-booking .search-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 8px auto 14px;
}

body.page-booking .search-box .row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.page-booking .search-box .row > .form-input,
body.page-booking .search-box .row > .form-select,
body.page-booking .search-box .row > input,
body.page-booking .search-box .row > select {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}

body.page-booking .form-input,
body.page-booking .form-select,
body.page-booking .input-area,
body.page-booking .search-box input,
body.page-booking .search-box select,
body.page-booking input.text,
body.page-booking .text {
  width: 100%;
  height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--input-text);
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.page-booking .form-input::placeholder,
body.page-booking .input-area::placeholder {
  color: var(--muted-text);
}

body.page-booking input[type="date"] {
  height: 48px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--input-text);
  font-size: 14px;
}

body.page-booking .form-input:focus,
body.page-booking .form-select:focus,
body.page-booking .input-area:focus,
body.page-booking .search-box input:focus,
body.page-booking .search-box select:focus,
body.page-booking input.text:focus {
  border-color: rgba(247, 147, 33, 0.6);
  box-shadow: 0 0 0 3px rgba(247, 147, 33, 0.15);
  outline: none;
}

body.page-booking .input-area {
  text-align: left;
}

body.page-booking .result-box {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 50;
}

body.page-booking .result-box ul {
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

body.page-booking .result-box ul li {
  padding: 10px 14px;
  cursor: pointer;
  color: var(--input-text);
}

body.page-booking .result-box ul li:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Primary actions */
body.page-booking .next-button,
body.page-booking .checkout-btn,
body.page-booking .submit-button,
body.page-booking .d-btn,
body.page-booking .btn-search,
body.page-booking .btnBayar,
body.page-booking .btnNext,
body.page-booking .btnConfirm,
body.page-booking .proses,
body.page-booking .voucher,
body.page-booking .konfirmasi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(247, 147, 33, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

body.page-booking .next-button:hover,
body.page-booking .checkout-btn:hover,
body.page-booking .submit-button:hover,
body.page-booking .d-btn:hover,
body.page-booking .btn-search:hover,
body.page-booking .btnBayar:hover,
body.page-booking .btnNext:hover,
body.page-booking .btnConfirm:hover,
body.page-booking .proses:hover,
body.page-booking .voucher:hover,
body.page-booking .konfirmasi:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(247, 147, 33, 0.3);
}

body.page-booking .checkout-btn,
body.page-booking .submit-button {
  width: 100%;
  max-width: 340px;
}

body.page-booking .checkout-btn.checkout {
  display: flex;
  width: min(340px, 100%);
  margin: 8px auto 0;
}

body.page-booking .checkout-btn.checkout + .space-between {
  display: flex;
  justify-content: center;
  margin-top: 12px !important;
}

body.page-booking .checkout-btn.checkout + .space-between .next-button {
  display: flex;
  width: min(340px, 100%);
  margin: 0 auto;
}

body.page-booking .batal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--chip-border);
  border-color: var(--chip-border);
  color: var(--text-color);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

body.page-booking .batal-btn:hover {
  background: var(--chip-border);
  filter: brightness(1.1);
  transform: translateY(-2px);
}

body.page-booking .home-button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  margin: 16px auto 0;
}

body.page-booking .home-button:hover {
  border-color: var(--primary-color);
}

body.page-booking .home-button img {
  display: block;
}

html[data-theme="light"] body.page-booking .home-button img {
  filter: brightness(0) saturate(100%);
}

html[data-theme="dark"] body.page-booking .home-button img {
  filter: brightness(0) invert(1);
}

body.page-booking .icon-btn,
body.page-booking .date-btn {
  height: 48px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  color: var(--text-color);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

body.page-booking .date-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Links menu */
body.page-booking .links-menu {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

body.page-booking .links-menu li {
  display: flex;
  flex: 1 1 160px;
  max-width: 220px;
}

body.page-booking .header,
body.page-booking .upper-search-box,
body.page-booking .dates,
body.page-booking .result {
  color: var(--text-color);
}

body.page-booking .result a,
body.page-booking .result a:visited {
  color: var(--text-color);
  text-decoration: none;
}

body.page-booking .result a:hover,
body.page-booking .result a:focus {
  color: var(--primary-color);
}

body.page-booking .links-menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--chip-text);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  width: 100%;
  min-height: 44px;
  justify-content: center;
  text-align: center;
}

body.page-booking .links-menu a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

body.page-booking .links-menu i {
  font-size: 14px;
}

/* Schedule */
body.page-booking .schedule a {
  color: inherit;
  text-decoration: none;
}

body.page-booking .schedule {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.page-booking .schedule .details {
  text-align: right;
}

body.page-booking .schedule-item,
body.page-booking .schedule-item-blank{
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  color: var(--text-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height:180px;
}
body.page-booking .detailupdown {
  min-height:10px;
}


body.page-booking .schedule-item,
body.page-booking .schedule-item-blank {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
}

body.page-booking .detailupdown {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

body.page-booking .schedule-item:hover,
body.page-booking .detailupdown:hover {
  border:solid 2px rgba(247, 147, 33, 0.35);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);

}

body.page-booking .schedule-item-blank {
  background: rgba(0, 0, 0, 0.03);
  color: var(--muted-text);
  border-style: dashed;
  box-shadow: none;
}

body.page-booking .schedule a.is-soldout {
  pointer-events: none;
}

body.page-booking .schedule .is-soldout {
  opacity: 0.45;
  filter: grayscale(1);
}

body.page-booking .schedule .is-soldout .schedule-item,
body.page-booking .schedule .is-soldout .schedule-item-blank {
  cursor: not-allowed;
}

body.page-booking .schedule .is-lowseats .seats strong {
  color: var(--danger-red);
  font-weight: 900;
}

body.page-booking .schedule-item-blank .text-blank {
  color: var(--primary-color);
}

body.page-booking .text-available {
  color: var(--primary-color);
}

body.page-booking .time-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 120px;
}

body.page-booking .time {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-rose);
}


body.page-booking .duration {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(247, 147, 33, 0.15);
  color: var(--dark-rose);
  font-size: 12px;
  font-weight: 700;
}


body.page-booking .details {
  text-align: right;
}

body.page-booking .diskon {
  text-decoration: line-through;
  color: var(--muted-text);
  font-size: 12px;
  display: inline-block;
  margin-bottom: 6px;
}

body.page-booking .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

body.page-booking .points {
  color: var(--text-color);
}

body.page-booking .detailupdown {
  cursor: pointer;
}

body.page-booking .detailupdown-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--text-color);
}

body.page-booking .detailupdown-title svg {
  flex: 0 0 auto;
  color: var(--text-color);
}

body.page-booking .detailupdown .time-info {
  min-width: 0;
  width: auto;
  justify-self: end;
  align-items: center;
  flex-direction: row;
  gap: 6px;
}

body.page-booking .detail-content {
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

body.page-booking .detail-content.detail-crew {
  padding: 18px;
  text-align: left;
}

body.page-booking .detail-content.detail-crew .grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

body.page-booking .detail-content.detail-crew .grid-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
}

body.page-booking .detail-content.detail-crew .grid-item img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}

body.page-booking .detail-content.detail-crew .grid-item .small-text {
  text-align: left;
  color: var(--text-color);
  line-height: 1.4;
}

body.page-booking .drop-down-container-100 {
  padding: 16px 18px;
  margin-bottom: 16px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  color: var(--text-color);
}

body.page-booking .drop-down-container-100 p {
  margin: 0 0 8px;
  font-weight: 700;
}

body.page-booking .drop-down-container-100 .search-box {
  max-width: none;
  margin: 0;
}

body.page-booking .field-with-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
}

body.page-booking .btn-action-map {
  height: 48px;
  min-width: 100px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  color: var(--text-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-size:15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.page-booking .btn-action-map:hover,
body.page-booking .btn-action-map:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(247, 147, 33, 0.15);
  transform: translateY(-1px);
}

body.page-booking .btn-action-map:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

body.page-booking .btn-action-map i {
  font-size: 14px;
}

body.page-booking .terms-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  color: var(--text-color);
  position: relative;
}

body.page-booking .terms-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body.page-booking .terms-box {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  background: var(--surface-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

body.page-booking .terms-check input:checked + .terms-box {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(247, 147, 33, 0.2);
}

body.page-booking .terms-check input:checked + .terms-box::after {
  content: "";
  width: 6px;
  height: 10px;
  border: 2px solid var(--white);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

body.page-booking .terms-check input:focus-visible + .terms-box {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

body.page-booking .terms-text {
  font-size: 13px;
  line-height: 1.4;
}

body.page-booking #openModalBtn {
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
}

/* Checkout and payment */
body.page-booking .ticket-info,
body.page-booking .pricing,
body.page-booking .payment-methods,
body.page-booking .total-cost {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

body.page-booking .checkout-title {
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 16px;
}

body.page-booking .ticket-info {
  color: var(--text-color);
  font-size: 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.page-booking .ticket-info-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--dark-rose);
  margin-bottom: 10px;
}

body.page-booking .ticket-info div {
  margin: 0;
}

body.page-booking .ticket-info .ticket-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  align-items: start;
}

body.page-booking .ticket-info .ticket-label,
body.page-booking .ticket-info .section-title {
  color: var(--dark-rose);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}

body.page-booking .ticket-info .ticket-value {
  min-width: 0;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body.page-booking .ticket-info .ticket-value > div + div {
  margin-top: 4px;
}

@media (min-width: 992px) {
  body.page-booking .ticket-info .ticket-row {
    grid-template-columns: 220px minmax(0, 1fr);
    column-gap: 16px;
  }

  body.page-booking .ticket-info .ticket-label,
  body.page-booking .ticket-info .section-title {
    white-space: nowrap;
  }
}

body.page-booking .pricing {
  background: rgba(247, 147, 33, 0.08);
}

body.page-booking .pricing-box {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--dark-rose);
}

body.page-booking .total-cost {
  background: rgba(247, 147, 33, 0.12);
  font-weight: 700;
  color: var(--dark-rose);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.page-booking .payment-methods {
  margin-top: 16px;
}

body.page-booking .accordion {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  color: var(--dark-rose);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  cursor: pointer;
}

body.page-booking .panel {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.02);
  margin-bottom: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease, margin 0.2s ease;
}

body.page-booking .panel.show {
  max-height: 600px;
  opacity: 1;
}

body.page-booking .panel.hide {
  padding: 0 14px;
  margin-bottom: 0;
  border-color: transparent;
  background: transparent;
}

body.page-booking .payment {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.page-booking .payment input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-color);
  position: relative;
}

body.page-booking .payment input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--primary-color);
}

body.page-booking .payment.is-selected {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(247, 147, 33, 0.12);
}

/* Poin and redeem */
body.page-booking .points-section {
  margin: 16px 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  display: grid;
  gap: 16px;
}

body.page-booking .points-section .jumlah-poin-checkout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  font-weight: 700;
  color: var(--text-color);
}

body.page-booking .points-section .jumlah-poin-checkout span {
  color: var(--primary-color);
}

body.page-booking .points-section .carousel-poin {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: stretch;
  width: 100%;
}

body.page-booking .points-section .carousel-poin.slick-initialized {
  display: block;
  width: 100% !important;
}

body.page-booking .points-section .carousel-poin .slick-list {
  overflow: visible;
}

body.page-booking .points-section .carousel-poin .slick-list {
  width: 100% !important;
}

body.page-booking .points-section .carousel-poin .slick-track {
  margin: 0 -6px;
}

body.page-booking .points-section .carousel-poin .slick-slide {
  height: auto;
  padding: 0 6px;
}

body.page-booking .points-section .carousel-poin li {
  min-width: 0;
  width: 100%;
}

body.page-booking .points-section .carousel-poin label {
  display: block;
  cursor: pointer;
  width: 100%;
}

body.page-booking .points-section .carousel-poin input {
  display: none;
}

body.page-booking .points-section .carousel-poin p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--surface-bg);
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

body.page-booking .points-section .carousel-poin input:checked + p,
body.page-booking .points-section .carousel-poin input.checked + p {
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 12px 24px rgba(247, 147, 33, 0.18);
}

body.page-booking .points-section .carousel-poin input:disabled + p {
  color: var(--muted-text);
  cursor: not-allowed;
  box-shadow: none;
}

body.page-booking .points-section .page-redeem {
  display: grid;
  gap: 12px;
  justify-items: center;
}

body.page-booking .points-section .page-redeem .checkout-btn {
  min-width: 220px;
}

body.page-booking .points-section .page-redeem .input-container {
  width: min(420px, 100%);
  margin: 0 auto;
}

body.page-booking .points-section .page-redeem .input-container.space-between {
  display: block;
  padding: 0 !important;
}

body.page-booking .points-section .text-redeem {
  color: var(--text-color);
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  margin: 0;
  padding: 0 !important;
}

/* Inputs */
body.page-booking .input-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.page-booking .input-group {
  flex: 1 1 220px;
  margin: 0;
}

/* Seats */
body.page-booking .containerseat {
  display: grid;
  grid-template-columns: repeat(2, 56px) 20px repeat(2, 56px);
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 16px 0;
}

body.page-booking .seat {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.18s ease;
}

body.page-booking .seat input {
  position: absolute;
  opacity: 0;
}

body.page-booking .seat label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  background: var(--surface-bg);
  color: var(--text-color);
  font-weight: 400;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

body.page-booking .seat:not(.is-unavailable):hover label {
  border-color: var(--primary-color);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

body.page-booking .seat.is-selected label,
body.page-booking .seat input:checked + label {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(247, 147, 33, 0.22);
}

body.page-booking .seat.is-unavailable,
body.page-booking .seat.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

body.page-booking .seat.is-unavailable label,
body.page-booking .seat.disabled label {
  background: var(--surface-bg);
  border-color: var(--border-color);
  color: var(--muted-text);
  cursor: not-allowed;
  box-shadow: none;
}

body.page-booking .seat--pulse label {
  animation: seat-pop 0.18s ease;
}

@keyframes seat-pop {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

/* Modal */
body.page-booking .modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: auto;
  background: rgba(15, 15, 15, 0.55);
  padding: 60px 16px;
}

body.page-booking .modal-content {
  width: min(520px, 92vw);
  margin: 0 auto;
  padding: 20px;
  border-radius: 18px;
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  text-align: left;
}

body.page-booking .modal-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

body.page-booking .modal-buttons button {
  background: transparent;
  border: none;
  cursor: pointer;
}

body.page-booking .continue-btn {
  color: var(--primary-color);
}

body.page-booking .cancel-btn {
  color: var(--text-color);
}

body.page-booking .cancel-btn svg {
  fill: currentColor;
}

body.page-booking .copy-text {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

body.page-booking .copy-text input.text {
  width: 100%;
}

body.page-booking .copy-text button {
  padding: 10px 16px;
  border-radius: 12px;
  border: none;
  background: var(--primary-color);
  color: var(--white);
  cursor: pointer;
}

/* Footer and chat */
body.page-booking .footers {
  width: 100%;
  padding: 24px 0;
  background: var(--surface-bg);
  color: var(--text-color);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

body.page-booking:has(.links-menu) .footers {
  grid-row: 2;
}

.footers a,
.footers a:visited,
.footers a:hover,
.footers a:focus,
.footers a:active {
  text-decoration: none !important;
  color: var(--text-color);
}

.footers a:hover,
.footers a:focus {
  color: var(--primary-color);
}

.footers a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 6px;
}

body.page-booking .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

body.page-booking .social-icon {
  font-weight: 700;
  color: var(--primary-color);
}

body.page-booking .chat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  z-index: 9999;
}

body.page-booking .chat-text {
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--dark-rose);
  font-weight: 700;
}

body.page-booking .chat-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

body.page-booking .chat-container:hover .chat-icon {
  transform: translateY(-2px);
}

body.page-booking .chat-box {
  display: none;
  position: fixed;
  bottom: 84px;
  right: 20px;
  background: var(--surface-bg);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  padding: 12px;
  z-index: 9999;
}

body.page-booking .chat-box input {
  width: 240px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--input-text);
  margin-right: 6px;
}

body.page-booking .chat-box button {
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

body.page-booking .website-button-container {
  position: fixed;
  bottom: 160px;
  right: 20px;
  display: none;
  z-index: 9999;
}

body.page-booking .visit-website {
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  background: var(--dark-rose);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

/* Select2 */
body.page-booking .select2-container {
  width: 100% !important;
}

body.page-booking .select2-container--default .select2-selection--single {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 14px;
  height: 48px;
}

body.page-booking .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--input-text);
  line-height: 46px;
  padding-left: 14px;
  font-size: 14px;
  font-weight: 600;
}

body.page-booking .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
  right: 10px;
}

body.page-booking .select2-dropdown {
  border-radius: 12px;
  border: 1px solid var(--input-border);
  background: var(--surface-bg);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

body.page-booking .select2-container--open {
  z-index: 9999;
}

body.page-booking .select2-search__field {
  border-radius: 10px;
  font-size: 13px;
  height: 34px;
}

body.page-booking .select2-results__option {
  color: var(--input-text);
}

body.page-booking .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--primary-color);
  color: var(--white);
}

body.page-booking .select2-container--default .select2-results__option[aria-selected="true"],
body.page-booking .select2-container--default .select2-results__option--selected {
  background: var(--primary-color);
  color: var(--white);
}

/* Loader */
body.page-booking .loader-div {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

body.page-booking .loader {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid rgba(247, 147, 33, 0.2);
  border-top-color: var(--primary-color);
  animation: booking-spin 1s linear infinite;
}

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

/* Responsive */
@media (min-width: 992px) {
  body.page-booking .search-container .search-row {
    grid-template-columns: 1fr 1fr 1.2fr auto;
    align-items: end;
  }

  body.page-booking .search-container .search-row .centered {
    justify-content: flex-start;
  }

  body.page-booking:has(.links-menu) {
    padding: 4px 0;
  }

  body.page-booking:has(.links-menu) .container {
    padding: 24px 22px 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.page-booking:has(.links-menu) .container > div:nth-of-type(1) {
    grid-row: 2;
  }

  body.page-booking:has(.links-menu) .container > div:nth-of-type(2),
  body.page-booking:has(.links-menu) .container > div:nth-of-type(3),
  body.page-booking:has(.links-menu) .container > div:nth-of-type(4),
  body.page-booking:has(.links-menu) .container > div:nth-of-type(6) {
    grid-row: 3;
  }

  body.page-booking:has(.links-menu) .container > div:nth-of-type(5) {
    grid-row: 4;
  }

  body.page-booking:has(.links-menu) .links-menu {
    grid-row: 5;
  }

  body.page-booking:has(.links-menu) .centered {
    justify-content: flex-start;
  }

  body.page-booking:has(.links-menu) .next-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 991px) {
  body.page-booking .container {
    margin: 40px auto 32px;
    padding: 22px 18px;
  }

  body.page-booking:has(.links-menu) {
    padding: 16px 0;
  }

  body.page-booking:has(.links-menu) .container {
    padding: 32px 18px 28px;
  }

  body.page-booking .schedule-item,
  body.page-booking .schedule-item-blank {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  body.page-booking .links-menu {
    justify-content: center;
    padding: 0 16px;
  }

  body.page-booking .points-section .carousel-poin {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-booking .points-section .carousel-poin .slick-track {
    margin: 0 -6px;
  }
}

@media (max-width: 767px) {
  body.page-booking:has(.links-menu) {
    background: var(--home-bg-mobile);
  }

  body.page-booking:has(.links-menu) .container > div:nth-of-type(6) {
    order: 1;
  }

  body.page-booking:has(.links-menu) .container > div:nth-of-type(5) {
    order: 2;
  }

  body.page-booking:has(.links-menu) .links-menu {
    order: 3;
  }

  body.page-booking .space-between {
    flex-direction: column;
    align-items: stretch;
  }

  body.page-booking .checkout-btn,
  body.page-booking .submit-button,
  body.page-booking .next-button,
  body.page-booking .batal-btn {
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  body.page-booking .section-poin .carousel-poin {
    overflow-x: auto;
  }

  body.page-booking .links-menu {
    padding: 0 16px;
  }

  body.page-booking .checkout-title {
    font-size: 16px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  body.page-booking .ticket-info {
    gap: 10px;
  }

  body.page-booking .ticket-info .ticket-row {
    gap: 4px;
  }

  body.page-booking .ticket-info .ticket-label,
  body.page-booking .ticket-info .section-title {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--muted-text);
  }

  body.page-booking .ticket-info .ticket-value {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-color);
  }

  body.page-booking .detailupdown {
    grid-template-columns: 1fr auto;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-align: left;
    padding: 14px 16px;
    row-gap: 6px;
  }

  body.page-booking .input-container {
    gap: 8px;
  }

  body.page-booking .input-container.space-between {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: start;
    align-items: stretch;
  }

  body.page-booking .input-container + center .small-text-thin {
    margin: 6px 0 8px;
  }

  body.page-booking .terms-check {
    margin-top: 0;
    padding: 6px 8px;
  }

  body.page-booking .pricing {
    margin-top: 12px;
  }

  body.page-booking .detailupdown-title {
    white-space: nowrap;
  }

  body.page-booking .container:has(.points-section) .detailupdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  body.page-booking .container:has(.points-section) .detailupdown-title {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }

  body.page-booking .container:has(.points-section) .detailupdown .time-info {
    flex: 0 0 auto;
  }

  body.page-booking .points-section {
    padding: 14px;
    gap: 14px;
  }

  body.page-booking .points-section .carousel-poin {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-booking .points-section .page-redeem .checkout-btn {
    width: 100%;
    max-width: 260px;
  }

  body.page-booking .schedule-item,
  body.page-booking .schedule-item-blank {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    min-width: 0;
  }

  body.page-booking .time-info {
    width: auto;
    min-width: 0;
    justify-self: start;
    align-self: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0;
    text-align: center;
  }

  body.page-booking .details {
    width: auto;
    min-width: 0;
    text-align: left;
    justify-self: stretch;
  }

  body.page-booking .time {
    font-size: 16px;
  }

  body.page-booking .duration {
    font-size: 11px;
    padding: 3px 8px;
  }

  body.page-booking .time,
  body.page-booking .duration {
    white-space: nowrap;
  }

  body.page-booking .time-info > div:not(.time):not(.duration) {
    width: 1px;
    height: 8px;
    border-left: 1px solid var(--border-color);
    opacity: 0.6;
  }

  body.page-booking .links-menu li {
    flex: 1 1 100%;
    max-width: none;
  }

  body.page-booking .containerseat {
    grid-template-columns: repeat(2, 52px) 16px repeat(2, 52px);
    gap: 8px;
  }

  body.page-booking .seat {
    width: 52px;
    height: 52px;
  }

  body.page-booking .chat-box {
    right: 12px;
    left: 12px;
    width: auto;
  }

  body.page-booking .chat-box input {
    width: 100%;
    margin: 0 0 8px;
  }

  body.page-booking .chat-box button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body.page-booking .container {
    margin: 28px auto 24px;
    padding: 18px 14px;
  }

  body.page-booking .title,
  body.page-booking .search-title {
    font-size: 18px;
    letter-spacing: 0.12em;
  }

  body.page-booking .points-section .carousel-poin {
    grid-template-columns: 1fr;
  }
}
  body.page-booking .field-with-action {
    grid-template-columns: 1fr;
  }

  body.page-booking .btn-action-map {
    width: 100%;
  }

.spinner {
	border: 6px solid #dcd7c9; /* Light grey */
	border-top: 6px solid #3a4849; /* Dark color */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}