body {
  font-family: 'Montserrat', sans-serif;
  color: #111111;
  background: #f7f7f7;
  margin: 0;
  padding-top: 50px;
  
  
}

html {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

body::-webkit-scrollbar {
  width: 6px;
  height: 0;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
}

html.is-page-scrolling {
  scrollbar-color: #c6a55c transparent;
}

html.is-page-scrolling body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e5c97a, #c6a55c);
  border-color: rgba(243, 238, 227, 0.75);
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f0d98f, #b89443);
}

body.site-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.btn-share-search {
  display: none;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(199, 166, 89, 0.46);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: #4b3a1e;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-share-search.is-visible {
  display: inline-flex;
}

.btn-share-search:hover,
.btn-share-search.is-copied {
  transform: translateY(-1px);
  background: #fff8e8;
  box-shadow: 0 12px 26px rgba(199, 166, 89, 0.2);
}

.selection-banner {
  max-width: 1180px;
  margin: 20px auto 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  background: #fffdf8;
  border: 1px solid rgba(199, 166, 89, 0.38);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.selection-banner span {
  display: block;
  color: #2f6b4f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.selection-banner strong {
  display: block;
  margin-top: 4px;
  color: #2d2418;
  font-size: 20px;
}

.selection-banner small {
  color: #6d5c3f;
  font-weight: 700;
}

.selection-banner__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.selection-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.selection-banner__actions button,
.selection-banner__actions a {
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(199, 166, 89, 0.42);
  background: #fff;
  color: #2d2418;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.selection-banner__actions a {
  background: linear-gradient(135deg, #c6a55c, #e5c97a, #c6a55c);
  color: #1f1709;
  border-color: rgba(198, 165, 92, 0.68);
  box-shadow: 0 10px 24px rgba(198, 165, 92, 0.24);
}

body.selection-page .filters,
body.selection-page .mobile-filters,
body.selection-page .desktop-advanced-filters,
body.selection-page .mobile-search-actions,
body.selection-page .search-note-box,
body.selection-page .telegram-section {
  display: none !important;
}

body.selection-page #contactScrollBtn {
  display: none !important;
}

body.selection-page .selection-banner {
  max-width: min(1280px, calc(100% - 56px));
  margin-top: clamp(-72px, -6vw, -44px);
  margin-bottom: 28px;
  padding: 22px 26px;
  position: relative;
  z-index: 5;
  border-radius: 28px;
}

body.selection-page .big-banner {
  min-height: 12vh;
  padding: 18px 16px;
  margin-top: 18px;
}

body.selection-page .big-banner-content {
  gap: 6px;
}

body.selection-page .big-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 0;
  letter-spacing: 0;
}

body.selection-page .counter-wrapper,
body.selection-page .big-btn,
body.selection-page .hero-reviews,
body.selection-page .phone-center {
  display: none !important;
}

body.selection-page .social-icons {
  margin: 4px 0;
  gap: 14px;
}

body.selection-page .social-icons a {
  width: 42px;
  height: 42px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.selection-page .social-icons a::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}

body.selection-page .social-icons img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

body.selection-page .copyright {
  margin-top: 0;
  font-size: 11px;
}

@media (max-width: 768px) {
  .btn-share-search {
    width: auto;
  }

  .selection-banner {
    margin: 14px 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .selection-banner__meta,
  .selection-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .selection-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.selection-page .selection-banner {
    max-width: calc(100% - 24px);
    margin-top: -36px;
    padding: 18px;
    border-radius: 22px;
  }
}

.selection-collect-bar {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fffdf8;
  border: 1px solid rgba(199, 166, 89, 0.42);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.selection-collect-result {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.selection-collect-result:empty {
  display: none;
}

.selection-collect-result input {
  flex: 1;
  min-width: 220px;
  height: 38px;
  border: 1px solid rgba(199, 166, 89, 0.42);
  border-radius: 999px;
  padding: 0 14px;
  color: #2d2418;
  font: inherit;
  background: #fff;
}

.selection-collect-result a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: #c6a55c;
  color: #1f1709;
  font-weight: 800;
  text-decoration: none;
}

.selection-collect-bar span {
  display: block;
  color: #2f6b4f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selection-collect-bar strong {
  display: block;
  margin-top: 3px;
  color: #2d2418;
}

.selection-collect-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.selection-collect-bar__actions > span {
  color: #6d5c3f;
  letter-spacing: 0;
  text-transform: none;
}

.selection-collect-bar button,
.selection-collect-bar a,
.collect-card-btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f6f4a, #3f9f72);
  color: white;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.selection-collect-bar button,
.selection-collect-bar a {
  min-height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 13px;
  white-space: nowrap;
}

.selection-collect-bar .selection-nav-main,
.selection-collect-bar .selection-nav-luxury {
  background: #fff;
  color: #2d2418;
  border: 1px solid rgba(199, 166, 89, 0.42);
}

.selection-collect-bar .selection-nav-admin {
  background: linear-gradient(135deg, #c6a55c, #e5c97a);
  color: #2d2418;
}

.selection-collect-bar [hidden] {
  display: none !important;
}

.collect-card-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(31, 111, 74, 0.25);
}

.collect-card-btn.is-added {
  background: linear-gradient(135deg, #c6a55c, #e5c97a);
  color: #2d2418;
}

.selection-card-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f6f4a, #3f9f72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 111, 74, 0.25);
  pointer-events: none;
}

.price-breakdown-mini {
  display: none;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: 6px;
  color: #8a7b5d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.price-breakdown-mini span {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .selection-collect-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .selection-collect-bar__actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .selection-collect-result {
    flex-direction: column;
    align-items: stretch;
  }

  .selection-collect-result input {
    min-width: 0;
    width: 100%;
  }
}
html, body {
  overflow-x: hidden;
}

.listing-page {
  overflow-x: clip;
  max-width: 100%;
}

.listing-gallery,
.listing-body,
.booking-card {
  max-width: 100%;
}
 
.hero {
  position: relative;
  min-height: 35vh;
  background: #17130d url('../images/herosite/011.webp') center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  padding: 60px 0 50px;
  margin: 0;
  overflow: hidden;
  
  margin-top: 30px;
  
  background-position: center;
}

.hero-site-slide,
.big-banner-site-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #17130d;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1400ms ease;
  will-change: opacity;
}

.hero-site-slide.is-active,
.big-banner-site-slide.is-active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #f7f7f7;
  width: 100%;
  
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.30) 0%,
    rgba(0, 0, 0, 0.50) 50%,
    rgba(0, 0, 0, 0.70) 100%
  );
}
.hero__title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  margin-top: 5px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: flex-start;
}

.hero-stat {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 32px 40px;
  border-radius: 24px;
  min-width: 240px;
  flex: 1 1 100px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #D4AF37;
  margin-bottom: 8px;
  line-height: 1;
}

.hero-stat-text {
  font-size: 15px;
  color: #111;
}

@media (max-width: 768px) {
  .hero {
    background: #17130d url('../images/herosite/011.webp') center/cover no-repeat;
    min-height: 25vh;
    padding: 20px 0px 57px;
    
    background-position: center;
    margin-top: 0px;
  }

  .hero__title {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 15px;
  }
  @media (max-width: 768px) {

    .hero__title {
      display: none !important;
    }
  
  }
  .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(0, 0, 0, 0.40) 50%,
    rgba(0, 0, 0, 0.60) 100%
  );
}
}

@media (min-width: 993px) {
  .hero__content {
    max-width: 90%;
    margin: 0 auto;
  }
}


.telegram-section {
  padding: 70px 0;
  background: #fbfaf7;
  position: relative;
  overflow: hidden;
}

.telegram-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: clamp(520px, 50vw, 700px);
  width: 100%;
  padding: clamp(34px, 4.6vw, 72px);
  background: url("../images/telegram-premium.jpg") center center / cover no-repeat;
  border: 1px solid rgba(210, 173, 100, 0.34);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(105, 83, 45, 0.12);
  overflow: hidden;
  position: relative;
}

.telegram-bg {
  display: none;
}

.telegram-text {
  width: min(520px, 45%);
  margin: 0;
  padding: 0;
  text-align: center;
  color: #302417;
  position: relative;
  z-index: 1;
}

.telegram-brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.telegram-brand-name {
  color: #a77c32;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.telegram-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.2vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
  color: #2d2116;
}

.telegram-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: min(300px, 72%);
  margin: 24px auto 26px;
  color: #d6ad54;
}

.telegram-divider span {
  height: 1px;
  background: currentColor;
  opacity: 0.68;
}

.telegram-divider i {
  width: 12px;
  height: 12px;
  background: currentColor;
  display: block;
  transform: rotate(45deg);
}

.telegram-lead {
  max-width: 460px;
  margin: 0 auto;
  color: #7d7163;
  font-size: clamp(18px, 1.75vw, 26px);
  line-height: 1.32;
  font-weight: 500;
}


.social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(520px, 100%);
  margin: 34px auto 28px;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 18px 24px;
  border-radius: 14px;
  border: 1px solid rgba(181, 134, 43, 0.42);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(175, 130, 46, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-social img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  flex: 0 0 auto;
}

.btn-telegram {
  background: linear-gradient(135deg, #dcb85d, #b8892d);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(175, 130, 46, 0.34);
  filter: saturate(1.04);
}

.btn-instagram {
  background: linear-gradient(135deg, #dca34f, #c64d8b);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(198, 77, 139, 0.24);
  filter: saturate(1.04);
}

.telegram-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #887b6b;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.25;
  font-weight: 500;
}

.telegram-trust svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 993px) {
  .telegram-section {
    padding: 90px 0;
    background: #faf7f0;
  }

  .telegram-section .container {
    max-width: 1440px;
  }

  .telegram-inner {
    min-height: 590px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(199, 166, 89, 0.32);
    background-image: url("../images/telegram-premium.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 121% auto;
    box-shadow: 0 24px 70px rgba(45, 36, 24, 0.10);
    padding: 0;
  }

  .telegram-text {
    width: 47%;
    min-height: 590px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 58px 54px 48px 30px;
    background: transparent;
    color: #2d2418;
    transform: translateX(34px);
  }

  .telegram-brand-logo {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    object-fit: contain;
    opacity: 0.95;
  }

  .telegram-brand-name {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b58a35;
    margin: 0 0 26px;
  }

  .telegram-text h2 {
    max-width: 620px;
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 56px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: 0;
    color: #2d2418;
  }

  .telegram-divider {
    width: 270px;
    margin: 28px auto 24px;
    gap: 16px;
    color: #d7b86a;
  }

  .telegram-divider span {
    height: 1px;
    opacity: 1;
  }

  .telegram-divider i {
    width: 10px;
    height: 10px;
  }

  .telegram-lead {
    max-width: 560px;
    margin: 0 auto 34px;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 500;
    color: #74685d;
  }

  .social-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
  }

  .social-buttons .btn-instagram {
    display: none !important;
  }

  .btn-social.btn-telegram {
    width: min(470px, 100%);
    min-height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 26px;
    background: linear-gradient(135deg, #bd8e27 0%, #e6c96f 48%, #bd8e27 100%);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    box-shadow:
      0 14px 28px rgba(184, 134, 38, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(171, 124, 31, 0.28);
    transform: none;
    overflow: hidden;
    position: relative;
  }

  .btn-social.btn-telegram::before {
    content: "";
    position: absolute;
    inset: -45% auto -45% -35%;
    width: 30%;
    background: linear-gradient(
      110deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 28%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0.08) 72%,
      transparent 100%
    );
    transform: skewX(-18deg);
    animation: telegramButtonShine 4.8s ease-in-out infinite;
    pointer-events: none;
  }

  .btn-social.btn-telegram img,
  .btn-social.btn-telegram {
    isolation: isolate;
  }

  .btn-social.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow:
      0 18px 34px rgba(184, 134, 38, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.38);
    filter: saturate(1.03);
  }

  .btn-social.btn-telegram img {
    width: 27px;
    height: 27px;
    filter: brightness(0) invert(1);
  }

  .telegram-trust {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #8a8177;
  }

  .telegram-trust svg {
    width: 24px;
    height: 24px;
  }
}

@keyframes telegramButtonShine {
  0%, 42% {
    left: -35%;
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  68%, 100% {
    left: 112%;
    opacity: 0;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f8f9fa;
  padding: 12px 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.header-nav__link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #2d2418;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.header-nav__link--premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #c6a55c, #e5c97a, #b89445);
  box-shadow: 0 12px 26px rgba(198, 165, 92, 0.22);
}

.header-nav__link--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.45) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: premiumLinkShine 4.6s ease-in-out infinite;
}

@keyframes premiumLinkShine {
  0%, 55% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

.favorite-heart-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 12;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font: 900 14px/1 Montserrat, Arial, sans-serif;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, color .18s ease;
}

.favorite-heart-btn:hover,
.favorite-heart-btn:focus-visible {
  color: #f1c84b;
}

.favorite-heart-btn.is-active {
  background: transparent;
  color: #f1c84b;
  opacity: 1;
}

.card-media,
.listing-hero {
  position: relative;
}

.favorite-heart-btn::before {
  content: "♡";
  display: block;
  color: currentColor;
  font-size: 38px;
  line-height: 1;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.65),
    0 0 2px rgba(0, 0, 0, 0.75);
}

.favorite-heart-btn.is-active::before {
  content: "♡";
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.45),
    0 0 2px rgba(255, 255, 255, 0.9);
}

