@import url("responsive-sub-laptop.css");

html {
  scroll-behavior: auto;
  overscroll-behavior-y: contain;
}

body {
  font-family: "Airbnb Cereal", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

.pd-gallery-main img,
.pd-gallery-thumb img,
.pd-map-popup__img,
.pd-share-modal__listing img,
.hp-avatar,
.hp-listing-thumb,
.hp-review-avatar,
.hpv2-avatar,
.hpv2-listing-img,
.gw-cell,
video,
iframe {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Airbnb Cereal", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: #cd287c;
}

.brand-logo svg {
  height: 32px;
  width: 32px;
  fill: currentColor;
}

.brand-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.brand-logo span {
  font-weight: 800;
  font-size: 1.1rem;
}

/* Card image: square (same height and width) */
.property-card .position-relative.rounded-4 {
  aspect-ratio: 1 / 1;
  width: 100%;
}
.property-card img,
.property-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Card body: fixed min-height so total card height is uniform */
.property-card .card-body {
  min-height: 4.5rem;
}

/* Property section: Stay near ... */
.property-section__title {
  font-size: 1.35rem;
}
.property-section__title a:hover {
  text-decoration: underline !important;
}
.property-section__arrow {
  vertical-align: middle;
}
.property-section__scroll-icon {
  flex-shrink: 0;
}
.property-section__scroll-icon--left {
  transform: rotate(180deg);
}

/* Guest favorite badge on card image */
.guest-favorite-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: #fff;
  color: #222;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.property-card__heart {
  z-index: 1;
}

/* Property cards row: horizontal scroll on small screens */
.property-cards-row {
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  /* `smooth` here can make native horizontal touch-scroll feel heavier; arrows still use JS smooth scroll. */
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}
.property-cards-row > [class*="col-"] {
  flex: 0 0 auto;
  min-width: 260px;
}
.property-cards-row::-webkit-scrollbar {
  display: none;
}
.property-cards-row {
  scrollbar-width: none;
}
@media (min-width: 992px) {
  .property-cards-row {
    flex-wrap: wrap;
    overflow: visible;
  }
  .property-cards-row > [class*="col-"] {
    flex: 0 0 auto;
    min-width: 0;
  }
}

