:root {
  --ink-strong: #231713;
  --ink-soft: #6c564c;
  --panel: rgba(255, 249, 243, 0.94);
  --panel-strong: rgba(255, 252, 248, 0.98);
  --line: rgba(131, 31, 30, 0.14);
  --brand: #831f1e;
  --brand-strong: #a83228;
  --brand-soft: rgba(131, 31, 30, 0.08);
  --success: #266646;
  --warning: #935f0d;
  --shadow: 0 24px 70px rgba(77, 31, 24, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.portal-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink-strong);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(214, 179, 136, 0.2), transparent 28%),
    linear-gradient(180deg, #f4ece3 0%, #f7f0e8 38%, #f2e7db 100%);
  background-position: top center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 1.5rem 0;
}

.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(54, 19, 18, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header--scrolled .site-header__inner {
  transform: translateY(2px);
  box-shadow: 0 24px 44px rgba(54, 19, 18, 0.14);
  background: rgba(255, 250, 245, 0.92);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brandmark-cluster {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.9rem;
  min-width: 0;
}

.brandmark__content {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brandmark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brandmark span {
  display: block;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brandmark strong {
  display: block;
  font-size: 1rem;
}

.brandmark__title-row {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.brandmark__environment {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(131, 31, 30, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(131, 31, 30, 0.11), rgba(131, 31, 30, 0.07));
  color: var(--brand);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(131, 31, 30, 0.08);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  cursor: default;
  margin-bottom: 0.30rem;
}

.header-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.header-user {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  min-width: 0;
}

.header-user__label {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-user__name {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink-strong);
}

.header-icon {
  width: 3.15rem;
  height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  border: 1px solid rgba(131, 31, 30, 0.12);
  border-radius: 999px;
  background: rgba(255, 251, 247, 0.78);
  color: rgba(131, 31, 30, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.header-icon__glyph {
  width: 2rem;
  height: 2rem;
  display: block;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("/settings.svg") center / contain no-repeat;
  mask: url("/settings.svg") center / contain no-repeat;
}

.header-icon:hover,
.header-icon:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(131, 31, 30, 0.22);
  background: rgba(248, 236, 229, 0.96);
  box-shadow: 0 8px 18px rgba(131, 31, 30, 0.1);
  color: #6f1d1c;
}

.header-icon:focus-visible {
  outline: none;
}

.site-nav,
.site-footer__links,
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.site-nav,
.site-footer__links,
.language-link {
  color: var(--ink-soft);
}

.language-link {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.language-link.is-active {
  background: rgba(131, 31, 30, 0.12);
  color: var(--brand);
  font-weight: 700;
}

.header-cta,
.search-button,
.primary-button,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta,
.search-button,
.primary-button {
  border: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff8f1;
  box-shadow: 0 18px 36px rgba(131, 31, 30, 0.24);
}

.header-cta,
.search-button,
.primary-button,
.secondary-link {
  padding: 0.86rem 1.25rem;
}

.secondary-link {
  border: 1px solid rgba(131, 31, 30, 0.16);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink-strong);
}

.header-cta:hover,
.search-button:hover,
.primary-button:hover,
.secondary-link:hover {
  transform: translateY(-1px);
}

.page-shell {
  flex: 1;
  display: flex;
  padding: 2.2rem 1.5rem 1.25rem;
}

.page-main {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.login-shell,
.search-page,
.results-shell {
  display: grid;
  gap: 1.2rem;
}

.login-shell {
  min-height: calc(100vh - 240px);
  align-content: center;
}

.search-page {
  min-height: auto;
  align-content: start;
}

.login-card,
.search-shell,
.info-banner,
.results-toolbar,
.trip-card,
.empty-state {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.login-card,
.search-shell,
.results-toolbar,
.empty-state {
  border-radius: var(--radius-xl);
}

.login-card {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 1.75rem;
}

.page-intro {
  display: grid;
  gap: 0.45rem;
}

.page-title {
  margin: 0;
  font-family: "Noto Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.page-description {
  margin: 0;
  max-width: 62rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.auth-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.auth-title,
.results-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
}

.results-title {
  margin: 0.2rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.06;
}

.results-title__count,
.results-title__destination {
  color: var(--brand);
}

.results-title__inline-page {
  color: var(--ink-soft);
  font-size: 0.60em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  white-space: nowrap;
  margin-left: 0.45rem;
}

.results-title__page {
  justify-self: end;
  align-self: end;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.booking-stage {
  display: grid;
  gap: 0;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.search-page__header {
  margin: 0 0 0.9rem;
  padding: 0 0.35rem;
}

.search-page__title {
  margin: 0;
  color: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-block;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.login-form,
.search-form {
  display: grid;
  gap: 0.9rem;
}

.login-form {
  width: min(100%, 360px);
  margin: 0 auto;
}

.login-field,
.search-field {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(131, 31, 30, 0.14);
  border-radius: 18px;
  background: var(--panel-strong);
}

.login-field span,
.search-field span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.login-field input,
.search-field > input:not([type="hidden"]),
.date-input--display,
.select-input,
.destination-dropdown__search {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink-strong);
  outline: none;
}

.login-field input,
.destination-dropdown__search {
  padding: 0.25rem 0;
}

.search-shell--main {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 1.4rem;
  background: transparent;
}

.search-shell--main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 249, 243, 0.88), rgba(255, 249, 243, 0.88)),
    url("/Logo_background.png") center center / 80% auto no-repeat;
  pointer-events: none;
}

.search-form-main {
  position: relative;
  z-index: 1;
}

.search-field--wide {
  min-width: 0;
}

.search-form-main {
  display: grid;
  gap: 0.9rem;
}

.search-form-main__row {
  display: grid;
  gap: 0.9rem;
}

.search-form-main__row--top {
  grid-template-columns: minmax(320px, 1fr) auto;
  align-items: center;
}

.search-form-main__row--bottom {
  grid-template-columns: repeat(3, minmax(170px, 1fr)) auto;
  align-items: stretch;
}

.search-form-main__checkbox.is-hidden {
  display: none;
}

.search-form-main__checkbox {
  justify-self: end;
}

.search-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(131, 31, 30, 0.14);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.82);
  box-shadow: 0 10px 24px rgba(77, 31, 24, 0.06);
  color: var(--ink-strong);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.search-checkbox input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid rgba(131, 31, 30, 0.28);
  border-radius: 0.35rem;
  background: #fffdfa;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.search-checkbox input::after {
  content: "";
  width: 0.36rem;
  height: 0.62rem;
  border-right: 2px solid #fff8f1;
  border-bottom: 2px solid #fff8f1;
  transform: rotate(45deg) scale(0);
  transition: transform 0.16s ease;
}

.search-checkbox input:checked {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: 0 8px 16px rgba(131, 31, 30, 0.18);
}

.search-checkbox input:checked::after {
  transform: rotate(45deg) scale(1);
}

.search-checkbox:hover {
  transform: translateY(-1px);
  border-color: rgba(131, 31, 30, 0.22);
  background: rgba(255, 250, 245, 0.96);
  box-shadow: 0 14px 26px rgba(77, 31, 24, 0.1);
}

.search-checkbox:has(input:checked) {
  border-color: rgba(131, 31, 30, 0.22);
  background: rgba(131, 31, 30, 0.06);
}

.search-checkbox span {
  color: var(--ink-strong);
  font-size: 0.95rem;
  line-height: 1.2;
}

.search-checkbox__content {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.search-checkbox__title {
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 700;
}

.search-checkbox__meta {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 500;
}

.search-field--destination,
.search-field--travellers {
  position: relative;
}

.search-field--destination {
  cursor: pointer;
}

.search-field--travellers {
  cursor: pointer;
}

.search-field--destination.is-open,
.search-field--travellers.is-open {
  border-color: rgba(131, 31, 30, 0.24);
  box-shadow: 0 12px 28px rgba(131, 31, 30, 0.08);
}

.destination-trigger,
.traveller-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-strong);
  text-align: left;
}

.search-field--destination .destination-trigger,
.search-field--destination span,
.search-field--travellers .traveller-trigger,
.search-field--travellers span {
  cursor: pointer;
}

.destination-trigger__icon {
  color: var(--ink-soft);
  transition: transform 0.2s ease;
}

.search-field--destination.is-open .destination-trigger__icon,
.search-field--travellers.is-open .destination-trigger__icon {
  transform: rotate(180deg);
}

.destination-dropdown,
.traveller-dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0.95rem;
  border: 1px solid rgba(131, 31, 30, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.99) 0%, rgba(255, 248, 241, 0.98) 100%);
  box-shadow: 0 26px 44px rgba(54, 19, 18, 0.16);
  backdrop-filter: blur(18px);
  animation: dropdown-enter 0.16s ease;
}

.destination-dropdown__search-wrap {
  position: relative;
  margin-bottom: 0.8rem;
}

.destination-dropdown__search {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(131, 31, 30, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.destination-dropdown__search::placeholder {
  color: rgba(108, 86, 76, 0.72);
}

.destination-dropdown__list {
  display: grid;
  gap: 0.45rem;
  max-height: 248px;
  overflow-y: auto;
  padding-right: 0.15rem;
}

.destination-dropdown__list::-webkit-scrollbar {
  width: 0.5rem;
}

.destination-dropdown__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(131, 31, 30, 0.18);
}

.destination-option,
.traveller-counter__btn {
  border: 0;
  cursor: pointer;
}

.destination-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.34);
  text-align: left;
  font-weight: 700;
  color: var(--ink-strong);
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.destination-option::after {
  content: "✓";
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 800;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.destination-option:hover {
  transform: translateX(2px);
  border-color: rgba(131, 31, 30, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 22px rgba(77, 31, 24, 0.08);
}

.destination-option.is-selected {
  border-color: rgba(131, 31, 30, 0.18);
  background: rgba(131, 31, 30, 0.1);
  color: var(--brand);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.destination-option.is-selected::after {
  opacity: 1;
  transform: scale(1);
}

.traveller-dropdown {
  display: grid;
  gap: 0.8rem;
}

.traveller-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(131, 31, 30, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.traveller-row strong {
  font-size: 0.98rem;
}

.traveller-counter span {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 800;
  color: var(--ink-strong);
}

.traveller-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.traveller-counter__btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(131, 31, 30, 0.12);
  color: var(--brand);
  font-weight: 800;
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.traveller-counter__btn:hover {
  transform: translateY(-1px);
  background: rgba(131, 31, 30, 0.18);
  box-shadow: 0 10px 18px rgba(77, 31, 24, 0.1);
}

.search-field--date {
  cursor: pointer;
}

.date-input,
.date-input--display {
  cursor: pointer;
}

.search-button {
  align-self: center;
  min-height: auto;
}

.search-button--main {
  min-width: 126px;
  min-height: 4.2rem;
  padding-inline: 1.2rem;
}

.flatpickr-calendar {
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(54, 19, 18, 0.14);
}

.info-banner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  color: var(--ink-soft);
}

.info-banner--compact {
  display: grid;
}

.form-error {
  color: #a12a2a;
  font-size: 0.95rem;
}

.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.results-main {
  display: grid;
  gap: 1rem;
}

.results-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.results-layout--booking {
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr) minmax(220px, 250px);
  gap: 1.25rem;
}

.results-main--single {
  width: min(100%, 1100px);
  justify-self: stretch;
}

.results-filters {
  position: sticky;
  top: 6.3rem;
}

.results-filters__card {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.results-filters__scroll {
  max-height: calc(100vh - 8.1rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  margin-right: -0.85rem;
  padding-right: 0.15rem;
}

.results-filters__scroll-inner {
  display: grid;
  gap: 1rem;
  padding-right: 1rem;
}

.results-filters__scroll::-webkit-scrollbar {
  width: 0.7rem;
}

.results-filters__scroll::-webkit-scrollbar-track {
  background: rgba(131, 31, 30, 0.06);
  border-radius: 999px;
}

.results-filters__scroll::-webkit-scrollbar-thumb {
  background: rgba(131, 31, 30, 0.28);
  border-radius: 999px;
  border: 3px solid rgba(255, 248, 241, 0.92);
}

.results-filters__scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(131, 31, 30, 0.42);
}

.trip-options-filters__card {
  overflow: hidden;
}

.trip-options-filters__scroll {
  max-height: calc(100vh - 8.1rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  margin-right: -0.85rem;
  padding-right: 0.15rem;
}

.results-filters__section {
  display: grid;
  gap: 1.1rem;
}

.results-filters__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.results-filters__actions {
  display: flex;
  justify-content: flex-end;
}

.results-filters__accordion {
  gap: 0.85rem;
}

.results-filters__section.is-disabled {
  opacity: 0.48;
}

.results-filters__section + .results-filters__section {
  margin-top: 0.85rem;
}

.results-filters__kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-filters__heading .results-filters__kicker {
  margin-bottom: 0;
}

.results-filters__clear {
  color: rgba(131, 31, 30, 0.76);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease, transform 0.18s ease;
}

.results-filters__clear:hover {
  color: var(--brand);
  transform: translateY(-1px);
}

.results-filters__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}

.results-filters__summary::-webkit-details-marker {
  display: none;
}

.results-filters__summary .results-filters__kicker {
  margin-bottom: 0;
}

.results-filters__chevron {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid rgba(131, 31, 30, 0.72);
  border-bottom: 2px solid rgba(131, 31, 30, 0.72);
  transform: rotate(45deg);
  transition: transform 0.18s ease, border-color 0.18s ease;
  flex: 0 0 auto;
}

.results-filters__accordion[open] .results-filters__chevron {
  transform: rotate(225deg);
}

.results-filters__summary:hover .results-filters__chevron {
  border-color: var(--brand);
}

.results-filter-form .results-filters__section + .results-filters__section .results-filters__kicker {
  margin-top: 0.15rem;
}

.results-filters__message {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.results-filter-form {
  margin: 0;
}

.results-search-box {
  display: block;
}

.results-search-box__input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(131, 31, 30, 0.14);
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.96);
  color: var(--ink-strong);
  outline: none;
}

.results-filters__placeholder-group {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.results-subfilter {
  display: grid;
  gap: 0.55rem;
}

.results-subfilter__details {
  margin: -0.1rem 0 0 1rem;
  display: grid;
  gap: 0.55rem;
}

.results-subfilter__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.12rem 0.1rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
  transition: color 0.16s ease, transform 0.16s ease;
}

.results-subfilter__summary::-webkit-details-marker {
  display: none;
}

.results-subfilter__summary:hover {
  transform: translateY(-1px);
}

.results-subfilter__label {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-subfilter__chevron {
  width: 0.62rem;
  height: 0.62rem;
  border-right: 2px solid rgba(131, 31, 30, 0.72);
  border-bottom: 2px solid rgba(131, 31, 30, 0.72);
  transform: rotate(45deg);
  transition: transform 0.18s ease, border-color 0.18s ease;
  flex: 0 0 auto;
}

.results-subfilter__details[open] .results-subfilter__chevron {
  transform: rotate(225deg);
}

.results-subfilter__summary:hover .results-subfilter__chevron {
  border-color: var(--brand);
}

.results-subfilter__details.is-disabled {
  opacity: 0.5;
}

.results-subfilter__details.is-disabled .results-subfilter__summary {
  cursor: pointer;
  transform: none;
}

.results-subfilter__details.is-disabled .search-checkbox--sidebar {
  background: rgba(246, 241, 236, 0.88);
  border-color: rgba(131, 31, 30, 0.08);
  box-shadow: none;
  cursor: not-allowed;
}

.results-subfilter__details.is-disabled .search-checkbox--sidebar:hover {
  box-shadow: none;
  transform: none;
}

.results-subfilter__details.is-disabled .search-checkbox--sidebar,
.results-subfilter__details.is-disabled .search-checkbox--sidebar input,
.results-subfilter__details.is-disabled .search-checkbox--sidebar span {
  cursor: not-allowed;
}

.results-subfilter__options {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.results-tag-tree {
  margin-left: 0;
  padding: 0.18rem;
  border: 1px solid rgba(131, 31, 30, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.results-tag-tree + .results-tag-tree {
  margin-top: 0.22rem;
}

.results-tag-tree > .results-subfilter__summary {
  padding: 0.72rem 0.82rem;
  border-radius: 14px;
}

.results-tag-tree[open] {
  background: rgba(255, 250, 245, 0.88);
  border-color: rgba(131, 31, 30, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 20px rgba(77, 31, 24, 0.05);
}

.results-tag-tree[open] > .results-subfilter__summary {
  background: rgba(131, 31, 30, 0.05);
}

.results-tag-tree__label {
  color: var(--ink-strong);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}

.results-tag-tree__options {
  margin-top: 0.2rem;
  padding: 0.7rem 0.48rem 0.48rem;
  border-top: 1px solid rgba(131, 31, 30, 0.08);
  border-left: 0;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 0 0 14px 14px;
}

.search-checkbox--child {
  padding-block: 0.72rem;
  margin-left: 0;
}

.search-checkbox--sidebar {
  width: 100%;
  justify-content: flex-start;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.72);
  box-shadow: none;
}

.search-checkbox--sidebar:hover {
  box-shadow: 0 10px 20px rgba(77, 31, 24, 0.06);
}

.search-checkbox--sidebar span {
  font-size: 0.98rem;
}

.results-filters__section.is-disabled .search-checkbox--sidebar {
  background: rgba(246, 241, 236, 0.88);
  border-color: rgba(131, 31, 30, 0.08);
  box-shadow: none;
  cursor: not-allowed;
}

.results-filters__section.is-disabled .search-checkbox--sidebar:hover {
  box-shadow: none;
}

.results-filters__section.is-disabled .search-checkbox--sidebar input,
.results-filters__section.is-disabled .search-checkbox--sidebar span {
  cursor: not-allowed;
}

.results-filters__section.is-disabled .results-subfilter__summary {
  cursor: not-allowed;
  opacity: 0.72;
}

.results-placeholder-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
  border: 1px dashed rgba(131, 31, 30, 0.18);
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.72);
  color: var(--ink-soft);
  font-weight: 700;
}

.results-placeholder-check input {
  accent-color: var(--brand);
}

.results-toolbar__meta {
  display: grid;
  gap: 0.35rem;
  color: var(--ink-soft);
}

.results-toolbar__meta-line {
  display: block;
}

.results-toolbar__actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.9rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.results-toolbar__actions-main {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
}

.results-toolbar__search {
  width: min(100%, 30rem);
  display: grid;
  gap: 0.55rem;
}

.results-sort-form {
  margin: 0;
}

.results-sort-field {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(131, 31, 30, 0.14);
  border-radius: 18px;
  background: var(--panel-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.results-sort-picker {
  position: relative;
  min-width: 18rem;
  cursor: pointer;
}

.results-sort-field span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.results-sort-trigger {
  cursor: pointer;
  font-weight: 800;
}

.results-sort-picker .destination-trigger__icon {
  color: var(--brand);
}

.destination-dropdown--compact {
  padding: 0.7rem;
}

.destination-dropdown__list--compact {
  max-height: none;
}

.destination-dropdown__list--compact .destination-option {
  padding: 0.85rem 0.95rem;
}

.results-sort-select {
  min-width: 16rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink-strong);
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.trip-card-grid {
  display: grid;
  gap: 1rem;
}

.results-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.results-pagination__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.results-pagination__ellipsis {
  color: var(--ink-soft);
  font-weight: 800;
  letter-spacing: 0.08em;
  padding-inline: 0.2rem;
}

.results-pagination__link {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
}

.results-pagination__link {
  border: 1px solid rgba(131, 31, 30, 0.16);
  background: rgba(255, 249, 243, 0.88);
  color: var(--brand);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(77, 31, 24, 0.08);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.results-pagination__link:hover {
  transform: translateY(-1px);
  background: rgba(248, 236, 229, 0.96);
  border-color: rgba(131, 31, 30, 0.24);
}

.results-pagination__link.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.results-pagination__link.is-current {
  border-color: rgba(131, 31, 30, 0.24);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff8f1;
  box-shadow: 0 12px 24px rgba(131, 31, 30, 0.18);
}

.trip-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  border-radius: 22px;
}

.trip-card--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.trip-card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(131, 31, 30, 0.24);
  box-shadow: 0 18px 34px rgba(54, 19, 18, 0.1);
}

.trip-card--link:focus-visible {
  outline: 3px solid rgba(131, 31, 30, 0.18);
  outline-offset: 3px;
}

.trip-card--link article {
  display: grid;
  gap: 0.85rem;
}

.trip-card.is-highlighted {
  position: relative;
  overflow: hidden;
  border-color: rgba(131, 31, 30, 0.48);
  box-shadow: 0 30px 62px rgba(131, 31, 30, 0.22), 0 0 0 3px rgba(131, 31, 30, 0.12);
  background: linear-gradient(180deg, rgba(255, 248, 242, 1) 0%, rgba(255, 238, 229, 0.98) 100%);
  outline: 2px solid rgba(131, 31, 30, 0.22);
  scroll-margin-top: 8rem;
  animation: trip-highlight-pulse 1.05s ease;
}

.trip-card.is-highlighted::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
}

.trip-card.is-highlighted .trip-card__title {
  color: #6f1818;
}

.trip-card.is-highlighted .trip-card__line strong {
  color: #4f1212;
}

.trip-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.trip-card__heading {
  display: grid;
  gap: 0.3rem;
}

.trip-card__title {
    margin: 0;
    font-size: 1.30rem;
    line-height: 1.25;
    font-weight: bold;
    color: #831f1e;
}

.trip-card__title-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.trip-card__title-link:hover {
  color: #6f1818;
}

.trip-card__subtitle {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.trip-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.05rem;
}

.trip-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.6rem;
  border: 1px solid rgba(131, 31, 30, 0.1);
  border-radius: 999px;
  background: rgba(131, 31, 30, 0.06);
  color: rgba(93, 35, 34, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.trip-card__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  margin: 0;
}

.trip-card__line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.4;
}

.trip-card__line span {
  min-width: 6.2rem;
}

.trip-card__line strong {
  color: var(--ink-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.trip-card__pending-value {
  color: var(--success);
}

.trip-card__line strong.trip-card__pending-value,
.trip-card.is-highlighted .trip-card__line strong.trip-card__pending-value {
  color: var(--success);
}

.trip-card__line--action {
  align-items: center;
}

.trip-card__action {
  margin-left: 0.35rem;
  padding: 0.48rem 0.9rem;
  border: 1px solid rgba(131, 31, 30, 0.18);
  border-radius: 999px;
  background: rgba(131, 31, 30, 0.08);
  color: rgba(131, 31, 30, 0.58);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  cursor: not-allowed;
  box-shadow: none;
}

.trip-card__action:disabled {
  opacity: 1;
}

.trip-card__line--dates {
  gap: 0.7rem;
}

.trip-card__line--dates strong + strong::before {
  content: "-";
  margin-right: 0.7rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.availability-pill {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.availability-pill.is-available {
  background: rgba(38, 102, 70, 0.12);
  color: var(--success);
}

.availability-pill.is-on-request {
  background: rgba(147, 95, 13, 0.12);
  color: var(--warning);
}

.trip-option-card {
  min-height: 100%;
}

.trip-option-card__price {
  color: var(--brand);
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(131, 31, 30, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(131, 31, 30, 0.06) 0%, rgba(131, 31, 30, 0.12) 100%);
  box-shadow: 0 14px 28px rgba(131, 31, 30, 0.12);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.trip-options-toolbar {
  min-height: 105px;
  align-items: center;
}

.booking-toolbar {
  min-height: 105px;
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.96) 0%, rgba(252, 242, 233, 0.92) 100%);
  box-shadow: 0 24px 52px rgba(77, 31, 24, 0.12);
}

.trip-option-card__reserve {
  margin-left: auto;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff8f1;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(131, 31, 30, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.trip-option-card__reserve:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(131, 31, 30, 0.24);
}

.trip-card__line--reserve {
  align-items: flex-start;
}

.booking-card {
  gap: 1.4rem;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.98) 0%, rgba(249, 237, 226, 0.96) 100%);
  box-shadow:
    0 30px 64px rgba(77, 31, 24, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.booking-sidebar {
  position: sticky;
  top: 6.3rem;
}

.booking-sidebar__card {
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.98) 0%, rgba(249, 237, 226, 0.96) 100%);
}

.booking-summary-card {
  padding: 1.15rem 1.15rem 1.2rem;
  overflow: visible;
}

.booking-summary-card .results-filters__section {
  gap: 0.95rem;
}

.booking-summary-card__grid {
  display: grid;
  gap: 0.8rem;
}

.booking-summary-card__row {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(131, 31, 30, 0.08);
}

.booking-summary-card__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.booking-summary-card__label {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-summary-card__value {
  color: var(--ink-strong);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}

.booking-summary-card__action {
  width: 100%;
  justify-content: center;
  margin-top: 0.2rem;
}

.booking-room-picker {
  margin-top: 0.2rem;
  z-index: 6;
}

.booking-room-picker .traveller-dropdown {
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  padding: 0.7rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(54, 19, 18, 0.14);
}

.booking-room-picker .traveller-row {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-room-picker .traveller-row strong {
  font-size: 1rem;
}

.booking-room-picker .traveller-counter {
  gap: 0.65rem;
}

.booking-room-picker .traveller-counter__btn {
  width: 2rem;
  height: 2rem;
}

.traveller-counter__btn {
  outline: none;
}

.traveller-counter__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(131, 31, 30, 0.18);
}

.booking-card__heading {
  gap: 0.42rem;
}

.booking-card__summary {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(131, 31, 30, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.94) 0%, rgba(252, 244, 237, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 12px 26px rgba(77, 31, 24, 0.05);
}

.booking-card__facts {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.75rem 1.6rem;
  margin-bottom: 0;
  align-items: start;
}

.booking-card__facts--sidebar {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.booking-card__facts--sidebar .trip-card__line,
.booking-card__facts--sidebar .trip-card__line--reserve {
  grid-template-columns: 1fr;
  gap: 0.32rem;
  min-height: 0;
}

.booking-card__facts--sidebar .trip-card__line span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-card__facts--sidebar .trip-card__line strong {
  font-size: 0.98rem;
}

.booking-card__facts--sidebar .trip-card__line--reserve .trip-card__action {
  margin-top: 0.15rem;
}

.booking-sidebar--action {
  position: sticky;
  top: 6.3rem;
}

.booking-action-card {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.booking-action-card__content {
  display: grid;
  gap: 0.9rem;
  padding: 0;
}

.booking-action-card__price {
  width: 100%;
  min-height: 0;
  padding: 1.2rem 0.95rem;
  display: grid;
  place-items: center;
  text-align: center;
  min-width: 0;
  font-size: clamp(1.9rem, 2.4vw, 2.35rem);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(131, 31, 30, 0.08) 0%, rgba(131, 31, 30, 0.16) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 28px rgba(131, 31, 30, 0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  overflow: hidden;
}

.booking-action-card__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(131, 31, 30, 0) 0%, rgba(131, 31, 30, 0.16) 18%, rgba(131, 31, 30, 0.16) 82%, rgba(131, 31, 30, 0) 100%);
}

.booking-card__facts .trip-card__line {
  display: grid;
  grid-template-columns: minmax(96px, auto) minmax(0, 1fr);
  gap: 0.7rem;
  align-items: baseline;
  min-height: 2rem;
}

.booking-card__facts .trip-card__line--dates {
  grid-template-columns: minmax(96px, auto) auto auto;
  column-gap: 1rem;
}

.booking-card__facts .trip-card__line--reserve {
  grid-template-columns: minmax(96px, auto) minmax(0, 1fr) auto;
}

.booking-card__facts .trip-card__line span {
  min-width: 0;
}

.booking-card__facts .trip-card__line strong {
  justify-self: start;
}

.booking-card__facts .trip-card__line--reserve .trip-card__action {
  justify-self: start;
}

.booking-hotel-block {
  padding-top: 0.15rem;
}

.booking-hotel-block + .booking-hotel-block {
  margin-top: 0.15rem;
}

.booking-hotel-block__surface {
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid rgba(131, 31, 30, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.94) 0%, rgba(251, 243, 236, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 12px 24px rgba(77, 31, 24, 0.05);
}

.booking-hotel-block__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 0.9rem 1.25rem;
}

.booking-hotel-block__summary {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
  justify-items: start;
}

.booking-hotel-block__location-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.booking-hotel-block__location-name {
  display: inline-flex;
  align-items: center;
  align-self: start;
  justify-self: start;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(131, 31, 30, 0.1) 0%, rgba(131, 31, 30, 0.06) 100%);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-hotel-block__category-name {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(131, 31, 30, 0.1) 0%, rgba(131, 31, 30, 0.06) 100%);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.booking-hotel-block__hotel-name {
  color: var(--ink-strong);
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 800;
}

.booking-hotel-block__hotel-name--pending {
  color: var(--success);
}

.booking-hotel-picker {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-self: start;
}

.booking-hotel-picker__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  align-self: start;
  padding: 0.82rem 1.2rem;
  min-width: 12.5rem;
  border: 1px solid rgba(131, 31, 30, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 249, 244, 0.96) 0%, rgba(251, 241, 232, 0.92) 100%);
  color: var(--ink-strong);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.booking-hotel-picker__summary::after {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-right: 2px solid rgba(131, 31, 30, 0.72);
  border-bottom: 2px solid rgba(131, 31, 30, 0.72);
  transform: rotate(45deg);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.booking-hotel-picker__summary[aria-expanded="true"]::after {
  transform: rotate(225deg);
}

.booking-hotel-picker__summary:hover {
  transform: translateY(-1px);
  border-color: rgba(131, 31, 30, 0.24);
  background: rgba(248, 236, 229, 0.96);
  box-shadow: 0 10px 22px rgba(77, 31, 24, 0.08);
}

.booking-hotel-picker__panel {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 72;
  display: grid;
  gap: 0.95rem;
  width: min(720px, calc(100vw - 2rem));
  max-height: min(78vh, 760px);
  margin: 0;
  padding: 1.15rem;
  border: 1px solid rgba(131, 31, 30, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 247, 240, 0.99) 0%, rgba(250, 239, 229, 0.98) 100%);
  box-shadow: 0 28px 70px rgba(54, 19, 18, 0.24);
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  overflow: hidden;
}

.booking-hotel-picker__backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(38, 15, 14, 0.36);
  backdrop-filter: blur(4px);
}

.booking-hotel-picker__panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.booking-hotel-picker__panel-copy {
  display: grid;
  gap: 0.2rem;
}

.booking-hotel-picker__panel-title {
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 800;
}

.booking-hotel-picker__panel-subtitle {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.booking-hotel-picker__panel-close {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(131, 31, 30, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.86);
  color: var(--brand);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.booking-hotel-picker__panel-close:hover {
  transform: translateY(-1px);
  background: rgba(248, 236, 229, 0.96);
  box-shadow: 0 10px 20px rgba(77, 31, 24, 0.08);
}

.booking-hotel-picker__form {
  display: grid;
  gap: 0.85rem;
  min-height: 0;
}

.booking-hotel-picker__search-wrap {
  position: relative;
}

.booking-hotel-picker__search {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(131, 31, 30, 0.12);
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.92);
  color: var(--ink-strong);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.booking-hotel-picker__search::placeholder {
  color: rgba(108, 86, 76, 0.72);
}

.booking-hotel-picker__search:focus {
  border-color: rgba(131, 31, 30, 0.22);
  box-shadow: 0 0 0 3px rgba(131, 31, 30, 0.08);
}

.booking-hotel-list {
  display: grid;
  gap: 0.7rem;
  min-height: 260px;
  height: min(50vh, 440px);
  max-height: min(50vh, 440px);
  overflow-y: auto;
  padding-right: 0.2rem;
  align-content: start;
}

.booking-hotel-list::-webkit-scrollbar {
  width: 0.55rem;
}

.booking-hotel-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(131, 31, 30, 0.2);
}

.booking-hotel-picker__empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.booking-hotel-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(131, 31, 30, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.96) 0%, rgba(252, 244, 237, 0.92) 100%);
  color: var(--ink-strong);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
  box-sizing: border-box;
}

.booking-hotel-option:hover {
  transform: translateY(-1px);
  border-color: rgba(131, 31, 30, 0.22);
  background: rgba(255, 250, 245, 0.98);
  box-shadow: 0 14px 28px rgba(77, 31, 24, 0.08);
}

.booking-hotel-option.is-selected {
  border-color: rgba(131, 31, 30, 0.28);
  background:
    linear-gradient(180deg, rgba(131, 31, 30, 0.1) 0%, rgba(131, 31, 30, 0.06) 100%);
  box-shadow: 0 12px 24px rgba(131, 31, 30, 0.1);
}

.booking-hotel-option.is-preferred .booking-hotel-option__category {
  background: rgba(131, 31, 30, 0.12);
  color: var(--brand);
}

.booking-hotel-option__main {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
}

.booking-hotel-option__name {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
}

.booking-hotel-option__meta {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.booking-hotel-option__category {
  margin-left: auto;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(131, 31, 30, 0.08);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-hotel-option__price {
  margin-left: 0.65rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(131, 31, 30, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(131, 31, 30, 0.06) 0%, rgba(131, 31, 30, 0.12) 100%);
  box-shadow: 0 10px 18px rgba(131, 31, 30, 0.08);
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.booking-paybar {
  position: static;
  display: flex;
  justify-content: flex-end;
  margin-top: 1.15rem;
  padding-bottom: 0;
  z-index: auto;
  pointer-events: auto;
}

.booking-paybar--sidebar {
  margin-top: 0;
  justify-content: stretch;
}

.booking-paybar__button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff8f1;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 22px 42px rgba(131, 31, 30, 0.28);
  cursor: default;
}

.booking-paybar--sidebar .booking-paybar__button {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.3rem;
  border-radius: 22px;
}

.booking-paybar__icon {
  width: 1rem;
  height: 1rem;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.booking-toolbar .results-toolbar__meta-line:first-child {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.empty-state {
  padding: 2rem;
  color: var(--ink-soft);
}

.site-footer {
  margin-top: auto;
  padding: 0 1.5rem 1.5rem;
}

.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(131, 31, 30, 0.1);
  background: rgba(255, 250, 245, 0.74);
  box-shadow: 0 12px 28px rgba(54, 19, 18, 0.06);
}

.back-to-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 3.35rem;
  height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff8f1;
  box-shadow: 0 16px 30px rgba(131, 31, 30, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease, box-shadow 0.18s ease;
  z-index: 40;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(131, 31, 30, 0.32);
}

.back-to-top__arrow {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(244, 236, 227, 0.68);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.page-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.portal-trip-search-pending .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader__panel {
  min-width: min(100%, 280px);
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(131, 31, 30, 0.14);
  border-radius: 24px;
  background: rgba(255, 251, 247, 0.96);
  box-shadow: 0 28px 52px rgba(54, 19, 18, 0.16);
}

.page-loader__logo {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.page-loader__spinner {
  width: 2.7rem;
  height: 2.7rem;
  border: 3px solid rgba(131, 31, 30, 0.14);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: page-loader-spin 0.9s linear infinite;
}

.page-loader__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink-strong);
}

.page-loader__text {
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-align: center;
}

body.is-loading {
  cursor: progress;
}

@keyframes dropdown-enter {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes trip-highlight-pulse {
  0% {
    transform: translateY(10px) scale(0.988);
    box-shadow: 0 0 0 0 rgba(131, 31, 30, 0.18);
  }

  55% {
    transform: translateY(0) scale(1);
    box-shadow: 0 32px 68px rgba(131, 31, 30, 0.24), 0 0 0 8px rgba(131, 31, 30, 0.08);
  }

  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 30px 62px rgba(131, 31, 30, 0.22), 0 0 0 3px rgba(131, 31, 30, 0.12);
  }
}

@media (min-width: 1025px) {
  .site-header {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }

  .site-header__inner {
    max-width: none;
    margin: 0;
    padding: 1rem 2rem;
    border-radius: 0 0 28px 28px;
  }

  .site-footer {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .site-footer__inner {
    max-width: none;
    margin: 0;
    padding: 1rem 2rem;
    border-radius: 28px 28px 0 0;
  }
}

@media (max-width: 1120px) {
  .booking-stage {
    width: min(100%, 980px);
  }

  .search-form-main__row--top {
    grid-template-columns: 1fr;
  }

  .search-form-main__row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-form-main__checkbox {
    justify-self: start;
  }

  .search-button--main {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .site-header__inner,
  .results-filters__card,
  .results-toolbar,
  .site-footer__inner {
    border-radius: 28px;
  }

  .header-actions,
  .results-layout,
  .results-toolbar,
  .site-footer__inner {
    flex-wrap: wrap;
  }

  .results-layout {
    grid-template-columns: 1fr;
  }

  .results-layout--booking {
    grid-template-columns: 1fr;
  }

  .results-filters {
    position: static;
  }

  .results-filters__card {
    overflow: visible;
  }

  .results-filters__scroll {
    max-height: none;
    overflow-y: visible;
  }

  .results-main--single {
    width: 100%;
  }

  .booking-hotel-block__header {
    grid-template-columns: 1fr;
  }

  .booking-hotel-picker {
    width: 100%;
    justify-items: stretch;
  }

  .booking-paybar {
    margin-top: 1rem;
  }

  .booking-paybar__button {
    width: 100%;
    justify-content: center;
  }

  .booking-action-card__price {
    min-height: 0;
    font-size: 1.95rem;
  }

  .booking-action-card {
    min-height: 0;
  }

  .results-filters__scroll-inner {
    padding-right: 0;
  }

  .header-user {
    margin-right: auto;
    align-items: flex-start;
  }

  .search-page {
    align-content: start;
  }

  .search-form-main__row--top,
  .search-form-main__row--bottom {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .site-header,
  .page-shell,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
  }

  .site-header__inner,
  .search-shell,
  .login-card,
  .results-toolbar,
  .empty-state,
  .site-footer__inner {
    border-radius: 22px;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
    gap: 0.75rem;
  }

  .search-button,
  .primary-button,
  .secondary-link {
    width: auto;
  }

  .header-cta {
    width: auto;
    min-width: 7.5rem;
    padding: 0.75rem 1.1rem;
  }

  .header-user__label {
    font-size: 0.68rem;
  }

  .header-user__name {
    max-width: 120px;
    font-size: 0.92rem;
  }

  .header-icon {
    width: 2.85rem;
    height: 2.85rem;
  }

  .search-button--main {
    width: 100%;
    min-height: 3.7rem;
    padding-inline: 1rem;
  }

  .destination-dropdown,
  .traveller-dropdown {
    padding: 0.8rem;
    border-radius: 20px;
  }

  .destination-option {
    padding: 0.8rem 0.9rem;
  }

  .results-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .results-toolbar__actions {
    width: 100%;
    justify-content: stretch;
    align-items: stretch;
  }

  .results-toolbar__actions-main {
    width: 100%;
  }

  .results-search-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .results-filters__heading {
    align-items: flex-start;
    gap: 0.5rem;
  }

  .results-filters__clear {
    font-size: 0.76rem;
  }


  .results-sort-form,
  .results-sort-field,
  .results-sort-select,
  .results-sort-picker {
    width: 100%;
  }

  .auth-brand {
    align-items: flex-start;
  }

  .trip-card__top {
      flex-direction: column;
    }

  .booking-hotel-option {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-hotel-option__category {
    align-self: flex-start;
    margin-left: 0;
  }

  .booking-hotel-option__price {
    margin-left: 0;
  }

  .results-heading {
      grid-template-columns: 1fr;
  }

    .search-page__header {
      margin-bottom: 0.75rem;
      padding-inline: 0.15rem;
  }

  .search-page__title {
    font-size: 1rem;
  }
}
