/* =========================
   RESET / BASE
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #1f2937;
  background: #ffffff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
   HEADER REWORK FINAL
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  width: min(100% - 120px, 1720px);
  min-height: 58px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header__brand {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 240px;
}

.site-header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  color: #3479db;
  text-decoration: none;
}

.site-header__logo-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 240px;
  width: 100%;
  min-width: 0;
}

.site-header__logo-image .custom-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: 240px;
  width: auto;
}

.site-header__logo-image .custom-logo {
  display: block;
  width: auto;
  max-width: 240px;
  max-height: 34px;
  height: auto;
  object-fit: contain;
}

.site-header__logo-mark {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3479db;
  flex: 0 0 26px;
}

.site-header__logo-mark svg {
  width: 26px;
  height: 26px;
  display: block;
}

.site-header__logo-text {
  display: inline-block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  color: #3479db;
}

.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-header__nav {
  flex: 0 1 auto;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu > li {
  position: relative;
}

.site-header__menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 22px;
  color: #3479db;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  text-decoration: none;
}

.site-header__menu > li + li > a,
.site-header__menu > li:first-child > a {
  border-left: 1px solid #dddddd;
}

.site-header__menu > li:last-child > a {
  border-right: 1px solid #dddddd;
}

.site-header__menu > li > a:hover {
  opacity: 0.85;
}

.site-header__actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.site-header__icon-btn,
.site-header__currency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3479db;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-header__icon-btn:hover,
.site-header__currency-btn:hover {
  opacity: 0.82;
}

.site-header__icon-btn svg {
  width: 23px;
  height: 23px;
  display: block;
}

.site-header__icon-btn--flag {
  width: 34px;
  height: 35px;
}

.site-header__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
}

.site-header__currency-btn {
  width: auto;
  min-width: 42px;
  height: 24px;
  padding: 0 8px;
  border-radius: 3px;
  background: #3479db;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-header__dropdown {
  position: relative;
}

.site-header__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 400px;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  border: 1px solid #dcdcdc;
}

.site-header__panel--language {
  width: 425px;
}

.site-header__panel--currency {
  width: 560px;
}

.site-header__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px 0 18px;
  background: #3479db;
  color: #ffffff;
}

.site-header__panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.site-header__panel-title-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
}

.site-header__panel-title-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.site-header__panel-close {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #3479db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-header__panel-close svg {
  width: 15px;
  height: 15px;
  display: block;
}

.site-header__panel-body {
  padding: 18px 20px 20px;
}

.site-header__panel-body--language {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
}

.site-header__panel-body--currency {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px;
}

.site-header__panel-body--currency .site-header__option:last-child {
  grid-column: 1 / 2;
}

.site-header__option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 30px;
  cursor: pointer;
}

.site-header__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-header__option-radio {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid #c8c8c8;
  border-radius: 50%;
  background: #ffffff;
}

.site-header__option input:checked + .site-header__option-radio::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #59b86f;
}

.site-header__option-flag {
  font-size: 26px;
  line-height: 1;
  flex: 0 0 auto;
}

.site-header__option-text {
  color: #4b4b4b;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;
}

.site-header__currency-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 22px;
  padding: 0 7px;
  border: 1px solid #bfc4cb;
  border-radius: 2px;
  background: #ffffff;
  color: #3479db;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-header__option--currency {
  min-height: 28px;
}

.site-header__dropdown.is-open .site-header__currency-btn,
.site-header__dropdown.is-open .site-header__icon-btn--flag {
  opacity: 0.9;
}

@media (max-width: 1399px) {
  .site-header__inner {
    width: min(100% - 90px, 1720px);
  }
}

@media (max-width: 1199px) {
  .site-header__inner {
    width: min(100% - 60px, 1720px);
    min-height: 56px;
  }

  .site-header__menu > li > a {
    padding: 0 16px;
    font-size: 13px;
  }

  .site-header__actions {
    gap: 12px;
  }
}

@media (max-width: 991px) {
  .site-header__inner {
    width: min(100% - 32px, 1720px);
    min-height: 54px;
    gap: 12px;
  }

  .site-header__right {
    gap: 10px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__panel--currency {
    width: 420px;
  }

  .site-header__panel-body--currency {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-header__panel-body--currency .site-header__option:last-child {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    width: calc(100% - 24px);
    min-height: 52px;
  }

  .site-header__brand {
    max-width: 170px;
  }

  .site-header__logo-image {
    max-width: 170px;
  }

  .site-header__logo-image .custom-logo-link {
    max-width: 170px;
  }

  .site-header__logo-image .custom-logo {
    max-width: 170px;
    max-height: 28px;
  }

  .site-header__logo-text {
    max-width: 150px;
    font-size: 15px;
  }

  .site-header__actions {
    gap: 8px;
  }

  .site-header__icon-btn,
  .site-header__icon-btn--flag {
    width: 30px;
    height: 40px;
  }

  .site-header__icon-btn svg {
    width: 21px;
    height: 21px;
  }

  .site-header__flag {
    font-size: 28px;
  }

  .site-header__currency-btn {
    min-width: 38px;
    height: 22px;
    padding: 0 7px;
    font-size: 9px;
  }

  .site-header__panel,
  .site-header__panel--language,
  .site-header__panel--currency {
    position: fixed;
    top: 100px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(92vw, 420px);
    max-width: 420px;
    margin: 0 auto;
  }

  .site-header__panel-body--language,
  .site-header__panel-body--currency {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  margin-top: 0;
  background: #ffffff;
}

.site-footer__signup {
  padding: 48px 20px 20px;
  background: #ffffff;
}

.site-footer__signup-inner {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.site-footer__signup-title {
  margin: 0 0 22px;
  color: #3479db;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.site-footer__signup-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.site-footer__signup-field {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 500px);
  height: 48px;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.site-footer__signup-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #3479db;
  pointer-events: none;
}

.site-footer__signup-field-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.site-footer__signup-field input {
  width: 100%;
  height: 100%;
  padding: 0 16px 0 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1;
}

.site-footer__signup-field input::placeholder {
  color: #9b9b9b;
  opacity: 1;
}

.site-footer__signup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 152px;
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: #3fba6b;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-footer__signup-btn:hover {
  opacity: 0.92;
}

.site-footer__signup-btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__signup-btn-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer__skyline {
  height: 160px;
  background-color: #ffffff;
  background-image: url("../img/hero-footer-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

.site-footer__menus {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.site-footer__menus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer__column {
  min-height: 220px;
  padding: 40px 30px 34px;
  color: #ffffff;
}

.site-footer__column--dark {
  background: #3a7fd8;
}

.site-footer__column--mid {
  background: #4a87d6;
}

.site-footer__column--mid2 {
  background: #5b92d7;
}

.site-footer__column--light {
  background: #70a0dc;
}

.site-footer__title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}

.site-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu li + li {
  margin-top: 14px;
}

.site-footer__menu a {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.98;
}

.site-footer__menu a:hover {
  opacity: 0.82;
}

.site-footer__menu--address a {
  word-break: break-word;
}

.site-footer__social {
  background: #3fba6b;
  border-top: 3px solid #e9f4ec;
}

.site-footer__social-inner {
  width: min(100% - 80px, 1720px);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
}

.site-footer__social-title {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.site-footer__social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5ef;
  color: #3fba6b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-footer__social-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.site-footer__social-link svg {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
}

@media (max-width: 1399px) {
  .site-footer__column {
    padding: 34px 24px 30px;
  }

  .site-footer__title {
    font-size: 18px;
  }

  .site-footer__menu a {
    font-size: 14px;
  }

  .site-footer__social-inner {
    width: min(100% - 48px, 1720px);
  }
}

@media (max-width: 991px) {
  .site-footer__signup {
    padding: 40px 18px 18px;
  }

  .site-footer__signup-title {
    font-size: 21px;
  }

  .site-footer__signup-form {
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__signup-field,
  .site-footer__signup-btn {
    width: 100%;
    min-width: 0;
  }

  .site-footer__skyline {
    height: 110px;
  }

  .site-footer__menus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__column {
    min-height: 180px;
  }

  .site-footer__social-inner {
    width: min(100% - 32px, 1720px);
    min-height: 74px;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer__social-links {
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .site-footer__signup-title {
    font-size: 19px;
  }

  .site-footer__signup-field {
    height: 46px;
    border-radius: 10px;
  }

  .site-footer__signup-btn {
    height: 46px;
    border-radius: 10px;
    font-size: 15px;
  }

  .site-footer__skyline {
    height: 86px;
    background-size: cover;
  }

  .site-footer__menus-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__column {
    min-height: auto;
    padding: 28px 20px;
  }

  .site-footer__title {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .site-footer__menu li + li {
    margin-top: 12px;
  }

  .site-footer__menu a {
    font-size: 16px;
  }

  .site-footer__social-inner {
    width: calc(100% - 24px);
  }

  .site-footer__social-title {
    font-size: 17px;
    white-space: normal;
  }

  .site-footer__social-link {
    width: 40px;
    height: 40px;
  }
}

/* =========================
   HERO SEARCH WRAP
   ========================= */