.category-pill {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid transparent;
  background-color: transparent;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.category-pill.active {
  border-color: #000;
  opacity: 1;
}

.category-scroll {
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.footer-links-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-link {
  font-size: 0.85rem;
  color: #6c757d;
  text-decoration: none;
}

.footer-link:hover {
  color: #000;
  text-decoration: underline;
}

/* Homepage-style sections: skip off-screen layout/paint until needed (lighter vertical scroll). */
.property-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

/* Per-section overlay while lazy images load (shown when block nears viewport). */
.property-section__list-wrap {
  min-height: 12rem;
}
.property-section__loader {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.property-section__list-wrap--ready .property-section__loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.property-section__loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem;
}
.property-section__spinner {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 3px solid #e8e8e8;
  border-top-color: #e61e67;
  animation: property-section-spin 0.7s linear infinite;
}
.property-section__loader-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #444;
}
@keyframes property-section-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Site header: default vs scrolled (smooth transition, GPU-friendly) ---- */
.site-header {
  --header-motion-ms: 140ms;
  --header-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--search-input_background, linear-gradient(180deg, #ffffff 39.9%, #f8f8f8 100%));
  transition: box-shadow var(--header-motion-ms) var(--header-motion-ease);
}
.site-header--scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.site-header--scrolled .site-header__row--top {
  cursor: pointer;
}

.site-header__inner {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .site-header__inner {
    padding: 0 2.5rem;
  }
}
@media (min-width: 992px) {
  .site-header__inner {
    /* padding: 0 5rem var(--header-search-space); */
  }
}

.site-header__row--top {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 80px;
  transition: min-height var(--header-motion-ms) var(--header-motion-ease);
  width: 100%;
}
.brand-logo__img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
}

.site-header__row--top > .col-2:first-child {
  flex: 0 0 auto;
}
.site-header__row--top > .col-8 {
  flex: 1 1 auto;
  min-width: 0;
}
.site-header__row--top > .col-2:last-child {
  flex: 0 0 auto;
}
.site-header--scrolled .site-header__row--top {
  min-height: 64px;
}

/* Center nav (default only) – icon + text side by side, badge above text only */
.site-header__nav {
  flex: 1;
  justify-content: center;
  gap: 0.5rem;
  transform-origin: center top;
  transform: scale(1);
  opacity: 1;
  transition: transform var(--header-motion-ms) var(--header-motion-ease), opacity var(--header-motion-ms) var(--header-motion-ease);
}
.site-header--scrolled .site-header__nav {
  transform: scale(0.92);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}
.site-header__nav-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.2s ease, background 0.2s ease;
  position: relative;
}
.site-header__nav-item:hover {
  opacity: 0.9;
  background: #f7f7f7;
}
/* 2px bar under the full item (icon + text) */
.site-header__nav-item--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #222;
  border-radius: 1px;
}
.site-header__nav-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.site-header__nav-label-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-header__nav-label {
  display: block;
  line-height: 1.2;
}
/* NEW badge above the text only – extra space between badge and label */
.site-header__nav-label-wrap {
  padding-top: 8px;
}
.badge-new {
  position: absolute;
  top: -10px;
  left: 0;
  padding: 0.2rem 0.45rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: #0066cc;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}
.site-header__nav-label-wrap .site-header__nav-label {
  display: block;
}

/* Compact search (scrolled only) – animates from smaller to full size */
.site-header__row--top > .col-6,
.site-header__row--top > .col-7 {
  position: relative;
}

.site-header__search-compact {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  flex: 1;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
  transform-origin: center center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: 64px;
  overflow: visible;
  transform: translate3d(-50%, -50%, 0) scale(0.985);
  transition: opacity var(--header-motion-ms) var(--header-motion-ease), transform var(--header-motion-ms) var(--header-motion-ease), visibility 0s linear var(--header-motion-ms);
}
.site-header--scrolled .site-header__search-compact {
  transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity var(--header-motion-ms) var(--header-motion-ease), transform var(--header-motion-ms) var(--header-motion-ease), visibility 0s linear 0s;
}

/* Expanded search row: grid collapse + GPU-only motion on the pill (fewer competing layout paints). */
.site-header__search-expanded {
  display: grid;
  grid-template-rows: 1fr;
  padding-bottom: 1rem;
  transition: grid-template-rows var(--header-motion-ms) var(--header-motion-ease), padding-bottom var(--header-motion-ms) var(--header-motion-ease);
}
.site-header__search-expanded > .search-pill--expanded {
  min-height: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transform-origin: top center;
  backface-visibility: hidden;
  transition: transform var(--header-motion-ms) var(--header-motion-ease), opacity var(--header-motion-ms) var(--header-motion-ease), box-shadow 0.2s ease;
}
.site-header--scrolled .site-header__search-expanded {
  grid-template-rows: 0fr;
  padding-bottom: 0;
  pointer-events: none;
}
.site-header--scrolled .site-header__search-expanded > .search-pill--expanded {
  transform: translate3d(0, -8px, 0) scale(0.985);
  opacity: 0;
}

/* Mobile guest header: stack logo + expanded search; compact only after scroll (no absolute overlap) */
@media (max-width: 767.98px) {
  #siteHeader {
    overflow: visible;
  }

  #siteHeader .site-header__inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
    overflow: visible;
  }

  #siteHeader:not(.site-header--scrolled) .site-header__row--top {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas: "logo actions" !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    background: #fff;
  }

  #siteHeader:not(.site-header--scrolled) .site-header__row--top > [class*="col-"]:first-child {
    grid-area: logo !important;
    flex: none !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
  }

  #siteHeader:not(.site-header--scrolled) .site-header__row--top > [class*="col-"]:nth-child(2) {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #siteHeader:not(.site-header--scrolled) .site-header__row--top > [class*="col-"]:last-child {
    grid-area: actions !important;
    flex: none !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
  }

  #siteHeader:not(.site-header--scrolled) .site-header__search-compact {
    display: none !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
  }

  #siteHeader:not(.site-header--scrolled) .site-header__search-expanded {
    display: block !important;
    grid-template-rows: none !important;
    margin: 0 !important;
    padding: 0 0 0.5rem !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1;
    overflow: visible !important;
    flex-shrink: 0;
  }

  #siteHeader:not(.site-header--scrolled) .site-header__search-expanded > .search-pill--expanded {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    overflow: visible !important;
    min-height: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0.2rem 0.3rem 0.2rem 0.45rem !important;
    border-radius: 999px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    gap: 0;
  }

  #siteHeader:not(.site-header--scrolled) .search-pill--expanded .search-pill__item {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: auto !important;
    text-align: left !important;
    padding: 0.35rem 0.4rem !important;
    border-radius: 0 !important;
  }

  #siteHeader:not(.site-header--scrolled) .search-pill--expanded .search-pill__item strong {
    display: block !important;
    font-size: 0.62rem !important;
    line-height: 1.15 !important;
    text-align: left !important;
  }

  #siteHeader:not(.site-header--scrolled) .search-pill--expanded .search-pill__item span,
  #siteHeader:not(.site-header--scrolled) .search-pill--expanded .search-pill__where-input {
    display: block !important;
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100%;
  }

  #siteHeader:not(.site-header--scrolled) .search-pill--expanded .search-pill__item.js-search-where-trigger {
    padding-right: 1.25rem !important;
  }

  #siteHeader:not(.site-header--scrolled) .search-pill--expanded .search-pill__divider {
    display: block !important;
    width: 1px !important;
    height: 22px !important;
    margin: 0 0.1rem !important;
    flex-shrink: 0 !important;
  }

  #siteHeader:not(.site-header--scrolled) .search-pill--expanded .search-pill__btn,
  #siteHeader:not(.site-header--scrolled) .search-pill--expanded .search-pill__btn--primary {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 50% !important;
    margin: 0 0.1rem 0 0 !important;
    flex-shrink: 0 !important;
  }

  #siteHeader.site-header--scrolled .site-header__row--top {
    display: block !important;
    min-height: 0 !important;
    padding: 0.35rem 0 0.5rem !important;
  }

  #siteHeader.site-header--scrolled .site-header__row--top > [class*="col-"]:first-child,
  #siteHeader.site-header--scrolled .site-header__row--top > [class*="col-"]:last-child {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #siteHeader.site-header--scrolled .site-header__row--top > [class*="col-"]:nth-child(2) {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 !important;
    position: static !important;
  }

  #siteHeader.site-header--scrolled .site-header__search-compact {
    display: flex !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  #siteHeader .site-header__compact-bar,
  #siteHeader .site-header__expanded-bar {
    width: 100%;
  }

  #siteHeader .site-header__expanded-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  #siteHeader:not(.site-header--scrolled) .site-header__expanded-bar .search-pill--expanded {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: 100%;
  }

  #siteHeader.site-header--scrolled .site-header__search-compact .site-header__compact-bar {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }

  #siteHeader.site-header--scrolled .site-header__search-compact .search-pill--compact {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    width: auto;
  }

  #siteHeader .site-header__menu-btn--mobile-search {
    display: inline-flex !important;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }

  #siteHeader.site-header--scrolled .site-header__search-expanded {
    display: none !important;
  }

  #siteHeader .site-header__row--top .brand-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }

  #siteHeader .site-header__row--top .brand-logo img {
    display: block;
    height: 28px !important;
    max-height: 28px !important;
    width: auto !important;
  }
}

