@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


/* ===== CSS ПЕРЕМЕННЫЕ ===== */
:root {
  /* Цвета */
  --color-primary: #f97316;
  --color-hover: #e77221;
  --color-primary-hover: #ea580c;
  --color-dark: #111827;
  --color-dark-hover: #000000;
  --color-text: #404040;
  --color-text-secondary: #4b5563;
  --color-text-muted: #6b7280;
  --color-text-light: #9ca3af;
  --color-bg: #ffffff;
  --color-bg-light: #f9fafb;
  --color-bg-gray: #f3f4f6;
  --color-bg-gray-dark: #e5e7eb;
  --color-border: #d1d5db;
  --color-border-dark: #e5e7eb;
  --color-link: #2563eb;
  --color-link-hover: rgba(37, 99, 235, 0.08);
  --color-danger: #b91c1c;
  --color-accent-blue: #1d4ed8;
  --color-accent-blue-bg: #eff6ff;
  
  /* Радиусы */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 999px;
  
  /* Отступы */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 20px;
  --spacing-2xl: 24px;
  --spacing-3xl: 32px;
  
  /* Шрифты */
  --font-family: 'Manrope', sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 13px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  
  /* Z-index */
  --z-dropdown: 10;
  --z-panel: 20;
  --z-filters: 40;
  --z-date-modal: 3000;
  --z-booking-modal: 4000;
  --z-date-modal-alt: 5000;
  --z-room-modal: 9999;
}
button{
    transition: background ease .5s;
}
/* ===== ОСНОВНЫЕ СТИЛИ ===== */
#rec1625664941 {
  max-width: 1440px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  font-family: var(--font-family);
  color: var(--color-text);
}
svg{
    fill: var(--color-text);
}
.hotel-amenity-line__content{
    align-content: center;
}
.hotel-amenity-line__icon{
    align-content: center;
    height:32px;
    align-self: center;
}
.hotel-amenity-line{
    align-content: center;
}
.t123 {
  font-family: var(--font-family);
  font-size: var(--font-size-md);
  color: var(--color-text);
}

/* ===== ПОИСК ОТЕЛЕЙ ===== */
.hotel-search,
.hotel-search *,
.hotels-grid,
.hotels-grid * {
  font-family: var(--font-family);
  color: var(--color-text);
}
.chip::first-letter {
  text-transform: uppercase;
}
.hotel-search {
  max-width: 1200px;
  margin: 0 auto var(--spacing-2xl);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
}

.hotel-search__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin: 0 0 var(--spacing-md);
}

.hotel-search__row {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-md);
  width: 100%;
}

.search-group {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 79%;
}

.hotel-search__row > div > div {
  height: 48px;
  border-radius: var(--radius-sm);
  width: 100%;
  box-sizing: border-box;
  padding: var(--spacing-md) var(--spacing-lg);
}