.hero-search {
  position: relative;
  max-width: 1400px;
  min-height: 560px;
  margin: 8px auto 0;
  overflow: visible;
}

.hero-search__bg-shell {
  position: relative;
  min-height: 560px;
  border-radius: 14px;
  overflow: visible;
}

.hero-search__bg {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.hero-search__shade {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(17, 28, 48, 0.18), rgba(17, 28, 48, 0.08) 35%, rgba(17, 28, 48, 0.16)),
    linear-gradient(to right, rgba(15, 32, 66, 0.10), rgba(255, 255, 255, 0));
}

.hero-search__inner {
  position: relative;
  z-index: 2;
  min-height: 560px;
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}

.booking-search,
.booking-search__form,
.booking-search__item--dates,
.booking-search__item--guests {
  overflow: visible;
}

.booking-calendar,
.booking-guests-dropdown {
  position: absolute;
  z-index: 9999;
}

.hero-search__content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.hero-search__title {
  max-width: 1000px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.hero-search__subtitle {
  max-width: 800px;
  margin: 16px auto 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

/* =========================
   SEARCH BOX
   ========================= */

.booking-search {
  position: relative;
  z-index: 30;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 12px 28px rgba(21, 39, 74, 0.18);
}

.booking-search__top {
  height: 68px;
  background: #dfe7ef;
  border-radius: 14px 14px 0 0;
}

.booking-search__badge {
  position: absolute;
  top: 13px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border-radius: 9px;
  background: linear-gradient(180deg, #3b8ee8 0%, #2d7de0 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(45, 125, 224, 0.28);
}

.booking-search__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.booking-search__badge-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.booking-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #2b78e4;
}

.booking-search__icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
}

.booking-search__form {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1.35fr 1.12fr 0.76fr;
  gap: 14px;
  padding: 16px 18px 18px;
  background: #ffffff;
  border-radius: 0 0 14px 14px;
  overflow: visible;
}

.booking-search__item {
  display: flex;
  flex-direction: column;
}

.booking-search__item label {
  margin-bottom: 8px;
  color: #121826;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.booking-search__item--dates,
.booking-search__item--guests {
  position: relative;
  overflow: visible;
}

.booking-search__field--destination,
.booking-search__dates-trigger,
.booking-search__guests-trigger {
  min-height: 47px;
  border: 1.5px solid #3d82ea;
  border-radius: 9px;
  background: #ffffff;
}

.booking-search__field--destination {
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.booking-search__field--destination input {
  width: 100%;
  min-width: 0;
  height: 45px;
  border: 0;
  outline: none;
  padding: 0 10px;
  background: transparent;
  color: #243041;
  font-size: 14px;
  box-shadow: none;
}

.booking-search__field--destination input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.booking-search__clear {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: #4b5563;
  padding: 0;
}

.booking-search__dates-trigger {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  padding: 0 10px;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}

.booking-search__dates-trigger.is-active {
  box-shadow: 0 0 0 2px rgba(61, 130, 234, 0.08);
}

.booking-search__date-divider {
  width: 1px;
  height: 26px;
  background: #cdd6e2;
  justify-self: center;
}

.booking-search__date-box {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 8px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.booking-search__date-box.is-filled {
  background: transparent;
}

.booking-search__date-box.is-active {
  background: #dfe7f3;
}

.booking-search__date-text {
  font-size: 14px;
  color: #2b3647;
}

.booking-search__guests-trigger {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  padding: 0 10px;
  position: relative;
}

.booking-search__guest-divider {
  width: 1px;
  height: 26px;
  background: #cdd6e2;
  justify-self: center;
}

.booking-search__guest-segment {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #243041;
  font-size: 14px;
  text-align: left;
  transition: background 0.15s ease;
}

.booking-search__guest-segment.is-active {
  background: #dfe7f3;
}

.booking-search__item--submit {
  justify-content: flex-end;
}

.booking-search__button {
  width: 100%;
  min-height: 47px;
  margin-top: auto;
  border: 0;
  border-radius: 9px;
  background: #43c96f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(67, 201, 111, 0.24);
  transition: background 0.18s ease, transform 0.18s ease;
}

.booking-search__button:hover {
  background: #3dbe67;
  transform: translateY(-1px);
}

.booking-search__button:active {
  transform: translateY(0);
}

/* =========================
   CALENDAR POPUP
   ========================= */

.booking-calendar {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 710px;
  padding: 12px 12px 10px;
  background: #ffffff;
  border: 1.5px solid #3d82ea;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  z-index: 9999;
}

.booking-calendar__header {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  margin-bottom: 12px;
}

.booking-calendar__months-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #303744;
}

.booking-calendar__nav {
  width: 40px;
  height: 40px;
  border: 1px solid #b7b7b7;
  border-radius: 8px;
  background: #f3f3f3;
  color: #2b3340;
  font-size: 22px;
  padding: 0;
}

.booking-calendar__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}

.booking-calendar__weekdays span {
  text-align: center;
  font-size: 11px;
  color: #373737;
}

.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.booking-calendar__day {
  aspect-ratio: 1 / 1;
  border: 1px solid #ececec;
  background: #ffffff;
  color: #383838;
  font-size: 14px;
  padding: 0;
}

.booking-calendar__day.is-empty {
  border-color: transparent;
  background: transparent;
}

.booking-calendar__day.is-disabled {
  color: #cccccc;
  cursor: not-allowed;
}

.booking-calendar__day.is-in-range {
  background: #7dd29b;
  border-color: #7dd29b;
  color: #ffffff;
}

.booking-calendar__day.is-selected,
.booking-calendar__day.is-preview-edge {
  background: #52c57a;
  border-color: #52c57a;
  color: #ffffff;
  font-weight: 700;
}

.booking-calendar__day:hover:not(.is-disabled):not(.is-empty) {
  background: #a7dfbb;
  border-color: #a7dfbb;
  color: #ffffff;
}

/* =========================
   GUESTS POPUP
   ========================= */

.booking-guests-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 340px;
  padding: 16px 16px 18px;
  background: #ffffff;
  border: 1.5px solid #3d82ea;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  z-index: 9999;
}

.booking-guests-panel[hidden] {
  display: none !important;
}

.booking-guests-panel h4 {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: #2d7de0;
}

.booking-guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.booking-guests-row + .booking-guests-row {
  margin-top: 18px;
}

.booking-guests-row > span:first-child {
  font-size: 14px;
  line-height: 1.3;
  color: #404040;
}

.booking-guests-counter {
  display: flex;
  align-items: center;
  gap: 18px;
}

.booking-guests-counter button {
  width: 39px;
  height: 39px;
  border: 1px solid #bfe6cf;
  border-radius: 999px;
  background: #ffffff;
  color: #34b56a;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.10);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.booking-guests-counter button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.booking-guests-counter button:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.booking-guests-counter span {
  min-width: 14px;
  text-align: center;
  font-size: 14px;
  color: #404040;
}

.booking-guests-note {
  margin: 22px 0 10px;
  max-width: 255px;
  font-size: 13px;
  line-height: 1.35;
  color: #4b4b4b;
}

.booking-guests-ages {
  display: grid;
  gap: 12px;
}

.booking-guests-age-select-wrap {
  position: relative;
}

.booking-guests-age-select {
  width: 100%;
  height: 46px;
  padding: 0 42px 0 16px;
  border: 1.5px solid #3d82ea;
  border-radius: 10px;
  background: #ffffff;
  color: #4b4b4b;
  font-size: 14px;
  text-align: center;
  appearance: none;
  outline: none;
}

.booking-guests-age-select-wrap::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  line-height: 1;
  color: #2d7de0;
  pointer-events: none;
}