.card:hover .favorite-heart-btn,
.favorite-heart-btn:focus-visible,
.favorite-heart-btn.is-active {
  opacity: 1;
  transform: translateY(0);
}

.favorite-heart-btn--listing {
  top: -68px;
  right: 18px;
  width: auto;
  min-width: 0;
  min-height: 52px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(198, 165, 92, 0.34);
  border-radius: 999px;
  background: #fffdf8;
  color: #6d5424;
  font: 900 16px/1 Montserrat, Arial, sans-serif;
  opacity: 1;
  transform: none;
  box-shadow: 0 12px 26px rgba(45, 36, 24, 0.12);
  backdrop-filter: blur(8px);
}

@media (max-width: 640px) {
  .favorite-heart-btn--listing {
    top: -66px;
    right: 0;
  }
}

.favorite-heart-btn--listing::before {
  font-size: 20px;
  text-shadow: none;
}

.favorite-heart-btn--listing.is-active {
  background: linear-gradient(135deg, #c6a55c, #e5c97a, #b89445);
  color: #fff;
}

.back-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(198, 165, 92, 0.34);
  border-radius: 999px;
  background: #fffdf8;
  color: #2d2418;
  font: 900 16px/1 Montserrat, Arial, sans-serif;
  cursor: pointer;
  box-shadow: none;
}

.service-menu-link[href="/favorites.html"] {
  text-decoration: none !important;
}

.service-menu-link[href="/favorites.html"]::after {
  display: none !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 50px;
  text-decoration: none;
}

@media (max-width: 992px) {
  .header-nav {
    display: none;
  }
}

.logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.logo__text {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}




@media (max-width: 992px) {
  .telegram-inner {
    min-height: 620px;
    align-items: flex-end;
    justify-content: center;
    padding: 320px 24px 28px;
    background-position: 30% center;
    text-align: center;
  }

  .telegram-text {
    width: min(560px, 100%);
    max-width: 100%;
    padding: 24px 18px;
    background: rgba(255, 253, 248, 0.86);
    border: 1px solid rgba(210, 173, 100, 0.24);
    border-radius: 20px;
    backdrop-filter: blur(5px);
  }

  .telegram-text h2 {
    font-size: 34px;
  }

  .social-buttons {
    gap: 12px;
  }

  .btn-social {
    min-height: 56px;
    padding: 15px 18px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .telegram-section {
    padding: 24px 0;
    background: #faf7f0;
  }

  .telegram-inner {
    display: block;
    min-height: 0;
    padding: 0;
    border-radius: 22px;
    border: 1px solid rgba(199, 166, 89, 0.32);
    background: #fbf8f1;
    box-shadow: 0 22px 58px rgba(45, 36, 24, 0.12);
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
  }

  .telegram-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 49%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      to top,
      rgba(251, 248, 241, 0.99) 0%,
      rgba(251, 248, 241, 0.95) 36%,
      rgba(251, 248, 241, 0.66) 66%,
      rgba(251, 248, 241, 0) 100%
    );
  }

  .telegram-bg {
    width: 100%;
    height: auto;
    display: block;
  }

  .telegram-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 0 22px 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    transform: none;
  }

  .telegram-brand-logo {
    width: 42px;
    height: 42px;
    margin-bottom: 7px;
  }

  .telegram-brand-name {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #b58a35;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .telegram-text h2 {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 0.98;
    font-weight: 700;
    color: #2d2418;
    margin: 0;
  }

  .telegram-divider {
    width: min(190px, 66%);
    margin: 14px auto 12px;
    color: #d7b86a;
  }

  .telegram-lead {
    max-width: 292px;
    margin: 0 auto 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.38;
    font-weight: 500;
    color: #74685d;
  }

  .social-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 auto 12px;
    width: 100%;
    justify-items: center;
  }

  .social-buttons .btn-instagram {
    display: none !important;
  }

  .btn-social.btn-telegram {
    width: min(292px, 100%);
    min-height: 44px;
    box-sizing: border-box;
    padding: 10px 18px;
    border-radius: 999px;
    gap: 11px;
    background: linear-gradient(135deg, #bd8e27 0%, #e6c96f 48%, #bd8e27 100%);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    box-shadow:
      0 16px 32px rgba(184, 134, 38, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(171, 124, 31, 0.28);
  }

  .btn-social.btn-telegram img {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
  }

  .telegram-trust {
    max-width: 292px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.35;
    color: #8a8177;
    text-align: left;
  }

  .telegram-trust svg {
    width: 24px;
    height: 24px;
  }
}

 

.search-bar {
  margin-top: 20px;
  background: white;
  padding: 15px 20px;
  border-radius: 50px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-bar input {
  border: none;
  padding: 10px;
  font-size: 14px;
}

.search-bar button {
  background: #2f6fed;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.card {
  cursor: pointer;
  transition: 0.2s;
}

.card:hover {
  transform: scale(1.02);
}


.card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .card img {
    object-position: 50% 100%;
  }
}

.card-content {
  padding: 10px 5px;
}


.card h3 {
  font-size: 16px;
  margin: 5px 0;
}


.card p {
  font-size: 13px;
  color: #666;
}


.price {
  margin-top: 5px;
  font-weight: bold;
  font-size: 15px;
}


.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
}


.card-image {
  position: relative;
}


.load-more {
  margin: 40px auto;
  display: block;
  padding: 15px 30px;
  border-radius: 30px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
}


.search-bar {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
}


@media (max-width: 768px) {

  .cards {
    grid-template-columns: 1fr;
  }

  .search-bar {
    position: static;
  }

  .mobile-filter-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    z-index: 1000;
  }
}


.filters {
  display: grid;
  grid-template-columns: 1.15fr 1.45fr 1fr auto;
  gap: 30px;
  position: relative;
  z-index: 50;
  margin-top: -40px;
  margin-bottom: 40px;
  background: #fff;
  padding: 24px;
  border-radius: 28px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.filters input,
.filters select {
  width: 100%;
  min-width: 0;
  height: 58px;
  padding: 0 18px;
  border-radius: 24px;
  border: 1px solid #cdb889;
  font-size: 16px;
  font-weight: 600;
  color: #2d2418;
  background: #fffdf8;
  box-sizing: border-box;
}

.filters button {
  height: 58px;
  padding: 0 34px;
  border-radius: 24px;
  font-size: 17px;
  font-weight: 800;
}

#dates {
  min-width: 280px;
}
.filters input::placeholder {
  color: #8b7a5a;
  font-weight: 500;
}

.filters select {
  appearance: none;
}
@media (max-width: 1024px) {
  .filters {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .filters {
    grid-template-columns: 1fr;
  }

  #dates {
    min-width: 0;
  }
}

.search-btn {
  min-width: 190px;
  height: 56px;
  border-radius: 24px;
  font-size: 17px;
  font-weight: 800;
  padding: 0 32px;
}


.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}




.property-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.property-card:hover {
  transform: translateY(-6px);
}

.property-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.property-info {
  padding: 20px;
}