.hotel-search__row > div > div.hotel-search__field:first-of-type {
  
  border: solid 1px #000;
  border-radius:8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.hotel-search__row > div > div.hotel-search__field {
  border-radius: 0;
  border: solid 1px #000;
  border-left: 0;
  border-right: 0;
}

.hotel-search__row > div > div.hotel-search__field:last-of-type{
  
  border: solid 1px #000;
  border-radius:8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.hotel-search__row > button {
  border-radius: var(--radius-sm);
  width: 20%;
  box-sizing: border-box;
}
.search-gruop{
    width: 100%;
    display: flex;
    flex-direction: row;
}


.hotel-search__chips > button {
  height: 36px;
  box-sizing: border-box;
}

.hotel-search__field {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius-full);
  padding: var(--spacing-sm) var(--spacing-lg);
  display: flex;
  align-items: center;
}

.hotel-search__input,
.hotel-search__guests-btn {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font: inherit;
}

.hotel-search__submit, .hotel-card__btn {
  border-radius: var(--radius-full);
  padding: 0 var(--spacing-3xl);
  border: none;
  cursor: pointer;
  background: var(--color-primary);
  color: var(--color-bg);
  font-weight: 400;
  transition: background ease .5s;
}
.hotel-search__submit:hover, .hotel-card__btn:hover {
  background: var(--color-hover) !important;
}


.hotel-search__chips {
  margin-top: var(--spacing-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.hotel-search__date-btn {
  text-align: center;
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== ЧИПСЫ ===== */
.chip {
  border-radius: var(--radius-full);
  padding: 6px var(--font-size-base);
  border: none;
  background: var(--color-bg-gray-dark);
  cursor: pointer;
  font-size: var(--font-size-base);
}

.chip--active {
  background: var(--color-dark);
  color: var(--color-bg);
}

.chip--icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chip__icon {
  font-size: var(--font-size-base);
}

.chip--muted {
  background: var(--color-bg-light);
  color: var(--color-text-muted);
}

/* ===== ПОДСКАЗКИ РЕГИОНОВ ===== */
.region-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: var(--z-dropdown);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-xs);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-height: 220px;
  overflow-y: auto;
}

.region-suggestions__item {
  padding: var(--spacing-sm) var(--spacing-md);
  cursor: pointer;
  font-size: var(--font-size-base);
}

.region-suggestions__item:hover {
  background: var(--color-bg-gray);
}

/* ===== МОДАЛКА ГОСТЕЙ ===== */
.guests-panel {
  position: absolute;
  top: 110%;
  left: 0;
  z-index: var(--z-panel);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: var(--spacing-lg);
  width: 320px;
}

.guests-panel--hidden {
  display: none;
}

.guests-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.guests-row__label {
  font-size: var(--font-size-base);
  font-weight: 500;
}

.guests-counter {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  justify-content: space-between;
  width: 100%;
  border: solid 1px black;
  border-radius: var(--radius-sm);
  height: 34px;
}

.guests-counter__btn {
  width: 32px;
  height: 32px;
  background: var(--color-bg);
  cursor: pointer;
  font-size: var(--font-size-lg);
  line-height: 1;
  border-radius: var(--radius-sm);
}

.guests-counter__btn:nth-child(1) {
  border: solid 0 black;
  border-right: solid 1px black;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.guests-counter__btn:nth-child(3) {
  border: solid 0 black;
  border-left: solid 1px black;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.guests-counter__value {
  min-width: 20px;
  text-align: center;
}

/* ===== ПЛАШКИ ДЕТЕЙ ===== */
.children-tags {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.child-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 10px;
  background: var(--color-bg-gray);
  font-size: var(--font-size-base);
}

.child-pill__label {
  margin-right: var(--spacing-sm);
}

.child-pill__remove {
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-bg-gray-dark);
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-xs);
  cursor: pointer;
}

/* ===== БЛОК "ДОБАВИТЬ РЕБЁНКА" ===== */
.children-add-block {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-dark);
  background: var(--color-bg-light);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}

.children-add__toggle {
  width: 100%;
  border: none;
  background: transparent;
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: var(--font-size-base);
}

.children-add__chevron {
  font-size: var(--font-size-xs);
}

.children-age-list {
  padding: var(--spacing-xs) var(--spacing-md) 10px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  max-height: 220px;
  overflow-y: auto;
  flex-wrap: nowrap;
  align-items: center;
}

.children-age-list--hidden {
  display: none;
}

.children-age__option {
  width: 94%;
  text-align: left;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--color-bg);
  padding: 6px var(--spacing-sm);
  font-size: var(--font-size-base);
  cursor: pointer;
}

.children-age__option:hover {
  background: var(--color-bg-gray-dark);
}

.guests-panel__footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.btn-secondary {
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  padding: 6px var(--font-size-base);
  cursor: pointer;
  font-size: var(--font-size-base);
}

.btn-primary {
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 6px var(--spacing-lg);
  cursor: pointer;
  font-size: var(--font-size-base);
}
.btn-primary:hover{
    background: var(--color-hover)!important;
}

/* ===== СЕТКА ОТЕЛЕЙ ===== */
.hotels-grid {
  max-width: 1200px;
  margin: var(--spacing-2xl) auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  padding: 0 var(--spacing-xl);
}