@media (min-width: 768px) {
  #siteHeader .site-header__expanded-bar {
    display: block;
  }

  #siteHeader .site-header__expanded-bar .search-pill--expanded {
    width: 100%;
    max-width: 800px;
  }
}

/* Sentinel sits under sticky header; measures when main content reaches the compact zone */
.site-header-scroll-sentinel {
  height: 1px;
  margin: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Category bar (default only) – smooth transition */
.site-header__category {
  max-height: 80px;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.2s ease-out, max-height 0.2s ease-out;
}
.site-header--scrolled .site-header__category {
  opacity: 0;
  max-height: 0;
  padding: 0;
  margin: 0;
  border: none;
  pointer-events: none;
}

/* Search pill: expanded (big bar) */
.search-pill--expanded {
  display: flex;
  align-items: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0rem 0rem 0rem 0rem;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}
.search-pill--expanded:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.search-pill__item {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 1rem;
  cursor: pointer;
  border-radius: 2.5rem;
  transition: background 0.2s ease;
}
.search-pill__item:hover {
  background: #f7f7f7;
}
.search-pill__item strong {
  display: block;
  font-size: 0.75rem;
  color: #222;
}
.search-pill__item span {
  display: block;
  font-size: 0.85rem;
}
.search-pill__divider {
  width: 1px;
  height: 24px;
  background: #ebebeb;
  flex-shrink: 0;
  margin-left: 5px;
  margin-right: 5px;
}
.search-pill__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #cd287c;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.search-pill__btn:hover {
  background: #e62e50;
  transform: scale(1.02);
}
.search-pill__btn--primary {
  width: 48px;
  height: 48px;
}