@media (max-width: 992px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .properties-grid {
    grid-template-columns: 1fr;
  }

	  .filters {
	    flex-direction: column;
	  }

  .card-actions {
    gap: 8px;
    margin-top: 12px;
  }

  .card-map-button,
  .card-view-button {
    min-height: 38px;
    border-radius: 14px;
    font-size: 12px;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f8f9fa;
  padding: 12px 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.logo__text {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.btn-gold {
  background: linear-gradient(135deg, #c6a55c, #e5c97a, #c6a55c);
  color: #000000;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  align-items: center;      
  justify-content: center;  
  text-decoration: none;
  white-space: nowrap;
  border: none;
  box-shadow: 0 10px 24px rgba(198, 165, 92, 0.68);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-size: 100% 100%;
  animation: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(198, 165, 92, 0.32);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(198, 165, 92, 0.42);
  border-radius: 50%;
  background: #fffdf8;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(198, 165, 92, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #2d2418;
}

.site-menu-toggle:hover {
  transform: translateY(-2px);
  background: #fff8e8;
  box-shadow: 0 14px 28px rgba(198, 165, 92, 0.28);
}

.site-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: none;
}

.site-menu-modal.is-open {
  display: block;
}

.site-menu-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 8, 0.5);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.site-menu-modal__panel {
  position: absolute;
  top: 72px;
  right: 24px;
  bottom: 24px;
  width: min(860px, calc(100vw - 48px));
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(198, 165, 92, 0.36);
  background: #fffdf8;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.site-menu-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #f3ead7;
  color: #2d2418;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.site-menu-modal__content {
  overflow-y: auto;
  padding: 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(198, 165, 92, 0.55) transparent;
}

.site-menu-modal .support {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 5;
}

.site-menu-modal .support-menu {
  right: 0;
  bottom: 76px;
  z-index: 6;
}

.site-menu-modal__content::-webkit-scrollbar {
  width: 4px;
}

.site-menu-modal__content::-webkit-scrollbar-track {
  background: transparent;
}

.site-menu-modal__content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e5c97a, #c6a55c);
  border: 0;
  border-radius: 999px;
}

.service-menu-home {
  display: none;
}

.service-menu-home.is-active {
  display: grid;
  gap: 12px;
  padding: 54px 0 0;
}

.service-menu-link {
  min-height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(198, 165, 92, 0.3);
  border-radius: 18px;
  background: #ffffff;
  color: #2d2418;
  font-family: inherit;
  font-size: 20px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.service-menu-link--luxury {
  position: relative;
  overflow: hidden;
  min-height: 68px;
  border-color: rgba(184, 137, 45, 0.46);
  background: linear-gradient(135deg, #bd8e27 0%, #e6c96f 48%, #bd8e27 100%);
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 16px 34px rgba(184, 134, 38, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.service-menu-link--luxury::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -35%;
  width: 28%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 28%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.08) 72%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: telegramButtonShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.service-menu-link--luxury::after {
  content: none;
}

.service-menu-link--luxury:hover,
.service-menu-link--luxury:focus {
  color: #fff;
  text-decoration: none;
}
.service-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-menu-link__arrow {
  font-size: 34px;
  font-weight: 700;
  color: #c7a659;
  line-height: 1;
}
.service-menu-link::after {
  content: "›";
  color: #c6a55c;
  font-size: 30px;
  line-height: 1;
}
.site-menu-modal .service-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-menu-modal .service-menu-link::after {
  content: "›";
  display: block;
  margin-left: auto;
  font-size: 34px;
  font-weight: 800;
  color: #c7a659;
  line-height: 1;
}

.site-menu-modal .service-menu-link[href="/favorites.html"] {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.site-menu-modal .service-menu-link[href="/favorites.html"]::after {
  content: "›" !important;
  display: block !important;
  margin-left: auto !important;
}
.booking-menu-chat-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(199, 166, 89, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, #fffdf7, #f5e7bd);
  color: #6c5323;
  font: 900 14px/1 Montserrat, system-ui, sans-serif;
  box-shadow: 0 12px 28px rgba(45, 36, 24, 0.12);
  cursor: pointer;
  position: relative;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.booking-menu-chat-btn.is-visible { display: inline-flex; }
.booking-menu-chat-btn--header {
  min-height: 38px;
  padding: 9px 14px;
  margin-left: 12px;
  margin-right: 12px;
}

.booking-menu-chat-btn--menu {
  width: 100%;
  min-height: 64px;
  padding: 0 22px;
  justify-content: space-between;
  text-align: left;
  border-radius: 18px;
  background: #fff;
  color: #2d2418;
  box-shadow: none;
  font-size: 20px;
}

.booking-menu-chat-btn.has-unread::after {
  content: none;
  display: none;
}

.booking-chat-bubble,
.booking-menu-chat-btn,
#mobileBarChatBtn {
  position: relative;
}

.booking-chat-unread-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 5;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
}

.booking-chat-bubble.has-unread,
.booking-menu-chat-btn.has-unread,
#mobileBarChatBtn.has-unread {
  animation: bookingChatPulse 1.4s ease-in-out infinite;
}

@keyframes bookingChatPulse {
  0%, 100% {
    box-shadow: 0 12px 28px rgba(47, 107, 79, 0.18);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 16px 38px rgba(229, 57, 53, 0.32);
    transform: translateY(-1px);
  }
}

.booking-chat-new-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  z-index: 12000;
  padding: 16px 22px;
  border-radius: 18px;
  background: #2f6b4f;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  animation: bookingChatToastIn 0.25s ease;
  transform: translate(-50%, -50%);
}

@keyframes bookingChatToastIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.booking-live-chat.is-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(440px, calc(100vw - 32px));
  max-height: min(76vh, 640px);
  z-index: 10080;
  border-radius: 24px;
  border: 1px solid rgba(199, 166, 89, 0.32);
  background: #fffdf7;
  box-shadow: 0 24px 70px rgba(45, 36, 24, 0.22);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-live-chat[aria-hidden="true"] { display: none; }
.booking-live-chat__manager { display: flex; align-items: center; gap: 10px; color: #2d2418; font-weight: 900; }
.booking-live-chat__avatar { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; color: #b58a35; background: #f3ead2; }
.booking-live-chat__manager span { display: block; color: #74685d; font-size: 12px; font-weight: 700; }
.booking-live-chat__tools { margin-left: auto; display: flex; gap: 5px; }
.booking-live-chat__tools button { min-width: 32px; height: 32px; border-radius: 999px; border: 1px solid rgba(199, 166, 89, 0.28); background: #fff8e8; color: #6c5323; }
.booking-live-chat__tools button span { display: none; }
.booking-live-chat__messages { max-height: 260px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; padding: 8px; border-radius: 18px; font-size: 14px; background: rgba(255,255,255,.72); }
.booking-live-chat__message { max-width: 84%; padding: 10px 12px; border-radius: 16px; color: #4f432f; background: #f3ead2; font-weight: 700; line-height: 1.35; }
.booking-live-chat__message--client { align-self: flex-end; background: linear-gradient(135deg, #d9b85a, #c79a2f); color: #fff; }
.booking-live-chat__contact { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.booking-live-chat__contact input,
.booking-live-chat__input { border: 1px solid rgba(199, 166, 89, 0.32); border-radius: 14px; background: #fff; padding: 11px 12px; font: 700 14px/1.25 Montserrat, system-ui, sans-serif; color: #2d2418; }
.booking-live-chat__form { display: grid; grid-template-columns: 1fr 48px; gap: 8px; }
.booking-live-chat__send { border: 0; border-radius: 14px; color: #fff; background: linear-gradient(135deg, #d9b85a, #c79a2f); }

@media (max-width: 768px) {
  body.has-booking-chat .booking-menu-chat-btn--header { display: inline-flex !important; }
  .header__inner .booking-menu-chat-btn--header,
  .listing-sticky-header__inner .booking-menu-chat-btn--header {
    min-height: 38px;
    padding: 8px 12px;
    margin-left: auto !important;
    margin-right: 4px;
    gap: 5px;
    font-size: 13px;
    flex-shrink: 0;
  }
  .header__inner .booking-menu-chat-btn--header i,
  .listing-sticky-header__inner .booking-menu-chat-btn--header i {
    font-size: 13px;
  }
  .header__inner .i18n-language-switcher,
  .listing-sticky-header__inner .i18n-language-switcher {
    margin-left: 0 !important;
    margin-right: 8px !important;
    gap: 6px !important;
    font-size: 14px !important;
    flex-shrink: 0;
  }
  .header__inner {
    gap: 8px;
  }
  .logo {
    flex-shrink: 1;
    min-width: 0;
  }
  .logo img {
    height: 36px;
  }
  .logo__text {
    font-size: 16px;
    white-space: nowrap;
  }
  .booking-chat-new-toast {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    width: min(340px, calc(100vw - 36px));
    text-align: center;
  }
  .booking-live-chat.is-floating { left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); width: auto; max-height: min(72dvh, 560px); border-radius: 22px; }
  .booking-live-chat__contact { grid-template-columns: 1fr; }
}

.service-screen {
  display: none;
}

.service-screen.is-active {
  display: block;
}

.service-screen h2 {
  margin: 0 0 18px;
  color: #2d2418;
  font-size: 34px;
  line-height: 1.1;
}

.service-back-btn {
  min-height: 40px;
  margin-bottom: 14px;
  padding: 0 16px;
  border: 1px solid rgba(198, 165, 92, 0.35);
  border-radius: 999px;
  background: #fffdf8;
  color: #6d5c3f;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.service-section {
  margin-bottom: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(198, 165, 92, 0.24);
  background: #ffffff;
}

.service-section strong {
  display: block;
  margin-bottom: 8px;
  color: #2d2418;
  font-size: 16px;
  font-weight: 900;
}

.service-section p {
  margin: 0 0 10px;
  color: #4d422f;
  font-size: 15px;
  line-height: 1.65;
}

.service-section p:last-child {
  margin-bottom: 0;
}

.service-section.warning {
  background: #fbf3df;
  border-color: rgba(198, 165, 92, 0.5);
}

.service-section.about-hero {
  width: min(50%, 430px);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #f3eee3;
}

.about-photo {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.service-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.service-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2d2418;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.service-contact-card:hover {
  opacity: 0.78;
}

.service-contact-card img,
.service-contact-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin-top: 2px;
}

.service-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2d2418;
  font-size: 24px;
}

.service-contact-card strong {
  display: none;
}

.service-contact-card p {
  margin: 0;
  color: #2d2418;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.service-contact-card[href*="yandex"] p {
  font-weight: 500;
}

.service-map {
  height: 220px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(198, 165, 92, 0.28);
  border-radius: 24px;
  background: #f3eee3;
}

.service-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@keyframes goldPulse {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}


@media (max-width: 768px) {
  .logo {
    gap: 8px;
  }
  .logo__text {
    font-size: 17px;
  }
  .btn-gold {
    padding: 10px 18px;
    font-size: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .site-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-menu-modal__panel {
    top: 18px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: calc(100dvh - 28px);
    width: auto;
    border-radius: 20px;
  }

  .site-menu-modal__close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 31px;
  }

  .site-menu-modal__content {
    padding: 12px 16px 14px;
  }

  .service-menu-home.is-active {
    padding-top: 40px;
    gap: 10px;
  }

  .service-menu-link {
    min-height: 58px;
    border-radius: 16px;
    font-size: 16px;
  }

  .service-screen h2 {
    font-size: 28px;
  }

  .service-contact-grid {
    gap: 14px;
  }

  .about-photo {
    height: 260px;
  }

  .service-section.about-hero {
    width: 100%;
    max-width: 330px;
  }

  .service-section {
    padding: 16px;
  }

  .service-contact-card p {
    font-size: 16px;
  }

  .service-map {
    height: 190px;
  }
}
.listing-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
}

.listing-hero {
  margin-bottom: 28px;
}

.listing-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 16px;
  background: #d7defe;
  color: #5463b8;
  font-weight: 600;
  font-size: 14px;
}

.listing-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.gallery-main,
.gallery-thumb {
  border-radius: 22px;
  overflow: hidden;
  background: #f2f2f2;
}

.gallery-main img,
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-main {
  min-height: 520px;
}

.gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-thumb {
  min-height: 252px;
}

.listing-body {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.listing-content h1 {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.05;
}

.listing-meta {
  font-size: 18px;
  margin-bottom: 24px;
  color: #22314d;
}

.listing-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
  color: #24364f;
}

.booking-card {
  border: 1px solid #e6e6e6;
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
:root {
  --gold: linear-gradient(135deg, #c6a55c, #e5c97a, #c6a55c);
}
.booking-price {
  font-size: 32px;
  font-weight: 800;
  color: #3b6db1;
  margin-bottom: 24px;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.booking-pill {
  border: 1px solid #cfd8ea;
  border-radius: 999px;
  padding: 16px 18px;
  text-align: center;
  font-weight: 600;
  color: #22314d;
}

.booking-breakdown {
  border-top: 1px solid #e7e7e7;
  padding-top: 18px;
}

.breakline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 10px 0;
  font-size: 15px;
}

.breakline.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e7e7e7;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .listing-gallery,
  .listing-body {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    min-height: 360px;
  }

  .gallery-side {
    grid-template-columns: 1fr 1fr;
  }

  .listing-content h1 {
    font-size: 34px;
  }
}
.card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(16, 24, 40, 0.12);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #eef3fb;
}

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

.card-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #17324d;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.card:hover .card-nav {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .card-nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.card-nav-prev {
  left: 10px;
}

.card-nav-next {
  right: 10px;
}

.card-content {
  padding: 28px 18px 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.card-topline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.card-chip {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f6edd2;
  color: #7a6641;
  font-size: 12px;
  font-weight: 700;
}

.card-chip-soft {
  background: #fff8e6;
  color: #8a7447;
}

.card-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: #17324d;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #60708a;
  font-size: 14px;
  margin-bottom: 14px;
}

.card-location {
  margin: 0 0 10px;
  color: #7b889a;
  font-size: 13px;
}

.price {
  font-size: 18px;
  font-weight: 800;
  color: #17324d;
}

.card-actions {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.card-map-button,
.card-view-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 18px;
  border: 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transform: translateY(0) scale(1);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.card-map-button {
  border: 1px solid rgba(198, 165, 92, 0.42);
  background: #fffdf8;
  color: #7a6641;
}

.card-view-button {
  background: linear-gradient(135deg, #c6a55c, #e5c97a, #c6a55c);
  color: #1f1709;
  box-shadow: 0 10px 24px rgba(198, 165, 92, 0.26);
  font-weight: 600;
}

.card:hover .card-view-button,
.card:hover .card-map-button {
  transform: translateY(-2px) scale(1.015);
}

.card-view-button:hover,
.card-view-button:focus-visible {
  background: linear-gradient(135deg, #d7b96b, #f2d985, #d1ad54);
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 16px 32px rgba(198, 165, 92, 0.42);
}

.card-map-button:hover,
.card-map-button:focus-visible {
  border-color: rgba(198, 165, 92, 0.8);
  background: #fff8e6;
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 10px 22px rgba(198, 165, 92, 0.14);
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.map-modal.is-open {
  display: flex;
}

.map-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.62);
}

.map-modal__panel {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  border-radius: 20px;
  background: #fffdf8;
  border: 1px solid rgba(198, 165, 92, 0.45);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  padding: 18px;
}

.map-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #1f1709;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.map-modal__title {
  padding-right: 48px;
  margin-bottom: 14px;
  color: #2d2418;
  font-size: 20px;
  font-weight: 800;
}

.map-modal__frame {
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
  background: #f3ead8;
}

.map-modal__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-modal__link {
  display: inline-flex;
  margin-top: 14px;
  color: #9b7531;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 640px) {
  .card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .map-modal__frame {
    height: 300px;
  }
}
.gallery-main-wrap:hover .gallery-arrow {
  opacity: 1;
}
.location-pill {
  
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c6a55c, #e5c97a, #c6a55c);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(198, 165, 92, 0.24);
  
}
.btn-gold,
.btn-outline,
.booking-select,
.booking-pill,
input,
textarea,
select,
button,
a {
  outline: none;
}

.btn-gold:focus,
.btn-outline:focus,
.booking-select:focus,
.booking-pill:focus,
input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
  outline: none;
  box-shadow: none;
}
.filters-clear-btn {
  height: 56px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
}

.filters-period {
  margin-top: -20px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 700;
  color: #7a6641;
  text-align: center;
}
.gallery-modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.2s ease;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.gallery-modal__panel {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
}

.gallery-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}

.gallery-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  font-size: 30px;
  cursor: pointer;
  z-index: 5;
}

.gallery-modal__arrow--left {
  left: 10px;
}

.gallery-modal__arrow--right {
  right: 10px;
}

.gallery-modal__content {
  display: grid;
  gap: 16px;
}

.gallery-modal__item--full img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.gallery-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-modal__row img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

@media (max-width: 768px) {
  .gallery-modal__row {
    grid-template-columns: 1fr;
  }
}


.calendar-bottom {
  margin-top: 18px;
  padding: 16px 16px 14px;
  border-top: 1px solid rgba(199, 166, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.calendar-period {
  font-size: 14px;
  font-weight: 800;
  color: #7a6641;
  line-height: 1.5;
  padding-left: 2px;
}

.calendar-clear-btn {
  border: 1px solid rgba(199, 166, 89, 0.55);
  background: linear-gradient(135deg, #fffaf0, #f8ecd0);
  color: #5f4c28;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(198, 165, 92, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-right: 2px;
}

.calendar-clear-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(198, 165, 92, 0.2);
}
.results-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 8px;
}

.results-loader__dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.results-loader__dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c6a55c, #e5c97a, #c6a55c);
  box-shadow: 0 8px 18px rgba(198, 165, 92, 0.28);
  animation: loaderPulse 1.2s infinite ease-in-out;
}

.results-loader__dots span:nth-child(2) {
  animation-delay: 0.18s;
}

.results-loader__dots span:nth-child(3) {
  animation-delay: 0.36s;
}

.results-loader__text {
  font-size: 16px;
  font-weight: 700;
  color: #7a6641;
  text-align: center;
}

@keyframes loaderPulse {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.45;
  }
  40% {
    transform: scale(1.15);
    opacity: 1;
  }
}
#dates + .flatpickr-calendar .flatpickr-day.minstay-blocked,
.flatpickr-calendar .flatpickr-day.minstay-blocked {
  background: #f3eee4 !important;
  color: #b9a98a !important;
  border-color: #eadfca !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}


.filters input,
.filters select {
  text-align: center;
  text-align-last: center;
}

.filters input::placeholder {
  text-align: center;
}

#dates {
  text-align: center;
}

@media (max-width: 768px) {
  .filters input,
  .filters select,
  #dates {
    text-align: center;
    text-align-last: center;
  }
}


.hero-contact {
  margin-top: 26px;
  max-width: 520px;
}

.hero-contact__line {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(198, 165, 92, 0),
    rgba(229, 201, 122, 0.95),
    rgba(198, 165, 92, 0)
  );
  box-shadow: 0 6px 18px rgba(198, 165, 92, 0.22);
  margin-bottom: 14px;
}

.hero-contact__phone {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.3px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.hero-contact__apps {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-contact {
    margin-top: 20px;
    max-width: 100%;
  }

  .hero-contact__line {
    margin-bottom: 12px;
  }

  .hero-contact__phone {
    font-size: 20px;
  }

  .hero-contact__apps {
    font-size: 14px;
  }
}


.card {
  overflow: hidden;
}

.card-content {
  padding: 28px 18px 20px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.card-title,
.card-description,
.card-meta,
.card-location,
.price,
.card-contact-block,
.card-contact-phone,
.card-contact-messengers {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: #17324d;
}

.card-description {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #60708a;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #60708a;
  font-size: 14px;
  margin-bottom: 14px;
}

.price {
  font-size: 18px;
  font-weight: 800;
  color: #17324d;
  line-height: 1.3;
}

.card-contact-block {
  width: 100%;
}

.card-contact-phone {
  font-size: 18px;
  font-weight: 900;
  color: #2d2418;
  line-height: 1.2;
}

.card-contact-messengers {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 800;
  color: #8a6d3b;
  line-height: 1.3;
  text-transform: uppercase;
}

.big-banner {
  font-family: 'Montserrat', sans-serif;
}
.big-banner {
  position: relative;
  min-height: 30vh; 
  background: #17130d url('../images/herosite/015.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 26px 20px; 
  margin-top: 0px; 
  
}

.big-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  
}

.big-banner-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.big-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 4px;
  letter-spacing: -1px;
  color: white;
  transform: translateY(0px); 
  margin-left: 0%;
  margin-right: 0%; 
}


.counter-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.counter-big {
  font-size: 58px;
  font-weight: 800;
  color: #D4AF37;
  line-height: 1;
}
@media (max-width: 768px) {
  .counter-big {
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
  }
}

.counter-text {
  font-size: 20px;
  font-weight: 500;
  color: #f0f0f0;
  margin-top: 8px;
}


.big-btn {
  background: #D4AF37;
  color: white;
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(212,175,55,0.4);
  transition: all 0.3s;
}

.big-btn:hover {
  background: #b8962e;
  transform: translateY(-4px);
}

.copyright {
  font-size: 13px;
  opacity: 0.82;
  line-height: 1.45;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .big-banner {
    min-height: 30vh;
    padding: 30px 16px 30px;
    margin-top: 0;
   
  }

  .big-banner-content {
    gap: 12px;
  }

  .big-title {
    font-size: 35px;
  }

  .counter-wrapper {
    flex-direction: column; 
    gap: 4px;
  }

 

  .counter-text {
    font-size: 17px;
    margin-top: 0;
  }


  .big-btn {
    padding: 16px 36px;
    font-size: 17px;
  }

  .copyright {
    font-size: 12px;
  }
}

.form-section {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
    
}
.social-icons a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease;
  overflow: hidden;
}

.social-icons a:hover img {
  transform: scale(1.15);
}

.social-icons img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease; 
  overflow: hidden;
}