.hotel-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: row;
  gap: var(--spacing-xl);
  width: 100%;
  align-items: stretch;
  height: auto;
}

.hotel-card__image-wrap {
  width: 25%;
  height: 100%;
  overflow: hidden;
  background: var(--color-bg-gray-dark);
  border-radius: var(--radius-md);
  position: relative;
}

.hotel-card__slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotel-card__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  line-height: 1;
  padding: 0;
}

.hotel-card__slider-btn--prev {
  left: var(--spacing-sm);
}

.hotel-card__slider-btn--next {
  right: var(--spacing-sm);
}

.hotel-card__content {
  padding: var(--spacing-lg) var(--spacing-2xl);
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: var(--spacing-2xl);
}

.hotel-card__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hotel-card__title {
  font-weight: 600;
  font-size: var(--font-size-lg);
}

.hotel-card__address {
  font-size: var(--font-size-base);
  margin-top: var(--spacing-xs);
}

.hotel-card__amenities {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hotel-card__amenity-pill {
  display: flex;
  align-items: center;
  font-size: var(--font-size-sm);
  padding: 6px 15px;
  border-radius: var(--radius-full);
  background: var(--color-bg-gray);
}

.hotel-card__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  text-align: right;
}

.hotel-card__price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-xs);
}

.hotel-card__price-main {
  font-weight: 600;
  font-size: var(--font-size-xl);
}

.hotel-card__price-note {
  font-size: var(--font-size-sm);
}

.hotel-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 42px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: var(--font-size-base);
  font-weight: 400;
  cursor: pointer;
  color: #fff!important;
}

.hotels-empty {
  max-width: 1200px;
  margin: var(--spacing-2xl) auto;
  text-align: center;
}

.sort-label {
  font-size: var(--font-size-base);
}

/* ===== МОДАЛКА ФИЛЬТРОВ ===== */
.filters-modal,
.filters-modal * {
  font-family: var(--font-family);
  color: var(--color-text);
}

.filters-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-filters);
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
}

.filters-modal-backdrop--visible {
  display: flex;
}

.filters-modal {
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  background: var(--color-bg);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
}

.filters-modal__header {
  padding: var(--spacing-lg) var(--spacing-xl);
  border-bottom: 1px solid var(--color-border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.filters-modal__body {
  padding: var(--spacing-lg) var(--spacing-xl);
  overflow: auto;
}

.filters-modal__section {
  margin-bottom: var(--spacing-lg);
}

.filters-modal__title {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.filters-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.filters-modal__footer {
  padding: var(--spacing-md) var(--spacing-xl) var(--spacing-lg);
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-sm);
}

.filters-modal__close {
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: var(--font-size-xl);
}

/* ===== МОДАЛКА ДАТ ===== */
.date-modal,
.date-modal * {
  font-family: var(--font-family);
  color: var(--color-text);
}

.date-modal-backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.38);
  z-index: calc(var(--z-date-modal) + 2000);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.date-modal-backdrop--visible {
  opacity: 1;
  visibility: visible;
}

.date-modal {
  background: var(--color-bg);
  border-radius: var(--radius-2xl);
  max-width: 540px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-2xl) var(--spacing-2xl) var(--spacing-lg);
  box-sizing: border-box;
}

.date-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
}

.date-modal__title {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.date-modal__close {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.date-modal__range-label {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

.date-modal__months {
  overflow-y: auto;
  padding-right: var(--spacing-xs);
  margin-right: calc(-1 * var(--spacing-xs));
}

.date-modal__footer {
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border-dark);
  margin-top: var(--spacing-sm);
  display: flex;
  justify-content: flex-end;
}

/* ===== КАЛЕНДАРЬ ===== */
.calendar-month {
  margin-bottom: var(--spacing-xl);
}

.calendar-month__title {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.calendar-month__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xs);
}

.calendar-month__weekdays span {
  text-align: center;
}

.calendar-month__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--spacing-xs);
}