.booking-guests-rooms {
  margin-top: 20px;
}

.booking-guests-room {
  margin-top: 22px;
}

.booking-guests-room-title {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #2d7de0;
}

.booking-guests-room .booking-guests-row + .booking-guests-row {
  margin-top: 18px;
}

.booking-search__guest-segment {
  justify-content: flex-start;
}

.booking-search__guest-segment .booking-search__icon {
  color: #2b78e4;
}

.booking-search__guest-segment.is-active {
  background: #dfe7f3;
}

@media (max-width: 767px) {
  .booking-guests-dropdown {
    width: 100%;
    max-width: none;
  }
}

/* =========================
   TRUST BAR
   ========================= */

.hero-trustbar {
  max-width: 1400px;
  margin: 10px auto 0;
  padding: 0 8px 4px;
}

.hero-trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid #8fd7a8;
  border-bottom: 1px solid #8fd7a8;
  padding: 14px 0;
}

.hero-trustbar__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hero-trustbar__icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    color: #35c46a;
    margin-top: -2px;
}

.hero-trustbar__icon svg {
    width: 34px;
    height: 34px;
    display: block;
}

.hero-trustbar__item h3 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #45c56c;
}

.hero-trustbar__item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  color: #4b5563;
}

/* =========================
   RESULTS / FEATURED
   ========================= */

.featured.container,
.blog.container {
  max-width: 1280px;
}

#featured-list.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hb-results-status {
  padding: 18px;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  color: #475569;
}

.hotel-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.hotel-card__image-wrap {
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #e5e7eb;
}

.hotel-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition:
      opacity 0.28s ease,
      transform 0.28s ease;
}

.hotel-card__image.is-changing {
    opacity: 0.35;
    transform: scale(1.02);
}

.hotel-card__body {
  padding: 14px;
}

.hotel-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  color: #111827;
}

.hotel-card__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #6b7280;
}

/* =========================
   HOME BLOG
   ========================= */

.home-blog {
  padding: 42px 0 56px;
}

.home-blog__head {
  margin-bottom: 18px;
}

.home-blog__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #1f2937;
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-blog__card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(31, 41, 55, 0.05);
}

.home-blog__image-wrap {
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #eef2f7;
}

.home-blog__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-blog__image--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dce6f2, #eef4fb);
}

.home-blog__body {
  padding: 14px;
}

.home-blog__card-title {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2937;
}

.home-blog__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #607086;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1200px) {
  .hero-search {
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero-trustbar {
    margin-left: 16px;
    margin-right: 16px;
  }

  .booking-calendar {
    width: 100%;
    max-width: 710px;
  }
}

@media (max-width: 991px) {
  .site-header__nav {
    display: none;
  }

  .booking-search__form {
    grid-template-columns: 1fr 1fr;
  }

  .booking-calendar {
    width: 100%;
    max-width: none;
  }

  .hero-trustbar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }

  #featured-list.grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-search {
    min-height: auto;
    margin: 0;
  }

  .hero-search__bg-shell {
    min-height: auto;
    border-radius: 0;
  }

  .hero-search__inner {
    min-height: auto;
    padding: 24px 14px 20px;
  }

  .hero-search__title {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-search__subtitle {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.35;
  }

  .booking-search {
    margin-top: 20px;
  }

  .booking-search__top {
    height: 60px;
  }

  .booking-search__badge {
    top: 11px;
    left: 14px;
  }

  .booking-search__form {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 12px 14px;
  }

  .booking-calendar {
    width: 100%;
    max-width: none;
    padding: 12px;
  }

  .booking-calendar__months {
    grid-template-columns: 1fr;
  }

  .booking-calendar__months-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-guests-dropdown {
    width: 100%;
    max-width: none;
  }

  .hero-trustbar__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #featured-list.grid {
    grid-template-columns: 1fr;
  }

  .home-blog {
    padding: 32px 0 42px;
  }

  .home-blog__grid {
    grid-template-columns: 1fr;
  }

  .home-blog__title {
    font-size: 22px;
  }
}

.home-travel-sections {
    padding: 56px 40px 80px;
    background: #fff;
}

.home-travel-sections .container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 24px;
}

.travel-benefits {
    margin-bottom: 56px;
}

.travel-benefits__head {
    text-align: center;
    margin-bottom: 28px;
}

.travel-benefits__title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: #3b82f6;
}

.travel-benefits__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: #1f2937;
}

.travel-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
}

.travel-benefits__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 120px;
    padding: 18px 22px 20px;
    border-radius: 16px;
    border: 2px solid #dbeafe;
    background: #f8fbff;
}

.travel-benefits__icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    line-height: 1;
}

.travel-benefits__icon svg {
    width: 26px;
    height: 26px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.travel-benefits__card--orange .travel-benefits__icon { color: #f59e0b; }
.travel-benefits__card--blue   .travel-benefits__icon { color: #3b82f6; }
.travel-benefits__card--green  .travel-benefits__icon { color: #22c55e; }
.travel-benefits__card--purple .travel-benefits__icon { color: #a855f7; }
.travel-benefits__card--cyan   .travel-benefits__icon { color: #06b6d4; }
.travel-benefits__card--red    .travel-benefits__icon { color: #ef4444; }

.travel-benefits__content h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.travel-benefits__content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #111827;
}

.travel-benefits__card--orange {
    border-color: #f59e0b;
    background: #fff9ef;
}

.travel-benefits__card--blue {
    border-color: #60a5fa;
    background: #f5f9ff;
}

.travel-benefits__card--green {
    border-color: #4ade80;
    background: #f4fcf6;
}

.travel-benefits__card--purple {
    border-color: #c084fc;
    background: #fbf7ff;
}

.travel-benefits__card--cyan {
    border-color: #4cc9f0;
    background: #f3fbfe;
}

.travel-benefits__card--red {
    border-color: #ff7f7f;
    background: #fff6f6;
}

.travel-carousel-block {
    margin-top: 32px;
    margin-bottom: 72px;
}

.travel-carousel-block__head {
    text-align: center;
    margin-bottom: 30px;
}

.travel-carousel-block__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: #3b82f6;
}

.travel-carousel {
    position: relative;
}

.travel-carousel__viewport {
    overflow: hidden;
    width: 100%;
    padding-bottom: 25px;
}

.travel-carousel__track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.travel-carousel__slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.travel-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14);
    color: #3b82f6;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.travel-carousel__nav:disabled {
    opacity: 0.45;
    cursor: default;
}

.travel-carousel__nav--prev {
    left: -22px;
}

.travel-carousel__nav--next {
    right: -22px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: 18px;
}

.destination-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.12);
    background: #dbe7f3;
}

.destination-card__image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.35s ease;
}

.destination-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 17, 32, 0.75) 0%, rgba(9, 17, 32, 0.08) 55%, rgba(9, 17, 32, 0.05) 100%);
}

.destination-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.82);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.destination-card__title {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 2;
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.blog-slide {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 22px;
    padding-bottom: 30px;
}

.blog-slide__side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.12);
}

.blog-card__media {
    position: relative;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-card--featured .blog-card__media {
    height: 430px;
}

.blog-card--small .blog-card__media {
    height: 170px;
}

.blog-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    max-width: calc(100% - 20px);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.82);
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card__body {
    display: block;
    padding: 16px 18px 18px;
}

.blog-card--small .blog-card__body {
    padding: 14px 16px 16px;
}