.social-icons a:hover img {
  transform: scale(1.15);
}
.social-icons a:active {
  transform: scale(1);
}
@media (max-width: 768px) {
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 16px 0 10px;
  }
  .big-banner {
    max-height: 50vh;
    padding: 30px 16px 30px;
    margin-top: 0;
   
  }
  .social-icons a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 2px;
  flex-wrap: wrap;
}
.phone-center {
  font-size: 18px;
}

.footer-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 4px;
}

.footer-bottom-row .hero-reviews {
  justify-content: flex-start;
  margin: 0;
}

.footer-bottom-row .copyright {
  text-align: right;
  white-space: nowrap;
}

.footer-trust-links {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
}
@media (max-width: 768px) {
  .footer-trust-links {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
}
}
.footer-trust-links a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
}

.footer-trust-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}


.scroll-top-btn {
  right: 30px;
  bottom: 115px;
}

.support {
  right: 30px;
  bottom: 30px;
}


.support-menu {
  right: 0;
  bottom: 78px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


@media (max-width: 768px) {
  .scroll-top-btn {
    right: 15px;
    bottom: 90px;
  }

  .support {
    right: 15px;
    bottom: 25px;
  }

  .support-menu {
    bottom: 62px;
  }
}
.support {
  position: fixed;
  bottom: 25px;
  right: 25px;
}

.support {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  
}



.support-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  bottom: 75px;
  right: 0;
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.support-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}


.support {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10000;
}


.support-toggle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c6a55c, #e5c97a);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.52);
  transition: 0.3s ease;

}

.support-toggle:hover {
  transform: scale(1.08);
}



.help-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  
}

.help-ring circle {
  fill: none;
  stroke: rgba(255,255,255,0.9);
  stroke-width: 3;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: ringDraw 2.2s ease forwards;
  
}



.help-icon {
  position: relative;
  z-index: 2;
  font-size: 26px;
  font-weight: 800;
  color: #111010;

  
  animation: iconRotate 5s linear infinite;
}


.scroll-top-btn {
  position: fixed;
  right: 32px;
  bottom: 115px;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #c6a55c, #e5c97a);
  color: #111;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.28s ease;
  z-index: 10001;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}



.support-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: 0.28s ease;
  z-index: 10010;
}

.support-overlay.active {
  opacity: 1;
  pointer-events: auto;
}



.support {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10020;
  
}


.help-icon {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: helpFloat 2.6s ease-in-out infinite;
  
}

.help-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #070707;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}

@keyframes helpFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.05);
  }
}

@media (max-width: 768px) {
  .support {
    right: 15px;
    bottom: 20px;
  }

  .support-toggle {
    width: 54px;
    height: 54px;
  }

  .help-icon {
    width: 24px;
    height: 24px;
  }
}


.support-menu {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: 0.28s ease;
}

.support-menu.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.support-menu a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  
  background: rgba(255, 255, 255, 0.18);

  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.support-menu a:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
  background: rgba(255, 255, 255, 0.92);
}

.support-menu a img {
  width: 99%;
  height: 99%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}


.support-menu a.telegram img,
.support-menu a.whatsapp img,
.support-menu a.max img {
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .support-menu {
    bottom: 66px;
  }

  .support-menu a {
    width: 48px;
    height: 48px;
  }

  .support-menu a img {
    width: 80%;
    height: 80%;
  }
}
@media (max-width: 768px) {
  .mobile-booking-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 10030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 253, 247, 0.96);
    border: 1px solid rgba(199, 166, 89, 0.24);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.25s ease;
  }

  .mobile-booking-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-booking-bar__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-booking-bar__price {
    font-size: 18px;
    font-weight: 800;
    color: #9b7531;
    line-height: 1.1;
  }

  .mobile-booking-bar__dates {
    font-size: 12px;
    color: #6d5c3f;
    line-height: 1.3;
  }

  .mobile-booking-bar__btn {
    flex-shrink: 0;
    border: none;
    border-radius: 999px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #c6a55c, #e5c97a, #c6a55c);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 12px 24px rgba(198, 165, 92, 0.22);
  }
}
.mobile-calendar-modal {
  display: none;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    position: fixed !important;
    right: 16px !important;
    left: auto !important;
    bottom: 88px !important;
    width: 55px !important;
    height: 55px !important;
    font-size: 20px !important;
    transform: translateY(20px);
    z-index: 10001 !important;
  }

  .scroll-top-btn.show {
    transform: translateY(0) !important;
  }

  .support {
    position: fixed !important;
    right: 15px !important;
    left: auto !important;
    bottom: 20px !important;
    z-index: 10020 !important;
  }
}
.mobile-filters,
.mobile-main-calendar,
.mobile-filters-modal {
  display: none;
}

@media (max-width: 768px) {
  .filters {
    display: none !important;
  }

  .mobile-filters,
  .mobile-main-calendar,
  .mobile-filters-modal {
    display: none;
  }
  
  
}


.hero {
  position: relative;
  overflow: visible;
}

.properties {
  position: relative;
  z-index: 5;
}

.filters {
  display: grid;
  grid-template-columns: 1.15fr 1.45fr 1.15fr 1.15fr;
  gap: 16px;
  position: relative;
  z-index: 20;
  margin-top: -58px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.98);
  padding: 22px;
  border-radius: 28px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.filters input,
.filters select {
  width: 100%;
  min-width: 0;
  height: 60px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid #cdb889;
  font-size: 16px;
  font-weight: 700;
  color: #2d2418;
  background: #fffdf8;
  box-sizing: border-box;
}

.filters input::placeholder {
  color: #8b7a5a;
  font-weight: 600;
}

#dates {
  text-align: center;
}

.filters-search-row {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.search-btn {
  min-width: 220px;
  min-height: 56px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  padding: 0 28px;
}



.mobile-filters,
.mobile-main-calendar,
.mobile-filters-modal {
  display: none;
}

@media (max-width: 768px) {
  .filters {
    display: none !important;
  }

  .mobile-filters {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 20;
    margin-top: -42px;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.98);
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.14);
  }

  .mobile-filters__dates,
.mobile-filters__row select,
.mobile-filters__open,
.mobile-filters__search {
  width: 100%;
  min-height: 56px;
  border-radius: 22px;
  font-size: 12px;
  font-weight: 700;
  box-sizing: border-box;
  text-align: center;
  text-align-last: center;
  padding-left: 14px;
  padding-right: 14px;
}
  #mobileFiltersClear {
    font-weight: 700;
    border-radius: 22px;
  }
  .mobile-sort-buttons button {
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  
  .mobile-sort-buttons button:active {
    transform: scale(0.98);
  }
  .mobile-filters__dates {
    border: 1px solid #cdb889;
    background: #fffdf8;
    color: #2d2418;
    padding: 0 16px;
    text-align: left;
    display: flex;
    align-items: center;
  }

  .mobile-filters__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    
  }

  .mobile-filters__row select {
    border: 1px solid #cdb889;
    background: #fffdf8;
    color: #2d2418;
    padding: 0 16px;
    height: 50px;
    border-radius: 22px;
  
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  
    text-align: center;
    text-align-last: center;
  }

  .mobile-filters__search {
    margin-top: 5px;
    
  }

  .mobile-filters__primary-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: 8px;
    align-items: stretch;
  }

  .mobile-filters__primary-actions .mobile-filters__search {
    margin-top: 5px;
  }

  .mobile-main-calendar,
  .mobile-filters-modal {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10060;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .mobile-main-calendar.is-open,
  .mobile-filters-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-main-calendar__overlay,
  .mobile-filters-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,16,10,0.42);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  

  .mobile-main-calendar__header,
  .mobile-filters-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }

  .mobile-main-calendar__header h3,
  .mobile-filters-modal__header h3 {
    margin: 0;
    font-size: 22px;
    color: #2d2418;
  }

  .mobile-main-calendar__header button,
  .mobile-filters-modal__header button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #f7edd0;
    font-size: 26px;
    color: #2d2418;
  }

  .mobile-main-calendar__summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    background: #fffaf1;
    border: 1px solid rgba(199,166,89,0.18);
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #6d5c3f;
  }

  .mobile-main-calendar__actions,
  .mobile-filters-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-filters-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .mobile-filters-field label,
.mobile-filters-bedrooms label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #6d5c3f;

  text-align: center; 
}

.mobile-filters-sort {
  margin-bottom: 14px;
}

.mobile-filters-sort label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #6d5c3f;
  text-align: center;
}

.mobile-sort-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-sort-buttons button {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #cdb889;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 700;
  color: #2d2418;
  background: #fffdf8;
  cursor: pointer;
  transition: 0.2s ease;
}

.mobile-sort-buttons button.is-active {
  background: linear-gradient(135deg, #c6a55c, #e5c97a, #c6a55c);
  color: #2d2418;
  border-color: #c6a55c;
  box-shadow: 0 8px 18px rgba(198, 165, 92, 0.22);
}

  .mobile-filters-field input {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid #cdb889;
    padding: 0 12px;
    box-sizing: border-box;
    font-size: 15px;
  }

  .mobile-filters-bedrooms {
    margin-bottom: 14px;
  }

  .mobile-filters-bedrooms__stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 56px;
    border: 1px solid #cdb889;
    border-radius: 16px;
    background: #fffdf8;
  }

  .mobile-filters-bedrooms__stepper button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #f7edd0;
    font-size: 24px;
  }

  .mobile-filters-bedrooms__stepper span {
    font-size: 18px;
    font-weight: 800;
    color: #2d2418;
  }
  #mobileFiltersClear {
    font-weight: 800;
  }

}
.results-empty-hint {
  text-align: center;
  padding: 28px 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #030303;

  max-width: 520px;   
  margin: 40px auto;  
}
.results-empty-hint {
  grid-column: 1 / -1;     
  justify-self: center;    
}

.mobile-filters__search.btn-gold,
.mobile-filters__open.btn-gold {
  width: 100%;
  min-height: 50px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-contact__phone,
.phone-center {
  color: #ffffff;
  text-decoration: none;
}

.hero-contact__phone:hover,
.hero-contact__phone:active,
.hero-contact__phone:visited {
  color: #ffffff;
  text-decoration: none;
}

.phone-center:hover,
.phone-center:active,
.phone-center:visited {
  color: #ffffff;
  text-decoration: none;
}
#dates {
  text-align: center !important;
  text-align-last: center !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

#dates::placeholder {
  text-align: center;
}
.mobile-filters__dates {
  justify-content: center;
  text-align: center;
}

#mobileDatesBtnText {
  width: 100%;
  text-align: center;
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.price {
  margin-top: 8px;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.price-main {
  font-size: 20px;
  font-weight: 800;
  color: #c6a55c;
  line-height: 1.1;
}

.price-note {
  font-size: 13px;
  font-weight: 600;
  color: #8a6d3b;
}

.price-separator {
  margin: 0 4px;
  color: #cbb57c;
  font-size: 14px;
}

.price-total {
  font-size: 18px;
  font-weight: 800;
  color: #6d5c3f;
}

.price-total-note {
  font-size: 14px;
  color: #9b927f;
}

.hero-reviews {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 10px;
  flex-wrap: wrap;
}

.hero-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px; 
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  transition: 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);

  width: auto;        
  min-width: unset;   
}

.hero-review-badge:hover {
  transform: translateY(-3px);
}