.calendar-day {
  height: 32px;
  font-size: var(--font-size-base);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.calendar-day--empty {
  cursor: default;
}

.calendar-day--disabled {
  cursor: default;
  color: var(--color-border);
}

.calendar-day--in-range {
  background: var(--color-bg-gray-dark);
  border-radius: var(--radius-sm);
}

.calendar-day--start,
.calendar-day--end {
  background: var(--color-dark);
  color: var(--color-bg);
  border-radius: var(--radius-full);
  z-index: 1;
}

.calendar-day--start.calendar-day--end {
  background: var(--color-dark);
}

.calendar-day--today::after {
  content: "";
  position: absolute;
  bottom: var(--spacing-xs);
  width: var(--spacing-xs);
  height: var(--spacing-xs);
  border-radius: var(--radius-full);
  background: var(--color-primary);
}

/* ===== МОДАЛКА СОРТИРОВКИ ===== */
.sort-modal,
.sort-modal * {
  font-family: var(--font-family);
  color: var(--color-text);
}

.sort-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: var(--z-room-modal);
}

.sort-modal-backdrop--visible {
  display: flex;
}

.sort-modal {
  width: 480px;
  max-width: calc(100% - 32px);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
  padding: var(--spacing-2xl) var(--spacing-3xl) 28px;
}

.sort-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
}

.sort-modal__title {
  margin: 0;
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-text);
}

.sort-modal__close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: var(--font-size-lg);
  line-height: 1;
  color: var(--color-text-secondary);
}

.sort-modal__body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.sort-modal__option {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: var(--font-size-md);
  color: var(--color-text);
  cursor: pointer;
}

.sort-modal__option-input {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-text-light);
  position: relative;
  outline: none;
  flex-shrink: 0;
}

.sort-modal__option-input:checked {
  border-color: var(--color-dark);
}

.sort-modal__option-input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: var(--radius-full);
  background: var(--color-dark);
}

/* ===== ДЕТАЛИ ОТЕЛЯ ===== */
.hotel-detail,
.hotel-detail *,
.similar-hotels-grid,
.similar-hotels-grid *,
.room-modal,
.room-modal *,
.hotel-amenity-line,
.hotel-amenity-line *,
.similar-card,
.similar-card * {
  font-family: var(--font-family);
}

.hotel-amenity-line__icon svg{
    height:2em;
    width:2em;
}
.hotel-amenity-line__title {
  font-weight: 600;
  font-size: var(--font-size-md);
  letter-spacing: -0.02em;
}

.hotel-amenity-line {
  display:flex;
    flex-direction:row;
    align-content:center;
  gap: 15px;
}

.hotel-amenity-line__descr {
  font-weight: 400;
  font-size: var(--font-size-base);
  letter-spacing: -0.02em;
}

.similar-hotels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-3xl);
  margin-top: var(--spacing-2xl);
}

.hotel-detail__descr-wrapper {
  position: relative;
}

.hotel-detail__descr {
  overflow: hidden;
  max-height: 7.5em;
  transition: max-height 1s ease;
}

.hotel-detail__descr--expanded {
  max-height: 1000em;
  transition: max-height 1s ease;
}

.hotel-detail__descr-toggle {
  margin-top: var(--spacing-sm);
  padding: 0;
  border: none;
  background: none;
  color: var(--color-link);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.similar-card {
  background: var(--color-bg);
  border-radius: var(--spacing-xl);
  overflow: hidden;
  cursor: pointer;
}

.similar-card__image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #eee;
}

.similar-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.similar-card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: var(--color-bg);
  font-size: 22px;
  padding: var(--spacing-xs) 10px;
  border-radius: var(--radius-sm);
}

.similar-card__nav--prev {
  left: 10px;
}

.similar-card__nav--next {
  right: 10px;
}

.similar-card__body {
  padding: var(--font-size-base) var(--spacing-xl);
}

.similar-card__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.similar-card__addr {
  font-size: var(--font-size-base);
  color: #444;
  margin-bottom: 10px;
}

.similar-card__price {
  font-size: var(--font-size-md);
  font-weight: 600;
  margin-bottom: 2px;
}

.similar-card__subprice {
  font-size: var(--font-size-sm);
  color: #666;
}

.hotel-detail {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: var(--spacing-2xl);
  font-size: var(--font-size-md);
  color: var(--color-text);
}