/* Search pill: compact (inline in scrolled header) */
.search-pill--compact {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 380px;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
  color: #222;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.search-pill--compact:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.search-pill--compact > span {
  flex: 1;
  min-width: 0;
  padding: 0 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-pill--compact .search-pill__btn {
  width: 32px;
  height: 32px;
}

/* Header actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.site-header__link:hover {
  background: #f7f7f7;
  color: #222;
}
.site-header__user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.site-header__user-btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.site-header__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.site-header__menu-btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.site-header__menu-svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3px;
  overflow: visible;
}
.site-header__user-initial {
  line-height: 1;
}

/* Account dropdown menu from 3-line button */
.side-menu {
  position: fixed;
  inset: 0;
  z-index: 12000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.side-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.side-menu__backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
}
.side-menu__panel {
  position: absolute;
  top: 60px;
  right: 20px;
  width: min(300px, calc(100vw - 24px));
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ececec;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  padding: 0.45rem 0.55rem;
  transform: translateY(-8px) scale(0.98);
  transition: transform 0.2s ease;
  overflow-y: auto;
  max-height: min(85vh, 640px);
}
.side-menu.is-open .side-menu__panel {
  transform: translateY(0) scale(1);
}
.side-menu__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  text-decoration: none;
  color: #222;
  padding: 0.62rem 0.45rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.98rem;
}
.side-menu__item:hover {
  background: #f7f7f7;
  color: #111;
}
.side-menu__divider {
  height: 1px;
  background: #efefef;
  margin: 0.45rem 0;
}
.side-menu__promo {
  margin: 0.45rem 0;
  padding: 0.6rem 0.45rem;
  background: #fafafa;
  border-radius: 10px;
}
.side-menu__promo strong {
  display: block;
  font-size: 1rem;
}
.side-menu__promo small {
  color: #666;
  font-size: 0.82rem;
  line-height: 1.3;
}
.side-menu__item--strong {
  font-weight: 700;
}
.side-menu__item--danger {
  color: #d93025;
}

/* Where: suggested destinations floating popup */
.search-destination--floating {
  position: fixed;
  z-index: 10500;
  width: min(400px, calc(100vw - 24px));
  max-height: min(70vh, 420px);
  overflow-y: auto;
  margin: 0;
  padding: 1rem 0.85rem;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  left: 12px;
  top: 100px;
}
.search-destination--floating.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.search-destination__heading {
  font-size: 0.75rem;
  font-weight: 600;
  color: #717171;
  margin: 0 0 0.65rem;
  padding: 0 0.35rem;
}
.search-destination__list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.search-destination__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  padding: 0.55rem 0.4rem;
  transition: background 0.15s ease;
}
.search-destination__item:hover {
  background: #f7f7f7;
}
.search-destination__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0f0f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
}
.search-destination__text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}
.search-destination__text small {
  display: block;
  font-size: 0.82rem;
  color: #717171;
  margin-top: 0.15rem;
  line-height: 1.3;
}