.hero-review-badge img {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.hero-review-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.hero-review-title {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin: 0 0 4px;
}

.hero-review-rating {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-review-rating .rating-value {
  color: #111;
  font-weight: 700;
}

.hero-review-rating .stars {
  color: #D4AF37;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer-bottom-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .footer-bottom-row .hero-reviews {
    justify-content: center;
  }

  .footer-bottom-row .copyright {
    text-align: center;
    white-space: normal;
  }

  .footer-trust-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-reviews {
    gap: 10px;
    margin: 14px 0 8px;
  }

  .hero-review-badge {
    min-width: unset;
    width: 100%;
    max-width: 290px;
    padding: 10px 14px;
  }

  .hero-review-badge img {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }
}
@media (max-width: 768px) {

  .hero-reviews {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap; 
  }

  .hero-review-badge {
    flex: 1;                 
    max-width: 160px;        
    padding: 6px 8px;        
    gap: 6px;
  }

  .hero-review-title {
    font-size: 10px;
  }

  .hero-review-rating {
    font-size: 12px;
  }

  .hero-review-badge img {
    width: 18px;
    height: 18px;
  }

  .stars {
    letter-spacing: 0.5px;
  }

}
.desktop-filters-modal {
  position: fixed;
  inset: 0;
  z-index: 10080;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s ease;
}

.desktop-filters-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.desktop-filters-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,16,10,0.42);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.desktop-filters-modal__panel {
  position: relative;
  z-index: 2;
  width: min(560px, 92vw);
  margin: 10vh auto 0;
  padding: 20px;
  border-radius: 24px;
  background: #fffdf7;
  border: 1px solid rgba(199,166,89,0.24);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  box-sizing: border-box;
}

.desktop-filters-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.desktop-filters-modal__header h3 {
  margin: 0;
  font-size: 24px;
  color: #2d2418;
}

#desktopFiltersModalClose {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f7edd0;
  font-size: 26px;
  color: #2d2418;
  cursor: pointer;
}

.desktop-filters-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.desktop-filters-field label,
.desktop-filters-bedrooms label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #6d5c3f;
}

.desktop-filters-field input {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid #cdb889;
  padding: 0 14px;
  box-sizing: border-box;
  font-size: 15px;
  background: #fffdf8;
}

.desktop-filters-bedrooms {
  margin-bottom: 18px;
}

.desktop-filters-bedrooms__stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  border: 1px solid #cdb889;
  border-radius: 18px;
  background: #fffdf8;
}

.desktop-filters-bedrooms__stepper button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f7edd0;
  font-size: 24px;
  cursor: pointer;
}

.desktop-filters-bedrooms__stepper span {
  font-size: 20px;
  font-weight: 800;
  color: #2d2418;
}

.desktop-filters-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}


.desktop-advanced-filters {
  display: none;
  grid-template-columns: auto 1fr 1fr auto auto;
  gap: 14px;
  align-items: end;
  margin-top: 12px;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  border: 1px solid rgba(199, 166, 89, 0.18);
}

.desktop-advanced-filters__label {
  font-size: 15px;
  font-weight: 800;
  color: #7a6641;
  padding-bottom: 14px;
  white-space: nowrap;
}

.desktop-advanced-filters__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.desktop-advanced-filters__field label {
  font-size: 13px;
  font-weight: 700;
  color: #6d5c3f;
}

.desktop-advanced-filters__field input {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid #cdb889;
  font-size: 15px;
  font-weight: 700;
  color: #2d2418;
  background: #fffdf8;
  box-sizing: border-box;
}

.desktop-advanced-filters__field--bedrooms {
  min-width: 220px;
}

.desktop-bedrooms-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid #cdb889;
  border-radius: 18px;
  background: #fffdf8;
}

.desktop-bedrooms-stepper button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f7edd0;
  font-size: 22px;
  color: #2d2418;
  cursor: pointer;
}

.desktop-bedrooms-stepper span {
  min-width: 24px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #2d2418;
}

.desktop-advanced-filters__reset {
  min-height: 54px;
  align-self: end;
  white-space: nowrap;
}



.mobile-search-actions {
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 1px;
}

.mobile-search-actions .mobile-filters__search {
  width: 100%;
  min-height: 40px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.12s ease, box-shadow 0.12s ease;
  transform: scale(1); 
}

.mobile-search-actions .mobile-filters__search:active {
  transform: scale(0.96);
}




@media (max-width: 992px) {
  .desktop-advanced-filters {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-advanced-filters__label {
    grid-column: 1 / -1;
    padding-bottom: 0;
  }

  .desktop-advanced-filters__field--bedrooms {
    min-width: 0;
  }

  .desktop-advanced-filters__reset {
    width: 100%;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .desktop-advanced-filters {
    display: none !important;
  }

  .mobile-search-actions {
    display: grid;
  }
}

#desktopAdvancedFilters {
  display: grid;
  grid-template-columns: 1fr 1fr 180px 180px;
  grid-template-rows: auto 58px;
  gap: 10px 16px;
  align-items: center;
  margin: 10px 0 25px;
}


#desktopAdvancedFilters .daf-title {
  font-size: 16px;
  font-weight: 800;
  color: #7a6641;
  text-align: center;
}


#desktopAdvancedFilters .daf-title-price {
  grid-column: 1 / span 2;
}

#desktopAdvancedFilters .daf-title-rooms {
  grid-column: 3;
}


#desktopAdvancedFilters #desktopPriceFrom {
  grid-column: 1;
}

#desktopAdvancedFilters #desktopPriceTo {
  grid-column: 2;
}

#desktopAdvancedFilters .desktop-bedrooms-stepper {
  grid-column: 3;
}

#desktopAdvancedFilters .btn-share-search {
  grid-column: 4;
  align-self: center;
  justify-self: end;
  width: 180px;
  height: 60px;
}


#desktopAdvancedFilters input {
  height: 58px;
  padding: 0 18px;
  border-radius: 24px;
  border: 1px solid #cdb889;
  font-size: 16px;
  font-weight: 600;
  background: #fffdf8;
  text-align: center;
}


#desktopAdvancedFilters .desktop-bedrooms-stepper {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid #cdb889;
  background: #fffdf8;
}

#desktopAdvancedFilters .desktop-bedrooms-stepper button {
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
}

#desktopAdvancedFilters .desktop-bedrooms-stepper span {
  font-weight: 700;
}


@media (max-width: 992px) {
  #desktopAdvancedFilters {
    display: none !important;
  }
}

.btn-outline,
.calendar-clear-btn,
#mobileFiltersClear,
#mobileResetAllBtn {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(199, 166, 89, 0.45);
  background: #fffdf8;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  transition: transform 0.14s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-outline:hover,
.calendar-clear-btn:hover,
#mobileFiltersClear:hover,
#mobileResetAllBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(198, 165, 92, 0.14);
}

.btn-outline:active,
.calendar-clear-btn:active,
#mobileFiltersClear:active,
#mobileResetAllBtn:active {
  transform: scale(0.98);
  box-shadow: none;
}

.btn-outline:focus,
.calendar-clear-btn:focus,
#mobileFiltersClear:focus,
#mobileResetAllBtn:focus {
  outline: none;
  box-shadow: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 26px 0 8px;
}

.pagination__btn {
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(199, 166, 89, 0.35);
  background: #fffdf8;
  color: #2d2418;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.pagination__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(198, 165, 92, 0.12);
}

.pagination__btn.is-active {
  background: linear-gradient(135deg, #c6a55c, #e5c97a, #c6a55c);
  border-color: transparent;
  color: #111;
}

.pagination__btn:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
  transform: none;
}
.main-search-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-reset {
  background: #ffffff;
  color: #333;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reset:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}
.btn-reset {
  opacity: 0.8;
}
.btn-reset:hover {
  opacity: 1;
}
.search-note-box {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 18px 22px;

  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(250, 245, 235, 0.95)
  );

  border: 1px solid rgba(198, 165, 92, 0.35);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 6px 20px rgba(198, 165, 92, 0.12);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-note-box__text {
  color: #222;
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}
.search-note-link {
  color: #c6a55c;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.search-note-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #c6a55c, #e5c97a);
}

.search-note-link:hover {
  opacity: 0.8;
}
.search-note-box {
  width: min(calc(100% - 40px), 1400px);
  max-width: 1400px;
  margin: 50px auto 50px;
  padding: 30px 28px;
  box-sizing: border-box;

  text-align: center;

  border-radius: 20px;
  border: 1px solid rgba(198, 165, 92, 0.35);

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.95),
    rgba(250,245,235,0.95)
  );

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05),
    0 6px 20px rgba(198,165,92,0.12);
}

.search-note-box.is-grid-width {
  width: min(calc(100% - 40px), 1400px);
  max-width: 1400px;
}


.search-note-box__title {
  font-size: 20px;
  font-weight: 700;
  color: #7a6641;
  margin-bottom: 6px;
}


.search-note-box__subtitle {
  font-size: 16px;
  color: #7a6641;
}

.search-note-box.has-dates .search-note-box__title,
.search-note-box.has-dates .search-note-box__subtitle {
  display: inline;
  font-size: 18px;
  line-height: 1.45;
}

.search-note-box.has-dates .search-note-box__title {
  margin: 0 6px 0 0;
}

.search-note-box.has-dates .search-note-box__subtitle {
  margin: 0;
}


.search-note-btn {
  margin-top: 18px;
}

.btn-small {
  padding: 9px 20px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .search-note-box {
    width: 100%;
    max-width: 100%;
    margin: 24px 0 32px;
    padding: 16px;
  }

  .search-note-box__title {
    font-size: 16px;
  }

  .search-note-box__subtitle {
    font-size: 13px;
  }
}
.search-note-box__title {
  margin-bottom: 12px;
}

.search-note-box__subtitle {
  margin-bottom: 10px;
}

.search-note-btn {
  margin-top: 18px;
}
@media (max-width: 768px) {
  .search-note-box {
    padding: 20px 18px;
  }

  .search-note-box__title {
    margin-bottom: 10px;
  }

  .search-note-box__subtitle {
    margin-bottom: 8px;
  }

  .search-note-btn {
    margin-top: 14px;
  }
}

@media (max-width: 768px) {
  .search-note-box,
  .search-note-box.is-grid-width,
  .telegram-section .container {
    width: min(calc(100% - 48px), 680px) !important;
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
  }

  .telegram-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .telegram-inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
}
.resultsPaginationTop {
  margin-bottom: 18px;
}
.search-note-link {
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.search-note-link:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .mobile-filters__search,
  .mobile-search-actions .mobile-filters__search {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(198, 165, 92, 0.28);
  }

  .mobile-search-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  .mobile-filters {
    gap: 8px;
  }
}
.booking-note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.35;
  color: #555;
  text-align: center;
}

.booking-note strong {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 800;
  color: #111;
}

.booking-note--modal {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.booking-note--mobile {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.2;
  color: #666;
}

.booking-note--mobile strong {
  font-size: 12px;
  font-weight: 800;
}
.booking-note--modal {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);

  width: 100%;
  text-align: center !important;   

  font-size: 12px;
  color: #666;
  line-height: 1.15;               
}

.booking-note--modal strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;

  margin: 0;                       
  padding: 0;
}
.booking-note--modal {
  margin-top: 6px;       
  margin-bottom: 0;    
  padding-top: 6px;     
  padding-bottom: 0;     

  border-top: 1px solid rgba(0,0,0,0.08);

  width: 100%;
  text-align: center;

  font-size: 12px;
  color: #666;
  line-height: 1.15;
}

.booking-note--modal strong {
  margin: 0;
  padding: 0;
}
.booking-modal__panel .booking-note.booking-note--modal {
  display: block !important;
  width: 100% !important;
  margin: 6px 0 0 0 !important;
  padding: 6px 0 0 0 !important;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center !important;
  font-size: 12px;
  line-height: 1.12;
  color: #666;
}

.booking-modal__panel .booking-note.booking-note--modal strong {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
}
@media (max-width: 768px) {
  .mobile-booking-bar .booking-note--modal {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .mobile-main-calendar__panel {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 16px 18px 20px !important;
    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  #mobileMainCalendarHolder {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  #mobileMainCalendarHolder .flatpickr-calendar {
    margin: 0 auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  #mobileMainCalendarHolder .flatpickr-innerContainer,
  #mobileMainCalendarHolder .flatpickr-rContainer,
  #mobileMainCalendarHolder .flatpickr-days,
  #mobileMainCalendarHolder .dayContainer {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 768px) {

  #mobileMainCalendarHolder {
    max-width: 100% !important;
  }

  #mobileMainCalendarHolder .flatpickr-calendar {
    width: 100% !important;
    max-width: 100% !important;
  }

  #mobileMainCalendarHolder .flatpickr-innerContainer,
  #mobileMainCalendarHolder .flatpickr-rContainer,
  #mobileMainCalendarHolder .flatpickr-days {
    width: 100% !important;
    max-width: 100% !important;
  }

  #mobileMainCalendarHolder .dayContainer {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
  }

  #mobileMainCalendarHolder .flatpickr-day {
    width: 100% !important;
    max-width: none !important;
    height: 42px !important;
    line-height: 42px !important;
  }

  
  #mobileMainCalendarHolder .flatpickr-weekdaycontainer {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
  }

  #mobileMainCalendarHolder .flatpickr-weekday {
    width: 100% !important;
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .mobile-main-calendar__summary {
    width: 100% !important;
    max-width: 307.875px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .mobile-main-calendar__actions {
    width: 100% !important;
    max-width: 307.875px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
  #mobileMainCalendarClose {
    margin-left: auto !important;
    display: block !important;
  }
  .mobile-main-calendar__header {
    display: flex;
    align-items: center;
  }
  
  #mobileMainCalendarClose {
    margin-left: auto;
  }
  .mobile-main-calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .mobile-main-calendar__header {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
  }

  #mobileMainCalendarClose {
    margin-left: auto !important;
  }
}
@media (max-width: 768px) {

  .pagination {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 6px !important;
    padding: 6px 10px !important;
  }

  .pagination button,
  .pagination .pagination-btn {
    min-width: 32px !important;
    height: 32px !important;
    flex: 0 0 auto !important;
  }

  .pagination .pagination-dots {
    display: flex;
    align-items: center;
    padding: 0 6px;
    flex: 0 0 auto;
  }
}
@media (max-width: 768px) {
  .pagination {
    flex-wrap: nowrap !important;
    gap: 6px !important;
    overflow-x: visible !important;
  }

  .pagination__btn {
    min-width: 34px !important;
    height: 34px !important;
    padding: 0 8px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    flex: 0 0 auto !important;
  }

  .pagination__dots {
    height: 34px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #7a6641;
    flex: 0 0 auto;
  }
}