.hotel-detail__back {
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-base);
}

.hotel-detail__back a {
  color: var(--color-link);
  text-decoration: none;
}

.hotel-detail__back a:hover {
  text-decoration: underline;
}

.hotel-detail__header {
  display: block;
  margin-bottom: var(--spacing-xl);
}

.hotel-detail__title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.hotel-detail__meta {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
}

.hotel-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: 10px;
}

.tag {
  font-size: var(--font-size-base);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  background: var(--color-accent-blue-bg);
  color: var(--color-accent-blue);
}

/* ===== ГАЛЕРЕЯ ОТЕЛЯ ===== */
.hotel-detail__gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hotel-detail__gallery-main {
  position: relative;
  background: var(--color-bg-gray-dark);
  border: none;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.hotel-detail__gallery-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hotel-detail__gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.hotel-detail__gallery-side-item {
  position: relative;
  background: var(--color-bg-gray-dark);
  border: none;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.hotel-detail__gallery-side-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hotel-detail__gallery-img {
  display: block;
}

.hotel-detail__gallery-more {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-bg);
  font-size: var(--font-size-xs);
}

.hotel-detail__section-title {
  margin: var(--spacing-3xl) 0 var(--spacing-lg);
  font-size: var(--font-size-xl);
  font-weight: 600;
}

.hotel-detail__descr {
  font-size: var(--font-size-md);
  line-height: 1.5;
}

.hotel-detail__amenities-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--spacing-sm);
}

.hotel-detail__amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.hotel-detail__not-found {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
}

/* ===== КАРТОЧКИ НОМЕРОВ ===== */
.rooms-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-md);
}

.room-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  background: var(--color-bg);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.room-card__image-wrap {
  position: relative;
  background: var(--color-bg-gray-dark);
  min-height: 200px;
  overflow: hidden;
}

.room-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-card__image-count {
  position: absolute;
  left: var(--spacing-md);
  bottom: var(--spacing-md);
  padding: var(--spacing-xs) 9px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-bg);
  font-size: var(--font-size-xs);
  z-index: 2;
}

.room-card__image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  font-size: var(--font-size-md);
}

.room-card__image-nav--prev {
  left: 10px;
}

.room-card__image-nav--next {
  right: 10px;
}

.room-card__image-nav:hover {
  background: rgba(0, 0, 0, 0.75);
}

.room-card__body {
  padding: 18px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.room-card__title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 20px;
}

.room-card__capacity {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}
.room-card__rooms-count{
  margin-bottom: 15px;

}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: var(--spacing-sm);
  width:60%;
}
.room-card__amenities .chip{
    display: flex;
    gap: 1em;
    flex-direction: row;
    align-items: center;
    background:none;
    padding:0;
}
.room-card__note {
  font-size: var(--font-size-base);
  margin-top: 10px;
  color: var(--color-text-secondary);
}

.room-card__note--danger {
  color: var(--color-danger);
}

.room-card__footer {
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.room-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.room-card__price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

.room-card__price-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.room-card__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.room-card__btn {
  border-radius: var(--radius-full);
  padding: 9px 18px;
  font-size: var(--font-size-base);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.room-card__btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
}

.room-card__btn-primary:hover {
  background: var(--color-primary-hover);
}

.room-card__btn-primary--disabled {
  background: var(--color-bg-gray-dark);
  color: var(--color-text-light);
  cursor: default;
  pointer-events: none;
}

.room-card__btn-secondary {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.room-card__btn-secondary:hover {
  background: #ffedd5;
}

/* ===== МОДАЛЬНОЕ ОКНО НОМЕРОВ/ГАЛЕРЕИ ===== */
.room-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: var(--z-room-modal);
}

.room-modal--open {
  display: flex;
}

.room-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.room-modal__dialog {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  border-radius: var(--spacing-xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  padding: 22px var(--spacing-2xl) var(--spacing-2xl);
}

.room-modal__close {
  position: absolute;
  top: 10px;
  right: var(--spacing-md);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-bg-gray);
  cursor: pointer;
  font-size: var(--font-size-xl);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-modal__close:hover {
  background: var(--color-bg-gray-dark);
}

.room-modal__slider {
  margin-bottom: var(--spacing-xl);
}

.room-modal__slider-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-gray-dark);
}