/* Who: guest stepper floating popup */
.search-guests--floating {
  position: fixed;
  z-index: 10500;
  width: min(400px, calc(100vw - 24px));
  margin: 0;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  left: 12px;
  top: 120px;
}
.search-guests--floating.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.search-guests__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}
.search-guests__row:last-child {
  border-bottom: none;
}
.search-guests__label strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}
.search-guests__label small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: #717171;
}
.search-guests__link {
  color: #222;
  text-decoration: underline;
}
.search-guests__link:hover {
  color: #000;
}
.search-guests__stepper {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.search-guests__step-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #717171;
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
.search-guests__step-btn:hover:not(:disabled) {
  border-color: #222;
  color: #222;
}
.search-guests__step-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.search-guests__value {
  min-width: 1.25rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

/* Search overlay: full default header with white background */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.search-overlay--open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.search-overlay__panel {
  position: relative;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.search-overlay__header {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* Date panel (floating under “When” — no full-screen overlay) */
.search-calendar {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  padding: 1.1rem 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.search-calendar--floating {
  position: fixed;
  z-index: 10500;
  margin: 0;
  max-height: min(90vh, 640px);
  overflow: auto;
  width: min(820px, calc(100vw - 24px));
  left: 12px;
  top: 120px;
  transform: translateY(-6px);
}
.search-calendar.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.search-calendar--floating.is-open {
  transform: translateY(0);
}
.search-calendar__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  margin: 0 auto 1rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: #f0f0f0;
}
.search-calendar__toggle-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}
.search-calendar__toggle-btn.is-active {
  background: #fff;
  color: #222;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.search-calendar__view {
  display: none;
}
.search-calendar__view.is-active {
  display: block;
}
.search-calendar__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.search-calendar__month-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
}
.search-calendar__next {
  border: 0;
  background: transparent;
  font-size: 1.3rem;
  line-height: 1;
  color: #444;
}
.search-calendar__weekdays,
.search-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
}
.search-calendar__weekdays {
  margin-bottom: 0.3rem;
}
.search-calendar__weekdays span {
  font-size: 0.72rem;
  color: #777;
  padding: 0.3rem 0;
}
.search-calendar__days span {
  width: 36px;
  height: 36px;
  margin: 1px auto;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #222;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.search-calendar__days span:empty {
  cursor: default;
  pointer-events: none;
}
.search-calendar__days span:not(.is-muted):not(.is-active):hover {
  border-color: #222;
  background: #fff;
}
.search-calendar__days span.is-muted {
  color: #c3c3c3;
  cursor: default;
  pointer-events: none;
}
.search-calendar__days span.is-active {
  background: #222;
  color: #fff;
  font-weight: 700;
}
.search-calendar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}
.search-calendar__chip {
  border: 1px solid #d4d4d4;
  background: #fff;
  border-radius: 999px;
  padding: 0.38rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
}
.search-calendar__chip.is-active {
  border-color: #222;
}
.search-calendar__chips--duration {
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.search-calendar__label {
  margin: 0 0 0.85rem;
  font-size: 1.65rem;
  font-weight: 500;
  color: #222;
}
.search-calendar__label--months {
  margin-top: 0.5rem;
}
.search-calendar__flex-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search-calendar__arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  background: #fff;
  color: #555;
  flex: 0 0 auto;
}
.search-calendar__flex-months {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}
.search-calendar__flex-month {
  flex: 0 0 108px;
  border: 1px solid #dedede;
  border-radius: 16px;
  min-height: 96px;
  background: #fff;
  color: #444;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  font-size: 0.94rem;
  font-weight: 600;
}
.search-calendar__flex-month small {
  font-size: 0.8rem;
  color: #666;
}
.search-calendar__flex-month.is-active {
  border-color: #222;
  box-shadow: inset 0 0 0 1px #222;
}
.search-calendar__flex-icon {
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .search-calendar--floating {
    width: calc(100vw - 24px);
    left: 12px !important;
  }
  .search-calendar {
    margin: 0 1rem 1rem;
    padding: 1rem;
  }
  .search-calendar__months {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .search-calendar__flex-months {
    gap: 0.6rem;
  }
  .search-calendar__flex-month {
    flex-basis: 96px;
  }
  .search-calendar__label {
    font-size: 1.1rem;
  }
}
.search-overlay__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #222;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 10;
}
.search-overlay__close:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .search-overlay__close {
    right: 5rem;
  }
}