.card {
  min-height: 0;
}

.card-content {
  display: grid;
  grid-template-rows: 38px 54px 68px 30px 52px 54px;
  row-gap: 0;
  align-content: start;
  height: 100%;
  min-height: 304px;
  padding-bottom: 8px;
}

.card-topline {
  grid-row: 1;
  height: 38px;
  overflow: hidden;
}

.card-title {
  grid-row: 2;
}

.card-description {
  grid-row: 3;
}

.card-meta {
  grid-row: 4;
}

.card .price {
  grid-row: 5;
  align-self: start;
  min-height: 52px;
  margin-top: 4px;
  margin-bottom: 0;
  overflow: hidden;
}

.card-actions {
  grid-row: 6;
}

.card-title,
.card-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-title {
  min-height: 48px;
  max-height: 48px;
  height: auto;
  overflow: hidden;
  display: -webkit-box;

  -webkit-box-orient: vertical;  
  -webkit-line-clamp: 2;
}

.card-description {
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  margin: 0;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.card-meta {
  min-height: 24px;
  margin-bottom: 0;
  align-content: start;
  font-weight: 600;
}

.card-actions {
  align-self: end;
  margin-top: 0;
  padding-top: 0;
  min-height: 54px;
}

.card-map-button,
.card-view-button {
  height: 48px;
  min-height: 48px;
}

.card.no-price .card-content {
  grid-template-rows: 38px 54px 68px 30px 54px;
  min-height: 250px;
}

.card.no-price .card-actions {
  grid-row: 5;
}

@media (max-width: 640px) {
  .card-content {
    grid-template-rows: 36px 44px 60px 26px 48px 52px;
    min-height: 266px;
    padding-bottom: 8px;
  }

  .card-title {
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    font-size: 18px;
  }

  .card-description {
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .card-actions {
    min-height: 52px;
    padding-top: 0;
  }

  .card-map-button,
  .card-view-button {
    height: 44px;
    min-height: 44px;
  }

  .card.no-price .card-content {
    grid-template-rows: 36px 44px 60px 26px 52px;
    min-height: 218px;
  }
}
.card-chip {
  display: inline-flex;
  align-items: center;      
  justify-content: center;  
  text-align: center;       
  padding: 7px 14px;
}
body.luxury-page .listing-card-footer {
  width: 100%;
  max-width: none;
  margin: 48px 0 0;
  padding: 0;
}

body.luxury-page .listing-card-footer__inner {
  border: 1px solid rgba(199, 166, 89, 0.24);
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdf7 0%, #fff8ea 100%);
  padding: 24px 26px;
}

.booking-modal,
.booking-modal__panel,
.booking-live-chat,
.booking-live-chat__messages,
.site-form-modal,
.site-form-modal__panel,
.mobile-calendar-modal,
.mobile-calendar-modal__panel,
.map-modal,
.map-modal__panel {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.booking-modal::-webkit-scrollbar,
.booking-modal__panel::-webkit-scrollbar,
.booking-live-chat::-webkit-scrollbar,
.booking-live-chat__messages::-webkit-scrollbar,
.site-form-modal::-webkit-scrollbar,
.site-form-modal__panel::-webkit-scrollbar,
.mobile-calendar-modal::-webkit-scrollbar,
.mobile-calendar-modal__panel::-webkit-scrollbar,
.map-modal::-webkit-scrollbar,
.map-modal__panel::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.booking-header-chat-slot {
  margin-left: auto;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.booking-menu-chat-btn--header {
  min-height: 38px;
  padding: 9px 14px;
  margin-left: 12px;
  margin-right: 12px;
  white-space: nowrap;
}
.header__inner #bookingHeaderChatSlot,
.listing-sticky-header__inner #bookingHeaderChatSlot {
  margin-left: auto;
}

.header__inner .i18n-language-switcher,
.listing-sticky-header__inner .i18n-language-switcher {
  margin-left: 14px;
}

.header__inner .booking-header-chat-slot,
.listing-sticky-header__inner .booking-header-chat-slot {
  display: inline-flex;
  align-items: center;
}
#bookingHeaderChatSlot {
  margin-left: auto !important;
  display: inline-flex !important;
  align-items: center !important;
}

.i18n-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 14px !important;
  margin-right: 24px;
  color: inherit;
  font: 800 15px/1 Montserrat, system-ui, sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
  position: relative;
  z-index: 100001;
  pointer-events: auto;
}

.i18n-language-switcher a {
  color: inherit;
  text-decoration: none;
  opacity: .5;
  padding: 10px 6px;
  position: relative;
  z-index: 100002;
  pointer-events: auto;
  cursor: pointer;
}

.i18n-language-switcher a.is-active,
.i18n-language-switcher a[aria-current="true"] {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-actions .i18n-language-switcher {
  margin-left: 0 !important;
}

.header__inner > .i18n-language-switcher,
.listing-sticky-header__inner > .i18n-language-switcher {
  margin-left: auto !important;
}
.header .header-actions {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.header .header-actions #bookingHeaderChatSlot {
  order: -1 !important;
  margin-left: 0 !important;
  display: inline-flex !important;
}

.listing-sticky-header__inner #bookingHeaderChatSlot {
  margin-left: auto !important;
  display: inline-flex !important;
  align-items: center !important;
}

.listing-sticky-header__inner .i18n-language-switcher {
  margin-left: 14px !important;
}

.booking-live-chat__avatar {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  border-radius: 999px !important;
  overflow: hidden !important;
}

.booking-live-chat__avatar img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.booking-live-chat__tools {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.booking-live-chat__tools [data-chat-collapse] {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.booking-live-chat__tools [data-chat-collapse] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding: 0 !important;
}

.booking-live-chat__tools [data-chat-collapse] i {
  display: block !important;
  line-height: 1 !important;
  margin: 0 !important;
}
.booking-live-chat__contact {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr) !important;
  gap: 12px !important;
  width: 100% !important;
}

.booking-live-chat__contact input {
  min-width: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.header .header-actions,
.luxury-main-header .header-actions {
  min-width: 330px !important;
  justify-content: flex-end !important;
}

.header .luxury-header-nav,
.luxury-main-header .luxury-header-nav {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.i18n-language-switcher::before {
  content: "";
  display: inline-flex;
  width: 118px;
  height: 48px;
  margin-right: 14px;
  vertical-align: middle;
}

#bookingHeaderChatSlot + .i18n-language-switcher::before {
  display: none;
}


.header__inner,
.luxury-header,
.listing-sticky-header__inner {
  position: relative !important;
}

.luxury-header-nav {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 5 !important;
}

.header-actions,
.header__actions,
.luxury-header-actions {
  margin-left: auto !important;
  position: relative !important;
  z-index: 10 !important;
}


body:not(.luxury-page) .header-actions {
  min-width: 330px !important;
  justify-content: flex-end !important;
}

body:not(.luxury-page) .header-actions #bookingHeaderChatSlot {
  width: 118px !important;
  min-width: 118px !important;
  margin: 0 14px 0 0 !important;
}

@media (max-width: 768px) {
  body:not(.luxury-page) .header-actions {
    min-width: 0 !important;
    width: auto !important;
    margin-left: auto !important;
    gap: 8px !important;
  }

  body:not(.luxury-page) .header-actions #bookingHeaderChatSlot {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  

  .header__inner {
    gap: 8px !important;
  }

  .logo {
    gap: 8px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }

  .logo__text {
    font-size: 16px !important;
    white-space: nowrap !important;
  }

  .site-menu-toggle {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 42px !important;
    height: 42px !important;
  }
}
.booking-live-chat__manager strong,
.booking-live-chat.is-floating .booking-live-chat__manager strong {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.booking-live-chat__manager strong::after,
.booking-live-chat.is-floating .booking-live-chat__manager strong::after {
  content: "" !important;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #43c466;
  box-shadow: 0 0 0 4px rgba(67, 196, 102, 0.18);
  flex: 0 0 12px;
}


.booking-live-chat__hint {
  font-size: 14px !important;
  line-height: 1.45 !important;
}

@media (min-width: 993px) {
  body:not(.luxury-page) .header__inner {
    position: relative !important;
  }

  body:not(.luxury-page) .header-nav {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    z-index: 3 !important;
  }

  body:not(.luxury-page) .logo,
  body:not(.luxury-page) .site-menu-toggle,
  body:not(.luxury-page) .i18n-language-switcher,
  body:not(.luxury-page) #bookingHeaderChatSlot {
    position: relative !important;
    z-index: 4 !important;
  }
}

@media (max-width: 768px) {
  body:not(.luxury-page) .header__inner {
    flex-wrap: nowrap !important;
    gap: 6px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body:not(.luxury-page) .logo {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100vw - 186px) !important;
    gap: 6px !important;
    overflow: hidden !important;
  }

  body.has-booking-chat:not(.luxury-page) .logo {
    max-width: calc(100vw - 275px) !important;
  }

  body:not(.luxury-page) .logo img {
    width: auto !important;
    height: 32px !important;
    flex: 0 0 auto !important;
  }

  body:not(.luxury-page) .logo__text {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
  }

  body:not(.luxury-page) #bookingHeaderChatSlot {
    margin-left: 0 !important;
    flex: 0 0 auto !important;
  }

  body:not(.luxury-page) .header__inner .booking-menu-chat-btn--header {
    min-height: 34px !important;
    padding: 7px 10px !important;
    margin: 0 2px !important;
    gap: 4px !important;
    font-size: 12px !important;
  }

  body:not(.luxury-page) .header__inner .i18n-language-switcher {
    margin: 0 2px !important;
    gap: 4px !important;
    font-size: 13px !important;
  }

  body:not(.luxury-page) .site-menu-toggle {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
  }

  body.home-page:not(.luxury-page) .card-description {
    display: none !important;
  }
}

@media (max-width: 390px) {
  body:not(.luxury-page) .header__inner .booking-menu-chat-btn--header {
    padding: 7px 9px !important;
    font-size: 11px !important;
  }

  body:not(.luxury-page) .logo__text {
    font-size: 13px !important;
  }

  body.has-booking-chat:not(.luxury-page) .logo {
    max-width: calc(100vw - 262px) !important;
  }
}


body:not(.luxury-page) .card {
  overflow: hidden !important;
  border-radius: 34px !important;
  background: #fff !important;
  box-shadow: 0 22px 56px rgba(19, 36, 58, 0.12) !important;
}

body:not(.luxury-page) .card-media {
  border-radius: 34px 34px 0 0 !important;
  overflow: hidden !important;
}

body:not(.luxury-page) .card-img,
body:not(.luxury-page) .card-media img {
  border-radius: 0 !important;
}

body:not(.luxury-page) .card-content {
  padding: 22px 24px 24px !important;
  gap: 12px !important;
  min-height: 0 !important;
}

body:not(.luxury-page) .card-topline {
  margin: 0 !important;
  gap: 10px !important;
}

body:not(.luxury-page) .card-chip {
  padding: 10px 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fff8e8, #f7e8ba) !important;
  color: #8b6827 !important;
  font-weight: 800 !important;
}

body:not(.luxury-page) .card-title {
  margin: 0 !important;
  color: #102844 !important;
  font-size: clamp(22px, 2vw, 32px) !important;
  line-height: 1.12 !important;
  font-weight: 000 !important;
}



body:not(.luxury-page) .card-features {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px 18px !important;
  margin: 0 !important;
  color: #536176 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

body:not(.luxury-page) .card-features span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

body:not(.luxury-page) .card-features svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
  color: #6f7b8f;
}

body:not(.luxury-page) .card .price {
  margin: 2px 0 0 !important;
}

body:not(.luxury-page) .price-line {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: baseline !important;
  gap: 6px 14px !important;
}

body:not(.luxury-page) .price-main {
  color: #d0a83d !important;
  font-size: clamp(24px, 2.4vw, 38px) !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

body:not(.luxury-page) .price-total {
  color: #5a421d !important;
  font-size: clamp(21px, 2vw, 34px) !important;
  font-weight: 900 !important;
}

body:not(.luxury-page) .price-note,
body:not(.luxury-page) .price-total-note,
body:not(.luxury-page) .price-separator {
  color: #5c5142 !important;
  font-weight: 800 !important;
}

body:not(.luxury-page) .card-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin-top: 4px !important;
}

body:not(.luxury-page) .card-map-button,
body:not(.luxury-page) .card-view-button {
  min-height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  border-radius: 18px !important;
  font-weight: 900 !important;
}