.room-modal__slider-main img {
  width: 100%;
  height: auto;
  display: block;
}

.room-modal__slider-counter {
  position: absolute;
  left: var(--spacing-md);
  bottom: var(--spacing-md);
  padding: var(--spacing-xs) 9px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-bg);
  font-size: var(--font-size-xs);
  z-index: 2;
}

.room-modal__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: var(--color-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-size: var(--font-size-xl);
}

.room-modal__nav-btn--prev {
  left: var(--font-size-base);
}

.room-modal__nav-btn--next {
  right: var(--font-size-base);
}

.room-modal__nav-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

.room-modal__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 6px;
}

.room-modal__meta {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin-bottom: 10px;
}

.room-modal__capacity {
  margin-bottom: 6px;
}

.room-modal__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-base);
}

.room-modal__descr {
  font-size: var(--font-size-md);
  line-height: 1.6;
}

/* ===== ПОИСК НА СТРАНИЦЕ ОТЕЛЯ ===== */
.hotel-detail__search {
  margin: 0 0 var(--spacing-xl);
}

.hotel-detail-search {
  display: flex;
  align-items: stretch;
  max-width: 700px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-bg);
}

.hotel-detail-search__segment {
  flex: 1 1 auto;
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-md);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hotel-detail-search__segment--dates {
  border-right: 1px solid var(--color-border-dark);
}

.hotel-detail-search__label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.hotel-detail-search__chevron {
  margin-left: var(--spacing-sm);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.hotel-detail-search__submit {
  flex: 0 0 auto;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-md);
  font-weight: 600;
  background: var(--color-primary);
  color: var(--color-bg);
  border-left: 1px solid var(--color-primary);
}

/* ===== МОДАЛЬНОЕ ОКНО БРОНИРОВАНИЯ ===== */
.booking-modal,
.booking-modal *,
.booking-date-panel,
.booking-date-panel * {
  font-family: var(--font-family);
}

.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-booking-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.booking-modal-backdrop--open {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  width: 100%;
  background: var(--color-bg);
  border-radius: var(--radius-2xl);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.18),
    0 0 1px rgba(15, 23, 42, 0.12);
  padding: var(--spacing-2xl) var(--spacing-2xl) var(--spacing-xl);
  box-sizing: border-box;
  color: var(--color-dark);
  max-height: 80vh;
  overflow-y: auto;
  height:80vh;
  margin:10vh 0;
  
}

.booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.booking-modal__title {
  margin: 0;
  font-size: var(--font-size-2xl);
  line-height: 1.2;
  font-weight: 600;
}

.booking-modal__close {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: var(--font-size-2xl);
  line-height: 1;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.booking-modal__close:hover {
  background: rgba(31, 41, 55, 0.08);
  color: var(--color-dark);
}

.booking-modal__layout {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-2xl);
}

.booking-modal__main {
  flex: 1 1 0;
}

.booking-modal__sidebar {
  flex: 0 0 320px;
}

.booking-modal__summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.booking-summary-card {
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md) var(--font-size-base);
  display: flex;
  flex-direction: column;
  row-gap: var(--spacing-xs);
}

.booking-summary-card__label {
  font-size: var(--font-size-base);
  line-height: 1.4;
  color: var(--color-text-muted);
}

.booking-summary-card__value {
  font-size: var(--font-size-md);
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-dark);
}

.booking-modal__change {
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
  border-radius: var(--radius-full);
  border: none;
  padding: var(--spacing-sm) var(--font-size-base);
  background: transparent;
  color: var(--color-link);
  font-size: var(--font-size-base);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
}

.booking-modal__change:hover {
  background: var(--color-link-hover);
}

.booking-modal__room {
  margin-bottom: var(--spacing-lg);
}

.booking-modal__room-title {
  font-size: var(--font-size-lg);
  line-height: 1.35;
  font-weight: 600;
  color: var(--color-dark);
}