.blog-card__title {
    display: -webkit-box;
    margin-bottom: 8px;
    color: #3b82f6;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-card--small .blog-card__title {
    display: -webkit-box;
    font-size: 16px;
    line-height: 1.35;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-card--small .blog-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width: 1399px) {
    .destination-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    .travel-benefits__grid {
        grid-template-columns: 1fr;
    }

    .blog-slide {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .travel-carousel__nav--prev {
        left: -8px;
    }

    .travel-carousel__nav--next {
        right: -8px;
    }
}

@media (max-width: 767px) {
    .home-travel-sections {
        padding: 40px 0 56px;
    }

    .home-travel-sections .container {
        padding: 0 16px;
    }

    .travel-benefits__title,
    .travel-carousel-block__title {
        font-size: 18px;
    }

    .destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 150px;
        gap: 14px;
    }

    .blog-slide__side {
        grid-template-columns: 1fr;
    }

    .blog-card--featured .blog-card__media {
        height: 280px;
    }

    .travel-carousel__nav {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
}

@media (max-width: 479px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
}

.booking-search__field--destination {
    position: relative;
    z-index: 30;
}

.booking-search__autocomplete {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5ebf3;
    border-radius: 8px;
    box-shadow:
        0 20px 40px rgba(16, 24, 40, 0.08),
        0 8px 16px rgba(16, 24, 40, 0.05);
    z-index: 100;
    max-height: 430px;
    overflow-y: auto;
    padding: 0px;
}

.booking-search__autocomplete[hidden] {
    display: none;
}

.booking-search__autocomplete-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: 0;
    border-radius: 16px;
    padding: 14px 16px;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: #24324a;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.booking-search__autocomplete-item:hover,
.booking-search__autocomplete-item:focus {
    background: #f5f8fc;
    outline: none;
}

.booking-search__autocomplete-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #3f4752;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.booking-search__autocomplete-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.booking-search__autocomplete-text {
    display: block;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 0;
    color: #3b3f45;
}

.booking-search__autocomplete::-webkit-scrollbar {
    width: 10px;
}

.booking-search__autocomplete::-webkit-scrollbar-track {
    background: transparent;
}

.booking-search__autocomplete::-webkit-scrollbar-thumb {
    background: #d8e0ea;
    border-radius: 999px;
    border: 2px solid #fff;
}

/* =========================
   SEARCH PAGE LAYOUT
========================= */

.hotel-list-page {
    padding: 32px 0 72px;
    --search-sidebar-width: 300px;
    --search-gap: 28px;

    --hotel-card-image-width: 292px;
    --hotel-card-summary-width: 320px;
    --hotel-card-top-height: 192px;
}

.hotel-list-page__header {
    margin-bottom: 20px;
}

.hotel-list-page__title {
    margin: 0;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #16233b;
}

.hotel-list-page__layout {
    display: grid;
    grid-template-columns: var(--search-sidebar-width) minmax(0, 1fr);
    gap: var(--search-gap);
    align-items: start;
}

.hotel-list-page__sidebar {
    position: sticky;
    top: 24px;
    z-index: 50;
}

.hotel-list-page__content {
    min-width: 0;
}

.hotel-list-page__map-area {
    margin-bottom: 18px;
}

/* =========================
   TOOLBAR
========================= */

.hotel-list-page__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.hotel-list-page__toolbar-left,
.hotel-list-page__toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hotel-view-toggle {
    width: 50px;
    height: 50px;
    border: 1px solid #2f73da;
    border-radius: 10px;
    background: #fff;
    color: #2f73da;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.hotel-view-toggle--active {
    background: #2f73da;
    color: #fff;
}

.hotel-view-toggle svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.hotel-toolbar-pill {
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid #2f73da;
    border-radius: 12px;
    background: #2f73da;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
}

.hotel-toolbar-pill__icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.hotel-sorting {
    position: relative;
}

.hotel-sorting__trigger {
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid #2f73da;
    border-radius: 12px;
    background: #fff;
    color: #2f73da;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    transition: box-shadow .2s ease, border-color .2s ease;
}

.hotel-sorting__trigger:hover {
    box-shadow: 0 4px 14px rgba(47, 115, 218, 0.12);
}

.hotel-sorting.is-open .hotel-sorting__trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.hotel-sorting__trigger-icon,
.hotel-sorting__option-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f73da;
}

.hotel-sorting__trigger-icon svg,
.hotel-sorting__option-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.hotel-sorting__trigger-text {
    white-space: nowrap;
}

.hotel-sorting__trigger-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    color: #5d6b82;
    transition: transform .2s ease;
}

.hotel-sorting__trigger-arrow svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.hotel-sorting.is-open .hotel-sorting__trigger-arrow {
    transform: rotate(180deg);
}

.hotel-sorting__dropdown {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    z-index: 30;
    min-width: 100%;
    border: 1px solid #2f73da;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(24, 39, 75, 0.12);
    overflow: hidden;
}

.hotel-sorting__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hotel-sorting__item + .hotel-sorting__item {
    border-top: 1px solid #e3e8f2;
}

.hotel-sorting__option {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 0;
    background: #fff;
    color: #1f2a3d;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.hotel-sorting__option:hover {
    background: #f7faff;
}

.hotel-sorting__option.is-active {
    color: #1f2a3d;
}

.hotel-sorting__option-text {
    line-height: 1.2;
}

@media (max-width: 767px) {
    .hotel-list-page__toolbar {
        flex-wrap: wrap;
    }

    .hotel-list-page__toolbar-right {
        width: 100%;
        justify-content: flex-end;
    }

    .hotel-sorting__dropdown {
        right: 0;
        left: auto;
    }
}

/* =========================================================
   TOOLBAR CENTER TITLE (MAP PLACEHOLDER TEXT)
   ========================================================= */

.hotel-list-page__toolbar {
    display: grid;
    grid-template-columns: auto minmax(300px, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.hotel-list-page__toolbar-left {
    display: flex;
    gap: 10px;
    justify-self: start;
}

.hotel-list-page__toolbar-center {
    text-align: center;
    justify-self: center;
}

.hotel-list-page__toolbar-title {
    margin: 0 0 2px;
    color: #3177dc;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.hotel-list-page__toolbar-subtitle {
    margin: 0;
    color: #4b4f56;
    font-size: 16px;
}

.hotel-list-page__toolbar-right {
    justify-self: end;
}

/* мобилка */
@media (max-width: 991px) {
    .hotel-list-page__toolbar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hotel-list-page__toolbar-center {
        order: -1;
    }

    .hotel-list-page__toolbar-left {
        justify-content: flex-start;
    }

    .hotel-list-page__toolbar-right {
        justify-content: flex-end;
    }

    .hotel-list-page__toolbar-title {
        font-size: 22px;
    }

    .hotel-list-page__toolbar-subtitle {
        font-size: 16px;
    }
}

/* =========================
   RESULTS GRID
========================= */

.hotel-list-page__grid,
.hotel-list-page__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* =========================
   HOTEL CARD
========================= */

.hotel-card--listing {
    background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 35, 95, 0.04);
}

/* Верх карточки */
.hotel-card--listing .hotel-card__main {
    display: flex;
    align-items: stretch;
    min-width: 0;
    height: var(--hotel-card-top-height);
}

/* Левая колонка = только картинка */
.hotel-card--listing .hotel-card__media {
    position: relative;
    width: var(--hotel-card-image-width);
    min-width: var(--hotel-card-image-width);
    max-width: var(--hotel-card-image-width);
    height: var(--hotel-card-top-height);
    min-height: 0;
    display: block;
    overflow: hidden;
    background: #eef2f7;
    flex: 0 0 var(--hotel-card-image-width);
}

.hotel-card--listing .hotel-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Правая часть = контент */
.hotel-card--listing .hotel-card__body {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 22px;
    min-width: 0;
    flex: 1 1 auto;
    padding: 16px 22px 14px;
}

/* Левый текстовый столбец */
.hotel-card--listing .hotel-card__content {
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - var(--hotel-card-summary-width) - 22px);
}

/* Правый summary столбец */
.hotel-card--listing .hotel-card__summary {
    width: var(--hotel-card-summary-width);
    min-width: var(--hotel-card-summary-width);
    max-width: var(--hotel-card-summary-width);
    flex: 0 0 var(--hotel-card-summary-width);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    align-content: center;
}

