html body{
  background-color: #F8F8F8 !important;
}

html body input {
  font-family: "Golos Text";
  font-size: 14px !important;
  color: #1d1d1d !important;
}

/* 
* ВАЖНО: полностью изолируем типографику конструктора
* от глобальных стилей темы WordPress.
* Все заголовки и параграфы внутри корневого контейнера
* и модалок обнуляют внешние margin/padding, чтобы
* автодобавленные <p>/<br> не разъезжали вёрстку.
*/
.laguna-trip-builder h1,
.laguna-trip-builder h2,
.laguna-trip-builder h3,
.laguna-trip-builder h4,
.laguna-trip-builder h5,
.laguna-trip-builder h6,
.laguna-trip-builder p,
.ltb-modal h1,
.ltb-modal h2,
.ltb-modal h3,
.ltb-modal h4,
.ltb-modal h5,
.ltb-modal h6,
.ltb-modal p {
  margin: 0 !important;
  padding: 0 !important;
}

/* скрываем пустые параграфы и переносы,
* которые WordPress автоматически вставляет вокруг шорткода
*/
p:empty,
br {
  display: none !important;
}
.laguna-trip-builder .top-description br,
.laguna-trip-builder .ltb-header-title br {
  display: block !important;
}

.laguna-trip-builder {
display: flex;
flex-direction: column;
align-items: center;
margin: 0 auto;
min-width: 343px;
max-width: 1120px;
gap: 30px;
position: relative;
font-family: "Golos Text", sans-serif;
font-weight: 400;
}