.booking-form {
  border-top: 1px solid var(--color-border-dark);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-lg);
  font-size: var(--font-size-md);
}

.booking-form__row {
  display: block;
  margin-bottom: var(--spacing-lg);
}

.booking-form__row--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);;
  gap: var(--spacing-md);
}

.booking-form__field {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.booking-form__label {
  font-size: var(--font-size-base);
  line-height: 1.4;
  color: var(--color-text-secondary);
}

.booking-form__hint {
  font-size: var(--font-size-xs);
  line-height: 1.4;
  color: var(--color-text-light);
}

.booking-form__field input,
.booking-form__field textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 10px var(--spacing-md);
  font-size: var(--font-size-md);
  line-height: 1.4;
  font-family: inherit;
  color: var(--color-dark);
  background: var(--color-bg);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.booking-form__field input::placeholder,
.booking-form__field textarea::placeholder {
  color: var(--color-text-light);
}

.booking-form__field input:focus,
.booking-form__field textarea:focus {
  outline: none;
  border-color: var(--color-link);
  box-shadow: 0 0 0 1px var(--color-link-hover);
  background: var(--color-bg);
}

.booking-form__field textarea {
  resize: vertical;
  min-height: 96px;
}

.booking-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: flex-start;
  margin-top: var(--spacing-sm);
}

.booking-form__submit,
.booking-form__cancel {
  appearance: none;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-size: var(--font-size-base);
  line-height: 1.4;
  font-weight: 500;
  padding: 10px 18px;
  font-family: inherit;
}

.booking-form__submit {
  background: var(--color-dark);
  color: var(--color-bg);
}

.booking-form__submit:hover {
  background: var(--color-dark-hover);
}

.booking-form__cancel {
  background: var(--color-bg-gray);
  color: var(--color-text-secondary);
}

.booking-form__cancel:hover {
  background: var(--color-bg-gray-dark);
}

.booking-sidebar-card {
  background: var(--color-bg);
  border-radius: var(--radius-2xl);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.12),
    0 0 1px rgba(15, 23, 42, 0.08);
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-sidebar-card__header {
  display: flex;
  gap: var(--spacing-md);
  justify-content: space-between;
  align-items: flex-start;
}

.booking-sidebar-card__title {
  font-size: var(--font-size-lg);
  line-height: 1.3;
  font-weight: 600;
}

.booking-sidebar-card__img-wrap {
  width: 96px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg-gray-dark);
}

.booking-sidebar-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-sidebar-card__meta {
  font-size: var(--font-size-base);
  line-height: 1.4;
  color: var(--color-text-secondary);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-sidebar-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--spacing-xs);
}

.booking-sidebar-card__chip {
  font-size: var(--font-size-sm);
  line-height: 1.3;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-full);
  background: var(--color-bg-gray);
  color: var(--color-text-secondary);
}

.booking-sidebar-card__price-box {
  margin-top: var(--spacing-sm);
  border-radius: var(--radius-lg);
  background: var(--color-bg-gray);
  padding: 10px var(--spacing-md);
}

.booking-sidebar-card__price-label {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xs);
}

.booking-sidebar-card__price {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 2px;
}

.booking-sidebar-card__price-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.booking-sidebar-card__note {
  margin-top: var(--spacing-sm);
  font-size: var(--font-size-xs);
  line-height: 1.45;
  color: var(--color-text-muted);
}

.booking-search-inline .hotel-search {
  max-width: 100%;
}

.booking-date-panel {
  margin-top: var(--spacing-sm);
  padding: var(--spacing-md) var(--font-size-base);
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-dark);
}

.booking-date-panel--hidden {
  display: none;
}

.booking-date-panel__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.booking-date-panel__row label {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
}

.booking-date-panel input[type="date"] {
  padding: var(--spacing-sm) 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: var(--font-size-base);
}

.booking-date-panel__actions {
  margin-top: var(--spacing-sm);
  display: flex;
  gap: var(--spacing-sm);
}
.room-modal__body{
    display:flex;
    flex-direction:column;
    row-gap:10px;
}