/* Title + description */
.hotel-card--listing .hotel-card__title {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.hotel-card--listing .hotel-card__title a {
    color: #2f80ed;
    text-decoration: none;
}

.hotel-card--listing .hotel-card__title a:hover {
    text-decoration: underline;
}

.hotel-card--listing .hotel-card__description {
    color: #48566f;
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 410px;
}

/* Rating overlay */
.hotel-card--listing .hotel-card__rating-overlay {
    position: absolute;
    top: 12px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hotel-card--listing .hotel-card__rating-score-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0px;
}

.hotel-card--listing .hotel-card__rating-leaf {
    width: 22px;
    height: 39px;
    display: block;
    flex: 0 0 22px;
    filter: drop-shadow(5px 6px 0 rgba(137, 122, 104, 0.28));
}

.hotel-card--listing .hotel-card__rating-leaf--right {
    transform: scaleX(-1);
}

.hotel-card--listing .hotel-card__rating-number {
    display: inline-block;
    color: #fff;
    font-size: 22px;
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-shadow:
        2px 1px 0 rgba(137, 122, 104, 0.28),
        0 2px 4px rgba(0, 0, 0, 0.18);
}

.hotel-card--listing .hotel-card__rating-reviews {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    text-shadow:
        2px 1px 0 rgba(137, 122, 104, 0.28),
        0 2px 4px rgba(0, 0, 0, 0.18)
}

/* Quick view */
.hotel-card--listing .hotel-card__quick-view {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 8px;
    background: rgba(37,35,35,.45);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
}

.hotel-card--listing .hotel-card__quick-view:hover {
    background: rgba(37,35,35,.62);
}

/* Summary */
.hotel-card--listing .hotel-card__summary-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}

.hotel-card--listing .hotel-card__summary-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 6px;
    background: #f0f4fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hotel-card--listing .hotel-card__summary-icon svg {
    width: 15px;
    height: 15px;
    fill: #2f80ed;
}

.hotel-card--listing .hotel-card__summary-item:nth-child(2) .hotel-card__summary-icon svg {
    width: 13px;
    height: 18px;
}

.hotel-card--listing .hotel-card__summary-item:nth-child(3) .hotel-card__summary-icon svg,
.hotel-card--listing .hotel-card__summary-item:nth-child(4) .hotel-card__summary-icon svg {
    width: 16px;
    height: 16px;
}

.hotel-card--listing .hotel-card__summary-text {
    min-width: 0;
}

.hotel-card--listing .hotel-card__summary-label {
    display: block;
    margin-bottom: 2px;
    color: #3a3f4a;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
}

.hotel-card--listing .hotel-card__summary-value {
    display: block;
    color: #2f80ed;
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-card__quick-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hotel-card__quick-view-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.hotel-card__quick-view-icon svg {
    display: block;
    width: 14px;
    height: 10px;
}

/* Bottom bar */
.hotel-card--listing .hotel-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 16px;
    background: #f4f8f5;
    border-top: 1px solid #e7efe8;
}

.hotel-card--listing .hotel-card__features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 70px;
    min-width: 0;
}

.hotel-card--listing .hotel-card__feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #39b66a;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
    white-space: nowrap;
}

.hotel-card--listing .hotel-card__feature svg {
    width: 15px;
    height: 15px;
    fill: #39b66a;
    flex: 0 0 15px;
    display: block;
}

.hotel-card--listing .hotel-card__cta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.hotel-card--listing .hotel-card__price-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-align: right;
}

.hotel-card--listing .hotel-card__price-label {
    margin: 0;
    color: #1b1b1b;
    font-size: 11px;
    line-height: 1;
    font-weight: 400;
}

.hotel-card--listing .hotel-card__price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.hotel-card--listing .hotel-card__price-number {
    color: #16233b;
    font-size: 19px;
    line-height: 1;
    font-weight: 700;
}

.hotel-card--listing .hotel-card__price-currency {
    color: #1b1b1b;
    font-size: 11px;
    line-height: 1;
    font-weight: 400;
}

.hotel-card--listing .hotel-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 10px;
    background: #39b66a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.hotel-card--listing .hotel-card__button:hover {
    color: #fff;
    opacity: .94;
}

/* =========================
   FILTERS
========================= */

.hotel-filters-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hotel-filters-box {
    background: #fff;
    border: 1px solid #e2ebfb;
    border-radius: 18px;
    padding: 20px;
}

.hotel-filters-box--search {
    border-color: #2f80ed;
    box-shadow: 0 8px 24px rgba(47, 128, 237, 0.08);
}

.hotel-filters-box__title {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.25;
    color: #16233b;
}

.hotel-filters-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hotel-filters-form__row--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hotel-filters-form__group {
    margin-bottom: 14px;
}

.hotel-filters-form__group:last-child {
    margin-bottom: 0;
}

.hotel-filters-form__group label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #4d5b77;
}

.hotel-filters-form__group input {
    width: 100%;
    height: 48px;
    border: 1px solid #d7e3fb;
    border-radius: 12px;
    background: #fff;
    padding: 0 14px;
    font-size: 15px;
    color: #16233b;
}

.hotel-filters-form__submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 12px;
    background: #39b66a;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.hotel-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hotel-filter-tags button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #cfe0ff;
    border-radius: 12px;
    background: #fff;
    color: #2f80ed;
    cursor: pointer;
}

.hotel-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #34445f;
}

.hotel-filter-option:last-child {
    margin-bottom: 0;
}

.hotel-filter-range__track {
    position: relative;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f80ed 0%, #2f80ed 100%);
    margin: 18px 0;
}

.hotel-filter-range__track::before,
.hotel-filter-range__track::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #2f80ed;
    transform: translateY(-50%);
}

.hotel-filter-range__track::before {
    left: 0;
}

.hotel-filter-range__track::after {
    right: 0;
}

.hotel-filter-range__labels {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    line-height: 1.4;
    color: #34445f;
}

.hotel-filters-amenities {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #34445f;
    font-size: 15px;
}

/* =========================
   PAGINATION + EMPTY
========================= */

.hotel-list-page__pagination {
    margin-top: 24px;
}

.hotel-list-page__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    margin-right: 8px;
    border: 1px solid #d9e5ff;
    border-radius: 10px;
    background: #fff;
    color: #1f2f56;
    text-decoration: none;
}

.hotel-list-page__pagination .page-numbers.current {
    background: #2f80ed;
    border-color: #2f80ed;
    color: #fff;
}

.hotel-list-empty {
    padding: 32px;
    border: 1px solid #e2ebfb;
    border-radius: 18px;
    background: #fff;
    color: #48566f;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .hotel-list-page {
        --hotel-card-image-width: 210px;
        --hotel-card-summary-width: 220px;
    }

    .hotel-card--listing .hotel-card__description {
        max-width: 280px;
    }

    .hotel-card--listing .hotel-card__features {
        gap: 14px;
    }
}