body:not(.luxury-page) .card-map-button {
  border: 1px solid rgba(198, 165, 92, 0.45) !important;
  background: #fffdf8 !important;
  color: #6f5420 !important;
}

body:not(.luxury-page) .card-view-button {
  border: 1px solid transparent !important;
  background: linear-gradient(135deg, #d9bd67, #caa33c) !important;
  color: #111 !important;
}

body:not(.luxury-page) .card-map-button svg,
body:not(.luxury-page) .card-view-button svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.9;
}

@media (max-width: 768px) {
  body:not(.luxury-page) .card {
    border-radius: 26px !important;
    height: auto !important;
  }

  body:not(.luxury-page) .card-content {
    padding: 18px !important;
    flex: 0 0 auto !important;
    gap: 8px !important;
  }

  body:not(.luxury-page) .card-topline {
    margin-bottom: 0 !important;
  }

  body:not(.luxury-page) .card-title {
    margin: 0 !important;
  }

  body:not(.luxury-page) .card-features {
    margin: 0 !important;
    gap: 8px 14px !important;
  }

  body:not(.luxury-page) .card .price {
    margin: 0 !important;
  }

  body:not(.luxury-page) .card-actions {
    gap: 10px !important;
    margin-top: 2px !important;
    padding-top: 0 !important;
  }

  body:not(.luxury-page) .card-map-button,
  body:not(.luxury-page) .card-view-button {
    min-height: 48px !important;
    border-radius: 16px !important;
  }
}


@media (min-width: 769px) {
  body:not(.luxury-page) .card {
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08) !important;
  }

  body:not(.luxury-page) .card-media {
    border-radius: 0 !important;
  }

  body:not(.luxury-page) .card-content {
    padding: 28px 18px 20px !important;
    display: flex !important;
    flex: 1 !important;
    flex-direction: column !important;
    gap: 0 !important;
    min-height: initial !important;
  }

  body:not(.luxury-page) .card-topline {
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  body:not(.luxury-page) .card-chip {
    padding: 7px 11px !important;
    background: #f6edd2 !important;
    color: #7a6641 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
  }

  body:not(.luxury-page) .card-chip-soft {
    background: #fff8e6 !important;
    color: #8a7447 !important;
  }

  body:not(.luxury-page) .card-title {
    margin: 0 0 10px !important;
    color: #17324d !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
  }

  body:not(.luxury-page) .card-description {
    display: -webkit-box !important;
    margin: 0 0 14px !important;
    overflow: hidden !important;
    color: #60708a !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
  }

  body:not(.luxury-page) .card-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
    margin-bottom: 14px !important;
    margin-top: 5px !important;
    color: #60708a !important;
    font-size: 14px !important;
    font-weight: 600 !important;
  }

  body:not(.luxury-page) .card-features svg {
    display: none !important;
  }

  body:not(.luxury-page) .card-features span:not(:last-child)::after {
    content: "•";
    margin-left: 7px;
  }

  body:not(.luxury-page) .card .price {
    margin: 0 !important;
  }

  body:not(.luxury-page) .price-main {
    color: #17324d !important;
    font-size: 18px !important;
  }

  body:not(.luxury-page) .price-total,
  body:not(.luxury-page) .price-note,
  body:not(.luxury-page) .price-total-note,
  body:not(.luxury-page) .price-separator {
    color: #17324d !important;
    font-size: inherit !important;
  }

  body:not(.luxury-page) .card-actions {
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 10px !important;
    margin-top: auto !important;
    padding-top: 16px !important;
  }

  body:not(.luxury-page) .card-map-button,
  body:not(.luxury-page) .card-view-button {
    min-height: 48px !important;
    border-radius: 18px !important;
    gap: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
  }

  body:not(.luxury-page) .card-map-button svg,
  body:not(.luxury-page) .card-view-button svg {
    display: none !important;
  }

  body:not(.luxury-page) .card-view-button::after {
    content: "→";
    margin-left: 5px;
  }
}


@media (max-width: 768px) {
  body:not(.luxury-page) .card,
  body:not(.luxury-page) .card.no-price {
    height: auto !important;
    min-height: 0 !important;
  }

  body:not(.luxury-page) .card-content,
  body:not(.luxury-page) .card.no-price .card-content {
    min-height: 0 !important;
    padding: 16px 18px 18px !important;
    gap: 8px !important;
  }

  body:not(.luxury-page) .card-description {
    display: none !important;
    min-height: 0 !important;
    margin: 0 !important;
  }

  body:not(.luxury-page) .card-features,
  body:not(.luxury-page) .card .price {
    min-height: 0 !important;
    margin: 0 !important;
  }

  body:not(.luxury-page) .card .price:empty,
  body:not(.luxury-page) .card .price.price-empty {
    display: none !important;
  }

  body:not(.luxury-page) .card-actions,
  body:not(.luxury-page) .card.no-price .card-actions {
    min-height: 0 !important;
    margin-top: 4px !important;
    padding-top: 0 !important;
  }
}


.i18n-language-switcher::before,
#bookingHeaderChatSlot + .i18n-language-switcher::before {
  display: none !important;
  content: none !important;
}

@media (min-width: 769px) {
  body:not(.luxury-page) .card {
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08) !important;
    height: 100% !important;
  }

  body:not(.luxury-page) .card-content {
    padding: 28px 18px 20px !important;
  }

  body:not(.luxury-page) .card-title {
    margin: 10px !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    color: #17324d !important;
  }

  body:not(.luxury-page) .card-description {
    display: -webkit-box !important;
    margin: 0 0 14px !important;
    color: #60708a !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
  }

  body:not(.luxury-page) .card-features {
    gap: 7px !important;
    margin-bottom: 14px !important;
    color: #5d4d2b !important;
    font-size: 14px !important;
    font-weight: 800 !important;
  }

  body:not(.luxury-page) .card .price {
    margin-top: 5px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #17324d !important;
  }

  body:not(.luxury-page) .price-line {
    display: grid !important;
    grid-template-columns: auto auto auto minmax(0, 1fr) !important;
    grid-template-areas:
      "main note sep total"
      ". . . totalnote" !important;
    align-items: baseline !important;
    column-gap: 6px !important;
    row-gap: 2px !important;
  }

  body:not(.luxury-page) .price-main {
    grid-area: main !important;
    color: #c6a55c !important;
    font-size: 20px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
  }

  body:not(.luxury-page) .price-note {
    grid-area: note !important;
    color: #8a6d3b !important;
    font-size: 13px !important;
    font-weight: 600 !important;
  }

  body:not(.luxury-page) .price-separator {
    grid-area: sep !important;
    margin: 0 4px !important;
    color: #cbb57c !important;
    font-size: 14px !important;
  }

  body:not(.luxury-page) .price-total {
    grid-area: total !important;
    color: #5d4d2b !important;
    font-size: 18px !important;
    font-weight: 800 !important;
  }

  body:not(.luxury-page) .price-total-note {
    grid-area: totalnote !important;
    color: #9b927f !important;
    font-size: 14px !important;
    font-weight: 600 !important;
  }

  body:not(.luxury-page) .card-actions {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: auto !important;
    padding-top: 16px !important;
  }

  body:not(.luxury-page) .card-map-button,
  body:not(.luxury-page) .card-view-button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    border-radius: 18px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 768px) {
  body:not(.luxury-page) .card {
    align-self: start !important;
  }

  body:not(.luxury-page) .card-content,
  body:not(.luxury-page) .card.no-price .card-content {
    display: flex !important;
    flex: 0 0 auto !important;
    flex-direction: column !important;
    grid-template-rows: none !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 16px 18px 18px !important;
    gap: 8px !important;
  }

  body:not(.luxury-page) .card-topline,
  body:not(.luxury-page) .card-title,
  body:not(.luxury-page) .card-description,
  body:not(.luxury-page) .card-meta,
  body:not(.luxury-page) .card .price,
  body:not(.luxury-page) .card-actions {
    grid-row: auto !important;
  }

  body:not(.luxury-page) .card-title {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
  }

  body:not(.luxury-page) .card-features {
    margin-top: 2px !important;
  }

  body:not(.luxury-page) .card-media {
    display: block !important;
    aspect-ratio: 16 / 11 !important;
    height: auto !important;
    min-height: 0 !important;
    background: #eef3fb !important;
  }

  body:not(.luxury-page) .card-img,
  body:not(.luxury-page) .card-img-placeholder {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
  }

  body:not(.luxury-page) .price-line {
    display: grid !important;
    grid-template-columns: auto auto auto minmax(0, 1fr) !important;
    grid-template-areas:
      "main note sep total"
      ". . . totalnote" !important;
    align-items: baseline !important;
    column-gap: 6px !important;
    row-gap: 2px !important;
  }

  body:not(.luxury-page) .price-main {
    grid-area: main !important;
    font-size: 25px !important;
    line-height: 1 !important;
    color: #c6a55c !important;
  }

  body:not(.luxury-page) .price-note {
    grid-area: note !important;
    font-size: 14px !important;
    color: #5c5142 !important;
  }

  body:not(.luxury-page) .price-separator {
    grid-area: sep !important;
    margin: 0 !important;
  }

  body:not(.luxury-page) .price-total {
    grid-area: total !important;
    min-width: 0 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    color: #5a421d !important;
  }

  body:not(.luxury-page) .price-total-note {
    grid-area: totalnote !important;
    min-width: 0 !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    color: #7a6d55 !important;
  }

  body:not(.luxury-page) .card-actions {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  body:not(.luxury-page) .card-map-button,
  body:not(.luxury-page) .card-view-button {
    min-width: 0 !important;
    width: 100% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: 16px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 390px) {
  body:not(.luxury-page) .price-line {
    grid-template-columns: auto auto auto 1fr !important;
    column-gap: 5px !important;
  }

  body:not(.luxury-page) .price-main {
    font-size: 22px !important;
  }

  body:not(.luxury-page) .price-total {
    font-size: 21px !important;
  }

  body:not(.luxury-page) .card-map-button,
  body:not(.luxury-page) .card-view-button {
    font-size: 14px !important;
  }
}

@media (max-width: 768px) {
  body:not(.luxury-page) .card-nav {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 34px !important;
    height: 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    font-size: 34px !important;
    line-height: 1 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) !important;
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease !important;
  }

  body:not(.luxury-page) .card-nav-prev {
    left: 14px !important;
  }

  body:not(.luxury-page) .card-nav-next {
    right: 14px !important;
  }

  body:not(.luxury-page) .card:hover .card-nav,
  body:not(.luxury-page) .card:focus-within .card-nav,
  body:not(.luxury-page) .card:active .card-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body:not(.luxury-page) .card-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    transform: translateX(-50%);
    backdrop-filter: none;
  }

  body:not(.luxury-page) .card-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.22);
    transition: transform 0.18s ease, background 0.18s ease;
  }

  body:not(.luxury-page) .card-dot.is-active {
    background: #ffffff;
    transform: scale(1.35);
  }

  body:not(.luxury-page) .card:hover {
    transform: translateY(-2px) scale(1.01) !important;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.14) !important;
  }
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.startRange,
.flatpickr-day.selected.endRange {
  border-color: #c6a55c !important;
  background: #c6a55c !important;
  color: #fff !important;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange {
  border-color: rgba(198, 165, 92, 0.18) !important;
  background: rgba(198, 165, 92, 0.18) !important;
  box-shadow: -5px 0 0 rgba(198, 165, 92, 0.18), 5px 0 0 rgba(198, 165, 92, 0.18) !important;
}

.booking-live-chat__client-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: -2px 0 2px;
  font-size: 13px;
  line-height: 1.25;
}

.booking-live-chat__client-summary[hidden] {
  display: none !important;
}

.booking-live-chat__client-summary span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(198, 165, 92, 0.28);
  border-radius: 999px;
  background: rgba(250, 245, 232, 0.85);
  color: #5f4d32;
}

.booking-live-chat__edit-client {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(198, 165, 92, 0.45);
  border-radius: 999px;
  background: #fff;
  color: #80642c;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.booking-live-chat__contact.is-contact-locked #bookingChatContact,
.booking-live-chat__contact.is-name-locked #bookingChatName {
  display: none !important;
}

.booking-live-chat__contact.is-contact-locked.is-name-locked {
  display: none !important;
}

@media (max-width: 768px) {
  body:not(.luxury-page) .card-content,
  body:not(.luxury-page) .card.no-price .card-content {
    gap: 7px !important;
    padding-bottom: 16px !important;
  }

  body:not(.luxury-page) .card-actions,
  body:not(.luxury-page) .card.no-price .card-actions {
    margin-top: 2px !important;
    padding-top: 4px !important;
  }
}