/* ===== МЕДИА-ЗАПРОСЫ ===== */
@media (max-width: 1024px) {
  .similar-hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-modal{
        background: none;
        border-radius: 0;
        box-shadow: none;
        box-sizing: border-box;
        overflow-y: auto;
        margin: 5vh 0;
        height: auto;
        max-height: fit-content;
        overflow: visible;
        position: relative;
  }
}
@media(max-width:960px){
    .booking-modal__layout{
        flex-direction:column-reverse;
    }
    .booking-sidebar-card__img-wrap{
        width: 100%;
        height: 250px;
    }
    .booking-sidebar-card__header{
        flex-direction:column-reverse;
    }
}
@media (max-width: 900px) {
  .hotel-card {
    flex-direction: column;
  }
  .hotel-card__slider-img{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
  }
  .hotel-card__image-wrap{
        border-bottom-left-radius:0;
      border-bottom-right-radius:0;  
  }

  .hotel-card__image-wrap {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
  }

  .hotel-card__content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .hotel-card__aside {
    align-items: flex-start;
    text-align: left;
  }

  .hotel-card__price-block {
    align-items: flex-start;
  }

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card__image-wrap {
    min-height: 220px;
  }

  .room-card__footer {
    align-items: flex-start;
  }

}

@media (max-width: 768px) {
  .guests-panel {
    right: 0;
    left: auto;
  }

  .search-group {
    width: 100%;
  }

  .hotel-search__row {
    flex-direction: column;
  }

  .hotel-search__row > button {
    width: 100%;
    padding: 15px var(--spacing-xl);
    text-align: center;
  }

  .booking-modal {
    padding: 28px var(--spacing-3xl) var(--spacing-2xl);
  }

  .booking-modal__summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-form__row--2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hotel-detail-search {
    flex-direction: column;
    align-items: stretch;
  }

  .hotel-detail-search__segment {
    border-right: none;
    border-bottom: 1px solid var(--color-border-dark);
  }

  .hotel-detail-search__submit {
    width: 100%;
    padding: 10px 18px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
}

@media (max-width: 640px) {
  .sort-modal {
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-2xl);
    border-radius: var(--radius-md);
  }

  .room-modal__dialog {
    margin: 0 10px;
    padding: var(--spacing-lg) var(--font-size-base) var(--spacing-xl);
  }

  .room-modal__title {
    font-size: var(--font-size-xl);
  }

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

@media (max-width: 600px) {
    .similar-hotels-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .hotel-search{
        padding:20px 0;
    }
    .hotels-grid{
        padding:0;
    }
    .search-gruop{
        flex-direction:column;
        gap: 10px;
    }
    .guests-panel{
        width:77%;
        min-width:268px;
    }
    .hotel-search__row > div > div.hotel-search__field > button{
        text-align:start;
    }
    .hotel-search__row > div > div.hotel-search__field:first-of-type {
        border: solid 1px #000;
        border-radius:8px;
    }
    
    .hotel-search__row > div > div.hotel-search__field {
        border: solid 1px #000;
        border-radius:8px;
    }
    
    .hotel-search__row > div > div.hotel-search__field:last-of-type{
        border: solid 1px #000;
        border-radius:8px;
    }
  .hotel-detail {
    padding: var(--spacing-lg);
  }

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

  .hotel-detail__gallery-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 100px;
  }

  .room-card__body {
    padding: var(--spacing-lg) var(--font-size-base) var(--spacing-lg) var(--font-size-base);
  }

  .room-card__price {
    font-size: 22px;
  }

  .room-card__btn {
    width: 80%;
    text-align: center;
    justify-content: center;
  }

  .room-card__btns {
    flex-direction: column;
    align-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .booking-modal {
    border-radius: 18px;
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
  }

  .booking-modal__title {
    font-size: var(--font-size-xl);
  }

  .booking-form__actions {
    flex-direction: column;
    align-items: stretch;
    align-content:center;
  }

  .booking-form__submit,
  .booking-form__cancel {
    width: 100%;
    text-align: center;
  }

  .room-modal__dialog {
    width: 90%;
    max-height: 80vh;
  }
}