@media (max-width: 991px) {
    .hotel-list-page__layout {
        grid-template-columns: 1fr;
    }

    .hotel-list-page__sidebar {
        position: static;
    }

    .hotel-list-page__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .hotel-list-page__toolbar-left,
    .hotel-list-page__toolbar-right {
        justify-content: space-between;
    }

    .hotel-card--listing .hotel-card__main {
        flex-direction: column;
    }

    .hotel-card--listing .hotel-card__media {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        min-height: 240px;
        flex-basis: auto;
    }

    .hotel-card--listing .hotel-card__body {
        flex-direction: column;
    }

    .hotel-card--listing .hotel-card__content,
    .hotel-card--listing .hotel-card__summary {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .hotel-card--listing .hotel-card__summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hotel-card--listing .hotel-card__bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .hotel-card--listing .hotel-card__cta {
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .hotel-list-page {
        padding: 24px 0 56px;
    }

    .hotel-list-page__title {
        font-size: 34px;
    }

    .hotel-filters-form__row,
    .hotel-filters-form__row--triple {
        grid-template-columns: 1fr;
    }

    .hotel-card--listing .hotel-card__summary {
        grid-template-columns: 1fr;
    }

    .hotel-card--listing .hotel-card__bottom {
        padding: 12px 16px;
    }

    .hotel-card--listing .hotel-card__features,
    .hotel-card--listing .hotel-card__cta {
        gap: 12px;
    }

    .hotel-card--listing .hotel-card__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hotel-card--listing .hotel-card__price-box {
        text-align: left;
    }

    .hotel-card--listing .hotel-card__button {
        width: 100%;
    }

    .hotel-map__canvas {
        min-height: 240px;
    }
}

.hotel-card--listing .hotel-card__media-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hotel-card--listing .hotel-card__media-arrow {
    position: absolute;
    top: 50%;
    width: 26px;
    height: 26px;
    margin-top: -17px;
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: 50%;
    background: rgba(43, 43, 43, 0.18);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    z-index: 3;
    transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}

.hotel-card--listing .hotel-card__media-arrow:hover {
    background: rgba(43, 43, 43, 0.34);
    border-color: rgba(255,255,255,1);
}

.hotel-card--listing .hotel-card__media-arrow svg {
    width: 8px;
    height: 13px;
    fill: #fff;
    display: block;
}

.hotel-card--listing .hotel-card__media-arrow--prev {
    left: 12px;
}

.hotel-card--listing .hotel-card__media-arrow--prev svg {
    transform: rotate(180deg);
    margin-left: -1px;
}

.hotel-card--listing .hotel-card__media-arrow--next {
    right: 12px;
}

.hotel-card--listing .hotel-card__media-arrow--next svg {
    margin-left: 1px;
}

.container--wide {
    max-width: 1400px;
}

.hotel-filters {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #1d2b3a;
}

/* =========================================
   Sidebar search card
========================================= */

.hotel-filters__search-card {
    position: relative;
    z-index: 60;
    overflow: visible;
    margin-bottom: 28px;
    padding: 18px 18px 20px;
    border: 2px solid #2f73da;
    border-radius: 18px;
    background: #fff;
}

.hotel-filters__field-group + .hotel-filters__field-group {
    margin-top: 16px;
}

.hotel-filters__small-label {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #1d2b3a;
}

.hotel-filters__top-field {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    border: 1px solid #2f73da;
    border-radius: 12px;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.hotel-filters__top-field:hover,
.hotel-filters__top-field:focus-within,
.hotel-sidebar-search__dates-trigger.is-active {
    box-shadow: 0 0 0 3px rgba(47, 115, 218, 0.08);
}

.hotel-filters__top-field input {
    width: 100%;
    min-width: 0;
    height: 50px;
    border: 0;
    background: transparent;
    outline: none;
    color: #1d2b3a;
    font-size: 16px;
    line-height: 1.2;
    padding: 0;
}

.hotel-filters__top-field input::placeholder {
    color: #79859a;
}

.hotel-filters__top-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f73da;
}

.hotel-filters__top-icon svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.hotel-filters__top-clear {
    flex: 0 0 auto;
    width: 42px;
    height: 50px;
    border: 0;
    background: transparent;
    color: #1d2b3a;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hotel-filters__top-field--split {
    padding: 0 12px;
    gap: 0;
}

.hotel-filters__split-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
}

.hotel-filters__split-item svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    fill: #2f73da;
}

.hotel-filters__split-item span {
    display: inline-block;
    min-width: 0;
    color: #1d2b3a;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-filters__split-item input {
    font-size: 16px;
    line-height: 1.2;
}

.hotel-filters__split-divider {
    width: 1px;
    height: 24px;
    margin: 0 14px;
    background: #ccd3df;
    flex: 0 0 auto;
}

.hotel-filters__submit {
    width: 100%;
    height: 48px;
    margin-top: 20px;
    border: 0;
    border-radius: 10px;
    background: #42bb6b;
    color: #fff;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.hotel-filters__submit:hover {
    background: #38ad60;
    box-shadow: 0 8px 18px rgba(66, 187, 107, 0.18);
}

.hotel-filters__submit:active {
    transform: translateY(1px);
}

/* =========================================
   Autocomplete
========================================= */

.hotel-sidebar-search__autocomplete-wrap {
    position: relative;
}

.hotel-sidebar-search__autocomplete-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 40;
    padding: 6px 0;
    border: 1px solid #d9e3f3;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(18, 38, 63, 0.14);
    overflow: hidden;
}

.booking-search__autocomplete-item {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    transition: background .15s ease;
}

.booking-search__autocomplete-item:hover {
    background: #f6f9ff;
}

.booking-search__autocomplete-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: #2f73da;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.booking-search__autocomplete-icon svg {
    width: 18px;
    height: 18px;
}

.booking-search__autocomplete-text {
    color: #1d2b3a;
    font-size: 15px;
    line-height: 1.3;
}

/* =========================================
   Date trigger + calendar
========================================= */

.hotel-sidebar-search__dates-trigger {
    cursor: pointer;
    user-select: none;
}

.hotel-sidebar-search__date-box {
    cursor: pointer;
}

.hotel-sidebar-search__date-box.is-active span {
    color: #2f73da;
}

.booking-calendar__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.booking-calendar__nav button {
    width: 34px;
    height: 34px;
    border: 1px solid #d2dceb;
    border-radius: 10px;
    background: #fff;
    color: #1d2b3a;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.booking-calendar__months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.booking-calendar__title {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #1d2b3a;
    text-align: center;
}

.booking-calendar__weekdays,
.booking-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.booking-calendar__weekdays {
    margin-bottom: 8px;
}

.booking-calendar__weekdays span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 24px;
    font-size: 12px;
    font-weight: 600;
    color: #7b869a;
}

.booking-calendar__day {
    min-height: 34px;
    border: 0;
    background: #fff;
    color: #1d2b3a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.booking-calendar__day:hover {
    background: #f3f7ff;
}

.booking-calendar__day.is-empty {
    cursor: default;
    background: transparent;
}

.booking-calendar__day.is-disabled {
    color: #b8c0cf;
    cursor: not-allowed;
    background: transparent;
}

.booking-calendar__day.is-in-range {
    background: #eaf2ff;
    border-radius: 0;
}

.booking-calendar__day.is-selected {
    background: #2f73da;
    color: #fff;
}

.hotel-sidebar-search__guests-trigger {
    position: relative;
    padding: 0 12px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
}

.hotel-sidebar-search__segment {
    flex: 1 1 0;
    min-width: 0;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 0;
    background: transparent;
    padding: 0 8px;
    margin: 0;
    color: #1d2b3a;
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.hotel-sidebar-search__segment svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
    flex: 0 0 18px;
    display: block;
    fill: #2f73da;
}

.hotel-sidebar-search__segment span {
    display: inline-block;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-filters__split-divider {
    width: 1px;
    height: 24px;
    margin: 0 14px;
    background: #ccd3df;
    flex: 0 0 auto;
}

/* =========================================
   Guests trigger + dropdown
========================================= */

.hotel-sidebar-search__calendar {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 710px;
    padding: 12px 12px 10px;
    background: #ffffff;
    border: 1.5px solid #3d82ea;
    border-radius: 10px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    z-index: 99999;
}

.booking-calendar__header {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 12px;
}

.booking-calendar__months-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #303744;
}

.booking-calendar__nav {
    width: 40px;
    height: 40px;
    border: 1px solid #b7b7b7;
    border-radius: 8px;
    background: #f3f3f3;
    color: #2b3340;
    font-size: 22px;
    padding: 0;
}

.booking-calendar__months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 8px;
}

.booking-calendar__weekdays span {
    text-align: center;
    font-size: 11px;
    color: #373737;
}

.booking-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.booking-calendar__day {
    aspect-ratio: 1 / 1;
    border: 1px solid #ececec;
    background: #ffffff;
    color: #383838;
    font-size: 14px;
    padding: 0;
}

.booking-calendar__day.is-empty {
    border-color: transparent;
    background: transparent;
}

.booking-calendar__day.is-disabled {
    color: #cccccc;
    cursor: not-allowed;
}

.booking-calendar__day.is-in-range {
    background: #7dd29b;
    border-color: #7dd29b;
    color: #ffffff;
}

.booking-calendar__day.is-selected,
.booking-calendar__day.is-preview-edge {
    background: #52c57a;
    border-color: #52c57a;
    color: #ffffff;
    font-weight: 700;
}