.pd-footer {
  margin-top: 2.75rem;
  border-top: 1px solid #e8e8e8;
  background: #f7f7f7;
}
.pd-footer-top {
  padding: 2rem 0 1.4rem;
  border-bottom: 1px solid #e8e8e8;
}
.pd-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem 2.5rem;
}
.pd-footer-col h6 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
}
.pd-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.pd-footer-links a {
  color: #222;
  text-decoration: none;
  font-size: 0.97rem;
}
.pd-footer-links a:hover {
  text-decoration: underline;
}
.pd-footer-bottom {
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.pd-footer-legal,
.pd-footer-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #222;
}
.pd-footer-dot {
  color: #9a9a9a;
}
.pd-footer-meta a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
}
.pd-footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.25rem;
}
.pd-footer-social a {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222;
  text-decoration: none;
}
.pd-footer-social a:hover {
  background: #ececec;
}
@media (max-width: 991.98px) {
  .pd-footer-grid {
    grid-template-columns: 1fr;
  }
}

.hp-wrap {
  max-width: 1180px;
}
.hp-back-link {
  color: #222;
  text-decoration: none;
  font-weight: 600;
}
.hp-back-link:hover {
  text-decoration: underline;
}
.hp-card {
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.hp-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
}
.hp-name {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
}
.hp-role {
  color: #6b6b6b;
}
.hp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.hp-stat {
  background: #fafafa;
  border-radius: 14px;
  border: 1px solid #efefef;
  padding: 0.75rem 0.6rem;
  text-align: center;
}
.hp-stat strong {
  display: block;
  font-size: 1.05rem;
  color: #222;
}
.hp-stat span {
  color: #717171;
  font-size: 0.82rem;
}
.hp-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-right: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  background: #fff;
}
.hp-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #222;
}
.hp-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
}
.hp-about {
  color: #3f3f3f;
  line-height: 1.65;
}
.hp-facts {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #3f3f3f;
  display: grid;
  gap: 0.45rem;
}
.hp-facts li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hp-fact-icon {
  font-size: 0.95rem;
  color: #4a4a4a;
  width: 16px;
  flex: 0 0 16px;
}
.hp-listing-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
}
.hp-listing-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.hp-listing-body {
  padding-top: 0.65rem;
}
.hp-listing-title {
  margin: 0;
  color: #222;
  font-weight: 600;
}
.hp-listing-city {
  margin: 0.15rem 0;
  color: #717171;
  font-size: 0.92rem;
}
.hp-listing-meta {
  color: #222;
  font-size: 0.92rem;
}
.hp-review-card {
  border: 1px solid #efefef;
  border-radius: 16px;
  padding: 1rem;
  height: 100%;
}
.hp-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.hp-review-avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #222;
  background: #f3f3f3;
}
.hp-review-name {
  font-weight: 600;
  color: #222;
}
.hp-review-tenure {
  color: #717171;
  font-size: 0.82rem;
}
.hp-review-meta {
  color: #4a4a4a;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.hp-review-body {
  color: #222;
}