@media (min-width: 769px) {
  body:not(.luxury-page) .card-actions,
  body:not(.luxury-page) .card.no-price .card-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    width: 100% !important;
  }

  body:not(.luxury-page) .card-map-button,
  body:not(.luxury-page) .card-view-button {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 768px) {
  body:not(.luxury-page) .card-content,
  body:not(.luxury-page) .card.no-price .card-content {
    gap: 6px !important;
    padding: 14px 16px 16px !important;
  }

  body:not(.luxury-page) .card-chip {
    padding: 6px 8px !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  body:not(.luxury-page) .card-title {
    font-size: 18px !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    font-weight: 800 !important;
  }

  body:not(.luxury-page) .card-features {
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 2px !important;
    overflow: hidden !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
  }

  body:not(.luxury-page) .card-features span {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    gap: 5px !important;
    white-space: nowrap !important;
  }

  body:not(.luxury-page) .card-features svg {
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 20px !important;
  }

  body:not(.luxury-page) .price-line {
    grid-template-columns: auto auto auto auto !important;
    column-gap: 5px !important;
  }

  body:not(.luxury-page) .price-main {
    font-size: 21px !important;
    white-space: nowrap !important;
  }

  body:not(.luxury-page) .price-note {
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  body:not(.luxury-page) .price-total {
    font-size: 20px !important;
    white-space: nowrap !important;
  }

  body:not(.luxury-page) .price-total-note {
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  body:not(.luxury-page) .card-map-button,
  body:not(.luxury-page) .card-view-button {
    min-height: 46px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 390px) {
  body:not(.luxury-page) .card-title {
    font-size: 17px !important;
    font-weight: 800 !important;
  }

  body:not(.luxury-page) .card-features {
    font-size: 12px !important;
    gap: 6px !important;
  }

  body:not(.luxury-page) .card-features svg {
    width: 18px !important;
    height: 18px !important;
    flex-basis: 18px !important;
  }

  body:not(.luxury-page) .price-main {
    font-size: 17px !important;
  }

  body:not(.luxury-page) .price-total {
    font-size: 17px !important;
  }
}


@media (min-width: 769px) {
  body:not(.luxury-page) .card-content,
  body:not(.luxury-page) .card.no-price .card-content {
    padding-top: 16px !important;
    padding-bottom: 18px !important;
  }

  body:not(.luxury-page) .card-description {
    margin: -2px 0 10px !important;
  }

  body:not(.luxury-page) .card-features {
    margin-bottom: 10px !important;
    
  }

  body:not(.luxury-page) .card .price {
    margin-top: 1px !important;
  }

  body:not(.luxury-page) .price-line {
    display: grid !important;
    grid-template-columns: max-content max-content max-content max-content !important;
    grid-template-areas:
      "main note sep total"
      ". . . totalnote" !important;
    align-items: baseline !important;
    justify-content: start !important;
    column-gap: 7px !important;
    row-gap: 2px !important;
    width: max-content !important;
    max-width: 100% !important;
  }

  body:not(.luxury-page) .price-main {
    font-size: 20px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  body:not(.luxury-page) .price-note,
  body:not(.luxury-page) .price-separator,
  body:not(.luxury-page) .price-total,
  body:not(.luxury-page) .price-total-note {
    white-space: nowrap !important;
  }

  body:not(.luxury-page) .price-note {
    align-self: baseline !important;
    font-size: 13px !important;
    line-height: 1.05 !important;
  }

  body:not(.luxury-page) .price-total {
    font-size: 18px !important;
    line-height: 1.05 !important;
  }

  body:not(.luxury-page) .price-total-note {
    font-size: 13px !important;
    line-height: 1.1 !important;
  }

  body:not(.luxury-page) .card-actions {
    padding-top: 10px !important;
    margin-top: auto !important;
  }
}

@media (max-width: 768px) {
  body:not(.luxury-page) .card-content,
  body:not(.luxury-page) .card.no-price .card-content {
    gap: 10px !important;
    padding: 16px 16px 18px !important;
  }

  body:not(.luxury-page) .card-topline {
    margin-bottom: 2px !important;
  }

  body:not(.luxury-page) .card-title {
    margin-bottom: 4px !important;
  }

  body:not(.luxury-page) .card-features {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
  }

  body:not(.luxury-page) .card .price {
    margin-top: 6px !important;
  }

  body:not(.luxury-page) .price-line {
    row-gap: 3px !important;
    column-gap: 6px !important;
  }

  body:not(.luxury-page) .card-actions,
  body:not(.luxury-page) .card.no-price .card-actions {
    margin-top: 8px !important;
    padding-top: 0 !important;
  }
}


body:not(.luxury-page) .card-topline,
body:not(.luxury-page) .card-title,
body:not(.luxury-page) .card-features {
  align-self: stretch !important;
  width: 100% !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
}

body:not(.luxury-page) .card-topline {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
}

@media (max-width: 768px) {
  body:not(.luxury-page) .card-topline {
    gap: 8px !important;
  }

  body:not(.luxury-page) .card-chip {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }
}

.search-note-link,
.search-note-link:hover {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.search-note-link::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 768px) {
  .search-note-box.has-dates {
    padding: 18px 16px !important;
  }

  .search-note-box.has-dates .search-note-box__title,
  .search-note-box.has-dates .search-note-box__subtitle {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .search-note-box.has-dates .search-note-box__title {
    font-weight: 750 !important;
    margin-right: 5px !important;
  }

  body:not(.luxury-page) #results.properties-grid {
    width: calc(100% + 32px) !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  body:not(.luxury-page) #results.properties-grid .card {
    width: 100% !important;
  }

  body:not(.luxury-page) .price-line {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: max-content max-content max-content minmax(max-content, 1fr) !important;
  }

  body:not(.luxury-page) .price-total,
  body:not(.luxury-page) .price-total-note {
    justify-self: start !important;
  }
}


.service-menu-link__main {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
}

.service-menu-link__main > span:last-child {
  min-width: 0;
}

.service-menu-link__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 165, 92, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, #fffdf7, #f3e5bd);
  color: #b88a28;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.service-menu-link__icon i {
  font-size: 18px;
  line-height: 1;
}

.service-menu-link--luxury .service-menu-link__icon {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.currency-info-bar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  max-width: calc(100% - 64px);
  min-height: 38px;
  margin: 0 0 18px;
  padding: 7px 15px;
  border: 1px solid rgba(198, 165, 92, 0.24);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.9);
  color: #4f4a43;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.currency-info-bar b {
  color: #4a4742;
  font-weight: 800;
}

.currency-info-bar em {
  color: #7d7466;
  font-style: normal;
}

.currency-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid rgba(179, 133, 31, 0.58);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.96);
  color: #a27722;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: help;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}

.currency-tooltip-popover {
  position: fixed;
  z-index: 10050;
  width: max-content;
  max-width: calc(100vw - 32px);
  padding: 10px 12px;
  border: 1px solid rgba(198, 165, 92, 0.28);
  border-radius: 12px;
  background: rgba(255, 252, 246, 0.98);
  box-shadow: 0 14px 34px rgba(30, 24, 16, 0.18);
  color: #4f4a43;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  pointer-events: none;
}

.currency-tooltip-popover[hidden] {
  display: none !important;
}

@media (min-width: 769px) {
  .currency-tooltip-popover.is-booking {
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.28;
  }
}

.booking-menu-chat-btn--menu .service-menu-link__main {
  pointer-events: none;
}

@media (max-width: 768px) {
  .service-menu-link__main {
    gap: 12px;
  }

  .service-menu-link__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .service-menu-link__icon i {
    font-size: 16px;
  }

  .currency-info-bar {
    width: fit-content;
    max-width: calc(100% - 32px);
    min-height: 34px;
    margin: 0 auto 14px;
    padding: 6px 10px;
    gap: 5px;
    font-size: 10.5px;
  }

  .currency-info-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    font-size: 11px;
  }

  .currency-tooltip-popover {
    max-width: calc(100vw - 32px);
    font-size: 11px;
  }
}
@media (min-width: 769px) {
  body:not(.luxury-page) .card-media {
    aspect-ratio: 16 / 15 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 24px 24px 0 0 !important;
  }

  body:not(.luxury-page) .card-img,
  body:not(.luxury-page) .card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  body:not(.luxury-page) .card-content {
    padding-top: 18px !important;
    padding-bottom: 16px !important;
  }

  body:not(.luxury-page) .card {
    overflow: hidden !important;
  }
}
@media (max-width: 768px) {

  body:not(.luxury-page) .card-media {
    display: block !important;

    aspect-ratio: 16 / 16 !important;

    height: auto !important;
    min-height: 0 !important;

    overflow: hidden !important;

    border-radius: 20px 20px 0 0 !important;

    background: #eef3fb !important;
  }

  body:not(.luxury-page) .card-img,
  body:not(.luxury-page) .card-img-placeholder {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    min-height: 0 !important;

    object-fit: cover !important;

    border-radius: inherit !important;
  }

}
@media (max-width: 768px) {
  .hero__subtitle {
    margin: 10 !important;
    font-size: 28px !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
  }

  .hero__subtitle .location-pill {
    display: inline-flex !important;
    font-size: 20px !important;
    line-height: 1 !important;
    padding: 8px 18px !important;
    margin-top: 6px !important;
  }
}
@media (min-width: 769px) {
  body:not(.luxury-page) .card-description {
    display: none !important;
  }
}
.flatpickr-day.inRange {
  background: #efe6d2 !important;
  box-shadow:
    -1px 0 0 #efe6d2,
     1px 0 0 #efe6d2 !important;
  border-color: #efe6d2 !important;
}

.flatpickr-day.startRange,
.flatpickr-day.endRange {
  border-color: #d1af5a !important;
}
.flatpickr-calendar .flatpickr-day.inRange {
  background: #efe6d2 !important;
  border-color: #efe6d2 !important;
  box-shadow:
    -6px 0 0 #efe6d2,
     6px 0 0 #efe6d2 !important;
}
.flatpickr-day.minstay-blocked {
  border-radius: 0 !important;
}
.flatpickr-day.minstay-blocked {
  border-radius: 0 !important;
  background: #efe6d2 !important;
  border-color: #efe6d2 !important;
  color: #3b352b !important;
  box-shadow: none !important;
}


@media (max-width: 768px) {
  body:not(.luxury-page) main.listing-page {
    padding-top: 12px !important;
  }

  body:not(.luxury-page) .listing-page > .back-btn,
  body:not(.luxury-page) #backBtn.back-btn {
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 14px !important;
    margin: 0 0 16px !important;
    border-radius: 999px !important;
    font: 900 14px/1 Montserrat, Arial, sans-serif !important;
    transform: none !important;
  }

  body:not(.luxury-page) .favorite-heart-btn--listing {
    top: -58px !important;
    right: 0 !important;
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 14px !important;
    gap: 6px !important;
    border-radius: 999px !important;
    font: 900 14px/1 Montserrat, Arial, sans-serif !important;
    transform: none !important;
  }

  body:not(.luxury-page) .favorite-heart-btn--listing::before {
    font-size: 18px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 769px) {
  body:not(.luxury-page) .favorite-heart-btn--listing {
    top: -70px !important;
    min-height: 52px !important;
    height: 52px !important;
  }
}
.results-empty-state {
  width: 100%;
  padding: 48px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.results-empty-state h3 {
  margin: 0 0 12px;
}

.results-empty-state p {
  margin: 0;
  max-width: 520px;
}
.results-empty-state {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 220px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 40px 20px;
}

.results-empty-state h3,
.results-empty-state p {
  text-align: center;
}

.empty-state {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 240px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-state h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0;
  color: #241d16;
}

.empty-state p {
  margin: 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.45;
  color: #776b59;
}

@media (max-width: 768px) {
  .empty-state {
    min-height: 200px;
    padding: 36px 18px;
  }

  .empty-state h3 {
    font-size: 23px;
  }

  .empty-state p {
    font-size: 16px;
  }
}
html.lightbox-open,
body.lightbox-open {
  overflow: hidden !important;
}
#results .empty-state,
#results .results-empty-state {
  grid-column: 1 / -1;
  width: 100%;
  min-height: calc(100vh - 360px);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px;
}

#results .empty-state h3,
#results .results-empty-state h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.1;
}

#results .empty-state p,
#results .results-empty-state p {
  margin: 0;
  max-width: 520px;
}

@media (max-width: 680px) {
  #results .empty-state,
  #results .results-empty-state {
    min-height: 48vh;
    padding: 36px 16px;
  }
}

body.selection-page:not(.luxury-page) .card-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.card-share-object-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 12;
  width: 42px;
  height: 42px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #26384b !important;
  box-shadow: 0 10px 26px rgba(15, 24, 36, 0.18) !important;
  cursor: pointer !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: transform .18s ease, background .18s ease, color .18s ease !important;
}

body.selection-page:not(.luxury-page) .card:hover .card-share-object-button,
body.selection-page:not(.luxury-page) .card-share-object-button:focus-visible,
.card-share-object-button.is-copied {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.card-share-object-button:hover,
.card-share-object-button.is-copied {
  background: #fff !important;
  color: #0f2438 !important;
  transform: translateY(0);
}

.card-share-object-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.selection-share-toast {
  position: fixed;
  z-index: 1200;
  left: 50%;
  bottom: 28px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(18, 24, 39, 0.92);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .18s ease, transform .18s ease;
}

.selection-share-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 680px) {
  body.selection-page:not(.luxury-page) .card-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .card-share-object-button {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 768px) {
  .selection-collect-bar {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    padding: 8px 10px !important;
    gap: 7px !important;
    border-radius: 14px !important;
  }

  .selection-collect-bar > div:first-child span {
    display: none !important;
  }

  .selection-collect-bar strong {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
  }

  .selection-collect-bar__actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .selection-collect-bar__actions > span {
    grid-column: 1 / -1;
    font-size: 12px !important;
    line-height: 1 !important;
    text-align: center;
  }

  .selection-collect-bar button,
  .selection-collect-bar a {
    min-height: 30px !important;
    padding: 0 8px !important;
    font-size: 11px !important;
  }

  .selection-collect-result {
    gap: 6px !important;
  }

  .selection-collect-result input {
    min-width: 0 !important;
    height: 30px !important;
    font-size: 11px !important;
  }
}