.booking-calendar__day:hover:not(.is-disabled):not(.is-empty) {
    background: #a7dfbb;
    border-color: #a7dfbb;
    color: #ffffff;
}

/* =========================================
   Reuse/wrapper polish
========================================= */

#sb-children-ages-wrap,
#sb-rooms-config-wrap {
    margin-top: 14px;
}

#sb-panel-rooms[hidden],
#sb-panel-travelers[hidden] {
    display: none !important;
}

#sb-calendar[hidden],
#sb-guests-dropdown[hidden],
#sb-city-results[hidden] {
    display: none !important;
}

#sb-destination::-webkit-search-decoration,
#sb-destination::-webkit-search-cancel-button,
#sb-destination::-webkit-search-results-button,
#sb-destination::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 767px) {
    .booking-calendar__months {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hotel-filters__search-card {
        padding: 16px;
    }
}

.hotel-filters__section {
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 2px solid #d9e8ff;
}

.hotel-filters__section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1d2b3a;
}

.hotel-filters__section-head svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    fill: #2f73da;
}

.hotel-filters__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 12px;
}

.hotel-filters__tag input {
    display: none;
}

.hotel-filters__tag span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid #2f73da;
    border-radius: 11px;
    background: #fff;
    color: #1d2b3a;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: .18s ease;
}

.hotel-filters__tag input:checked + span {
    background: #2f73da;
    color: #fff;
}

.hotel-filters__radio-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hotel-filters__radio-row {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.hotel-filters__radio-row input {
    display: none;
}

.hotel-filters__radio-mark {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border: 1px solid #b8b8b8;
    border-radius: 50%;
    background: #fff;
    position: relative;
}

.hotel-filters__radio-row input:checked + .hotel-filters__radio-mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: #44bb6a;
}

.hotel-filters__radio-text {
    font-size: 16px;
    line-height: 1.4;
    color: #1d2b3a;
}

.hotel-filters__checkbox-row {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.hotel-filters__checkbox-row input {
    display: none;
}

.hotel-filters__checkbox-mark {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border: 1px solid #b8b8b8;
    border-radius: 5px;
    background: #fff;
    position: relative;
}

.hotel-filters__checkbox-row input:checked + .hotel-filters__checkbox-mark::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 5px;
    width: 7px;
    height: 13px;
    border: solid #2f73da;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.hotel-filters__checkbox-text {
    font-size: 16px;
    line-height: 1.4;
    color: #1d2b3a;
}

.hotel-filters__range-visual {
    padding-top: 2px;
}

.hotel-filters__range-bars {
    height: 82px;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    align-items: end;
    gap: 6px;
    margin-bottom: 8px;
}

.hotel-filters__range-bars span {
    display: block;
    width: 100%;
    height: 0;
    background: #ececec;
}

.hotel-filters__range-bars span.is-lg { height: 100%; }
.hotel-filters__range-bars span.is-sm { height: 26%; }
.hotel-filters__range-bars span.is-xs { height: 20%; }

.hotel-filters__fake-slider {
    position: relative;
    height: 36px;
    margin-bottom: 10px;
}

.hotel-filters__fake-track,
.hotel-filters__fake-fill {
    position: absolute;
    top: 14px;
    height: 8px;
    border-radius: 999px;
}

.hotel-filters__fake-track {
    left: 0;
    right: 0;
    background: #dbe7fb;
}

.hotel-filters__fake-fill {
    left: 0;
    right: 0;
    background: #2f73da;
}

.hotel-filters__fake-thumb {
    position: absolute;
    top: 0;
    width: 36px;
    height: 36px;
    border: 2px solid #2f73da;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
}

.hotel-filters__fake-thumb--left {
    left: 0;
}

.hotel-filters__fake-thumb--right {
    right: 0;
}

.hotel-filters__range-values {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.hotel-filters__range-values strong,
.hotel-filters__range-values span {
    display: block;
    font-size: 16px;
    line-height: 1.35;
}

.hotel-filters__range-values strong {
    font-weight: 700;
    color: #1d2b3a;
}

.hotel-filters__range-values span {
    margin-top: 2px;
    color: #1d2b3a;
}

.hotel-filters__range-values .is-right {
    text-align: right;
}

.hotel-filters__amenities-search {
    position: relative;
    margin-bottom: 16px;
}

.hotel-filters__amenities-search input {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 50px;
    border: 1px solid #9ea7b6;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    color: #1d2b3a;
    outline: none;
}

.hotel-filters__amenities-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    color: #2f73da;
}

.hotel-filters__amenities-search-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hotel-filters__amenities-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 8px;
}

.hotel-filters__amenities-list::-webkit-scrollbar {
    width: 8px;
}

.hotel-filters__amenities-list::-webkit-scrollbar-thumb {
    background: #d8d8d8;
    border-radius: 999px;
}

.hotel-filters__amenities-list::-webkit-scrollbar-track {
    background: transparent;
}

.hotel-filters__active {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.hotel-filters__active-chip {
    min-height: 32px;
    padding: 0 10px 0 12px;
    border: 0;
    border-radius: 8px;
    background: #e9eff8;
    color: #1d2b3a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.hotel-filters__active-chip-remove {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #7fa5dc;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
}

.hotel-filters__dual-range {
    padding-top: 2px;
}

.hotel-filters__range-histogram {
    height: 86px;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    align-items: end;
    gap: 10px;
    margin-bottom: 8px;
}

.hotel-filters__range-histogram span {
    display: block;
    width: 100%;
    background: #ececec;
}

.hotel-filters__range-histogram span.is-xl { height: 100%; width: 10px;}
.hotel-filters__range-histogram span.is-md { height: 24px; width: 10px;}
.hotel-filters__range-histogram span.is-xs { height: 20px; width: 10px;}
.hotel-filters__range-histogram span.is-0  { height: 0; }

.hotel-filters__dual-range-ui {
    position: relative;
    height: 38px;
    margin-bottom: 12px;
}

.hotel-filters__dual-range-track {
    position: absolute;
    top: 14px;
    height: 8px;
    border-radius: 999px;
}

.hotel-filters__dual-range-track--left,
.hotel-filters__dual-range-track--right {
    background: #d9e8ff;
}

.hotel-filters__dual-range-track--center {
    background: #2f73da;
}

.hotel-filters__dual-range-thumb {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    border: 2px solid #2f73da;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
    pointer-events: none;
}

.hotel-filters__dual-range-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    margin: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
}

.hotel-filters__dual-range-input::-webkit-slider-runnable-track {
    height: 40px;
    background: transparent;
}

.hotel-filters__dual-range-input::-moz-range-track {
    height: 40px;
    background: transparent;
    border: 0;
}

.hotel-filters__dual-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    opacity: 0;
    pointer-events: auto;
    cursor: pointer;
}

.hotel-filters__dual-range-input::-moz-range-thumb {
    width: 40px;
    height: 40px;
    opacity: 0;
    border: 0;
    pointer-events: auto;
    cursor: pointer;
}

.hotel-filters__dual-range-values {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.hotel-filters__dual-range-values .is-right {
    text-align: right;
}

.hotel-filters__dual-range-label {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    color: #1d2b3a;
}

.hotel-filters__dual-range-value {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.25;
    color: #1d2b3a;
}

/* =========================================
   AJAX filters / donor-like states
========================================= */

.hotel-list-page__content,
.hotel-list-page__sidebar {
    transition: opacity .18s ease;
}

.hotel-list-page__content.is-loading {
    opacity: .58;
    pointer-events: none;
}

.hotel-list-page__sidebar.is-loading {
    opacity: .92;
}

.hotel-filters__active {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
    margin-bottom: 26px;
}

.hotel-filters__active-chip {
    min-height: 34px;
    padding: 0 8px 0 12px;
    border: 0;
    border-radius: 8px;
    background: #eef3fa;
    color: #1d2b3a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    transition: background .18s ease, transform .18s ease;
}

.hotel-filters__active-chip:hover {
    background: #e5edf8;
}

.hotel-filters__active-chip-remove {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #96b4df;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    flex: 0 0 18px;
}

.hotel-filters__section {
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 2px solid #d9e8ff;
}

.hotel-filters__section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.hotel-filters__section-head > svg {
    flex: 0 0 auto;
}

.hotel-filters__section-head > span,
.hotel-filters__section-head > h3,
.hotel-filters__section-head > div {
    min-width: 0;
}

.hotel-filters__section-clear {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #7a8598;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    padding: 0;
}

.hotel-filters__section-clear:hover {
    color: #1d2b3a;
}

.hotel-filters__section-clear-x {
    font-size: 24px;
    line-height: 1;
    transform: translateY(-1px);
}

.hotel-filters__section.is-has-selected .hotel-filters__section-head {
    margin-bottom: 16px;
}

.hotel-filters__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 12px;
}

