.bsj-tour-stays {
  --bsj-stay-border: rgba(201, 214, 229, 0.88);
  --bsj-stay-shadow: 0 24px 50px rgba(8, 22, 45, 0.08);
  --bsj-stay-panel: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  --bsj-stay-accent: #21589f;
  --bsj-stay-text-soft: #66758a;
  padding: 32px;
  border: 1px solid var(--bsj-stay-border);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(33, 88, 159, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(202, 181, 130, 0.12), transparent 26%),
    var(--bsj-stay-panel);
  box-shadow: var(--bsj-stay-shadow);
}

.bsj-tour-stays__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.bsj-tour-stays__subtitle {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--bsj-stay-text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.bsj-tour-stays__view-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(186, 199, 215, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 26px rgba(8, 22, 45, 0.08);
}

.bsj-tour-stays__view-button {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #425267;
  font-size: 14px;
  font-weight: 700;
  transition: all 180ms ease;
}

.bsj-tour-stays__view-button.is-active {
  background: linear-gradient(135deg, #1f4d8b 0%, #2f74bc 100%);
  color: #fff;
  box-shadow: 0 14px 24px rgba(31, 77, 139, 0.2);
}

.bsj-tour-stays__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.bsj-tour-stays__tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(186, 199, 215, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #23324a;
  font-weight: 600;
  transition: all 180ms ease;
}

.bsj-tour-stays__tab.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #1f4d8b 0%, #2f74bc 100%);
  color: #fff;
  box-shadow: 0 18px 28px rgba(31, 77, 139, 0.18);
}

.bsj-tour-stays__viewport {
  overflow-x: auto;
  padding-bottom: 8px;
}

.bsj-tour-stays__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 20px;
}

.bsj-tour-stays__card {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #102034;
  box-shadow: 0 24px 48px rgba(10, 18, 32, 0.13);
}

.bsj-tour-stays__media,
.bsj-tour-stays__gallery-track,
.bsj-tour-stays__gallery-slide {
  position: absolute;
  inset: 0;
}

.bsj-tour-stays__gallery-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: opacity 240ms ease, transform 400ms ease;
}

.bsj-tour-stays__gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.bsj-tour-stays__gallery-nav {
  position: absolute;
  inset: 50% 14px auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.bsj-tour-stays__card:hover .bsj-tour-stays__gallery-nav,
.bsj-tour-stays__card:focus-within .bsj-tour-stays__gallery-nav {
  opacity: 1;
}

.bsj-tour-stays__gallery-arrow {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  background: rgba(12, 22, 37, 0.24);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  pointer-events: auto;
}

.bsj-tour-stays__gallery-arrow span {
  display: block;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.bsj-tour-stays__gallery-arrow.is-prev span {
  transform: translate(-1px, -1px);
}

.bsj-tour-stays__gallery-arrow.is-next span {
  transform: translate(1px, -1px);
}

.bsj-tour-stays__meta {
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
}

.bsj-tour-stays__meta--mobile {
  display: none;
}

.bsj-tour-stays__badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  backdrop-filter: blur(10px) saturate(130%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 18px rgba(7, 13, 24, 0.14);
  text-transform: uppercase;
}

.bsj-tour-stays__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 18px 20px;
}

.bsj-tour-stays__overlay::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 68%;
  background:
    linear-gradient(180deg, rgba(9, 18, 30, 0) 0%, rgba(9, 18, 30, 0.06) 10%, rgba(9, 18, 30, 0.16) 24%, rgba(9, 18, 30, 0.34) 42%, rgba(9, 18, 30, 0.56) 62%, rgba(9, 18, 30, 0.78) 82%, rgba(9, 18, 30, 0.94) 100%);
  -webkit-backdrop-filter: blur(22px) saturate(136%);
  backdrop-filter: blur(22px) saturate(136%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.34) 12%, rgba(0, 0, 0, 0.88) 38%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.34) 12%, rgba(0, 0, 0, 0.88) 38%, rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
}

.bsj-tour-stays__overlay::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72%;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.06), transparent 54%),
    linear-gradient(180deg, rgba(7, 15, 27, 0) 0%, rgba(7, 15, 27, 0.08) 18%, rgba(7, 15, 27, 0.18) 36%, rgba(7, 15, 27, 0.3) 58%, rgba(7, 15, 27, 0.42) 100%);
  opacity: 0.74;
  pointer-events: none;
}