.laguna-trip-builder .ltb-header {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 14px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .ltb-header-title {
align-self: stretch;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
font-size: 35px;
position: relative;
color: #1d1d1d;
letter-spacing: 0;
line-height: normal;
}
.laguna-trip-builder .ltb-header-title .ltb-header-title-accent {
  color: #2DB4AB;
  font-weight: 500;
}

/* Блок «Как добраться?» — отдельно от main, на всю ширину. Не 100vw — даёт горизонтальный скролл из‑за ширины скроллбара. */
.ltb-how-to-get {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  background-color: #161616;
  box-sizing: border-box;
}
.ltb-how-to-get-inner {
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ltb-how-to-get .ltb-header-title {
  margin: 0;
  color: #ffffff;
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 35px;
}
.ltb-how-to-get .ltb-tpemb-widget {
  width: 100%;
  height: auto;
}

.root .calendar-layout {
  box-shadow: 0px 4px 25px #00000021 !important;
}

.laguna-trip-builder .top-description {
width: 380px;
font-family: "Golos Text";
font-weight: 400;
font-size: 14px;
position: relative;
color: #1d1d1d;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .text-wrapper {
  width: 333px;
  font-family: "Golos Text";
  font-weight: 400;
  font-size: 12px;
  position: relative;
  color: #1d1d1d;
  letter-spacing: 0;
  line-height: normal;
  opacity: 0;
  }

/* Обёртка всего trip builder */
.ltb-root {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
}

/* ========== Шапка сайта ========== */
.ltb-site-header {
  position: relative; 
  top: 0;
  z-index: 103;
  height: 72px;
  background: #F8F8F8;
  border-bottom: 1px solid #eee;
  font-family: "Golos Text", sans-serif;
}
.ltb-site-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.ltb-site-logo img {
  display: block;
  height: 40px;
  width: auto;
}
.ltb-site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
.ltb-nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.ltb-nav-list > li {
  position: relative;
}
.ltb-nav-list > li > a {
  font-size: 15px;
  color: #000A16;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.ltb-nav-arrow {
  display: inline-flex;
  margin-left: 4px;
  transition: transform 0.2s;
}
.ltb-nav-arrow img {
  display: block;
  width: 10px;
  height: 10px;
}
.ltb-nav-list > li:hover .ltb-nav-arrow {
  transform: scaleY(-1);
}
.ltb-nav-list .uk-nav-sub {
  position: absolute;
  top: 60px;
  left: -30px;
  width: 250px;
  background: #F8F8F8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 24px;
  padding: 30px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  z-index: 104;
}
.ltb-nav-list > li:hover .uk-nav-sub {
  opacity: 1;
  visibility: visible;
}
.ltb-nav-list .uk-nav-sub li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  color: #515151;
  text-decoration: none;
  white-space: normal;
}
.ltb-nav-list .uk-nav-sub li a:hover {
  background: #f5f5f5;
}
.ltb-site-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1px 12px 1px 0px;
  border: 1px solid #515151;
  border-radius: 24px;
  font-size: 14px;
  color: #515151;
  text-decoration: none;
}
.ltb-site-phone img {
  flex-shrink: 0;
}
.ltb-site-header-mobile {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}
.ltb-mobile-icon,
.ltb-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ltb-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ========== Мобильное меню (off-canvas) ========== */
.ltb-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9992;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.ltb-offcanvas.is-open {
  opacity: 1;
  visibility: visible;
}
.ltb-offcanvas-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 270px;
  height: 100%;
  background: #F8F8F8;
  padding: 30px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s;
  font-family: "Golos Text", sans-serif;
  box-sizing: border-box;
}
.ltb-offcanvas.is-open .ltb-offcanvas-inner {
  transform: translateX(0);
}
.ltb-offcanvas-close {
  position: absolute;
  top: 30px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 19px;
  height: 19px;
  z-index: 2;
}
.ltb-offcanvas-close img {
  display: block;
  width: 19px;
  height: 19px;
}
.ltb-offcanvas-main-nav {
  list-style: none;
  margin: 0;
  padding: 40px 0 0 0;
}
.ltb-offcanvas-main-nav > li {
  margin-bottom: 10px;
}
.ltb-offcanvas-main-nav > li > a {
  display: block;
  padding: 0;
  color: #515151;
  text-decoration: none;
  font-size: 18px;
}
/* Убираем стрелки у пунктов мобильного меню */
.ltb-offcanvas-main-nav .ltb-nav-arrow,
.ltb-offcanvas-main-nav [class*="arrow"],
.ltb-offcanvas-main-nav .uk-parent > a::before,
.ltb-offcanvas-main-nav .uk-parent > a::after { display: none !important; }
.ltb-offcanvas-main-nav .uk-nav-sub {
  list-style: none;
  margin: 0;
  padding: 2px 0 0 16px;
}
.ltb-offcanvas-main-nav .uk-nav-sub li {
  margin-bottom: 2px;
}
.ltb-offcanvas-main-nav .uk-nav-sub li a {
  display: block;
  color: #999;
  text-decoration: none;
  font-size: 18px;
}
.ltb-offcanvas-legal {
  font-size: 12px;
  color: #515151;
  margin: 20px 0;
  line-height: 1.5;
}
.ltb-offcanvas-legal p { margin: 0 0 4px 0; }
.ltb-offcanvas-social {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.ltb-offcanvas-privacy {
  font-size: 14px;
  color: #515151;
  text-decoration: none;
}

/* ========== Футер сайта ========== */
.ltb-site-footer {
  background: #161616;
  color: #fff;
  padding: 70px 40px;
  font-family: "Golos Text", sans-serif;
}
.ltb-site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* Десктоп: лого 165px | gap min 30px | блок справа 660px */
.ltb-footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.ltb-footer-logo {
  flex-shrink: 0;
}
.ltb-footer-logo img {
  width: 165px;
  height: auto;
}
.ltb-footer-right {
  width: 660px;
  flex-shrink: 0;
}
/* Верхняя строка в правом блоке: телефон | часы */
.ltb-footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.ltb-footer-phone {
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.1;
}

.ltb-footer-hours-label {
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  margin: 0 0 4px 0;
}
.ltb-footer-hours-time {
  font-size: 14px;
  color: #686868;
  margin: 0;
}
/* Средняя строка: нав-колонки | реквизиты */
.ltb-footer-middle {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 60px;
  align-items: start;
}
.ltb-footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ltb-footer-nav .el-link {
  color: #A2A2A2;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 4px 0;
}
.ltb-footer-legal {
  font-size: 14px;
  color: #686868;
  line-height: 1.5;
  max-width: 280px;
  justify-self: end;
}
.ltb-footer-legal p { margin: 0 0 4px 0; }
/* Нижняя строка: соцсети | политика */
.ltb-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ltb-footer-social {
  display: flex;
  gap: 12px;
}
.ltb-social-icon img {
  width: 35px;
  height: 35px;
  display: block;
}
.ltb-footer-privacy {
  font-size: 14px;
  color: #686868;
  text-decoration: none;
}

/* Адаптив: 960px–640px */
@media (max-width: 960px) {
  .ltb-site-nav { display: none; }
  .ltb-site-phone { display: none; }
  .ltb-site-header-mobile { display: flex; justify-content: flex-end; align-items: center; }
  .ltb-site-logo img { width: 110px; height: auto; }
  .ltb-site-header-inner {
    justify-content: space-between;
  }
  .ltb-site-header-mobile {
    flex: 1;
    min-width: 0;
  }
  .ltb-footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .ltb-footer-right {
    width: 100%;
  }
  .ltb-footer-top {
    grid-template-columns: 1fr auto;
    gap: 30px;
    text-align: left;
    align-items: center;
  }
  .ltb-footer-phone { font-size: 36px; }
  .ltb-footer-hours-block { text-align: left; }
  .ltb-footer-middle {
    grid-template-columns: auto auto auto;
    gap: 40px;
    text-align: left;
    align-items: start;
  }
  .ltb-footer-legal { text-align: left; justify-self: start; }
  .ltb-site-footer {
    padding: 40px 30px;
  }
  .ltb-footer-logo img { width: 140px; }
}
@media (max-width: 640px) {
  .ltb-site-header-inner { padding: 0 15px; }
  .ltb-site-footer {
    padding: 40px 15px;
  }
  .ltb-footer-top {
    grid-template-columns: 1fr;
  }
  .ltb-footer-phone { font-size: 32px; }
  .ltb-footer-middle {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .ltb-footer-middle .ltb-footer-nav {
    margin-bottom: 0;
  }
  .ltb-footer-middle .ltb-footer-nav + .ltb-footer-nav {
    margin-top: 0;
  }
  .ltb-footer-legal {
    margin-top: 24px;
  }
  .ltb-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: left;
    align-items: flex-start;
  }
}

/* Видео на весь экран. Не 100vw — даёт горизонтальный скролл из‑за ширины скроллбара. */
.ltb-video-block {
  width: 100%;
  max-width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.ltb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ltb-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.container-content {
  padding: 90px 30px;
}

.ltb-video-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: border-box;
}
.ltb-video-title {
  margin: 0;
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: normal;
}
.ltb-video-title-nowrap {
  white-space: nowrap;
}

.laguna-trip-builder .ltb-stages {
display: flex;
flex-direction: column;
min-width: 666px;
align-items: flex-start;
gap: 10px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .ltb-stages-icons {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0px 50px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .img {
position: relative;
width: 31px;
height: 31px;
}

.laguna-trip-builder .ltb-stages-points {
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .ltb-stages-names {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .ltb-stages-name {
color: #1d1d1d;
position: relative;
width: 131px;
font-family: "Golos Text";
font-weight: 400;
font-size: 12px;
text-align: center;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltb-stages-name-2 {
margin-top: -1.00px;
color: #1d1d1d;
position: relative;
width: 131px;
font-family: "Golos Text";
font-weight: 400;
font-size: 12px;
text-align: center;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltb-stages-name-3 {
margin-top: -1.00px;
color: #6b6b6b;
position: relative;
width: 131px;
font-family: "Golos Text";
font-weight: 400;
font-size: 12px;
text-align: center;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltb-stages-name-4 {
position: relative;
width: 131px;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
text-align: center;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltb-layout {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
gap: 20px 20px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .ltb-layout-main {
display: flex;
flex-direction: column;
min-width: 323px;
align-items: center;
gap: 80px;
position: relative;
flex: 1;
flex-grow: 1;
}

.laguna-trip-builder .ltb-steps {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .ltb-steps-list {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 24px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .ltb-step {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
padding: 20px 16px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
background-color: #ffffff;
border-radius: 10px;
border: 0.5px solid;
border-color: #eaeaea;
box-shadow: 0px 4px 25px #00000021;
}

.laguna-trip-builder .div-2 {
display: inline-flex;
align-items: center;
gap: 10px;
position: relative;
flex: 0 0 auto;
}

.laguna-trip-builder .vector-wrapper {
position: relative;
width: 31px;
height: 31px;
aspect-ratio: 1;
}

.laguna-trip-builder .vector {
position: absolute;
width: 81.25%;
height: 81.25%;
top: 9.38%;
left: 9.38%;
}

.laguna-trip-builder .label {
font-size: 18px;
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 500;
color: #1d1d1d;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .div-3 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

/* Объединённая строка дат заезда/выезда */
.laguna-trip-builder .ltb-dates-wrap {
  position: relative;
  width: 100%;
}
.laguna-trip-builder .ltb-dates-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.laguna-trip-builder .ltb-dates-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  cursor: pointer;
}
.laguna-trip-builder .ltb-dates-cell:first-child {
  padding-right: 12px;
}
.laguna-trip-builder .ltb-dates-cell:last-of-type {
  padding-left: 12px;
}
.laguna-trip-builder .ltb-dates-cell .text-wrapper-4 {
  flex-shrink: 0;
}
.laguna-trip-builder .ltb-dates-cell {
  position: relative;
}
.laguna-trip-builder .ltb-dates-display {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  color: #1d1d1d;
  line-height: normal;
  min-height: 1.2em;
}
.laguna-trip-builder .ltb-dates-input {
  display: none;
}
.laguna-trip-builder .ltb-dates-sep {
  width: 1px;
  background: #e0e0e0;
  flex-shrink: 0;
  align-self: stretch;
}
.laguna-trip-builder .ltb-dates-input:focus {
  outline: none;
}
.laguna-trip-builder .ltb-dates-cell {
  outline: none;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.laguna-trip-builder .ltb-dates-cell:first-child {
  border-radius: 12px 0 0 12px;
}
.laguna-trip-builder .ltb-dates-cell:last-of-type {
  border-radius: 0 12px 12px 0;
}
.laguna-trip-builder .ltb-dates-cell:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px #2DB4AB;
}
.laguna-trip-builder .ltb-dates-cell:focus:first-child {
  border-radius: 12px 0 0 12px;
}
.laguna-trip-builder .ltb-dates-cell:focus:last-of-type {
  border-radius: 0 12px 12px 0;
}
.laguna-trip-builder .ltb-dates-calendar-popup {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 6px;
  z-index: 100;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #dddddd;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.13);
  padding: 0;
  max-width: 420px;
  max-height: 350px;
  overflow: hidden;
}
.laguna-trip-builder .ltb-dates-calendar-popup.is-open {
  display: block;
}
.laguna-trip-builder .ltb-dates-calendar-popup[aria-hidden="true"] {
  display: none;
}
.laguna-trip-builder .ltb-dates-calendar-popup[aria-hidden="false"] {
  display: block;
}
.laguna-trip-builder .ltb-dates-calendar-inner {
  display: flex;
  flex-direction: row;
  max-height: 350px;
  overflow: hidden;
}
.laguna-trip-builder .ltb-dates-calendar-months {
  width: 130px;
  flex-shrink: 0;
  border-right: 1px solid #eaeaea;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 0px;
  font-family: "Golos Text", sans-serif;
  scroll-behavior: smooth;
}
.laguna-trip-builder .ltb-dates-calendar-month-item {
  padding: 8px 6px 8px 10px;
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1d;
  cursor: pointer;
}
.laguna-trip-builder .ltb-dates-calendar-month-item .ltb-dates-calendar-month-year {
  color: #6b6b6b;
  font-size: 12px;
  margin-left: 2px;
}
.laguna-trip-builder .ltb-dates-calendar-month-item.is-active {
  background: rgba(45, 180, 171, 0.1);
  color: #1d1d1d;
}
.laguna-trip-builder .ltb-dates-calendar-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  max-height: 350px;
  overflow: hidden;
  padding: 12px;
}
.laguna-trip-builder .ltb-dates-calendar-weekdays-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  flex-shrink: 0;
  font-family: "Golos Text", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6b6b6b;
  text-align: center;
  padding-bottom: 6px;
}
.laguna-trip-builder .ltb-dates-calendar-right .share {
  flex-shrink: 0;
  margin-bottom: 10px;
}
.laguna-trip-builder .ltb-dates-calendar-grids {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  scroll-behavior: smooth;
}
.laguna-trip-builder .ltb-dates-calendar-year-row {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1d;
  text-align: right;
  margin-bottom: 4px;
  margin-top: 12px;
  line-height: 1;
}
.laguna-trip-builder .ltb-dates-calendar-year-row:first-child {
  margin-top: 0;
}
.laguna-trip-builder .ltb-dates-calendar-month-block {
  margin-bottom: 20px;
}
.laguna-trip-builder .ltb-dates-calendar-month-block:last-child {
  margin-bottom: 0;
}
.laguna-trip-builder .ltb-dates-calendar-month-title {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 8px;
}
.laguna-trip-builder .ltb-dates-calendar-month-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 8px;
}
.laguna-trip-builder .ltb-dates-calendar-month-header .ltb-dates-calendar-month-title {
  margin-bottom: 0;
}
.laguna-trip-builder .ltb-dates-calendar-year-label {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1d;
  flex-shrink: 0;
  line-height: 1;
  margin-top: -2px;
}
.laguna-trip-builder .ltb-dates-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
  font-family: "Golos Text", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6b6b6b;
  text-align: center;
}
.laguna-trip-builder .ltb-dates-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  column-gap: 0;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
}
.laguna-trip-builder .ltb-dates-calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #1d1d1d;
  font-weight: 400;
  min-height: 28px;
  cursor: pointer;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-other-month {
  color: #b0b0b0;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-past {
  color: #b0b0b0;
  cursor: default;
  pointer-events: auto;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-hover {
  background: #2DB4AB;
  color: #fff;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-hover.is-hover-end {
  border-radius: 0 4px 4px 0;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-preview-range {
  background: #dceeec;
  color: #1d1d1d;
  border-radius: 0;
}
.laguna-trip-builder .ltb-dates-calendar-popup.ltb-dates-calendar-hovering .ltb-dates-calendar-day.is-in-range {
  background: transparent;
  color: #1d1d1d;
}
.laguna-trip-builder .ltb-dates-calendar-popup.ltb-dates-calendar-hovering .ltb-dates-calendar-day.is-range-end {
  background: transparent;
  color: #1d1d1d;
}
/* Под курсором день подсвечивается даже если он уже выбран (заезд/выезд/в диапазоне), с круглыми краями */
.laguna-trip-builder .ltb-dates-calendar-popup.ltb-dates-calendar-hovering .ltb-dates-calendar-day.is-hover {
  background: #2DB4AB;
  color: #fff;
  border-radius: 4px;
}
.laguna-trip-builder .ltb-dates-calendar-popup.ltb-dates-calendar-hovering .ltb-dates-calendar-day.is-hover.is-hover-end {
  border-radius: 0 4px 4px 0;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-selected {
  background: #2DB4AB;
  color: #fff;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-in-range {
  background: #dceeec;
  color: #1d1d1d;
  border-radius: 0;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-selected.is-in-range {
  background: #2DB4AB;
  color: #fff;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-range-start {
  border-radius: 4px 0 0 4px;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-range-end {
  border-radius: 0 4px 4px 0;
}
.laguna-trip-builder .ltb-dates-calendar-day.is-range-start.is-range-end {
  border-radius: 4px;
}

@media (max-width: 640px) {
  .laguna-trip-builder .ltb-dates-calendar-months {
    display: none;
  }
  .laguna-trip-builder .ltb-dates-calendar-right {
    padding-left: 14px;
  }
}

.laguna-trip-builder .ltb-field {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 8px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .mini-label {
position: relative;
width: 229px;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltb-field-input-data {
padding: 8px 10px;
width: 100%;
border-radius: 6px;
border: 1px solid;
border-color: #dddddd;
}

.laguna-trip-builder .text-wrapper-2 {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .img-wrapper {
position: relative;
width: 16px;
height: 16px;
aspect-ratio: 1;
cursor: pointer;
}

.laguna-trip-builder .vector-2 {
position: absolute;
right: 10px;
top: 42px !important;
transform: translateY(-50%);
width: 20px;
height: 20px;
pointer-events: none;
}

.laguna-trip-builder .ltb-field-2 {
flex-direction: column;
align-items: flex-start;
gap: 8px;
display: flex;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}



.laguna-trip-builder .div-5 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 16px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .frame {
display: flex;
align-items: flex-start;
gap: 10px;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .text-wrapper-3 {
width: fit-content;
position: relative;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .mingcute-delete-fill {
position: relative;
width: 16px;
height: 16px;
overflow: hidden;
aspect-ratio: 1;
}

.laguna-trip-builder .group {
position: relative;
width: 3.48%;
height: 2.79%;
top: 96.43%;
left: 50.32%;
background-image: url(../img/vector-15.svg);
background-size: 100% 100%;
}

.laguna-trip-builder .frame-2 {
display: flex;
align-items: flex-start;
gap: 16px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .frame-3 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 4px;
position: relative;
flex: 1;
flex-grow: 1;
border-radius: 3px;
}

.laguna-trip-builder .text-wrapper-4 {
width: fit-content;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .frame-4 {
display: flex;
height: 40px;
align-items: center;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
background-color: #f4f5f8;
border-radius: 999px;
}

.laguna-trip-builder .vector-stroke-wrapper {
display: flex;
width: 40px;
height: 40px;
align-items: center;
justify-content: center;
gap: 10px;
padding: 10px 15px;
position: relative;
background-color: #dceeec;
border-radius: 6px;
border: 0.5px solid;
border-color: #eaeaea;
transition: background-color 0.15s ease;
}
.laguna-trip-builder .vector-stroke-wrapper:hover:not(.ltb-counter-btn-disabled):not(:disabled) {
  background-color: #c8eae7;
}
.laguna-trip-builder .vector-stroke-wrapper:active:not(.ltb-counter-btn-disabled):not(:disabled) {
  background-color: #c5e5e2;
}
.laguna-trip-builder .vector-stroke-wrapper.ltb-counter-btn-disabled,
.laguna-trip-builder .vector-stroke-wrapper:disabled {
  background-color: #eee;
  opacity: 0.85;
}
.laguna-trip-builder .vector-stroke-wrapper.ltb-counter-btn-disabled:hover,
.laguna-trip-builder .vector-stroke-wrapper.ltb-counter-btn-disabled:active,
.laguna-trip-builder .vector-stroke-wrapper:disabled:hover,
.laguna-trip-builder .vector-stroke-wrapper:disabled:active {
  background-color: #eee;
  opacity: 0.85;
}

.laguna-trip-builder .vector-stroke {
position: relative;
width: 10.67px;
height: 2px;
margin-left: -0.33px;
margin-right: -0.33px;
}

.laguna-trip-builder .text-wrapper-5 {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .vector-stroke-2 {
position: relative;
width: 10.67px;
height: 10.67px;
margin-left: -0.33px;
margin-right: -0.33px;
}

.laguna-trip-builder .frame-5 {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 10px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .text-wrapper-6 {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .div-wrapper {
width: 127.5px;
border-radius: 6px;
border: 1px solid #dddddd;
padding: 0; /* важно */
}

.laguna-trip-builder .text-wrapper-7 {
width: 100%;
height: 100%;
padding: 8px 10px;

font-family: "Golos Text";
font-weight: 400;
font-size: 12px;
color: #1d1d1d;

border: none;
background: transparent;

/* НАТИВНЫЙ select остаётся */
appearance: auto;
}

/* убираем обводку при фокусе у самого select */
.laguna-trip-builder .text-wrapper-7:focus {
outline: none;
}
/* обводка акцентным цветом при фокусе: отель и возраст ребёнка */
.laguna-trip-builder .ltb-field-select:focus-within {
  border: 1px solid #2DB4AB;
  outline: none;
}
.laguna-trip-builder .div-wrapper:focus-within {
  border: 1px solid #2DB4AB;
}

.laguna-trip-builder .vector-3 {
position: absolute;
width: 75.00%;
height: 83.33%;
top: 8.33%;
left: 12.50%;
}

.laguna-trip-builder .frame-6 {
display: flex;
width: 40px;
height: 40px;
justify-content: center;
gap: 10px;
padding: 10px 15px;
background-color: #f4f5f8;
border-radius: 6px;
border: 0.5px solid;
border-color: #eaeaea;
align-items: center;
position: relative;
}

.laguna-trip-builder .ltb-add-room {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .element {
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 300;
color: #1d1d1d;
font-size: 12px;
text-align: center;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .span {
font-weight: 400;
}

.laguna-trip-builder .text-wrapper-8 {
font-family: "Golos Text";
font-weight: 500;
}

.laguna-trip-builder .vector-4 {
display: flex;
position: relative;
width: 10.67px;
height: 10.67px;
}

.laguna-trip-builder .ltb-field-3 {
align-items: center;
border-radius: 3px;
display: flex;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .mini-label-2 {
width: 75px;
position: relative;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltb-hotel-field-select {
	cursor: pointer;
}
.laguna-trip-builder .ltb-field-select {
display: flex;
position: relative;
}
.laguna-trip-builder .ltb-field-select {
padding: 0; /* важно */
background-color: #f4f5f8;
border-radius: 6px;
border: 1px solid #dddddd;
}

.laguna-trip-builder .frame-7 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .frame-8 {
display: flex;
flex-direction: column;
align-items: flex-start;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
border-radius: 3px;
overflow: hidden;
border: 0.5px solid;
border-color: #dddddd;
box-shadow: 0px 4px 10px #00000016;
}

/* Грид выбранных номеров — как ltb-day-tours-list у экскурсий */
.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-rooms-grid.ltb-day-tours-list,
.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-day-tours-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
gap: 16px;
list-style: none;
margin: 0;
padding: 0;
align-items: stretch;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .frame-8.ltb-tour-item {
position: relative;
width: 100%;
min-width: 0;
min-height: 200px;
display: flex;
flex-direction: column;
align-items: flex-start;
border-radius: 3px;
overflow: hidden;
border: 0.5px solid;
border-color: #dddddd;
box-shadow: 0px 4px 10px #00000016;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .frame-10 {
display: flex;
flex-direction: column;
align-items: stretch;
gap: 12px;
padding: 20px 15px;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-room__hotel {
display: flex;
flex-direction: column;
gap: 4px;
width: 100%;
margin-bottom: 0;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-room__hotel .ltb-hotel-card__stars {
display: flex;
align-items: center;
gap: 2px;
min-height: 11px;
margin-bottom: 0;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-room__hotel .ltb-modal-card__title {
margin: 0;
font-family: "Golos Text", sans-serif;
font-weight: 500;
font-size: 16px;
color: #1d1d1d;
line-height: 1.3;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-room__hotel .ltb-hotel-card__row {
display: flex;
gap: 6px;
margin-top: 0;
font-family: "Golos Text", sans-serif;
font-size: 13px;
color: #1d1d1d;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-room__hotel .ltb-hotel-card__address {
align-items: flex-start;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-room__hotel .ltb-hotel-card__address .ltb-hotel-card__icon {
margin-top: 1px;
flex-shrink: 0;
display: block;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-room__hotel .ltb-hotel-card__address span {
flex: 1;
min-width: 0;
line-height: 1.4;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-room__row {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 16px;
width: 100%;
min-width: 0;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-room__row .frame-11 {
flex: 1;
min-width: 0;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-selected-room__row .ltb-modal-card__price-block {
flex-shrink: 0;
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
margin-top: 0;
text-align: center;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-modal-card__nights-guests {
font-family: "Golos Text", sans-serif;
font-weight: 400;
font-size: 12px;
color: #6b6b6b;
margin: 0;
}

.laguna-trip-builder .frame-9 {
position: relative;
align-self: stretch;
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
}

.laguna-trip-builder .pagination {
position: absolute;
left: calc(50.00% - 24px);
bottom: 11px;
width: 46px;
height: 7px;
}

.laguna-trip-builder .ellipse {
position: absolute;
top: 0;
left: 0;
width: 7px;
height: 7px;
aspect-ratio: 1;
}

.laguna-trip-builder .ellipse-2 {
position: absolute;
top: 1px;
left: 11px;
width: 5px;
height: 5px;
}

.laguna-trip-builder .ellipse-3 {
position: absolute;
top: 1px;
left: 31px;
width: 5px;
height: 5px;
}

.laguna-trip-builder .ellipse-4 {
position: absolute;
top: 1px;
left: 41px;
width: 5px;
height: 5px;
}

.laguna-trip-builder .ellipse-5 {
position: absolute;
top: 1px;
left: 21px;
width: 5px;
height: 5px;
}

.laguna-trip-builder .ellipse-6 {
position: absolute;
top: 1px;
left: 1px;
width: 5px;
height: 5px;
}

.laguna-trip-builder .delete {
position: absolute;
top: 0;
right: 0;
width: 40px;
height: 40px;
aspect-ratio: 1;
}

.laguna-trip-builder .frame-10 {
display: flex;
align-items: center;
justify-self: flex-end;
gap: 30px;
padding: 20px 15px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
border-radius: 3px;
overflow: hidden;
background-color: #fff;
}

.laguna-trip-builder .frame-11 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
position: relative;
flex: 1;
flex-grow: 1;
}

.laguna-trip-builder .text-wrapper-9 {
align-self: stretch;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 14px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .frame-12 {
display: inline-flex;
gap: 4px;
flex: 0 0 auto;
align-items: center;
position: relative;
}

.laguna-trip-builder .vector-stroke-3 {
position: absolute;
width: 93.73%;
height: 68.75%;
top: 15.62%;
left: 3.14%;
}

.laguna-trip-builder .size {
position: relative;
width: 13px;
height: 13px;
aspect-ratio: 1;
}

.laguna-trip-builder .vector-stroke-4 {
position: absolute;
width: 70.19%;
height: 70.19%;
top: 14.90%;
left: 14.90%;
}

.laguna-trip-builder .text-wrapper-10 {
display: flex;
align-items: flex-end;
justify-content: center;
width: fit-content;
font-family: "Golos Text";
font-weight: 600;
color: #2db4ab;
font-size: 18px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .frame-13 {
display: inline-flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
position: relative;
flex: 0 0 auto;
}

.laguna-trip-builder .text-wrapper-11 {
color: #6b6b6b;
position: relative;
font-family: "Golos Text";
font-weight: 400;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .plus {
position: relative;
width: 26px;
height: 26px;
aspect-ratio: 1;
}

.laguna-trip-builder .frame-14 {
display: inline-flex;
flex-direction: column;
align-items: center;
position: relative;
flex: 0 0 auto;
}

.laguna-trip-builder .div-wrapper-2 {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 15px 20px;
position: relative;
flex: 0 0 auto;
}
.laguna-trip-builder .frame-14 .ltb-frame14-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.laguna-trip-builder .text-wrapper-12 {
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 500;
color: #952222;
font-size: 12px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .text-wrapper-13 {
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 500;
color: #1d1d1d;
font-size: 12px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .div-6 {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 15px 20px;
position: relative;
flex: 0 0 auto;
}

.laguna-trip-builder .vector-stroke-5 {
position: relative;
width: 6px;
height: 13px;
}

.laguna-trip-builder .text-wrapper-14 {
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 500;
color: #2db4ab;
font-size: 12px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltd-right-panel {
display: inline-flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 20px;
flex: 0 0 auto;
position: sticky;
top: 80px;
align-self: flex-start;
}

.laguna-trip-builder .ltb-details-check {
display: inline-flex;
flex-direction: column;
align-items: flex-start;
position: relative;
flex: 0 0 auto;
}

.laguna-trip-builder .vector-5 {
position: relative;
width: 358px;
height: 61.38px;
margin-top: -21px;
margin-left: -25px;
margin-right: -10px;
aspect-ratio: 28.38;
}

.laguna-trip-builder .ltb-layout-aside {
display: flex;
flex-direction: column;
width: 323px;
align-items: flex-start;
gap: 20px;
padding: 15px 16px;
position: relative;
flex: 0 0 auto;
background-color: #ffffff;
border-right-width: 0.5px;
border-right-style: solid;
border-left-width: 0.5px;
border-left-style: solid;
border-color: #eaeaea;
}

.laguna-trip-builder .ltb-layout-aside::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
box-shadow: 0px 4px 25px #00000021;
}

.laguna-trip-builder .ltb-route-details {
display: inline-flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 4px;
position: relative;
flex: 0 0 auto;
}

.laguna-trip-builder .label-2 {
margin-top: -1.00px;
font-size: 18px;
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 500;
color: #1d1d1d;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltb-route-details-2 {
display: flex;
flex-direction: column;
width: 291px;
max-height: 198px;
align-items: flex-start;
gap: 12px;
position: relative;
flex: 0 0 auto;
overflow-y: auto;
}

.laguna-trip-builder .frame-15 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
padding: 0px 0px 0px 20px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .text-wrapper-15 {
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
position: relative;
letter-spacing: 0;
line-height: normal;
flex: 1 1 auto;          /* занимает всё доступное место */
min-width: 0;            /* важно для переноса в flex */
white-space: normal;     /* можно переносить */
}

.laguna-trip-builder .text-wrapper-15-cost {
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Golos Text";
  font-weight: 400;
  color: #6b6b6b;
  font-size: 12px;
  position: relative;
  letter-spacing: 0;
  line-height: normal;
  flex: 0 0 auto;          /* не растягивать и не сжимать */
  white-space: nowrap;     /* всегда 1 строка */
  }

.laguna-trip-builder .p {
width: 165px;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .frame-16 {
display: flex;
height: 15px;
align-items: flex-start;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
}

.laguna-trip-builder .streak-share {
position: relative;
align-self: stretch;
width: 100%;
height: 1px;
margin-top: -3543.38px;
margin-left: -17828.00px;
object-fit: cover;
}

.laguna-trip-builder .text-wrapper-16 {
width: fit-content;
font-family: "Golos Text";
font-weight: 500;
color: #1d1d1d;
font-size: 14px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltb-total-price {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 600;
color: #2db4ab;
font-size: 18px;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .vector-6 {
position: relative;
width: 323px;
height: 11.38px;
aspect-ratio: 28.38;
}

.laguna-trip-builder .gift {
position: fixed;
right: 30px;
top: 10px;
width: 65px;
height: 65px;
aspect-ratio: 1;
z-index: 100;
cursor: pointer;
margin-top: 0;
}

.laguna-trip-builder .gift.ltb-gift-shake {
animation: ltb-gift-shake 1s ease-in-out 1;
}

@keyframes ltb-gift-shake {
0%, 100% { transform: translateX(0) rotate(0deg); }
15% { transform: translateX(-3px) rotate(-4deg); }
30% { transform: translateX(3px) rotate(4deg); }
45% { transform: translateX(-2px) rotate(-2deg); }
60% { transform: translateX(2px) rotate(2deg); }
75% { transform: translateX(-1px) rotate(-1deg); }
}

.ltb-bonuses-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.45);
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease;
z-index: 99;
}

.ltb-bonuses-overlay.is-open {
opacity: 1;
pointer-events: auto;
}

.ltb-fixed-socials {
position: fixed;
right: 30px;
bottom: 30px;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
z-index: 10;
}

.ltb-fixed-socials .ltb-fixed-social {
display: block;
width: 65px;
height: 65px;
flex-shrink: 0;
}

.ltb-fixed-socials .ltb-fixed-social img {
display: block;
width: 65px;
height: 65px;
object-fit: contain;
}

.laguna-trip-builder .frame-17 {
display: flex;
align-items: flex-start;
justify-content: flex-end;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .ltb-route-details-3 {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 6px;
position: relative;
flex: 1;
flex-grow: 1;
}

.laguna-trip-builder .label-3 {
margin-top: -1.00px;
font-size: 16px;
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 500;
color: #1d1d1d;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .text-wrapper-17 {
align-self: stretch;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 11px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .vector-7 {
position: relative;
width: 10px;
height: 10px;
cursor: pointer;
}

.laguna-trip-builder .frame-18 {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  flex-direction: row;
  justify-content: space-between;
}

.laguna-trip-builder .frame-19 {
display: grid;
grid-template-rows: repeat(1, fit-content(100%));
height: 17px;
top: 0;
left: 0;
width: 174px;
background-color: #ddeeed;
border-radius: 999px;
overflow: hidden;
}

/* Сегменты шкалы бонусов: по умолчанию скрыты, JS убирает display:none у первых N активных. Ширина по числу колонок (grid-template-columns задаётся в PHP). */
.laguna-trip-builder .ltb-bonus-segment,
.laguna-trip-builder .one-bonus,
.laguna-trip-builder .two-bonus,
.laguna-trip-builder .three-bonus,
.laguna-trip-builder .four-bonus,
.laguna-trip-builder .five-bonus {
position: relative;
grid-row: 1 / 1;
min-width: 0;
height: 17px;
background-color: #2db4ab;
}

/* По умолчанию все сегменты скрыты; JS показывает первые N по количеству активных бонусов */
.laguna-trip-builder .ltb-bonus-segment,
.laguna-trip-builder .one-bonus,
.laguna-trip-builder .two-bonus,
.laguna-trip-builder .three-bonus,
.laguna-trip-builder .four-bonus,
.laguna-trip-builder .five-bonus {
display: none;
}

.laguna-trip-builder .text-wrapper-18 {
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 600;
color: #2db4ab;
font-size: 12px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltb-route-details-4 {
display: grid;
grid-template-columns: 1fr;
grid-auto-rows: auto;
row-gap: 10px;
align-items: stretch;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .frame-22 {
display: grid;
grid-template-columns: 30px 1fr;
grid-template-rows: auto;
align-items: center;
gap: 12px;
position: relative;
width: 100%;
min-height: 30px;
box-sizing: border-box;
padding: 0;
margin: 0;
}

.laguna-trip-builder .done {
position: relative;
width: 30px;
height: 30px;
aspect-ratio: 1;
}

.laguna-trip-builder .vector-8 {
position: absolute;
width: 66.67%;
height: 66.67%;
top: 16.67%;
left: 16.67%;
}

.laguna-trip-builder .vector-9 {
position: absolute;
width: 68.87%;
height: 66.66%;
top: 16.67%;
left: 16.67%;
}

.laguna-trip-builder .frame-23 {
display: flex;
min-width: 0;
padding: 0;
align-items: center;
position: relative;
align-self: stretch;
}
.laguna-trip-builder .frame-23 p {
margin: 0;
}

.laguna-trip-builder .text-wrapper-19 {
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 11px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .not-done {
position: relative;
width: 30px;
height: 30px;
aspect-ratio: 1;
opacity: 0.5;
}

.laguna-trip-builder .vector-stroke-6 {
position: absolute;
width: 66.66%;
height: 66.66%;
top: 16.67%;
left: 16.67%;
}

.laguna-trip-builder .frame-24 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 24px;
position: relative;
flex: 1;
flex-grow: 1;
}

.laguna-trip-builder .text-wrapper-20 {
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 11px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .text-wrapper-21 {
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 11px;
white-space: nowrap;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .ltb-modal {
position: relative;
max-width: 1200px;
width: 990px;
height: 682px;
margin-right: -10.00px;
}

.laguna-trip-builder .ltb-route-bar {
display: none; /* По умолчанию скрыта, показывается только на мобильных */
flex-direction: column;
width: 100%;
align-items: center;
gap: 8px;
position: absolute;
left: 0;
bottom: 0;
box-shadow: 0px 4px 25px #00000021;
}

.laguna-trip-builder .ltb-layout-aside-2 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
padding: 20px 16px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
background-color: #ffffff;
border-radius: 20px 20px 0px 0px;
border: 0.5px solid;
border-color: #eaeaea;
box-shadow: 0px 4px 25px #00000021;
}

.laguna-trip-builder .ltb-route-details-5 {
display: flex;
align-items: center;
gap: 8px;
position: relative;
align-self: stretch;
width: 100%;
height: 30px;
flex: 0 0 auto;
}

.laguna-trip-builder .text-wrapper-22 {
flex: 1;
font-family: "Golos Text";
font-weight: 500;
color: #1d1d1d;
font-size: 14px;
position: relative;
letter-spacing: 0;
line-height: normal;
}

.laguna-trip-builder .open-details {
position: relative;
width: 30px;
height: 30px;
aspect-ratio: 1;
background-image: url(../img/open-details.svg);
background-size: 100% 100%;
}
/* Inject original CSS code here */

.laguna-trip-builder .ltb-field-input-data {
background-color: transparent;
cursor: pointer;
text-align: left;
}
.laguna-trip-builder .div-wrapper select{
width: 100%;
background-color: transparent;
border: none;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 12px;
cursor: pointer;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}

.laguna-trip-builder .ltb-field-select select {
width: 100%;
background-color: transparent;
border: none;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 13px;
cursor: pointer;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}

.laguna-trip-builder .div-wrapper {
position: relative;
}

.laguna-trip-builder .ltb-field-select {
position: relative;
}

.laguna-trip-builder .vector-stroke-wrapper,
.laguna-trip-builder .frame-6 {
cursor: pointer;
}

.laguna-trip-builder .mingcute-delete-fill,
.laguna-trip-builder .img-wrapper button {
background: transparent;
border: none;
cursor: pointer;
padding: 0;
}

.laguna-trip-builder .ltb-add-room {
background: transparent;
border: none;
cursor: pointer;
padding: 0;
}

.laguna-trip-builder .div-wrapper-2 {
background: transparent;
border: none;
cursor: pointer;
}

.laguna-trip-builder .div-6 {
background: transparent;
border: none;
cursor: pointer;
}

.laguna-trip-builder .pagination button {
background: transparent;
border: none;
cursor: pointer;
padding: 0;
width: auto;
height: auto;
}

.laguna-trip-builder .delete {
background: transparent;
border: none;
cursor: pointer;
padding: 0;
}

.laguna-trip-builder .plus {
background-image: url(../img/plus.svg);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
background-color: transparent;
border: none;
cursor: pointer;
}

.laguna-trip-builder .open-details {
cursor: pointer;
border: none;
background-color: transparent;
}

.laguna-trip-builder fieldset {
border: none;
padding: 0;
margin: 0;
}

.laguna-trip-builder legend {
padding: 0;
display: flex;
align-items: flex-start;
justify-content: space-between;
width: 100%;
}

.laguna-trip-builder .img-wrapper button {
display: flex;
align-items: center;
justify-content: center;
}

.laguna-trip-builder .frame-17 button {
background: transparent;
border: none;
cursor: pointer;
padding: 0;
width: 10px;
height: 10px;
}

.laguna-trip-builder .ltb-route-details-4 {
list-style: none;
padding: 0;
margin: 0;
}

.ltb-modal {
display: flex;
flex-direction: column;
max-width: 1200px;
width: 1200px;
height: 682px;
align-items: center;
justify-content: center;
gap: 40px;
padding: 40px 10px;
position: relative;
}

.ltb-modal .ltb-modal-dialog {
display: flex;
flex-direction: column;
width: min(1200px, calc(100vw - 16px));
height: min(800px, calc(100vh - 32px));
align-items: flex-start;
gap: 20px;
padding: 20px 16px;
position: relative;
background-color: #ffffff;
border-radius: 10px;
overflow: hidden;
border: 0.5px solid;
border-color: #eaeaea;
box-shadow: 0px 4px 24.3px #00000021;
}

.ltb-modal .ltb-modal-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

/* Модалка номеров: первая строка — кнопка «К выбору отелей» и крестик, под ней — отель, заголовок, дата */
#ltb-rooms-modal .ltb-modal-header {
flex-direction: column;
align-items: stretch;
gap: 0;
}

#ltb-rooms-modal .ltb-modal-header-row {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
flex-shrink: 0;
}

#ltb-rooms-modal .ltb-modal-title-wrap {
width: 100%;
}

.ltb-modal .ltb-modal-title-wrap {
display: inline-flex;
flex-direction: column;
align-items: flex-start;
gap: 4px;
position: relative;
flex: 0 0 auto;
}

.ltb-modal .ltb-rooms-back-to-hotels {
margin: 0;
padding: 0;
border: none;
background: none;
display: inline-flex;
align-items: center;
gap: 6px;
font-family: "Golos Text", sans-serif;
font-size: 14px;
font-weight: 500;
color: #2DB4AB;
cursor: pointer;
text-align: left;
line-height: 1.4;    
}

.ltb-modal .ltb-rooms-back-to-hotels__icon {
display: block;
width: 6px;
height: 13px;
flex-shrink: 0;
}

.ltb-modal .ltb-rooms-back-to-hotels:hover {
color: #238e87;
}

.ltb-modal .ltb-rooms-back-to-hotels:hover .ltb-rooms-back-to-hotels__icon {
opacity: 0.85;
}

/* Блок отеля в шапке модалки номеров: отступы сверху от звёзд, снизу от адреса */
.ltb-modal .ltb-rooms-modal-hotel-info {
margin: 20px 0 !important;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 4px;
}

.ltb-modal .ltb-rooms-modal-hotel-info:empty {
display: none !important;
}

.ltb-modal .ltb-rooms-modal-hotel-info .ltb-hotel-card__stars {
display: flex;
align-items: center;
gap: 2px;
min-height: 11px;
}

.ltb-modal .ltb-rooms-modal-hotel-info .ltb-hotel-card__star {
width: 12px;
height: 11px;
display: block;
flex-shrink: 0;
}

.ltb-modal .ltb-rooms-modal-hotel-name {
margin: 0;
font-family: "Golos Text", sans-serif;
font-weight: 500;
font-size: 22px;
color: #1d1d1d;
line-height: 1.3;
}

.ltb-modal .ltb-rooms-modal-hotel-info .ltb-hotel-card__row.ltb-hotel-card__address {
display: flex;
align-items: flex-start;
gap: 6px;
margin: 0;
font-family: "Golos Text", sans-serif;
font-size: 13px;
color: #1d1d1d;
}

.ltb-modal .ltb-rooms-modal-hotel-info .ltb-hotel-card__address .ltb-hotel-card__icon {
flex-shrink: 0;
margin-top: 1px;
}

.ltb-modal .ltb-rooms-modal-hotel-info .ltb-hotel-card__address span {
line-height: 1.4;
}

.ltb-modal .label {
position: relative;
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 500;
color: #1d1d1d;
font-size: 18px;
letter-spacing: 0;
line-height: normal;
}

.ltb-modal .ltb-modal-date {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-modal .ltb-modal-people {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-modal .ltb-modal-close {
position: relative;
width: 20px;
height: 20px;
overflow: hidden;
aspect-ratio: 0.91;
display: flex;
}

.ltb-modal .vector {
top: calc(50.00% - 5442px);
left: -101227.78%;
height: 18px;
aspect-ratio: 1;
position: absolute;
width: 100%;
}

.ltb-modal .line {
position: relative;
align-self: stretch;
width: 100%;
height: 1px;
object-fit: cover;
}

.ltb-modal .ltb-modal-search {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 12px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
background-color: #f4f4f4;
border-radius: 3px;
border: 0.5px solid;
border-color: #eaeaea;
}

.ltb-modal .text-wrapper {
position: relative;
width: fit-content;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-modal .clean-search {
position: relative;
width: 10px;
height: 11px;
overflow: hidden;
aspect-ratio: 0.91;
}

.ltb-modal .img {
height: 90.91%;
top: -50204.55%;
left: -182170.00%;
position: absolute;
width: 100%;
}

.ltb-modal .ltb-modal-body {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
  gap: 16px;
  flex: 1;
  overflow-y: auto;
  overflow-x: visible;
  width: 100%;
  align-self: stretch;
  min-height: 0;
  align-content: start;
}

.ltb-modal .ltb-modal-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 3px;
  border: 0.5px solid;
  border-color: #dddddd;
  box-shadow: 0px 4px 10px #00000016;
  background-color: #fff;
}

/* Слайдер фотографий в карточке номера */
.ltb-modal .ltb-modal-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* Бейдж длительности экскурсии (модальное окно и выбранный день) */
.ltb-excursion-duration-badge {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 6px 6px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: 12px;
  color: #464242;
  line-height: 1.2;
  margin: 8px;
  pointer-events: none;
  font-weight: 500;
}

.ltb-excursion-duration-badge img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.ltb-modal-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  object-fit: cover;
}

.ltb-modal .ltb-modal-card__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.ltb-modal .ltb-modal-card__slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.ltb-modal .ltb-room-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ltb-modal .ltb-room-card__image.is-active {
  opacity: 1;
  position: relative;
}

.ltb-modal .ltb-modal-card__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.ltb-modal .ltb-modal-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
}

.ltb-modal .ltb-modal-card__dot.is-active {
  background-color: rgba(255, 255, 255, 1);
}

/* Контент карточки номера */
.ltb-modal .ltb-modal-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 15px;
  flex: 1;
  width: 100%;
}

.ltb-modal .ltb-modal-card__title {
  font-family: "Golos Text";
  font-weight: 400;
  font-size: 14px;
  color: #1d1d1d;
  margin: 0;
  line-height: 1.4;
}

.ltb-modal .ltb-modal-card__details {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: "Golos Text";
  font-weight: 300;
  font-size: 12px;
  color: #6b6b6b;
  margin: 0;
}
.ltb-modal .ltb-modal-card__detail {
  display: flex;
  gap: 4px;
  align-items: center;
}

.ltb-modal .ltb-modal-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
}

.ltb-modal .ltb-modal-card__price-block {
  display: flex;
  flex-direction: column;
}

.ltb-modal .ltb-modal-card__price {
  font-family: "Golos Text";
  font-weight: 600;
  font-size: 18px;
  color: #2db4ab;
}

.ltb-modal .ltb-modal-card__nights-guests {
  font-family: "Golos Text";
  font-weight: 400;
  font-size: 12px;
  color: #6b6b6b;
  margin: 0;
  line-height: normal;
}

.ltb-modal .ltb-modal-card__button {
  padding: 10px;
  background-color: #2db4ab;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  font-family: "Golos Text";
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.ltb-modal .ltb-modal-card__button:hover:not(:disabled) {
  background-color: #26a099;
}

.ltb-modal .ltb-modal-card__button:active:not(:disabled) {
  background-color: #238e87;
}

.ltb-modal .ltb-modal-card__button:disabled {
  background-color: #94a3b8;
  cursor: not-allowed;
}

.ltb-modal .ltb-modal-card--soldout {
  opacity: 0.7;
}

/* Карточка отеля в модалке: звёзды, рейтинг, адрес, сайт (только домен), описание */
.ltb-hotel-card .ltb-hotel-card__content {
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
  gap: 0;
}
.ltb-hotel-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.ltb-hotel-card__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.ltb-hotel-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 11px;
}
.ltb-hotel-card__star {
  width: 12px;
  height: 11px;
  display: block;
  flex-shrink: 0;
}
.ltb-hotel-card__title {
  font-family: "Golos Text", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1d1d1d;
  margin: 0;
  line-height: 1.3;
}
.ltb-hotel-card__rating-badge {
  width: 26px;
  height: 27px;
  min-width: 26px;
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 4px;
  box-sizing: border-box;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-size: 12px;
  flex-shrink: 0;
}
.ltb-hotel-card__row {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  font-family: "Golos Text", sans-serif;
  font-size: 13px;
  color: #1d1d1d;
}
/* Адрес: иконка и текст выровнены по верху */
.ltb-hotel-card__address {
  align-items: flex-start;
}
.ltb-hotel-card__address .ltb-hotel-card__icon {
  margin-top: 1px;
}
.ltb-hotel-card__address span {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}
/* Сайт: иконка и ссылка по центру */
.ltb-hotel-card__site {
  align-items: center;
}
.ltb-hotel-card__row span {
  flex: 1;
  min-width: 0;
}
.ltb-hotel-card__icon {
  flex-shrink: 0;
  display: block;
}
.ltb-hotel-card__icon--location {
  width: 12px;
  height: 15px;
}
.ltb-hotel-card__icon--site {
  width: 12px;
  height: 12px;
}
.ltb-hotel-card__site-link {
  color: #2db4ab;
  font-weight: 500;
  text-decoration: none;
}
.ltb-hotel-card__site-link:hover {
  color: #238e87;
}
.ltb-hotel-card__desc {
  margin-top: 12px;
  font-family: "Golos Text", sans-serif;
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.4;
}
.ltb-hotel-card__bottom {
  margin-top: auto;
  padding-top: 12px;
  justify-content: stretch;
}
.ltb-hotel-card__bottom .ltb-modal-card__button {
  width: 100%;
}

.ltb-modal .ltb-modal-card-image {
position: relative;
align-self: stretch;
width: 100%;
height: 148px;
}

.ltb-modal .frame {
flex-direction: column;
align-items: flex-start;
gap: 16px;
padding: 10px 15px;
display: flex;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-modal .div {
flex-direction: column;
align-items: flex-start;
gap: 12px;
display: flex;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-modal .sever-truck {
position: relative;
align-self: stretch;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
color: transparent;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.ltb-modal .span {
color: #1d1d1d;
}


.ltb-modal .text-wrapper-3 {
align-items: flex-end;
font-family: "Golos Text";
font-weight: 600;
color: #2db4ab;
font-size: 18px;
position: relative;
display: flex;
justify-content: center;
width: fit-content;
letter-spacing: 0;
line-height: normal;
}

.ltb-modal .div-wrapper {
align-items: center;
justify-content: center;
gap: 10px;
padding: 10px;
background-color: #2db4ab;
border-radius: 6px;
display: flex;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-modal .text-wrapper-4 {
align-items: center;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
color: #ffffff;
font-size: 12px;
position: relative;
display: flex;
justify-content: center;
width: fit-content;
letter-spacing: 0;
line-height: normal;
}

.ltb-modal .ltb-modal-card-2 {
grid-row: 1 / 2;
grid-column: 2 / 3;
position: relative;
width: 100%;
height: fit-content;
display: flex;
flex-direction: column;
align-items: flex-start;
border-radius: 3px;
overflow: hidden;
border: 0.5px solid;
border-color: #eaeaea;
}

.ltb-modal .ltb-modal-card-3 {
grid-row: 1 / 2;
grid-column: 3 / 4;
position: relative;
width: 100%;
height: fit-content;
display: flex;
flex-direction: column;
align-items: flex-start;
border-radius: 3px;
overflow: hidden;
border: 0.5px solid;
border-color: #eaeaea;
}

.ltb-modal .ltb-modal-card-4 {
grid-row: 2 / 3;
grid-column: 1 / 2;
position: relative;
width: 100%;
height: fit-content;
display: flex;
flex-direction: column;
align-items: flex-start;
border-radius: 3px;
overflow: hidden;
border: 0.5px solid;
border-color: #eaeaea;
}

.ltb-modal .ltb-modal-card-image-2 {
position: relative;
align-self: stretch;
width: 100%;
height: 127px;
}

.ltb-modal .ltb-modal-card-5 {
grid-row: 2 / 3;
grid-column: 2 / 3;
position: relative;
width: 100%;
height: fit-content;
display: flex;
flex-direction: column;
align-items: flex-start;
border-radius: 3px;
overflow: hidden;
border: 0.5px solid;
border-color: #eaeaea;
}
/* Original CSS code should be injected here */

.ltb-modal .ltb-modal-close {
position: relative;
width: 20px;
height: 20px;
overflow: hidden;
aspect-ratio: 0.91;
background: none;
border: none;
padding: 0;
cursor: pointer;
}

.ltb-modal .ltb-modal-search {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 12px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
background-color: #f4f4f4;
border-radius: 3px;
border: 0.5px solid;
border-color: #eaeaea;
}

.ltb-modal .search-input {
position: absolute;
left: 12px;
right: 34px;
top: 8px;
bottom: 8px;
background: transparent;
border: none;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
outline: none;
padding: 0;
margin: 0;
}

.ltb-modal .search-input::placeholder {
color: #6b6b6b;
}

.ltb-modal .search-input::-webkit-search-cancel-button {
display: none;
}

.ltb-modal .text-wrapper {
position: relative;
width: fit-content;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
pointer-events: none;
}

.ltb-modal .ltb-modal__search-clear {
position: relative;
width: 10px;
height: 10px;
cursor: pointer;
flex-shrink: 0;
display: none; /* По умолчанию скрыта */
z-index: 1;
}

.ltb-modal .ltb-modal__search-clear:hover {
opacity: 0.7;
}

.ltb-modal .clean-search {
position: relative;
width: 10px;
height: 11px;
overflow: hidden;
aspect-ratio: 0.91;
background: none;
border: none;
padding: 0;
cursor: pointer;
flex-shrink: 0;
}

.ltb-modal .div-wrapper {
align-items: center;
justify-content: center;
gap: 10px;
padding: 10px;
background-color: #2db4ab;
border-radius: 6px;
display: flex;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
border: none;
cursor: pointer;
transition: background-color 0.2s ease;
}

.ltb-modal .div-wrapper:hover {
background-color: #26a099;
}

.ltb-modal .div-wrapper:active {
background-color: #238e87;
}



.ltb-stages-points {
display: flex;
align-items: center;
gap: 5px;
position: relative;
padding: 0px 50px;
}

.ltb-stages-points .ltb-stages-point {
position: relative;
width: 31px;
height: 31px;
aspect-ratio: 1;
}

.ltb-stages-points .img {
position: absolute;
top: 6px;
left: 6px;
width: 19px;
height: 19px;
aspect-ratio: 1;
}

.ltb-stages-points .complited-line {
position: relative;
flex: 1;
flex-grow: 1;
height: 2px;
background-color: #2db4ab;
border-radius: 999px;
}

.ltb-stages-points .current-wrapper {
position: relative;
width: 31px;
height: 27px;
}

.ltb-stages-points .current {
position: absolute;
top: 0;
left: 2px;
width: 27px;
height: 27px;
}

.ltb-stages-points .upcoming-line {
position: relative;
flex: 1;
flex-grow: 1;
height: 2px;
background-color: #c4c4c4;
border-radius: 999px;
}

.ltb-stages-points .upcoming-wrapper {
position: relative;
width: 30px;
height: 31px;
aspect-ratio: 1;
}


/* часть с днями и формой */
.ltb-layout-main .ltb-days-container {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 30px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-layout-main .ltb-day-card {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
padding: 20px 16px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
background-color: #ffffff;
border-radius: 10px;
border: 0.5px solid;
border-color: #eaeaea;
box-shadow: 0px 4px 25px #00000021;
}

.ltb-layout-main .ltb-day-title {
display: inline-flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 4px;
position: relative;
flex: 0 0 auto;
}

.ltb-layout-main .ltb-day-label {
position: relative;
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 500;
color: #1d1d1d;
font-size: 18px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .ltb-day-date {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .share {
position: relative;
width: 100%;
height: 1px;
background-color: #c4c4c4;
border-radius: 999px;
}

.ltb-layout-main .share-lite {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  border-radius: 999px;
}

.ltb-layout-main .ltb-category-section {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-layout-main .ltb-category-header {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-layout-main .ltb-category-title {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .ltb-day-tours-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
gap: 16px;
position: relative;
width: 100%;
align-items: stretch;
}

.ltb-layout-main .ltb-tour-item {
position: relative;
width: 100%;
min-width: 0;
min-height: 200px;
display: flex;
flex-direction: column;
align-items: flex-start;
border-radius: 3px;
overflow: hidden;
border: 0.5px solid;
border-color: #dddddd;
box-shadow: 0px 4px 10px #00000016;
}

.ltb-layout-main .ltb-item-image {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 0;
}

.ltb-layout-main .ltb-tour-item .ltb-modal-card__details,
.ltb-layout-main .ltb-service-item .ltb-modal-card__details,
.ltb-layout-main .ltb-restaurant-item .ltb-modal-card__details {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: "Golos Text";
  font-weight: 300;
  font-size: 12px;
  color: #6b6b6b;
  margin: 0;
}

.ltb-layout-main .ltb-tour-item .ltb-modal-card__detail,
.ltb-layout-main .ltb-service-item .ltb-modal-card__detail,
.ltb-layout-main .ltb-restaurant-item .ltb-modal-card__detail {
  display: flex;
  gap: 4px;
  align-items: center;
}


.ltb-layout-main .ltb-delete-button {
display: flex;
height: 148px;
align-items: flex-start;
justify-content: flex-end;
gap: 10px;
position: relative;
align-self: stretch;
width: 100%;
}

.ltb-layout-main .ltb-delete-icon {
position: relative;
width: 40px;
height: 40px;
aspect-ratio: 1;
}

.ltb-layout-main .ltb-item-content {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
gap: 10px;
padding: 20px 15px;
position: relative;
align-self: stretch;
width: 100%;
flex: 1;
background-color: #fff;
}

.ltb-layout-main .ltb-item-description {
position: relative;
align-self: stretch;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: transparent;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .ltb-item-name {
color: #1d1d1d;
}

.ltb-layout-main .ltb-item-link {
color: #2db4ab;
font-size: 12px;
text-decoration: underline;
}

.ltb-layout-main .ltb-item-price {
position: relative;
display: flex;
align-items: flex-end;
justify-content: center;
width: fit-content;
font-family: "Golos Text";
font-weight: 600;
color: #2db4ab;
font-size: 18px;
letter-spacing: 0;
line-height: normal;
white-space: nowrap;
}

.ltb-layout-main .ltb-tourist-count {
display: inline-flex;
align-items: center;
gap: 5px;
position: relative;
flex: 0 0 auto;
}

.ltb-layout-main .ltb-tourist-input {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
position: relative;
flex: 0 0 auto;
min-width: 48px;
box-sizing: border-box;
border-radius: 3px;
border: 0.5px solid;
border-color: #dddddd;
}

.ltb-layout-main .ltb-tourist-input {
position: relative;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .ltb-service-item {
position: relative;
width: 100%;
min-width: 0;
min-height: 200px;
display: flex;
flex-direction: column;
align-items: flex-start;
border-radius: 3px;
overflow: hidden;
border: 1px solid;
border-color: #dddddd;
box-shadow: 0px 4px 10px #00000016;
}

.ltb-layout-main .ltb-day-servise-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
gap: 16px;
position: relative;
width: 100%;
align-items: stretch;
}

.ltb-layout-main .ltb-day-servise-name {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-layout-main .ltb-day-servise-name-2 {
position: relative;
align-self: stretch;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
color: transparent;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .ltb-day-servise-fact {
display: flex;
align-items: center;
gap: 10px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-layout-main .ltb-spec-item {
display: inline-flex;
align-items: center;
gap: 4px;
position: relative;
flex: 0 0 auto;
}

.ltb-layout-main .people {
position: relative;
width: 15px;
height: 11px;
margin-left: -0.50px;
}

.ltb-layout-main .ltb-spec-text {
position: relative;
width: fit-content;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: #1e1e1e;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .transmission {
position: relative;
width: 12.1px;
height: 12.1px;
}

.ltb-layout-main .power {
position: relative;
width: 7.5px;
height: 10px;
}

.ltb-layout-main .ltb-day-rests-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
gap: 16px;
position: relative;
width: 100%;
align-items: stretch;
}

.ltb-layout-main .ltb-restaurant-footer {
display: flex;
align-items: flex-end;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
margin-top: auto;
}

.ltb-layout-main .ltb-restaurant-booking {
display: flex;
flex-direction: column;
width: fit-content;
align-items: flex-end;
justify-content: flex-end;
gap: 6px;
position: relative;
}

.ltb-layout-main .ltb-booking-time {
display: flex;
align-items: center;
gap: 5px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-layout-main .ltb-booking-label {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #4a4a4a;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
white-space: nowrap;
}

.ltb-layout-main .ltb-time-input {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
position: relative;
flex: 0 0 auto;
width: auto;
border-radius: 3px;
overflow: hidden;
border: 0.5px solid;
border-color: #dddddd;
}

.ltb-layout-main .ltb-nav-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 15px 20px;
position: relative;
flex: 0 0 auto;
box-shadow: 0px 4px 25px #00000021;
}

.ltb-layout-main .ltb-nav-icon {
position: relative;
width: 6px;
height: 13px;
}

.ltb-layout-main .ltb-nav-text {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 500;
color: #2db4ab;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .ltb-form-title {
position: relative;
width: fit-content;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 500;
color: #1d1d1d;
font-size: 18px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .ltb-form-fields {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 16px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-layout-main .ltb-form-field {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 8px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-layout-main .ltb-field-label {
position: relative;
width: 229px;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .ltb-field-input {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 10px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
border-radius: 6px;
border: 1px solid;
border-color: #dddddd;
}

.ltb-layout-main .ltb-field-input {
position: relative;
width: fit-content;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
width: 100%;
}



.ltb-layout-main .ltb-field-textarea {
display: flex;
height: 88px;
align-items: flex-start;
gap: 10px;
padding: 8px 10px;
position: relative;
align-self: stretch;
width: 100%;
border-radius: 6px;
border: 1px solid;
border-color: #dddddd;
}

.ltb-layout-main .ltb-submit-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 15px 20px;
position: relative;
flex: 0 0 auto;
background-color: #2db4ab;
border-radius: 6px;
box-shadow: 0px 4px 25px #00000021;
}

.ltb-layout-main .ltb-submit-text {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 500;
color: #ffffff;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-layout-main .ltb-back-navigation {
display: flex;
align-items: flex-start;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}
/* ========== INJECT ORIGINAL CSS CODE HERE ========== */

/* Additional styles for refactored semantic HTML elements */

.ltb-section {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-section-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ltb-day-card {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
padding: 20px 16px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
background-color: #ffffff;
border-radius: 10px;
border: 0.5px solid;
border-color: #eaeaea;
box-shadow: 0px 4px 25px #00000021;
}

.ltb-day-header {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-day-date {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-category-section {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-category-header {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}
.ltb-category-header.ltb-day-section__add {
cursor: pointer;
}

.ltb-category-title {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.ltb-day-tours-list,
.ltb-day-servise-list,
.ltb-day-rests-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
gap: 16px;
position: relative;
width: 100%;
list-style: none;
margin: 0;
padding: 0;
align-items: stretch;
}


.ltb-tour-item,
.ltb-service-item,
.ltb-restaurant-item {
position: relative;
width: 100%;
min-width: 0;
display: flex;
flex-direction: column;
align-items: flex-start;
border-radius: 3px;
overflow: hidden;
border: 0.5px solid;
border-color: #dddddd;
box-shadow: 0px 4px 10px #00000016;
}

.ltb-item-image {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 0;
}


/* Карточки размещаются автоматически по сетке (1 или 2 колонки при minmax(315px, 1fr)) */

.ltb-delete-button {
display: flex;
height: 148px;
align-items: flex-start;
justify-content: flex-end;
gap: 10px;
position: relative;
align-self: stretch;
width: 100%;
background: none;
border: none;
padding: 0;
cursor: pointer;
}

.ltb-delete-icon {
position: relative;
width: 40px;
height: 40px;
aspect-ratio: 1;
}

.ltb-item-content {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
gap: 22px;
padding: 10px 15px;
position: relative;
align-self: stretch;
width: 100%;
flex: 1;
}

.ltb-item-description {
position: relative;
align-self: stretch;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: transparent;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
margin: 0;
}

.ltb-item-name {
color: #1d1d1d;
}

.ltb-item-link {
color: #2db4ab;
font-size: 12px;
text-decoration: underline;
}

.ltb-item-footer {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
margin-top: auto;
padding-top: 10px;
}

.ltb-item-price {
position: relative;
display: flex;
align-items: flex-end;
justify-content: center;
width: fit-content;
font-family: "Golos Text";
font-weight: 600;
color: #2db4ab;
font-size: 18px;
letter-spacing: 0;
line-height: normal;
white-space: nowrap;
}

.ltb-tourist-count {
display: inline-flex;
align-items: center;
gap: 5px;
position: relative;
flex: 0 0 auto;
}

.ltb-tourist-label {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
white-space: nowrap;
}

.ltb-tourist-input {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
position: relative;
flex: 0 0 auto;
min-width: 48px;
box-sizing: border-box;
border-radius: 3px;
border: 0.5px solid;
border-color: #dddddd;
background: transparent;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-service-info {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-service-specs {
display: flex;
align-items: center;
gap: 10px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
list-style: none;
margin: 0;
padding: 0;
}

.ltb-spec-item {
display: inline-flex;
align-items: center;
gap: 4px;
position: relative;
flex: 0 0 auto;
}

.ltb-spec-icon {
position: relative;
width: 15px;
height: 11px;
margin-left: -0.50px;
}

.ltb-spec-icon-transmission {
width: 12.1px;
height: 12.1px;
margin-left: 0;
}

.ltb-spec-icon-power {
width: 7.5px;
height: 10px;
margin-left: 0;
}

.ltb-spec-text {
position: relative;
width: fit-content;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: #1e1e1e;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-restaurant-footer {
display: flex;
align-items: flex-end;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
margin-top: auto;
}

.ltb-restaurant-booking {
display: flex;
flex-direction: column;
width: fit-content;
align-items: flex-end;
justify-content: flex-end;
gap: 6px;
position: relative;
}

.ltb-booking-time {
display: flex;
align-items: center;
gap: 5px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-booking-label {
position: relative;
width: fit-content;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
white-space: nowrap;
}

.ltb-time-input {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
position: relative;
flex: 0 0 auto;
width: 40px;
border-radius: 3px;
overflow: hidden;
border: 0.5px solid;
border-color: #dddddd;
background: transparent;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: #1e1e1e;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

/* Скрытие иконки часов у инпута времени */
.ltb-time-input::-webkit-calendar-picker-indicator {
display: none;
-webkit-appearance: none;
appearance: none;
}

.ltb-time-input::-webkit-inner-spin-button,
.ltb-time-input::-webkit-outer-spin-button {
-webkit-appearance: none;
appearance: none;
margin: 0;
}

.ltb-navigation {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-nav-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 15px 20px;
position: relative;
flex: 0 0 auto;
box-shadow: 0px 4px 25px #00000021;
background: transparent;
border: none;
cursor: pointer;
}

.ltb-nav-icon {
position: relative;
width: 6px;
height: 13px;
}

.ltb-nav-text {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 500;
color: #2db4ab;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-contact-form-container {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
padding: 20px 16px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
background-color: #ffffff;
border-radius: 10px;
border: 0.5px solid;
border-color: #eaeaea;
box-shadow: 0px 4px 25px #00000021;
}

.ltb-form-title {
position: relative;
width: fit-content;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 500;
color: #1d1d1d;
font-size: 18px;
letter-spacing: 0;
line-height: normal;
}

.ltb-form-fields {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 16px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-form-field {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 8px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.ltb-field-label {
position: relative;
width: 229px;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 400;
color: #1d1d1d;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
}

.ltb-field-input {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 10px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
border-radius: 6px;
border: 1px solid;
border-color: #dddddd;
background: transparent;
margin-top: -0.50px;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-field-input::placeholder {
color: #6b6b6b;
}

.ltb-field-input.ltb-field-error-state {
  border: 1px solid #c00;
  border-color: #c00;
}
.ltb-field-input:focus {
  border: 1px solid #2DB4AB;
  outline: none;
}

.ltb-field-error {
  display: none;
  margin-top: 4px;
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #c00;
  line-height: 1.3;
}
.ltb-field-error:not(:empty) {
  display: block;
}

.ltb-form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
}
.ltb-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #6b6b6b;
  line-height: 1.4;
  padding: 8px 0;
}
.ltb-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.ltb-checkbox-label input[type="checkbox"]:checked {
  background-color: #2DB4AB;
  border-color: #2DB4AB;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.ltb-checkbox-label input[type="checkbox"]:focus,
.ltb-checkbox-label input[type="checkbox"]:focus-visible {
  outline: 1px solid #2DB4AB;
  outline-offset: 2px;
}
.ltb-checkbox-label input[type="checkbox"]:hover {
  border-color: #2DB4AB;
}
.ltb-privacy-link {
  color: #2DB4AB;
  text-decoration: underline;
}
.ltb-privacy-link:hover {
  color: #259a92;
}
.ltb-checkbox-label.ltb-field-error-state {
  border: 1px solid #c00;
  border-radius: 6px;
  padding: 8px 10px;
}

.ltb-field-textarea {
display: flex;
height: 88px;
align-items: flex-start;
gap: 10px;
padding: 8px 10px;
position: relative;
align-self: stretch;
width: 100%;
border-radius: 6px;
border: 1px solid;
border-color: #eaeaea;
background: transparent;
font-family: "Golos Text";
font-weight: 400;
color: #6b6b6b;
font-size: 14px;
letter-spacing: 0;
line-height: normal;
resize: vertical;
}

.ltb-field-textarea::placeholder {
color: #6b6b6b;
}
.ltb-field-textarea:focus {
  border: 1px solid #2DB4AB;
  outline: none;
}

.ltb-submit-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 15px 20px;
position: relative;
flex: 0 0 auto;
background-color: #2db4ab;
border-radius: 6px;
box-shadow: 0px 4px 25px #00000021;
border: none;
cursor: pointer;
}

.ltb-submit-text {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
margin-top: -1.00px;
font-family: "Golos Text";
font-weight: 500;
color: #ffffff;
font-size: 12px;
letter-spacing: 0;
line-height: normal;
}

.ltb-back-navigation {
display: flex;
align-items: flex-start;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}





/* исправляю вручную */

.ltb-stages-points .img-2 {
position: relative;
flex: 1;
flex-grow: 1;
height: 2px;
display: flex;
align-items: center;
background-color: #000;
border-radius: 99px;
}

.ltb-stages-points .img-2 img {
width: 100%;
height: 2px;
display: block;
}

.share {
position: relative;
width: 100%;
height: 1px;
background-color: #c4c4c4;
border-radius: 999px;
}

.streak-share {
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.div {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

/* Кнопка "ДАЛЕЕ" всегда справа, даже когда кнопка "НАЗАД" скрыта */
.div [data-nav="next"],
.div .div-6:last-child {
margin-left: auto;
}

#ltb-selected-rooms {
width: 100%;
display: flex;
flex-direction: column;
gap: 20px;
}
#ltb-selected-rooms > .div[data-select-room],
.laguna-trip-builder [id^="ltb-selected-rooms"] > .div[data-select-room] {
cursor: pointer;
}

/* Кнопка "Выбрать" в слоте выбора номера — те же стили, что у .ltb-modal-card__button */
.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-modal-card__button.ltb-selected-rooms-choose-btn,
.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-modal-card__button {
padding: 10px;
background-color: #2db4ab;
color: #ffffff;
border: none;
border-radius: 3px;
font-family: "Golos Text", sans-serif;
font-weight: 400;
font-size: 14px;
cursor: pointer;
transition: background-color 0.2s ease;
white-space: nowrap;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-modal-card__button:hover {
background-color: #26a099;
}

.laguna-trip-builder [id^="ltb-selected-rooms"] .ltb-modal-card__button:active {
background-color: #238e87;
}

#ltb-selected-rooms-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#ltb-selected-rooms-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Выбранные номера с галереей */
.ltb-selected-room {
  display: flex;
  gap: 16px;
  position: relative;
  align-items: stretch;
}

.ltb-selected-room__slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ltb-border, #e2e8f0);
}

.ltb-selected-room__slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.ltb-selected-room__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0;
}

.ltb-selected-room__image.is-active {
  opacity: 1;
  position: relative;
}

.ltb-selected-room__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.ltb-selected-room__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}

.ltb-selected-room__dot.is-active {
  background-color: rgba(255, 255, 255, 1);
}

.ltb-selected-room__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ltb-selected-room__title {
  font-family: "Golos Text";
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  color: #1d1d1d;
}

.ltb-selected-room__details {
  font-family: "Golos Text";
  font-weight: 300;
  font-size: 12px;
  color: #6b6b6b;
  margin: 0;
}

.ltb-selected-room__details--secondary {
  color: #94a3b8;
}

.ltb-selected-room__price {
  margin-top: auto;
  font-family: "Golos Text";
  font-weight: 600;
  font-size: 16px;
  color: #2db4ab;
}

.ltb-selected-room__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.check-top {
width: 323px;
height: 10px;
background-image: url(../img/check-topppp.svg);
}

.check-bottom {
width: 323px;
height: 11px;
background-image: url(../img/check-bottom.svg);
}

/* Системная иконка календаря невидима, но клик по полю открывает календарь */
.laguna-trip-builder input[type="date"] {
position: relative;
}
.laguna-trip-builder input[type="date"]::-webkit-calendar-picker-indicator {
opacity: 0;
cursor: pointer;
position: absolute;
inset: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}

/* Firefox: убираем нативный вид, оставляем текстовое поле */
.laguna-trip-builder input[type="date"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* На всякий случай убираем стрелки и крестик в WebKit */
.laguna-trip-builder input[type="date"]::-webkit-inner-spin-button,
.laguna-trip-builder input[type="date"]::-webkit-clear-button {
-webkit-appearance: none;
}

/* скрытие */
.ltb-modal[aria-hidden="true"] { display: none; }
.ltb-bonuses[aria-hidden="true"] { display: none; }
.laguna-trip-builder .div-4[aria-hidden="true"] { display: none; }
.ltb-gallery[aria-hidden="true"] { display: none; }

/* Скрытие секций по умолчанию */
.ltb-layout-main > .ltb-steps:not(:first-child) {
  display: none;
}

.ltb-layout-main > .ltb-section {
  display: none;
}

.ltb-layout-main > .ltb-section-contact {
  display: none;
}

/* открытие */
.ltb-bonuses[aria-hidden="false"] { 
display: flex;
flex-direction: column;
width: 246px;
align-items: flex-start;
gap: 20px;
padding: 16px;
position: fixed;
right: 30px;
top: var(--ltb-bonuses-top, 83px);
background-color: #ffffff;
border-radius: 10px;
border-right-width: 0.5px;
border-right-style: solid;
border-left-width: 0.5px;
border-left-style: solid;
border-color: #eaeaea;
box-shadow: 0px 4px 25px #00000021;
z-index: 101;
}
/* оверлей на весь экран */
.ltb-modal[aria-hidden="false"] {
display: flex;
position: fixed;
inset: 0;

width: 100vw;
height: 100vh;

max-width: none;
max-height: none;

margin: 0;
padding: 0;

z-index: 9999;
background: rgba(0, 0, 0, 0.35);
justify-content: center;
align-items: center;
}

/* Блокировка прокрутки заднего плана при открытых модальных окнах */
body.ltb-modal-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

.laguna-trip-builder .div-4[aria-hidden="false"] {
display: flex !important;
flex-direction: column;
align-items: flex-start;
gap: 20px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder .container-for-rooms {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  }

.streak {
  display: flex;
  width: 100%;
  height: 1px;
}

.conteiner-button {
  width: 100%;
}

/* затемнение фона */
.laguna-trip-builder .ltb-route-bar-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9990;
}

.laguna-trip-builder .ltb-route-bar-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}



/* зеркалим кнопку при открытии */
.laguna-trip-builder .open-details{
  transition: transform .2s ease;
}

.laguna-trip-builder .open-details.is-open{
  transform: scaleY(-1);
}

.laguna-trip-builder .for-right-panel {
display: flex !important;
flex-direction: column;
align-items: flex-start;
gap: 20px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
}

.laguna-trip-builder input[type="date"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* Иконка календаря невидима; клик в любом месте поля открывает системный календарь */
.laguna-trip-builder input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.btn-close-bonuses {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15px;
    width: 15px;
}

.ltb-modal-card__infa {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ltb-modal-card__labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}


.ltb-modal .podrobnee {
  font-family: "Golos Text";
  color: #2db4ab;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.ltb-modal .podrobnee:hover {
  color: #26a099;
}

.ltb-modal .podrobnee:active {
  color: #238e87;
}


@media (max-width: 726px) {
  
    .ltb-stages-icons, 
    .ltb-stages-points {
        padding: 0px !important;
    }
    
    .ltb-stages-names {
      display: none !important;
    }
    
    .laguna-trip-builder .ltb-stages {
      min-width: 323px;
    }
    
    .ltd-right-panel {
      display: none !important;
    }
    
    .ltb-route-bar {
      display: flex !important;
      position: fixed !important;
      left: 0;
      right: 0;      
      bottom: 0;
      z-index: 9991; /* чтобы не прятался за контентом */
      padding-bottom: env(safe-area-inset-bottom) !important;
    }
    
    .ltb-route-details-2 {
        width: 100% !important;
    }
    
    .ltb-layout-aside-2 {
        padding: 20px 26px !important;
    }
    
    .share {
        height: 1px;
        background-color: #dddddd;
    }
    
    .ltb-layout-main .share {
        height: 1px;
        background-color: #dddddd;
    }
    
    .laguna-trip-builder .gift {
        right: 10px;
        /* top задаётся в JS с учётом шапки */
    }

    .ltb-fixed-socials {
      right: 10px;
      bottom: calc(10px + var(--ltb-route-bar-height, 0px));
      gap: 10px;
    }

    .ltb-bonuses[aria-hidden="false"] {
      right: 10px;
    }

    .ltb-video-title {
      font-size: 32px;
    }

    .laguna-trip-builder .ltb-header-title {
      font-size: 26px;
    }

    .ltb-how-to-get .ltb-header-title {
      font-size: 26px;
    }

    .laguna-trip-builder .top-description {
      font-size: 13px;
    }
    .container-content {
      padding: 90px 10px;
    }
}

/* Полноэкранная галерея для фотографий номеров */
.ltb-gallery {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.ltb-gallery__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.ltb-gallery__container {
  position: relative;
  width: fit-content;
  height: fit-content;
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: default;
  pointer-events: none;
}

.ltb-gallery__container > * {
  pointer-events: auto;
}

.ltb-gallery__image-container {
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ltb-gallery__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.ltb-gallery__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.2s ease;
}

.ltb-gallery__close:hover {
  opacity: 0.8;
}

.ltb-gallery__close img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.ltb-gallery__prev,
.ltb-gallery__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.2s ease;
  color: #ffffff;
}

.ltb-gallery__prev:hover,
.ltb-gallery__next:hover {
  opacity: 0.8;
}

.ltb-gallery__prev svg,
.ltb-gallery__next svg {
  stroke: #ffffff;
  fill: none;
}

.ltb-gallery__prev {
  left: 20px;
}

.ltb-gallery__next {
  right: 20px;
}

.ltb-gallery__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 16px;
  z-index: 10001;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
}

.ltb-gallery__current {
  font-weight: 600;
}

body.ltb-gallery-open {
  overflow: hidden;
}


/* Убрать обводку фокуса (чёрную/синюю) у инпутов и кнопок */
input:focus,
button:focus,
select:focus,
textarea:focus,
a:focus,
[tabindex]:focus,
input:focus-visible,
button:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: none !important;
}

/* Окно успешной отправки заявки (на весь экран, без крестика) */
.ltb-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 10100;
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.ltb-success-overlay__inner {
  max-width: 480px;
  width: 100%;
  text-align: center;
  font-family: "Golos Text", sans-serif;
}
.ltb-success-overlay__title {
  margin-top: 100px;
  font-size: 32px;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.3;
}
.ltb-success-overlay_desc {
  margin-top: 16px;
  position: relative;
  font-size: 16px;
  color: #6B6B6B;
  line-height: 1.4;
}
.on-main {
  padding: 12px 32px;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  background-color: #2DB4AB;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 78px;
  transition: background-color 0.2s ease;
  display: inline-block;
}
.ltb-success-overlay__questions {
  margin-top: 42px;
  font-size: 14px;
  font-weight: 400;
  color: #6B6B6B;
}
.ltb-success-overlay__phone {
  margin-top: 16px;
}
.ltb-success-overlay__phone a {
  font-size: 20px;
  font-weight: 400;
  color: #1d1d1d;
  text-decoration: none;
}
.ltb-success-overlay__phone a:hover {
  color: #2DB4AB;
}
.ltb-success-overlay_icons {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ltb-success-overlay_icons a {
  display: inline-block;
}
.ltb-success-overlay_icons img {
  display: block;
}
.ltb-success-overlay__home {
  margin-top: 78px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #2DB4AB;
  text-decoration: underline;
}
.ltb-success-overlay__home:hover {
  color: #259a92;
}