.hotel-filters__tag {
    display: inline-flex;
}

.hotel-filters__tag input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hotel-filters__tag span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid #b8bdc7;
    border-radius: 11px;
    background: #fff;
    color: #4b5565;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.hotel-filters__tag span:hover {
    border-color: #2f73da;
    color: #2f73da;
}

.hotel-filters__tag input:checked + span {
    border-color: #2f73da;
    background: #2f73da;
    color: #fff;
    box-shadow: 0 6px 18px rgba(47, 115, 218, 0.18);
}

.hotel-filters__tag input:disabled + span {
    border-color: #c9c9c9;
    color: #a7a7a7;
    background: #fff;
    cursor: not-allowed;
    box-shadow: none;
}

.hotel-filters__checkbox-row,
.hotel-filters__radio-row {
    transition: opacity .18s ease;
}

.hotel-filters__checkbox-row:hover .hotel-filters__checkbox-text,
.hotel-filters__radio-row:hover .hotel-filters__radio-text {
    color: #2f73da;
}

.hotel-filters__checkbox-row input:checked + .hotel-filters__checkbox-mark {
    border-color: #2f73da;
    background: #eef4ff;
}

.hotel-filters__radio-row input:checked + .hotel-filters__radio-mark {
    border-color: #44bb6a;
}

.hotel-filters__checkbox-row input:disabled + .hotel-filters__checkbox-mark,
.hotel-filters__radio-row input:disabled + .hotel-filters__radio-mark {
    background: #f2f2f2;
    border-color: #d5d5d5;
}

.hotel-filters__checkbox-row input:disabled ~ .hotel-filters__checkbox-text,
.hotel-filters__radio-row input:disabled ~ .hotel-filters__radio-text {
    color: #a6a6a6;
    cursor: not-allowed;
}

.hotel-filters-form.is-loading .hotel-filters__tag span,
.hotel-filters-form.is-loading .hotel-filters__checkbox-row,
.hotel-filters-form.is-loading .hotel-filters__radio-row {
    pointer-events: none;
}

/* =========================================
   FIX: sidebar mini-search calendar layering
   вставить В САМЫЙ КОНЕЦ main.css
========================================= */

.hotel-list-page,
.hotel-list-page__layout,
.hotel-list-page__sidebar,
.hotel-filters,
.hotel-filters-form,
.hotel-filters__search-card,
.hotel-filters__field-group,
.hotel-sidebar-search__autocomplete-wrap,
.hotel-filters__top-field,
.hotel-filters__top-field--split {
    position: relative;
    overflow: visible !important;
}

.hotel-list-page__sidebar {
    z-index: 300 !important;
    isolation: isolate;
}

.hotel-filters {
    z-index: 310;
}

.hotel-filters-form {
    z-index: 320;
}

.hotel-filters__search-card {
    z-index: 400 !important;
    isolation: isolate;
}

.hotel-filters__section,
.hotel-filters-box,
.hotel-filters__active,
.hotel-list-page__map-area,
.hotel-list-page__toolbar,
.hotel-list-page__content {
    position: relative;
    z-index: 1;
}

.hotel-sidebar-search__autocomplete-wrap {
    z-index: 450;
}

.hotel-sidebar-search__autocomplete-results,
#sb-city-results {
    position: absolute !important;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 100050 !important;
    pointer-events: auto !important;
}

.hotel-sidebar-search__calendar,
#sb-calendar,
.booking-calendar {
    position: absolute !important;
    top: calc(100% + 10px);
    left: 0;
    z-index: 100100 !important;
    pointer-events: auto !important;
    overflow: visible !important;
}

#sb-guests-dropdown,
.booking-guests-dropdown {
    position: absolute !important;
    top: calc(100% + 10px);
    left: 0;
    z-index: 100120 !important;
    pointer-events: auto !important;
    overflow: visible !important;
}

.hotel-sidebar-search__dates-trigger,
#sb-dates-trigger,
.hotel-sidebar-search__date-box,
#sb-date-start-box,
#sb-date-end-box {
    position: relative;
    z-index: 20;
}

.hotel-sidebar-search__date-box.is-active,
#sb-date-start-box.is-active,
#sb-date-end-box.is-active {
    z-index: 21;
}

.booking-calendar__header,
.booking-calendar__months,
.booking-calendar__month,
.booking-calendar__grid,
.booking-calendar__day {
    position: relative;
    z-index: 2;
}

.booking-calendar__day {
    pointer-events: auto !important;
}

.booking-calendar__day.is-empty,
.booking-calendar__day.is-disabled {
    pointer-events: none !important;
}

.hotel-list-page__sidebar.is-loading,
.hotel-list-page__sidebar.is-loading * {
    pointer-events: auto !important;
}

.hotel-filters-form.is-loading .hotel-filters__search-card,
.hotel-filters-form.is-loading .hotel-filters__search-card * {
    pointer-events: auto !important;
}

.hotel-list-page__content.is-loading {
    pointer-events: none;
}

#sb-calendar[hidden],
#sb-guests-dropdown[hidden],
#sb-city-results[hidden] {
    display: none !important;
    pointer-events: none !important;
}

.hotel-filters__search-card .booking-calendar__nav {
    display: grid !important;
    grid-template-columns: 40px 1fr 40px !important;
    align-items: center !important;
    gap: 0 !important;
    margin-bottom: 12px !important;
}

.hotel-filters__search-card .booking-calendar__nav button,
.hotel-filters__search-card .booking-calendar__nav > button,
.hotel-filters__search-card .booking-calendar__header .booking-calendar__nav,
.hotel-filters__search-card .booking-calendar__header button {
    pointer-events: auto !important;
}

.hotel-filters__search-card .booking-calendar__months {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
}

.hotel-filters__search-card .booking-calendar__weekdays,
.hotel-filters__search-card .booking-calendar__grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
}

.hotel-filters__search-card .booking-calendar__day {
    min-height: 40px;
    aspect-ratio: 1 / 1;
    border: 1px solid #ececec;
    background: #ffffff;
    color: #383838;
    font-size: 14px;
    padding: 0;
    cursor: pointer;
}

.hotel-filters__search-card .booking-calendar__day:hover:not(.is-disabled):not(.is-empty) {
    background: #a7dfbb;
    border-color: #a7dfbb;
    color: #ffffff;
}

.hotel-filters__search-card .booking-calendar__day.is-selected,
.hotel-filters__search-card .booking-calendar__day.is-preview-edge {
    background: #52c57a;
    border-color: #52c57a;
    color: #ffffff;
    font-weight: 700;
}

.hotel-filters__search-card .booking-calendar__day.is-in-range {
    background: #7dd29b;
    border-color: #7dd29b;
    color: #ffffff;
}

.hotel-filters__search-card .booking-calendar__day.is-empty {
    border-color: transparent;
    background: transparent;
}

.hotel-filters__search-card .booking-calendar__day.is-disabled {
    color: #cccccc;
    cursor: not-allowed;
    background: #ffffff;
}

@media (max-width: 991px) {
    .hotel-sidebar-search__calendar,
    #sb-calendar,
    .booking-calendar {
        width: min(710px, calc(100vw - 48px)) !important;
        max-width: calc(100vw - 48px) !important;
    }
}

@media (max-width: 767px) {
    .hotel-sidebar-search__calendar,
    #sb-calendar,
    .booking-calendar {
        left: 0;
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
    }

    .hotel-filters__search-card .booking-calendar__months {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
}