.hpv2-wrap {
  max-width: 980px;
  padding-top: 2.2rem;
  padding-bottom: 3rem;
}
.hpv2-top {
  margin-bottom: 2rem;
}
.hpv2-host-card {
  border: 1px solid #ececec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}
.hpv2-host-main {
  padding: 1.2rem 1rem;
  text-align: center;
}
.hpv2-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.65rem;
}
.hpv2-name {
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 700;
  color: #222;
}
.hpv2-role {
  font-size: 0.76rem;
  color: #6c6c6c;
}
.hpv2-host-stats {
  border-left: 1px solid #efefef;
}
.hpv2-host-stats > div {
  padding: 0.75rem 0.8rem;
  border-bottom: 1px solid #efefef;
}
.hpv2-host-stats > div:last-child {
  border-bottom: 0;
}
.hpv2-host-stats strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.1;
  color: #222;
}
.hpv2-host-stats small {
  display: block;
  color: #6c6c6c;
  font-size: 0.72rem;
}
.hpv2-title {
  font-size: 2.6rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}
.hpv2-about-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.hpv2-about-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #222;
  font-size: 0.98rem;
}
.hpv2-about-list i {
  width: 16px;
  font-size: 0.95rem;
  color: #303030;
}
.hpv2-sec {
  border-top: 1px solid #e8e8e8;
  padding-top: 1.6rem;
  margin-top: 1.6rem;
}
.hpv2-sec h2 {
  font-size: 2rem;
  margin: 0 0 0.7rem;
  color: #222;
}
.hpv2-reviews-row {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.hpv2-review-col {
  border-right: 1px solid #ececec;
}
.hpv2-review-col:last-child {
  border-right: 0;
}
.hpv2-review-card {
  padding: 0 1rem 0.4rem 0;
}
.hpv2-review-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}
.hpv2-review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: #f3f3f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hpv2-review-avatar--fallback {
  font-size: 0.82rem;
  font-weight: 700;
}
.hpv2-review-name,
.hpv2-review-meta,
.hpv2-review-stars,
.hpv2-review-body {
  margin: 0;
}
.hpv2-review-name {
  font-size: 0.86rem;
  font-weight: 600;
}
.hpv2-review-meta {
  color: #717171;
  font-size: 0.78rem;
}
.hpv2-review-stars {
  font-size: 0.72rem;
  margin-bottom: 0.2rem;
}
.hpv2-review-body {
  font-size: 0.9rem;
  color: #222;
}
.hpv2-btn {
  margin-top: 1rem;
  border: 0;
  background: #f2f2f2;
  border-radius: 12px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  color: #222;
}
.hpv2-topic {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.96rem;
  color: #222;
}
.hpv2-topic i {
  font-size: 1rem;
  width: 16px;
}
.hpv2-listing-card {
  display: inline-block;
}
.hpv2-listing-img {
  width: 128px;
  height: 128px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}
.hpv2-listing-type,
.hpv2-listing-loc,
.hpv2-listing-rate {
  margin: 0;
}
.hpv2-listing-type {
  font-size: 0.88rem;
  color: #222;
  margin-top: 0.35rem;
}
.hpv2-listing-loc,
.hpv2-listing-rate {
  font-size: 0.78rem;
  color: #717171;
}
.hpv2-actions {
  padding-bottom: 0.5rem;
}
.hpv2-action-btn {
  border: 0;
  background: transparent;
  color: #222;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.25rem 0;
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .hpv2-host-card {
    grid-template-columns: 1fr;
  }
  .hpv2-host-stats {
    border-left: 0;
    border-top: 1px solid #efefef;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hpv2-host-stats > div {
    border-bottom: 0;
    border-right: 1px solid #efefef;
  }
  .hpv2-host-stats > div:last-child {
    border-right: 0;
  }
  .hpv2-title {
    font-size: 2rem;
  }
  .hpv2-sec h2 {
    font-size: 1.6rem;
  }
  .hpv2-review-col {
    border-right: 0;
    border-bottom: 1px solid #ececec;
    padding-bottom: 0.9rem;
    margin-bottom: 0.9rem;
  }
  .hpv2-review-col:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }
}

.table-responsive-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