.bsj-tour-stays__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 0 2px 2px;
  color: #fff;
  background: transparent;
}

.bsj-tour-stays__content::before {
  content: none;
}

.bsj-tour-stays__content::after {
  content: none;
}

.bsj-tour-stays__content > * {
  position: relative;
  z-index: 1;
}

.bsj-tour-stays__content h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 26px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.bsj-tour-stays__location {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.bsj-tour-stays__footer,
.bsj-tour-stays__totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bsj-tour-stays__pricing {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.bsj-tour-stays__rooms {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.bsj-tour-stays__room-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bsj-tour-stays__room-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bsj-tour-stays__price {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.bsj-tour-stays__price-note,
.bsj-tour-stays__totals span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.bsj-tour-stays__price-note {
  line-height: 1;
}

.bsj-tour-stays__stepper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 30px;
  padding: 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  backdrop-filter: blur(12px) saturate(125%);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 14px rgba(9, 15, 26, 0.07);
  overflow: visible;
  position: relative;
  z-index: 2;
}

.bsj-tour-stays__stepper button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}

.bsj-tour-stays__stepper input {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  min-width: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  opacity: 1;
  visibility: visible;
}

.bsj-tour-stays__stepper input::-webkit-outer-spin-button,
.bsj-tour-stays__stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bsj-tour-stays__totals {
  margin-top: 2px;
  padding-top: 10px;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bsj-tour-stays__totals strong {
  color: #fff;
  font-size: 15px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__viewport {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: min(980px, 74vh);
  padding-right: 6px;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__track {
  grid-auto-flow: row;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-columns: auto;
  gap: 12px;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__card {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  width: 100%;
  min-height: 214px;
  border: 1px solid rgba(216, 226, 237, 0.92);
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
  align-items: stretch;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__card:hover {
  transform: translateY(-1px);
  border-color: rgba(197, 213, 231, 0.96);
  box-shadow:
    0 26px 48px rgba(15, 23, 42, 0.075),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__media,
.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-track,
.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-slide {
  inset: 0;
  width: 100%;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__media {
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  border-right: 1px solid rgba(226, 234, 242, 0.92);
  border-radius: 24px 0 0 24px;
  isolation: isolate;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 28, 0.02) 0%, rgba(8, 16, 28, 0.16) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__card:hover .bsj-tour-stays__gallery-slide.is-active {
  transform: scale(1.035);
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__overlay {
  position: relative;
  inset: auto;
  display: flex;
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 10px 12px;
  background:
    linear-gradient(180deg, rgba(252, 253, 255, 0.98) 0%, rgba(246, 250, 254, 0.98) 100%);
  border-radius: 0 24px 24px 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__overlay::before {
  display: none;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__overlay::after {
  display: none;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__meta {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: calc(100% - 32px);
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__meta--mobile {
  display: none;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 100%;
  color: #1c2f46;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__content h3 {
  margin: 0;
  color: #17304a;
  font-size: 17px;
  line-height: 1.03;
  text-shadow: none;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 24ch;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__badge {
  min-height: 28px;
  padding: 0 11px;
  background: linear-gradient(135deg, #2f6ab0 0%, #235393 100%);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.13em;
  box-shadow: 0 12px 20px rgba(35, 83, 147, 0.18);
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-nav {
  display: flex;
  inset: auto 10px 10px;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: none;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 27, 43, 0.34);
  color: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 18px rgba(8, 18, 31, 0.14);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-arrow span {
  font-size: 20px;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__card:hover .bsj-tour-stays__gallery-nav,
.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__card:focus-within .bsj-tour-stays__gallery-nav {
  opacity: 1;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-arrow:hover,
.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-arrow:focus-visible {
  background: rgba(15, 27, 43, 0.54);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 22px rgba(8, 18, 31, 0.18);
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-head {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  color: #5b6b7e;
  min-width: 0;
  margin-top: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7b8a9a;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary strong {
  color: #13253d;
  font-size: 18px;
  line-height: 1;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary span:last-child {
  font-size: 11px;
  white-space: nowrap;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-copy {
  display: grid;
  align-content: start;
  gap: 3px;
  flex: 0 0 30%;
  min-width: 0;
  width: 100%;
  padding: 0 122px 0 0;
  min-height: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__location {
  margin: 0;
  color: #687c92;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: none;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__reassurance {
  margin: 0;
  color: #70849a;
  font-size: 10px;
  line-height: 1.35;
  max-width: 42ch;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__selling-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__selling-point {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border: 1px solid rgba(213, 225, 237, 0.88);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(247, 250, 253, 0.98) 0%, rgba(240, 246, 252, 0.98) 100%);
  color: #53677d;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.bsj-tour-stays__mobile-cta {
  display: none;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-actions {
  display: grid;
  align-content: stretch;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 6px;
  flex: 1 1 70%;
  min-width: 0;
  width: 100%;
  padding: 10px 12px 8px;
  border: 1px solid rgba(191, 212, 234, 0.82);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(238, 246, 253, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 24px rgba(41, 93, 156, 0.08);
  min-height: 0;
  margin-top: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__rooms-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__rooms-label {
  color: #5e7691;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__rooms-note {
  color: #7d92aa;
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__rooms {
  display: grid;
  width: 100%;
  align-content: start;
  gap: 0;
  margin-top: 0;
  min-height: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__room-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  width: 100%;
  padding: 7px 0;
  min-height: 0;
  border-top: 1px solid rgba(212, 225, 239, 0.9);
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__room-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__pricing {
  display: grid;
  gap: 2px;
  align-content: end;
  min-width: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__room-label {
  color: #4f6781;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__price {
  color: #183657;
  font-size: 15px;
  font-weight: 800;
  text-shadow: none;
  white-space: nowrap;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__price-note,
.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals span {
  color: #6b7c8f;
  font-size: 11px;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__price-note {
  min-width: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper {
  display: inline-flex;
  min-height: 34px;
  min-width: 102px;
  justify-self: end;
  align-self: end;
  justify-content: space-between;
  gap: 8px;
  padding: 0 6px;
  border-color: #cfe0f1;
  background: linear-gradient(180deg, #edf5fc 0%, #e3eef9 100%);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 16px rgba(41, 93, 156, 0.08);
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #d7e5f3;
  color: #43617f;
  font-size: 14px;
  box-shadow: none;
  border: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper input {
  display: block;
  width: 22px;
  min-width: 22px;
  color: #183657;
  font-size: 13px;
  font-weight: 800;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 0;
  width: 100%;
  padding: 8px 10px 0;
  border: 0;
  border-top: 1px solid rgba(205, 220, 236, 0.95);
  border-radius: 0;
  background: transparent;
  text-transform: none;
  transition: opacity 180ms ease;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals strong {
  color: #183657;
  font-size: 16px;
  text-shadow: none;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-actions {
  display: grid;
  justify-items: end;
  gap: 5px;
  flex-shrink: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-copy > span {
  color: #5e7691;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals em {
  color: #7289a1;
  font-size: 10px;
  font-style: normal;
  line-height: 1.3;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dce8f4 0%, #cfdeed 100%);
  color: #6f8296;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-decoration: none;
  border: 0;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals.is-active {
  opacity: 1;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals.is-active strong {
  color: #153458;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals.is-active em {
  color: #4f7398;
}

.bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__card.has-selection .bsj-tour-stays__totals-cta {
  background: linear-gradient(135deg, #1f4d8b 0%, #2f74bc 100%);
  color: #fff;
  box-shadow: 0 14px 24px rgba(31, 77, 139, 0.18);
}

.bsj-tour-stays[data-bsj-view="grid"] .bsj-tour-stays__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  max-height: none;
  padding-right: 0;
}

.bsj-tour-stays[data-bsj-view="grid"] .bsj-tour-stays__track {
  grid-auto-flow: column;
  grid-template-columns: none;
  grid-auto-columns: minmax(300px, 360px);
}

.bsj-tour-stays[data-bsj-view="grid"] .bsj-tour-stays__card {
  display: block;
}

.bsj-tour-stays-admin {
  --bsj-admin-border: #d7e0e8;
  --bsj-admin-panel: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.bsj-tour-stays-admin__hero,
.bsj-tour-stays-admin__location,
.bsj-tour-stays-admin__empty {
  border: 1px solid var(--bsj-admin-border);
  border-radius: 22px;
  background: var(--bsj-admin-panel);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.bsj-tour-stays-admin__hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin: 14px 0 18px;
  padding: 20px 22px;
}

.bsj-tour-stays-admin__hero h2 {
  margin: 0 0 8px;
}

.bsj-tour-stays-admin__hero p {
  max-width: 760px;
  margin: 0;
  color: #5f6b76;
}

.bsj-tour-stays-admin__list {
  display: grid;
  gap: 16px;
}

.bsj-tour-stays-admin__location {
  padding: 18px;
}

.bsj-tour-stays-admin__location-head,
.bsj-tour-stays-admin__hotel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.bsj-tour-stays-admin__location-title input {
  min-width: 320px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #c9d5df;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
}

.bsj-tour-stays-admin__location-title p {
  margin: 8px 0 0;
  color: #66758a;
}

.bsj-tour-stays-admin__location-actions {
  display: flex;
  gap: 10px;
}

.bsj-tour-stays-admin__search {
  margin-top: 16px;
}

.bsj-tour-stays-admin__search input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #c9d5df;
  border-radius: 14px;
}

.bsj-tour-stays-admin__search-results {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.bsj-tour-stays-admin__result {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid #d7e0e8;
  border-radius: 16px;
  background: #fff;
  text-align: left;
}

.bsj-tour-stays-admin__result img,
.bsj-tour-stays-admin__result-placeholder {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #eff4f9;
  object-fit: cover;
}

.bsj-tour-stays-admin__result span {
  display: grid;
  gap: 4px;
}

.bsj-tour-stays-admin__result em {
  color: #66758a;
  font-style: normal;
}

.bsj-tour-stays-admin__hotels {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.bsj-tour-stays-admin__hotel {
  padding: 16px;
  border: 1px solid #d7e0e8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.bsj-tour-stays-admin__hotel-head p {
  margin: 6px 0 0;
  color: #66758a;
}

.bsj-tour-stays-admin__hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.bsj-tour-stays-admin__hotel-grid label {
  display: grid;
  gap: 6px;
}

.bsj-tour-stays-admin__selling-points {
  display: grid;
  gap: 8px;
}

.bsj-tour-stays-admin__selling-points-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bsj-tour-stays-admin__hotel-grid label.is-wide {
  grid-column: 1 / -1;
}

.bsj-tour-stays-admin__hotel-grid input,
.bsj-tour-stays-admin__hotel-grid textarea {
  width: 100%;
  border: 1px solid #c9d5df;
  border-radius: 14px;
}

.bsj-tour-stays-admin__rooms {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #dfe8f2;
}

.bsj-tour-stays-admin__rooms h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #233a57;
}

.bsj-tour-stays-admin__room {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid #edf3fb;
}

.bsj-tour-stays-admin__room:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.bsj-tour-stays-admin__room-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #233a57;
}

.bsj-tour-stays-admin__room-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 12px;
}

.bsj-tour-stays-admin__room-fields label {
  display: grid;
  gap: 6px;
}

.bsj-tour-stays-admin__room-fields input {
  width: 100%;
  border: 1px solid #c9d5df;
  border-radius: 14px;
}

.bsj-tour-stays-admin__empty {
  padding: 28px;
  text-align: center;
}

.bsj-tour-stays-admin__search-state {
  padding: 10px 12px;
  color: #66758a;
}

@media (max-width: 991px) {
  .bsj-tour-stays {
    padding: 24px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__card {
    grid-template-columns: 164px minmax(0, 1fr);
    min-height: 184px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__content {
    grid-template-columns: minmax(0, 1.12fr) minmax(224px, 246px);
    gap: 10px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__content h3 {
    font-size: 16px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__price {
    font-size: 17px;
  }

  .bsj-tour-stays__track {
    grid-auto-columns: minmax(280px, 320px);
  }
}

@media (max-width: 782px) {
  .bsj-tour-stays__intro {
    flex-direction: column;
  }

  .bsj-tour-stays__view-switch {
    width: 100%;
    justify-content: space-between;
  }

  .bsj-tour-stays__view-button {
    flex: 1 1 0;
  }

  .bsj-tour-stays__card {
    --bsj-stay-active-image: none;
  }

  .bsj-tour-stays {
    padding: 20px;
    border-radius: 24px;
  }

  .bsj-tour-stays__track {
    grid-auto-columns: minmax(67.2vw, 67.2vw);
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__viewport {
    max-height: min(820px, 68vh);
    overflow-y: auto;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 33%) minmax(0, 67%);
    aspect-ratio: 1 / 1.12;
    min-height: 0;
    border-radius: 26px;
    overflow: hidden;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__media {
    min-height: 0;
    height: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 229, 238, 0.9);
    border-radius: 26px 26px 0 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-nav {
    display: flex;
    inset: auto 10px 10px;
    opacity: 1;
    transform: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__overlay {
    padding: 12px;
    border-radius: 0 0 26px 26px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__content {
    gap: 10px;
    justify-content: flex-start;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-actions {
    gap: 8px;
    flex: 1 1 auto;
    padding: 9px 10px 10px;
    border: 1px solid rgba(191, 212, 234, 0.82);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(238, 246, 253, 0.98) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 12px 22px rgba(41, 93, 156, 0.08);
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__badge {
    min-height: 26px;
    padding: 0 11px;
    font-size: 9px;
    letter-spacing: 0.12em;
    background: linear-gradient(180deg, #3f72ba 0%, #315f9f 100%);
    box-shadow: 0 10px 18px rgba(49, 95, 159, 0.18);
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__content h3 {
    max-width: none;
    font-size: 15px;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-copy {
    align-content: start;
    gap: 6px;
    flex: 0 0 auto;
    padding-right: 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-head {
    display: grid;
    gap: 5px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__reassurance {
    display: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-top: 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary-label {
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary strong {
    font-size: 13px;
    line-height: 1;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary span:last-child {
    font-size: 10px;
    color: #7b8da2;
    white-space: nowrap;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__selling-points {
    display: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__selling-point {
    display: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__rooms {
    gap: 10px;
    padding: 0;
    border-top: 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__room-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid rgba(212, 225, 239, 0.9);
    border-bottom: 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__room-row:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__pricing {
    gap: 2px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__room-label {
    color: #6a7d92;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase !important;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__price-line {
    display: grid;
    gap: 1px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__price {
    font-size: 15px;
    line-height: 1.05;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__price-note,
  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals span {
    font-size: 10px;
    color: #7b8fa6;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper {
    min-height: 38px;
    min-width: 108px;
    padding: 0 5px;
    border: 1px solid rgba(190, 210, 230, 0.95);
    background: linear-gradient(180deg, #eef5fc 0%, #e1edf8 100%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 10px 20px rgba(33, 88, 159, 0.08);
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper button {
    width: 24px;
    height: 24px;
    background: linear-gradient(180deg, #dbe8f4 0%, #cddced 100%);
    color: #274766;
    font-size: 15px;
    font-weight: 700;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper input {
    width: 28px;
    min-width: 28px;
    color: #17304a;
    font-size: 16px;
    font-weight: 700;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals {
    align-items: end;
    gap: 8px;
    margin-top: 0;
    padding: 10px 0 0;
    border-top: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals strong {
    font-size: 15px;
    line-height: 1;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-copy {
    gap: 4px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-copy > span {
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals em {
    font-size: 9px;
    line-height: 1.35;
    max-width: 18ch;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-actions {
    gap: 6px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-cta {
    min-height: 30px;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .bsj-tour-stays[data-bsj-view="list"] [data-bsj-stay-total-cta][hidden] {
    display: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals.is-active {
    background: transparent;
    box-shadow: none;
  }

  .bsj-tour-stays__card {
    min-height: 412px;
  }

  .bsj-tour-stays__gallery-nav {
    inset: 44% 10px auto;
    opacity: 1;
  }

  .bsj-tour-stays__gallery-arrow {
    width: 32px;
    height: 32px;
    background: rgba(10, 18, 30, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .bsj-tour-stays__gallery-arrow span {
    font-size: 20px;
  }

  .bsj-tour-stays__meta {
    top: 12px;
    left: 12px;
  }

  .bsj-tour-stays__overlay {
    padding: 16px 16px 16px;
  }

  .bsj-tour-stays__overlay::before {
    left: 0;
    right: 0;
    bottom: 0;
    height: 68%;
    background-image: var(--bsj-stay-active-image);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    filter: blur(28px) saturate(132%);
    transform: scale(1.14);
    transform-origin: center bottom;
    opacity: 1;
    border-top: 0;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 14%, rgba(0, 0, 0, 0.22) 30%, rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.82) 80%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 14%, rgba(0, 0, 0, 0.22) 30%, rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.82) 80%, rgba(0, 0, 0, 1) 100%);
  }

  .bsj-tour-stays__overlay::after {
    inset: auto 0 0;
    height: 72%;
    background:
      radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08), transparent 52%),
      linear-gradient(180deg, rgba(7, 15, 27, 0) 0%, rgba(7, 15, 27, 0.08) 18%, rgba(7, 15, 27, 0.2) 36%, rgba(7, 15, 27, 0.38) 58%, rgba(7, 15, 27, 0.62) 82%, rgba(7, 15, 27, 0.82) 100%);
    opacity: 0.96;
  }

  .bsj-tour-stays__content h3 {
    margin-bottom: 2px;
    font-size: 20px;
    line-height: 1.02;
  }

  .bsj-tour-stays__content {
    gap: 9px;
    padding: 0;
  }

  .bsj-tour-stays__rooms {
    gap: 7px;
    margin-top: 2px;
  }

  .bsj-tour-stays__room-row {
    align-items: center;
    gap: 10px;
  }

  .bsj-tour-stays__room-label {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .bsj-tour-stays__price {
    font-size: 17px;
  }

  .bsj-tour-stays__stepper {
    gap: 8px;
    min-height: 34px;
    padding: 0 5px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 4px 12px rgba(9, 15, 26, 0.06);
  }

  .bsj-tour-stays__stepper button {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
  }

  .bsj-tour-stays__stepper input {
    width: 24px;
    min-width: 24px;
    font-size: 15px;
  }

  .bsj-tour-stays__totals {
    margin-top: 4px;
    padding-top: 10px;
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  .bsj-tour-stays__totals strong {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-right: 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__track {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(84vw, 84vw);
    gap: 12px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__card {
    display: block;
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
    overflow: hidden;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__media {
    position: relative;
    min-height: 0;
    height: auto;
    aspect-ratio: 2.5 / 1;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__meta {
    display: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__meta--mobile {
    top: 8px;
    left: auto;
    right: 8px;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    z-index: 4;
  }

  .bsj-tour-stays__track {
    grid-auto-columns: minmax(68.8vw, 68.8vw);
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__overlay {
    padding: 14px 12px 12px;
    height: auto;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__content {
    gap: 12px;
    min-height: 0;
    height: auto;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 6px 14px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-head {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 6px;
    padding-top: 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__content h3 {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 600;
    max-width: 100%;
    color: #17304a;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__location {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
    color: #70829a;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__badge {
    min-height: 24px;
    width: fit-content;
    padding: 0 9px;
    font-size: 9px;
    box-shadow: 0 8px 16px rgba(49, 95, 159, 0.16);
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    justify-items: end;
    align-content: start;
    gap: 2px;
    text-align: right;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary-label {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
    color: #7b8fa6;
    letter-spacing: 0;
    text-transform: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary strong {
    font-size: 16px;
    font-weight: 600;
    color: #17304a;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-summary span:last-child {
    font-size: 12px;
    line-height: 1.45;
    color: #7b8fa6;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__reassurance {
    display: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__mobile-cta {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 100%;
    padding: 0 16px;
    border: 1px solid rgba(191, 212, 234, 0.95);
    border-radius: 999px;
    background: linear-gradient(180deg, #eff6ff 0%, #e6f0fb 100%);
    color: #17304a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.94),
      0 12px 24px rgba(35, 88, 157, 0.08);
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__list-actions {
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__rooms-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0;
    padding: 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__rooms-label {
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
    color: #6a7c90;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__rooms-note {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    color: #9aa9bb;
    white-space: nowrap;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__pricing {
    gap: 3px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__room-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
    align-items: center;
    padding: 4px 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__room-label {
    font-weight: 600;
    color: #6f839b;
    letter-spacing: 0.04em;
    text-transform: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__price-line {
    gap: 1px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__price {
    font-weight: 600;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper {
    justify-self: auto;
    min-width: 88px;
    min-height: 28px;
    padding: 0 3px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper button {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper input {
    width: 18px;
    min-width: 18px;
    font-size: 13px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    margin-top: -2px;
    padding-top: 4px;
    border-top: 1px solid rgba(212, 225, 239, 0.86);
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-actions {
    display: inline-flex;
    align-items: center;
    width: auto;
    gap: 8px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-copy {
    gap: 2px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-copy > span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    color: #95a4b6;
    letter-spacing: 0;
    text-transform: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals em {
    display: none;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals strong {
    font-weight: 600;
    white-space: nowrap;
    color: #17304a;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__totals-cta {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-nav {
    inset: auto 8px 8px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-arrow {
    width: 28px;
    height: 28px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__gallery-arrow span {
    font-size: 18px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__card .bsj-tour-stays__mobile-cta {
    display: none;
  }

  .bsj-tour-stays-admin__hero,
  .bsj-tour-stays-admin__location-head,
  .bsj-tour-stays-admin__hotel-head {
    flex-direction: column;
  }

  .bsj-tour-stays-admin__location-title input {
    min-width: 0;
    width: 100%;
  }

  .bsj-tour-stays-admin__hotel-grid {
    grid-template-columns: 1fr;
  }

  .bsj-tour-stays-admin__selling-points-grid {
    grid-template-columns: 1fr;
  }

  .bsj-tour-stays-admin__room {
    grid-template-columns: 1fr;
  }

  .bsj-tour-stays-admin__room-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  .bsj-tour-stays .bsj-tour-stays__card {
    min-height: 388px;
  }

  .bsj-tour-stays .bsj-tour-stays__overlay {
    padding: 16px 14px 14px;
  }

  .bsj-tour-stays .bsj-tour-stays__gallery-nav {
    inset: 36% 8px auto;
  }

  .bsj-tour-stays .bsj-tour-stays__gallery-arrow {
    width: 26px;
    height: 26px;
    background: rgba(10, 18, 30, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .bsj-tour-stays .bsj-tour-stays__gallery-arrow span {
    font-size: 16px;
  }

  .bsj-tour-stays .bsj-tour-stays__content {
    gap: 9px;
  }

  .bsj-tour-stays .bsj-tour-stays__content h3 {
    margin: 0 0 3px;
    font-size: 18px;
  }

  .bsj-tour-stays .bsj-tour-stays__rooms {
    gap: 6px;
    margin-top: 2px;
  }

  .bsj-tour-stays .bsj-tour-stays__room-row {
    gap: 8px;
  }

  .bsj-tour-stays .bsj-tour-stays__room-label {
    font-size: 9px;
  }

  .bsj-tour-stays .bsj-tour-stays__price {
    font-size: 15px;
  }

  .bsj-tour-stays .bsj-tour-stays__stepper {
    gap: 7px;
    min-height: 29px;
    padding: 0 3px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.045),
      0 2px 8px rgba(9, 15, 26, 0.045);
  }

  .bsj-tour-stays .bsj-tour-stays__stepper button {
    width: 19px;
    height: 19px;
    background: rgba(255, 255, 255, 0.085);
    font-size: 11px;
  }

  .bsj-tour-stays .bsj-tour-stays__stepper input {
    width: 21px;
    min-width: 21px;
    font-size: 14px;
  }

  .bsj-tour-stays .bsj-tour-stays__totals {
    margin-top: 2px;
    padding-top: 8px;
  }

  .bsj-tour-stays .bsj-tour-stays__totals strong {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .bsj-tour-stays .bsj-tour-stays__card {
    min-height: 372px;
  }
}

@media (min-width: 783px) {
  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__rooms {
    gap: 10px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__room-row {
    padding: 7px 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__room-row:first-child {
    padding-top: 0;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper {
    min-height: 25px;
    min-width: 90px;
    padding: 0 3px;
    gap: 6px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper button {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }

  .bsj-tour-stays[data-bsj-view="list"] .bsj-tour-stays__stepper input {
    width: 18px;
    min-width: 18px;
    font-size: 13px;
  }
}
