/* Uniform listing card image boxes (home + /listings) */
.listing-card-one .img-gallery .position-relative {
  aspect-ratio: 4 / 3;
  background: #efeae2;
}

.listing-card-one .img-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.listing-card-one .img-gallery a.d-block {
  display: block;
  height: 100%;
}

/* Single-line property titles with ellipsis */
.listing-card-one .property-info .title {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Compare / shortlist: card toggles, floating pills, modals */
.action-icons .compare-toggle.is-active,
.compare-toggle.is-active,
.action-icons .shortlist-toggle.is-active,
.shortlist-toggle.is-active {
  color: #ff6725;
}

.compare-toggle-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  transition: color 0.2s ease-in-out;
}

.compare-toggle-inline:hover,
.compare-toggle-inline.is-active {
  color: #ff6725;
}

.float-action-pills {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-action-pill {
  position: relative;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 8px 16px;
  border-radius: 40px;
  background: #0d1a1c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.float-action-pill.is-visible {
  display: inline-flex;
}

.compare-pill-link,
.shortlist-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.compare-pill-link:hover,
.shortlist-pill-link:hover {
  color: #ff6725;
}

.compare-pill-count,
.shortlist-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 12px;
  background: #ff6725;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.compare-pill-clear,
.shortlist-pill-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.compare-pill-clear:hover,
.shortlist-pill-clear:hover {
  background: rgba(255, 255, 255, 0.24);
}

.compare-pill-toast,
.shortlist-pill-toast {
  display: none;
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 280px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ff6725;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.compare-pill.has-toast .compare-pill-toast,
.shortlist-pill.has-toast .shortlist-pill-toast {
  display: block;
}

/* Pills sit under the modal backdrop; hide them while a modal is open. */
.modal-open .float-action-pills {
  display: none;
}

/* The theme applies `height:auto` and a 40px margin to every modal, which
   breaks the centered + scrollable layout. Undo both for these modals. */
.compare-modal .modal-dialog-scrollable,
.shortlist-modal .modal-dialog-scrollable {
  height: calc(100% - 3.5rem);
}

.compare-modal .modal-dialog .modal-content,
.shortlist-modal .modal-dialog .modal-content {
  margin: 0 auto;
  border: none;
  border-radius: 16px;
}

.compare-modal .modal-header,
.shortlist-modal .modal-header {
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.compare-modal .modal-title,
.shortlist-modal .modal-title {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #0d1a1c;
}

.compare-modal .modal-body,
.shortlist-modal .modal-body {
  padding: 10px 28px 28px;
}

.compare-modal-clear,
.shortlist-modal-clear {
  padding: 0;
  border: none;
  background: transparent;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
}

.compare-modal-clear:hover,
.shortlist-modal-clear:hover {
  color: #ff6725;
}

.compare-modal .table > :not(caption) > * > * {
  padding: 16px 20px;
  vertical-align: middle;
}

.compare-modal .table th {
  width: 160px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
}

.compare-modal .table td.is-best {
  color: #ff6725;
  font-weight: 500;
}

.compare-modal .compare-card {
  width: 230px;
}

.compare-modal .compare-card .img-gallery .position-relative {
  aspect-ratio: 4 / 3;
}

.compare-modal .compare-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-modal .compare-card .title {
  font-size: 18px;
}

.compare-modal .compare-card .address,
.shortlist-modal .address {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.compare-modal .compare-card .address i,
.shortlist-modal .address i {
  color: #c45b32;
  font-size: 13px;
  line-height: 1;
  flex: 0 0 auto;
}

.compare-remove,
.shortlist-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0d1a1c;
  font-size: 13px;
  line-height: 1;
}

.compare-remove:hover,
.shortlist-remove:hover {
  background: #ff6725;
  color: #fff;
}

.shortlist-compare-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

.shortlist-compare-btn:hover,
.shortlist-compare-btn.is-active {
  color: #ff6725;
}

@media (max-width: 575px) {
  .float-action-pills {
    right: 16px;
    bottom: 80px;
  }
}

.social-use-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.customer-auth-user {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
}

.customer-account-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.customer-avatar-btn {
  padding: 0;
  border: none;
  background: transparent;
  line-height: 0;
  cursor: pointer;
}

.customer-avatar {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  overflow: visible;
  background: #efeae2;
}

.customer-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.customer-avatar-initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #ff6725;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.customer-avatar-status {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
}

.customer-account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1050;
  min-width: 200px;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.customer-account-dropdown[hidden] {
  display: none !important;
}

.customer-account-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.customer-account-item:hover {
  background: #f5f5f5;
  color: #111;
}

.customer-account-item i {
  font-size: 16px;
  line-height: 1;
  width: 18px;
  text-align: center;
  color: rgba(0, 0, 0, 0.55);
}

.staff-login-page .staff-login-card {
  max-width: 560px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 40px 36px;
  background: #fff;
}

/* Buyer account dashboard (Homy shell + Bootstrap Icons) */
.dash-aside-navbar {
  width: 220px;
}

.dashboard-body {
  margin-left: 220px;
}

/* Theme header is pinned for a 320px sidebar; keep it aligned with ours. */
.account-page .dashboard-header {
  left: 265px;
}

.account-page .dash-aside-navbar .plr {
  padding-left: 20px;
  padding-right: 20px;
}

.dash-aside-navbar .dasboard-main-nav li a {
  padding: 11px 12px;
}

.dash-aside-navbar .dasboard-main-nav li a span {
  padding-left: 10px;
}

.dash-aside-navbar .account-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  margin-right: 10px;
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
}

.dash-aside-navbar .logout-btn .icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  background: rgba(255, 103, 37, 0.12);
  color: #ff6725;
  font-size: 16px;
}

.dash-aside-navbar .airbnb-logo {
  display: inline-flex;
  align-items: center;
  max-width: none;
}

.dash-aside-navbar .airbnb-logo img,
.dash-aside-navbar .logo img {
  height: 52px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
  display: block;
}

.account-page .dash-aside-navbar {
  width: 280px;
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.account-page .dashboard-body {
  margin-left: 280px;
  padding: 168px 48px 48px;
}

.account-page .dashboard-header {
  left: 280px;
  right: 0;
  padding: 28px 48px;
}

.account-page .account-sidebar-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.account-page .dash-aside-navbar .logo {
  padding-top: 8px;
}

.account-page .dasboard-main-nav {
  flex: 1;
  padding-bottom: 12px !important;
  border-bottom: 0 !important;
}

.account-page .dasboard-main-nav li a {
  border-radius: 12px;
  padding: 14px 22px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
}

.account-page .dasboard-main-nav li a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #1a1a1a;
}

.account-page .dasboard-main-nav li a.active {
  background: #1a1a1a;
  color: #fff;
}

.account-page .dasboard-main-nav li a.active .account-nav-icon {
  color: #fff;
}

.account-page .dash-aside-navbar .nav-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  padding: 0 28px 10px;
  margin: 0;
}

.account-page .account-nav-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 18px 20px 22px;
  list-style: none;
}

.account-page .account-nav-gap {
  height: 22px;
  list-style: none;
}

.account-page .account-sidebar-logout {
  margin-top: auto;
  padding: 20px 16px 28px;
}

.account-page .logout-btn span {
  color: #ff6725;
  font-weight: 600;
}

.account-page .account-page-title {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #14110f;
}

.account-page .dashboard-header .search-form input {
  background: #fff;
  border: 0;
  box-shadow: 0 1px 10px rgba(20, 17, 15, 0.06);
  color: #14110f;
}

.account-page .dashboard-header .search-form input::placeholder {
  color: rgba(20, 17, 15, 0.38);
}

.account-page .dashboard-header .search-form button {
  color: rgba(20, 17, 15, 0.38);
}

.account-page .dashboard-body .card-box.account-saved-panel,
.account-page .dashboard-body .card-box.account-compare-panel {
  padding: 52px 56px 56px;
}

.account-saved-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}

.account-saved-heading {
  margin: 0;
  font-family: "Inter", "Gordita", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #14110f;
  line-height: 1.2;
}

.account-saved-count {
  font-family: "Inter", "Gordita", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(20, 17, 15, 0.42);
  white-space: nowrap;
}

.account-saved-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

.account-saved-grid .sk-card-title {
  font-family: "Inter", "Gordita", sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.account-saved-grid .sk-card-price {
  font-size: 16px;
}

.account-saved-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px 28px;
}

@media (max-width: 1399.98px) {
  .account-saved-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1199.98px) {
  .account-page .dashboard-body .card-box.account-saved-panel,
  .account-page .dashboard-body .card-box.account-compare-panel {
    padding: 36px 32px 40px;
  }

  .account-saved-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
}

@media (max-width: 991.98px) {
  .dashboard-body {
    margin-left: 0;
  }

  .account-page .dashboard-body {
    margin-left: 0;
    padding: 112px 16px 32px;
  }

  .account-page .dashboard-header {
    left: 0;
    right: 0;
    padding: 12px 16px;
  }

  .account-page .main-title {
    font-size: 28px;
    margin: 0 0 16px;
    line-height: 1.15;
  }

  .account-page .dashboard-body .card-box.account-saved-panel,
  .account-page .dashboard-body .card-box.account-compare-panel {
    padding: 22px 16px 24px;
  }

  .account-saved-header {
    margin-bottom: 16px;
  }

  .account-compare-toolbar {
    margin: 0 0 20px;
    align-items: stretch;
  }

  .account-compare-lede {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .account-compare-toolbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .account-compare-browse {
    padding: 9px 14px;
    font-size: 13px;
  }

  .account-compare-desktop {
    display: none;
  }

  .account-compare-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .account-compare-mobile-card {
    padding: 12px;
    border: 1px solid rgba(20, 17, 15, 0.08);
    border-radius: 18px;
    background: #fff;
  }

  .account-compare-mobile-card .account-compare-card__title {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    white-space: normal;
  }

  .account-compare-mobile-specs {
    margin: 14px 0 0;
    padding: 4px 0 0;
    border-top: 1px solid rgba(20, 17, 15, 0.08);
  }

  .account-compare-mobile-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 8px;
    margin: 0 -8px;
    border-radius: 10px;
  }

  .account-compare-mobile-row dt {
    flex: 0 0 38%;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: rgba(20, 17, 15, 0.5);
  }

  .account-compare-mobile-row dd {
    flex: 1 1 auto;
    margin: 0;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #14110f;
    overflow-wrap: anywhere;
  }

  .account-compare-mobile-row.is-best {
    background: rgba(34, 197, 94, 0.12);
  }

  .account-compare-mobile-row[data-spec="Location"] {
    display: none;
  }

  .account-saved-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 575.98px) {
  .account-page .dashboard-body .card-box.account-saved-panel,
  .account-page .dashboard-body .card-box.account-compare-panel {
    padding: 20px 14px 22px;
  }

  .account-saved-heading {
    font-size: 18px;
  }
}

/* Floating compare/saved pills are redundant inside the account area. */
.account-page .float-action-pills {
  display: none !important;
}

.account-compare-panel {
  position: relative;
  overflow: hidden;
}

.account-compare-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: -12px 0 28px;
}

.account-compare-lede {
  margin: 0;
  font-family: "Inter", "Gordita", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(20, 17, 15, 0.48);
}

.account-compare-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.account-compare-clear {
  padding: 0;
  border: none;
  background: transparent;
  font-family: "Inter", "Gordita", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(20, 17, 15, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.account-compare-clear:hover {
  color: #ff6725;
}

.account-compare-browse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(20, 17, 15, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #14110f;
  font-family: "Inter", "Gordita", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}

.account-compare-browse:hover {
  color: #14110f;
  border-color: #14110f;
}

.account-compare-wrap .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.account-compare-table {
  table-layout: fixed;
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Inter", "Gordita", sans-serif;
}

.account-compare-table .account-compare-label-col {
  width: 140px;
}

.account-compare-table .account-compare-prop-col {
  width: auto;
}

.account-compare-table thead th,
.account-compare-table thead td,
.account-compare-table tbody th,
.account-compare-table tbody td {
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 16px;
}

.account-compare-table thead th,
.account-compare-table thead td {
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
  padding-top: 0;
  padding-bottom: 22px;
}

.account-compare-table .account-compare-corner {
  width: 140px;
  padding-left: 0;
}

.account-compare-table tbody th {
  width: 140px;
  padding-left: 0;
  font-size: 15px;
  font-weight: 600;
  color: #14110f;
  white-space: nowrap;
}

.account-compare-table tbody td {
  font-size: 15px;
  color: rgba(20, 17, 15, 0.72);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.account-compare-table td.is-best {
  background: rgba(34, 197, 94, 0.12);
  color: #0d1a1c;
  font-weight: 600;
}

.account-compare-card {
  width: 100%;
  max-width: 100%;
  font-family: "Inter", "Gordita", sans-serif;
}

.account-compare-card .sk-card-media {
  aspect-ratio: 16 / 11;
}

.account-compare-card .compare-remove {
  position: static;
  top: auto;
  right: auto;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.account-compare-card__body {
  padding: 14px 2px 0;
}

.account-compare-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #14110f;
  text-decoration: none;
}

.account-compare-card__title:hover {
  color: #14110f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-compare-card__location {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  overflow: hidden;
  margin: 6px 0 0;
  font-size: 13.5px;
  color: rgba(20, 17, 15, 0.52);
  line-height: 1.45;
}

.account-compare-card__location i {
  color: #c45b32;
  font-size: 13px;
  line-height: 1.45;
  flex: 0 0 auto;
}

.account-compare-desktop {
  display: block;
}

.account-compare-mobile {
  display: none;
}

.account-compare-note {
  margin: 20px 0 0;
  font-family: "Inter", "Gordita", sans-serif;
  font-size: 14px;
  color: rgba(20, 17, 15, 0.48);
}

.account-page .main-title {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #14110f;
}

.account-settings-card {
  padding: 40px 45px;
}

.account-photo-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 8px 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(20, 17, 15, 0.08);
}

.account-photo-preview {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #efeae4;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

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

.account-photo-copy {
  min-width: 0;
}

.account-photo-label {
  margin: 0 0 4px;
  font-family: "Gordita", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #14110f;
}

.account-photo-hint {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(20, 17, 15, 0.5);
}

.account-photo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.account-photo-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 18px;
  border-radius: 8px;
  background: #ff6725;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.account-photo-upload:hover {
  background: #e85a1c;
  color: #fff;
}

.account-photo-remove {
  border: 0;
  background: none;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(20, 17, 15, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-photo-remove:hover {
  color: #14110f;
}

.account-photo-remove.is-hidden {
  display: none;
}

@media (max-width: 767.98px) {
  .account-settings-card {
    padding: 28px 22px;
  }

  .account-photo-row {
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 22px;
  }

  .account-photo-preview {
    flex-basis: 80px;
    width: 80px;
    height: 80px;
  }
}

.dashboard-body .user-data .user-avatar {
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

.dashboard-body .user-data .user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.dashboard-body .user-data .user-avatar.online::after {
  content: '';
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
}

.staff-login-page .user-data-form {
  background: transparent;
}

/* Bed / bath / size icons in listing cards */
.listing-card-one .feature .feature-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #000;
  font-size: 15px;
  line-height: 1;
}

.listing-card-one .feature .feature-icon-box i {
  display: block;
  line-height: 1;
}

/* Property Overview — Homy icon treatment (4 items: Sqft / Bed / Bath / Type) */
.theme-details-one .property-feature-list ul li {
  width: 25%;
}

.theme-details-one .property-feature-list ul li img.icon {
  display: block;
  height: 30px;
  width: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .theme-details-one .property-feature-list ul li {
    width: 50%;
  }
}

/* Builder contact card on property detail */
.agent-info .builder-avatar {
  width: 110px;
  height: 110px;
  background: #ff6725;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.agent-info .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 20px;
  border: none;
  text-decoration: none;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.agent-info .btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  opacity: 0.95;
}

.agent-info .btn-whatsapp .fa-whatsapp {
  font-size: 18px;
}

/* ——— Airbnb-style public header ——— */
.airbnb-header.theme-main-menu {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: #fff !important;
  border-bottom: 1px solid #eae2d5;
  box-shadow: none !important;
  overflow: visible;
  overflow-anchor: none;
}

.airbnb-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px 24px;
  max-width: 1760px;
  margin: 0 auto;
  padding: 22px 44px;
  position: relative;
  overflow: visible;
}

.airbnb-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  max-width: none;
  justify-self: start;
  grid-column: 1;
  z-index: 3;
  text-decoration: none;
}

.airbnb-logo img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

/* Footer brand marks use the same upload; keep them readable. */
.footer-intro .logo img,
.footer-intro .logo img[data-brand-logo] {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* Theme header logos: the uploaded brand mark can be any size, so cap it. */
header .logo:not(.airbnb-logo) img,
.theme-main-menu .logo:not(.airbnb-logo) img,
.top-header .logo img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.airbnb-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  grid-column: 2;
  position: relative;
  width: auto;
  max-width: 100%;
  z-index: 2;
  pointer-events: none;
}

.airbnb-header-center > * {
  pointer-events: auto;
}

.airbnb-header:not(.airbnb-header--with-filters) .airbnb-header-center {
  gap: 0;
}

.airbnb-purpose-tabs {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.airbnb-tab {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px 4px 14px;
  border-radius: 0;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.airbnb-tab:hover {
  color: #222;
  background: transparent;
}

.airbnb-tab.is-active {
  color: #222;
  font-weight: 600;
  background: transparent;
  border-radius: 0;
}

.airbnb-tab-icon,
img.airbnb-tab-icon {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px;
  min-height: 72px;
  max-width: none !important;
  flex: 0 0 72px;
  display: block !important;
  object-fit: contain;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.airbnb-tab > span {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1;
}

.airbnb-tab:hover .airbnb-tab-icon {
  opacity: 1;
  transform: scale(1.04);
}

.airbnb-tab.is-active .airbnb-tab-icon {
  opacity: 1;
  transform: scale(1.06);
}

.airbnb-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}

.airbnb-tab.is-active::after {
  transform: scaleX(1);
}

.airbnb-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 6px 6px 6px 20px;
  transition: box-shadow 0.15s ease;
  overflow: visible;
}

/* Header search — StayKee client mock (Where · Type · Budget) */
.sk-search-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: min(920px, calc(100vw - 420px));
  min-width: min(720px, 100%);
  pointer-events: auto;
}

.sk-buyrent-toggle {
  display: none;
  align-items: center;
  gap: 4px;
  background: #f7f2ea;
  border-radius: 20px;
  padding: 3px;
  width: fit-content;
}

.sk-buyrent-toggle button {
  appearance: none;
  border: 0;
  padding: 6px 16px;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #8a8078;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.sk-buyrent-toggle button.is-active {
  background: #221e1a;
  color: #fff;
}

.sk-buyrent-toggle button:hover:not(.is-active) {
  color: #2b2622;
}

.airbnb-search.sk-search-bar {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 5px 5px 5px 16px;
  gap: 0;
  flex-shrink: 1;
  border: 1px solid #eae2d5;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 1px 2px rgba(34, 30, 26, 0.05), 0 1px 1px rgba(34, 30, 26, 0.04);
}

.airbnb-search.sk-search-bar:hover,
.airbnb-search.sk-search-bar.is-open,
.airbnb-search.sk-search-bar:focus-within {
  box-shadow: 0 6px 20px rgba(34, 30, 26, 0.08);
}

.sk-search-seg {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding: 8px 22px;
  border-radius: 0;
  min-width: 0;
  flex: 1 1 0;
  transition: background 0.15s ease;
}

.sk-search-seg:hover,
.sk-search-seg.is-active {
  background: transparent;
}

.sk-search-seg-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #3c684ec7;
  letter-spacing: 0.1px;
  line-height: 1.15;
  margin-bottom: 2px;
  white-space: nowrap;
}

.sk-search-seg-icon {
  font-size: 11px;
  line-height: 1;
  color: #e4622c;
}

.sk-search-rupee {
  color: #e4622c;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
}

.sk-search-seg-value {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #8a8078;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.sk-search-seg--where {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: text;
}

.sk-search-seg-where-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-left: .3rem;
}

.sk-search-seg-input {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #222;
  line-height: 1.2;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.sk-search-seg-input::placeholder {
  color: #8a8078;
  font-weight: 400;
  font-size: 13.5px;
}

.sk-search-clear {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ddd8d2;
  color: #3a3531;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  line-height: 1;
  pointer-events: auto;
}

.sk-search-clear::before {
  content: "";
  position: absolute;
  inset: -10px;
}

.sk-search-clear[hidden] {
  display: none !important;
}

.sk-search-clear:hover {
  background: #cfc8c0;
}

.sk-search-clear i {
  font-size: 16px;
  line-height: 1;
}

.sk-where-empty {
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #8a8078;
}

.airbnb-search-btn-label {
  display: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.sk-search-bar.is-open .airbnb-search-btn,
.sk-search-bar:focus-within .airbnb-search-btn {
  width: auto;
  min-width: 44px;
  padding: 0 16px;
  border-radius: 999px;
  gap: 8px;
}

.sk-search-bar.is-open .airbnb-search-btn-label,
.sk-search-bar:focus-within .airbnb-search-btn-label {
  display: inline;
}

.sk-search-seg--chevron .sk-search-seg-value::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 1.8px solid #8a8078;
  border-bottom: 1.8px solid #8a8078;
  transform: rotate(45deg) translateY(-1px);
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.sk-search-seg--chevron.is-active .sk-search-seg-value::after {
  transform: rotate(225deg) translateY(-1px);
}

.sk-search-divider,
.sk-search-divider--type {
  width: 1px;
  height: auto;
  align-self: stretch;
  margin: 8px 0;
  background: #e0d8cc;
  flex: 0 0 auto;
  box-shadow: none;
  border: 0;
  opacity: 1;
}

.sk-search-bar .airbnb-search-btn {
  flex: 0 0 auto;
  margin-left: 4px;
  width: 44px;
  height: 44px;
  font-size: 16px;
  background: #e4622c;
  box-shadow: 0 4px 14px rgba(228, 98, 44, 0.35);
  white-space: nowrap;
}

.sk-search-bar .airbnb-search-btn:hover {
  background: #c94f1e;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(228, 98, 44, 0.42);
}

.sk-search-panel {
  left: 12px;
  right: auto;
  min-width: min(360px, calc(100vw - 32px));
}

.sk-search-panel--narrow {
  min-width: 0;
}

.sk-search-bar [data-purpose-panel],
.sk-search-bar [data-budget-panel] {
  left: auto;
  right: auto;
}

/* Mobile compact search is defined with the header row layout below (≤991px). */

/* Expandable search (listings): compact pill by default */
.airbnb-header.is-search-collapsed .airbnb-search {
  display: none;
}

.airbnb-header.is-search-expanded .airbnb-search-compact {
  display: none;
}

.airbnb-header:not([data-search-expandable]) .airbnb-search-compact {
  display: none;
}

.airbnb-search-compact {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 6px 6px 6px 18px;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.airbnb-search-compact:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.08);
}

.airbnb-search-compact-text {
  flex: 1;
  min-width: 0;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  padding: 6px 4px 6px 0;
}

.airbnb-search-compact .airbnb-search-btn {
  pointer-events: none;
}

.airbnb-search.is-open,
.airbnb-search:focus-within {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.08);
}

.airbnb-where-value {
  transition: color 0.2s ease-in-out;
}

.airbnb-search.is-open .airbnb-where-value {
  color: #222;
}

@media (prefers-reduced-motion: reduce) {
  .airbnb-where-panel {
    transition: none;
  }

  .airbnb-where-panel.is-panel-open .airbnb-where-list li {
    animation: none;
  }
}

.airbnb-where {
  flex: 1;
  min-width: 0;
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 6px 12px 6px 0;
  cursor: pointer;
}

.airbnb-where-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #222;
  line-height: 1.2;
}

.airbnb-where-value {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  margin-top: 2px;
}

.airbnb-search-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #ff6725;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.airbnb-search-btn:hover {
  background: #e85a1c;
  transform: scale(1.03);
}

.airbnb-where-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 16px 40px rgba(0, 0, 0, 0.08);
  padding: 18px 12px 12px;
  max-height: min(360px, 60vh);
  overflow: auto;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.airbnb-where-panel:not(.is-panel-open) {
  pointer-events: none;
}

.airbnb-where-panel.is-panel-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Rows cascade in just behind the panel */
@keyframes infaedge-where-option-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.airbnb-where-panel.is-panel-open .airbnb-where-list li {
  animation: infaedge-where-option-in 0.26s ease-in-out both;
}

.airbnb-where-panel.is-panel-open .airbnb-where-list li:nth-child(1) {
  animation-delay: 0.04s;
}

.airbnb-where-panel.is-panel-open .airbnb-where-list li:nth-child(2) {
  animation-delay: 0.07s;
}

.airbnb-where-panel.is-panel-open .airbnb-where-list li:nth-child(3) {
  animation-delay: 0.1s;
}

.airbnb-where-panel.is-panel-open .airbnb-where-list li:nth-child(4) {
  animation-delay: 0.13s;
}

.airbnb-where-panel.is-panel-open .airbnb-where-list li:nth-child(5) {
  animation-delay: 0.16s;
}

.airbnb-where-panel.is-panel-open .airbnb-where-list li:nth-child(n + 6) {
  animation-delay: 0.19s;
}

.airbnb-where-panel-title {
  margin: 0 12px 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.airbnb-where-list {
  margin: 0;
  padding: 0;
}

.airbnb-where-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 12px;
  border-radius: 14px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  transition: background 0.12s ease;
}

.airbnb-where-option i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222;
  flex-shrink: 0;
}

.airbnb-where-option:hover:not(.is-selected) {
  background: #f7f7f7;
}

.airbnb-where-option.is-selected {
  background: #f7f7f7;
}

.sk-search-panel[data-where-panel] {
  left: 8px;
  right: auto;
  width: 32%;
  min-width: 240px;
  max-width: min(340px, calc(100vw - 32px));
  padding: 6px 8px;
  max-height: 320px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(34, 30, 26, 0.1);
  border: 1px solid #eae2d5;
}

.sk-search-panel[data-purpose-panel],
.sk-search-panel[data-budget-panel] {
  left: auto;
  right: auto;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 6px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(34, 30, 26, 0.1);
  border: 1px solid #eae2d5;
}

.sk-search-panel[data-purpose-panel] .airbnb-where-panel-title,
.sk-search-panel[data-budget-panel] .airbnb-where-panel-title {
  display: none;
}

.sk-search-panel[data-purpose-panel] .airbnb-where-option,
.sk-search-panel[data-budget-panel] .airbnb-where-option {
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgb(28 43 36 / 0.7);
  gap: 0;
}

.sk-search-panel[data-purpose-panel] .airbnb-where-option:hover,
.sk-search-panel[data-budget-panel] .airbnb-where-option:hover {
  background: #f7f2ea;
  color: rgb(28 43 36 / 0.7);
}

.sk-search-panel[data-purpose-panel] .airbnb-where-option.is-selected,
.sk-search-panel[data-budget-panel] .airbnb-where-option.is-selected {
  background: #fbe6da;
  color: #e4622c;
  font-weight: 600;
}

.sk-search-panel[data-where-panel] .airbnb-where-panel-title {
  display: block;
  margin: 4px 6px 2px;
  padding: 6px 8px 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #222;
}

.sk-search-panel[data-where-panel] .airbnb-where-option {
  gap: 11px;
  padding: 10px 12px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  color: #8a8078;
  align-items: center;
  line-height: 1.25;
}

.sk-search-panel[data-where-panel] .airbnb-where-list li + li .airbnb-where-option {
  border-top: 1px solid #eae2d5;
}

.sk-search-panel[data-where-panel] .airbnb-where-option i,
.sk-search-panel[data-where-panel] .airbnb-where-option .loc-pin {
  width: 17px;
  height: 17px;
  min-width: 17px;
  border-radius: 0;
  background: transparent;
  color: #a89e93;
  stroke: #a89e93;
  fill: none;
  stroke-width: 2;
}

.sk-search-panel[data-where-panel] .airbnb-where-option .loc-pin {
  display: block;
}

.sk-search-panel[data-where-panel] .airbnb-where-option .loc-name {
  font-size: 14px;
  font-weight: 600;
  color: inherit;
}

.sk-search-panel[data-where-panel] .airbnb-where-option:hover:not(.is-selected),
.sk-search-panel[data-where-panel] .airbnb-where-option:focus:not(.is-selected),
.sk-search-panel[data-where-panel] .airbnb-where-option:focus-visible:not(.is-selected) {
  background: #f7f2ea;
  color: #8a8078;
}

.sk-search-panel[data-where-panel] .airbnb-where-option.is-all-area {
  font-weight: 700;
  color: #222;
}

.sk-search-panel[data-where-panel] .airbnb-where-option.is-all-area .loc-name {
  font-weight: 700;
}

.sk-search-panel[data-where-panel] .airbnb-where-option.is-selected {
  background: #fbeee4;
  color: #e4622c;
  font-weight: 800;
  border-top: none;
  border-radius: 11px;
}

.sk-search-panel[data-where-panel] .airbnb-where-option.is-selected .loc-name {
  font-weight: 800;
  color: #e4622c;
}

.sk-search-panel[data-where-panel] .airbnb-where-option.is-selected .loc-pin {
  color: #e4622c;
  fill: #e4622c;
  stroke: none;
}

.sk-search-panel[data-where-panel] .airbnb-where-option.is-selected .loc-pin path,
.sk-search-panel[data-where-panel] .airbnb-where-option.is-selected .loc-pin circle {
  fill: #e4622c;
  stroke: none;
}

.sk-search-panel[data-where-panel] .airbnb-where-option.is-selected:hover {
  background: #f8e4d4;
}

.airbnb-header-center:has(.airbnb-search.is-open),
.airbnb-header-center:has(.is-panel-open) {
  z-index: 20;
}

.airbnb-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  justify-self: end;
  grid-column: 3;
  z-index: 3;
  overflow: visible;
}

.airbnb-search-lens {
  display: none;
}

.sk-search-backdrop {
  display: none;
}

.airbnb-header-right:has(.customer-account-menu.is-open) {
  z-index: 7;
}

.airbnb-header--simple .airbnb-header-inner {
  grid-template-columns: 1fr auto;
}

.airbnb-header--simple .airbnb-header-right {
  grid-column: 2;
}

.airbnb-become-builder {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.airbnb-become-builder:hover {
  color: #222;
  background: rgba(0, 0, 0, 0.04);
  text-decoration: none;
}

.airbnb-user-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 5px 5px 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  color: #222;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

/* Logged-out: burger only */
.airbnb-user-menu-btn:not(.is-logged-in),
.airbnb-user-menu-btn--guest {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  gap: 0;
  border-color: #eae2d5;
}

.airbnb-user-menu-btn:not(.is-logged-in) .airbnb-user-menu-avatar,
.airbnb-user-menu-btn--guest .airbnb-user-menu-avatar {
  display: none;
}

.airbnb-user-menu-btn:hover,
.airbnb-user-menu.is-open .airbnb-user-menu-btn {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.22);
}

.airbnb-user-menu-burger {
  font-size: 18px;
  line-height: 1;
  color: #222;
}

.airbnb-user-menu-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #717171;
  color: #fff;
  font-size: 16px;
}

.airbnb-user-menu-btn.is-logged-in {
  width: 42px;
  height: 42px;
  padding: 0;
  justify-content: center;
  gap: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.airbnb-user-menu-btn.is-logged-in:hover,
.airbnb-user-menu.is-open .airbnb-user-menu-btn.is-logged-in {
  box-shadow: none;
  border: 0;
}

.airbnb-user-menu-btn.is-logged-in .airbnb-user-menu-burger {
  display: none;
}

.airbnb-user-menu-btn.is-logged-in .customer-avatar {
  width: 42px;
  height: 42px;
}

.airbnb-user-menu-btn .customer-avatar-status {
  width: 10px;
  height: 10px;
}

.airbnb-user-dropdown {
  min-width: 208px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.airbnb-user-dropdown .customer-account-item {
  padding: 9px 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.airbnb-user-dropdown-divider {
  height: 1px;
  margin: 4px 8px;
  background: rgba(0, 0, 0, 0.08);
}

.airbnb-header .customer-avatar-btn {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 4px;
  background: #fff;
}

@media (max-width: 991px) {
  .airbnb-header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 14px;
    position: relative;
  }

  .airbnb-header--simple .airbnb-header-inner {
    grid-template-columns: 1fr auto;
  }

  .airbnb-header--simple .airbnb-header-right {
    grid-column: auto;
  }

  /* Keep logo · search · burger on one row */
  .airbnb-header-center {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    grid-column: 2;
    order: 0;
    width: auto;
    max-width: none;
    min-width: 0;
    pointer-events: auto;
    justify-self: stretch;
  }

  .airbnb-logo {
    order: 0;
    grid-column: 1;
    max-width: none;
  }

  .airbnb-logo img {
    height: 44px;
    width: auto;
    max-width: 120px;
  }

  .airbnb-header-right {
    order: 0;
    grid-column: 3;
    justify-self: end;
  }

  .airbnb-become-builder {
    display: none;
  }

  .airbnb-search {
    width: 100%;
  }

  .airbnb-search-compact {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  /* Compact 3-seg bar fits between logo and burger */
  .airbnb-search.sk-search-bar {
    width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    border-radius: 999px;
    padding: 4px 4px 4px 6px;
    gap: 0;
  }

  .sk-search-divider {
    display: block;
    height: auto;
    margin: 6px 0;
  }

  .sk-search-seg {
    flex: 1 1 0;
    min-width: 0;
    padding: 6px 8px;
  }

  .sk-search-seg-label {
    font-size: 10px;
    margin-bottom: 1px;
  }

  .sk-search-seg-value {
    font-size: 12px;
  }

  .sk-search-seg-input {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }

  .sk-search-seg-input::placeholder {
    font-size: 12px;
  }

  .sk-search-bar .airbnb-search-btn {
    margin-left: 2px;
    width: 36px;
    height: 36px;
    font-size: 14px;
    flex: 0 0 36px;
  }

  .sk-search-bar.is-open .airbnb-search-btn,
  .sk-search-bar:focus-within .airbnb-search-btn {
    width: auto;
    flex: 0 0 auto;
    height: 36px;
    padding: 0 12px;
    min-width: 36px;
  }

  .sk-search-bar.is-open .airbnb-search-btn-label,
  .sk-search-bar:focus-within .airbnb-search-btn-label {
    display: none;
  }

  .sk-search-bar [data-purpose-panel],
  .sk-search-bar [data-budget-panel],
  .sk-search-panel {
    left: 0;
    right: 0;
    min-width: 0;
    width: min(320px, calc(100vw - 28px));
  }

  .airbnb-header--with-filters .airbnb-header-inner {
    padding: 12px 14px;
    min-height: 0;
  }

  .airbnb-header--with-filters .airbnb-search.sk-search-bar {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 860px) {
  html {
    overflow-anchor: none;
  }

  .airbnb-header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 12px 16px 14px;
  }

  .airbnb-logo {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .airbnb-header-right {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    z-index: 4;
  }

  .airbnb-header-center {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-self: stretch;
  }

  .sk-search-wrap {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
  }

  .sk-buyrent-toggle {
    display: flex;
  }

  .sk-search-seg[data-purpose-toggle],
  .sk-search-divider--type {
    display: none !important;
  }

  .airbnb-search.sk-search-bar {
    width: 100%;
    border-radius: 24px;
    padding: 6px 6px 6px 16px;
  }

  .sk-search-seg-input {
    font-size: 16px;
    line-height: 1.2;
    touch-action: manipulation;
  }

  .sk-search-seg-input::placeholder {
    font-size: 12px;
  }

  .sk-search-bar .airbnb-search-btn {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    box-shadow: 0 6px 16px rgba(228, 98, 44, 0.4);
  }

  .airbnb-search-lens {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #eae2d5;
    border-radius: 50%;
    background: #f6f1ea;
    color: #222;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 40px;
  }

  .airbnb-search-lens:active {
    transform: scale(0.92);
  }

  .airbnb-header.is-search-overlay-open .airbnb-search-lens {
    background: #fff;
    border-color: #1c1917;
    box-shadow: 0 0 0 3px rgba(28, 25, 23, 0.08);
  }

  .airbnb-header.is-search-scrolled .airbnb-search-lens {
    display: inline-flex;
    animation: sk-lens-pop 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .airbnb-header.is-search-scrolled:not(.is-search-overlay) .airbnb-header-center {
    position: absolute;
    width: 0;
    height: 0;
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
  }

  .airbnb-header.is-search-scrolled .airbnb-header-inner {
    grid-template-rows: auto;
    row-gap: 0;
    padding-bottom: 10px;
  }

  .sk-search-backdrop {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--sk-search-overlay-top, 72px);
    z-index: 999;
    background: rgba(34, 30, 26, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s linear;
  }

  .sk-search-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .airbnb-header.is-search-scrolled.is-search-overlay {
    border-bottom-color: transparent;
  }

  .airbnb-header.is-search-scrolled.is-search-overlay .airbnb-header-center {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--sk-search-overlay-top, 72px);
    z-index: 20;
    width: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 16px 20px 20px;
    background: #fff;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 40px rgba(34, 30, 26, 0.16);
    grid-column: auto;
    grid-row: auto;
    overflow: visible;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translate3d(0, -18px, 0);
    transform-origin: top center;
    will-change: transform, opacity;
  }

  .airbnb-header.is-search-scrolled.is-search-overlay.is-search-overlay-open .airbnb-header-center {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    will-change: auto;
    transition:
      transform 0.44s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease;
  }

  .airbnb-header.is-search-scrolled.is-search-overlay.is-search-overlay-closing .airbnb-header-center {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -14px, 0);
    transition:
      transform 0.28s cubic-bezier(0.4, 0, 1, 1),
      opacity 0.2s ease;
  }

  .airbnb-header.is-search-overlay-open .sk-buyrent-toggle,
  .airbnb-header.is-search-overlay-open .sk-search-bar {
    animation: sk-search-overlay-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .airbnb-header.is-search-overlay-open .sk-search-bar {
    animation-delay: 0.05s;
  }

  .airbnb-header.is-search-scrolled.is-search-overlay .sk-search-wrap {
    width: 100%;
    align-items: flex-start;
  }
}

@keyframes sk-search-overlay-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sk-lens-pop {
  0% {
    opacity: 0;
    transform: scale(0.55) rotate(-18deg);
  }
  62% {
    opacity: 1;
    transform: scale(1.1) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .airbnb-search-lens,
  .airbnb-header-center,
  .sk-search-backdrop,
  .airbnb-header.is-search-scrolled.is-search-overlay .airbnb-header-center,
  .airbnb-header.is-search-overlay-open .sk-buyrent-toggle,
  .airbnb-header.is-search-overlay-open .sk-search-bar {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

body.sk-search-overlay-open {
  overscroll-behavior: none;
}

@media (max-width: 767px) {
  .airbnb-search.sk-search-bar {
    width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    border-radius: 999px;
    padding: 4px 4px 4px 6px;
    gap: 0;
  }

  .sk-search-divider {
    display: block;
    height: auto;
    margin: 6px 0;
  }

  .sk-search-seg {
    flex: 1 1 0;
    min-width: 0;
    padding: 6px 10px;
  }

  .sk-search-seg-label {
    font-size: 12px;
  }

  .sk-search-seg-value {
    font-size: 11.5px;
  }

  .sk-search-seg-input {
    font-size: 11.5px;
    line-height: 1.15;
  }

  .sk-search-seg-input::placeholder {
    font-size: 11.5px;
  }

  .sk-search-clear {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .sk-search-bar .airbnb-search-btn {
    margin-left: 2px;
    width: 34px;
    height: 34px;
    font-size: 13px;
    flex: 0 0 34px;
    padding: 0;
    border-radius: 50%;
  }

  .sk-search-bar.is-open .airbnb-search-btn,
  .sk-search-bar:focus-within .airbnb-search-btn {
    width: 34px;
    min-width: 34px;
    flex: 0 0 34px;
    padding: 0;
    border-radius: 50%;
  }

  .sk-search-bar.is-open .airbnb-search-btn-label,
  .sk-search-bar:focus-within .airbnb-search-btn-label {
    display: none;
  }

  .sk-search-bar [data-purpose-panel],
  .sk-search-bar [data-budget-panel],
  .sk-search-panel {
    left: 8px;
    right: 8px;
    min-width: 0;
  }
}

@media (max-width: 575px) {
  .airbnb-purpose-tabs {
    gap: 22px;
  }

  .airbnb-tab {
    padding: 8px 2px 12px;
    font-size: 15px;
    gap: 0;
  }

  .airbnb-tab-icon,
  img.airbnb-tab-icon {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    min-height: 56px;
    flex-basis: 56px;
  }

  .airbnb-become-builder {
    display: none;
  }

  .airbnb-user-menu-btn:not(.is-logged-in) {
    height: 40px;
    padding: 4px 4px 4px 10px;
  }
}

/* Homepage — Airbnb-style section title link */
.popular-homes-header {
  width: 100%;
  margin-bottom: 16px !important;
}

.property-listing-four .infaedge-listing-row .listing-card-one {
  margin-bottom: 0;
}

/* One stacked row per admin-selected area */
.infaedge-area-row + .infaedge-area-row {
  margin-top: 46px;
}

@media (max-width: 768px) {
  .infaedge-area-row + .infaedge-area-row {
    margin-top: 30px;
  }
}

/* Compact premium cards for the 5-across popular row */
.infaedge-listing-row {
  transition: opacity 0.18s ease-in-out, transform 0.18s ease-in-out;
}

/* Tab switch: fade the old row out, stagger the new cards in */
.infaedge-listing-row.is-leaving {
  opacity: 0;
  transform: translateY(6px);
}

@keyframes infaedge-card-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.infaedge-listing-row.is-entering .slick-slide,
.infaedge-listing-row.is-entering > .item {
  animation: infaedge-card-in 0.45s ease-in-out both;
}

.infaedge-listing-row.is-entering .slick-slide:nth-child(1) {
  animation-delay: 0s;
}

.infaedge-listing-row.is-entering .slick-slide:nth-child(2) {
  animation-delay: 0.06s;
}

.infaedge-listing-row.is-entering .slick-slide:nth-child(3) {
  animation-delay: 0.12s;
}

.infaedge-listing-row.is-entering .slick-slide:nth-child(4) {
  animation-delay: 0.18s;
}

.infaedge-listing-row.is-entering .slick-slide:nth-child(5) {
  animation-delay: 0.24s;
}

.infaedge-listing-row.is-entering .slick-slide:nth-child(n + 6) {
  animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .infaedge-listing-row,
  .infaedge-listing-row.is-entering .slick-slide,
  .infaedge-listing-row.is-entering > .item {
    transition: none;
    animation: none;
  }

  .infaedge-listing-row.is-leaving {
    opacity: 1;
    transform: none;
  }
}

.infaedge-listing-row.slick-slider {
  margin: 0 -11px;
}

.infaedge-listing-row .slick-slide {
  margin: 0 11px;
  height: auto;
}

.infaedge-listing-row .slick-track {
  display: flex;
  align-items: stretch;
}

.infaedge-listing-row .slick-slide > div,
.infaedge-listing-row .item {
  height: 100%;
}

.infaedge-listing-row .listing-card-one.style-three {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.infaedge-listing-row .listing-card-one.style-three .property-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.infaedge-listing-row .listing-card-one.style-three .pl-footer {
  margin-top: auto;
}

.infaedge-listing-row .listing-card-one.style-three {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  overflow: hidden;
}

.infaedge-listing-row .listing-card-one.style-three:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.infaedge-listing-row .listing-card-one.style-three .img-gallery {
  padding: 8px;
}

.infaedge-listing-row .listing-card-one.style-three .img-gallery .position-relative,
.infaedge-listing-row .listing-card-one.style-three .img-gallery img {
  border-radius: 12px;
}

.infaedge-listing-row .listing-card-one.style-three .img-gallery .tag {
  left: 10px;
  top: 10px;
  width: auto;
  padding: 0 10px;
  line-height: 22px;
  font-size: 10px;
  letter-spacing: 0.06em;
  border-radius: 999px;
}

.infaedge-listing-row .listing-card-one.style-three .img-gallery .btn-four {
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  bottom: 12px;
  right: 12px;
}

.infaedge-listing-row .listing-card-one.style-three .img-slider-btn {
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 999px;
}

.infaedge-listing-row .listing-card-one.style-three .property-info {
  padding: 2px 14px 0;
}

.infaedge-listing-row .listing-card-one.style-three .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.infaedge-listing-row .listing-card-one.style-three .address {
  font-size: 13px;
  line-height: 1.4;
  margin: 2px 0 0;
}

.infaedge-listing-row .listing-card-one.style-three .pl-footer {
  padding: 10px 0 14px;
}

.infaedge-listing-row .listing-card-one.style-three .pl-footer.top-border {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.infaedge-listing-row .listing-card-one.style-three .price {
  font-size: 17px;
  line-height: 1.2;
}

.infaedge-listing-row .listing-card-one.style-three .price sub {
  font-size: 12px;
}

.infaedge-listing-row .listing-card-one.style-three .action-icons li a {
  font-size: 15px;
}

@media (max-width: 767px) {
  /* overflow-x: hidden on .main-page-wrapper (theme CSS) turns the wrapper
     into a nested vertical scroller, so carousel touch gestures never
     reach the page. clip still hides sideways overflow without trapping
     vertical scroll. */
  .main-page-wrapper {
    overflow-x: clip;
  }

  .infaedge-listing-row.slick-slider {
    margin: 0 -5px;
  }

  .infaedge-listing-row .slick-slide {
    margin: 0 5px;
  }

  /* Native swipe carousel — momentum + snap (smoother than Slick on phones). */
  .infaedge-listing-row.is-mobile-scroll {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 2px 2px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    scrollbar-width: none;
    /* pan-x alone blocks vertical page scroll except in the tiny gaps
       between rows. Allow both so cards swipe sideways and the page
       still scrolls from anywhere on the row. */
    touch-action: pan-x pan-y;
  }

  .infaedge-listing-row.is-mobile-scroll::-webkit-scrollbar {
    display: none;
  }

  .infaedge-listing-row.is-mobile-scroll > .item {
    flex: 0 0 calc((100% - 10px) / 2.15);
    width: calc((100% - 10px) / 2.15);
    max-width: calc((100% - 10px) / 2.15);
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .infaedge-listing-row.is-mobile-scroll > .item .listing-card-one.style-three {
    height: 100%;
  }

  .infaedge-listing-row.is-mobile-scroll > .item .see-all-card {
    height: auto;
    min-height: 0;
    width: 100%;
    aspect-ratio: 16 / 11;
    gap: 6px;
    padding: 12px 10px 14px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .infaedge-listing-row .listing-card-one.style-three .img-gallery {
    padding: 6px;
  }

  .infaedge-listing-row .listing-card-one.style-three .img-gallery .btn-four {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    bottom: 8px;
    right: 8px;
  }

  .infaedge-listing-row .listing-card-one.style-three .property-info {
    padding: 2px 10px 0;
  }

  .infaedge-listing-row .listing-card-one.style-three .title {
    font-size: 14px;
  }

  .infaedge-listing-row .listing-card-one.style-three .address {
    font-size: 12px;
  }

  .infaedge-listing-row .listing-card-one.style-three .pl-footer {
    padding: 8px 0 12px;
  }

  .infaedge-listing-row .listing-card-one.style-three .price {
    font-size: 15px;
  }

  .infaedge-listing-row .see-all-card {
    gap: 6px;
    padding: 12px 10px 14px;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 11;
    overflow: hidden;
  }

  .infaedge-listing-row .see-all-stack {
    width: 72px;
    height: 48px;
  }

  .infaedge-listing-row .see-all-thumb {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border-width: 1.5px;
  }

  .infaedge-listing-row .see-all-thumb-1 {
    left: 6px;
    bottom: 4px;
    transform: translate3d(2px, 2px, 0) rotate(-3deg) scale(0.9);
  }

  .infaedge-listing-row .see-all-thumb-2 {
    left: 20px;
    top: 2px;
    transform: translate3d(0, 4px, 0) rotate(0deg) scale(0.9);
  }

  .infaedge-listing-row .see-all-thumb-3 {
    right: 4px;
    bottom: 6px;
    transform: translate3d(-2px, 2px, 0) rotate(3deg) scale(0.9);
  }

  .infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-1 {
    transform: translate3d(-4px, 1px, 0) rotate(-10deg) scale(1);
  }

  .infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-2 {
    transform: translate3d(0, -3px, 0) rotate(0deg) scale(1.04);
  }

  .infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-3 {
    transform: translate3d(5px, 1px, 0) rotate(10deg) scale(1);
  }

  .infaedge-listing-row .see-all-label {
    font-size: 12px;
  }
}

.property-listing-four .popular-homes-header .slick-arrow-two {
  position: static;
  margin: 0;
  gap: 8px;
}

.property-listing-four .popular-homes-header .popular-homes-arrows li,
.property-listing-four .popular-homes-header .popular-homes-arrows li.slick-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  border-radius: 50%;
  background: #ebebeb;
  color: #222;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.property-listing-four .popular-homes-header .popular-homes-arrows li i {
  display: block;
  line-height: 1;
}

.property-listing-four .popular-homes-header .popular-homes-arrows li:hover {
  background: #222;
  color: #fff;
}

.property-listing-four .popular-homes-header .popular-homes-arrows li.slick-disabled,
.property-listing-four .popular-homes-header .popular-homes-arrows li.slick-disabled:hover {
  background: #ebebeb;
  color: #b0b0b0;
  cursor: default;
  opacity: 1;
}

@media (max-width: 767px) {
  .property-listing-four .popular-homes-header .popular-homes-arrows {
    display: none !important;
  }
}

.property-listing-four .popular-homes-actions .btn-eleven {
  line-height: 1;
}

.popular-homes-link {
  color: inherit;
  transition: opacity 0.2s ease;
}

.popular-homes-link h2 {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
}

@media (min-width: 992px) {
  .popular-homes-link h2 {
    font-size: 32px;
  }
}

.popular-homes-link:hover {
  color: inherit;
  opacity: 0.75;
}

.popular-homes-link .popular-homes-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #222;
  font-size: 13px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.popular-homes-link:hover .popular-homes-arrow {
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(2px);
}

/* Airbnb-style “See all” end card in popular homes slider */
.infaedge-listing-row .see-all-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 100%;
  height: 100%;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  color: #222;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.infaedge-listing-row .see-all-card:hover {
  color: #222;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.infaedge-listing-row .see-all-stack {
  position: relative;
  width: 118px;
  height: 96px;
  flex: 0 0 auto;
}

.infaedge-listing-row .see-all-thumb {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  transform-origin: center center;
  will-change: transform, opacity;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.55s ease-in-out,
    visibility 0.55s ease-in-out,
    transform 0.55s ease-in-out,
    box-shadow 0.55s ease-in-out;
}

/* Hidden until the end card is reached — then wait 250ms and ease in */
.infaedge-listing-row .see-all-card.is-revealed .see-all-thumb {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.25s;
}

.infaedge-listing-row .see-all-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Start collapsed / stacked while hidden */
.infaedge-listing-row .see-all-thumb-1 {
  left: 8px;
  bottom: 6px;
  z-index: 3;
  transform: translate3d(6px, 4px, 0) rotate(-4deg) scale(0.86);
}

.infaedge-listing-row .see-all-thumb-2 {
  left: 28px;
  top: 4px;
  z-index: 2;
  transform: translate3d(0, 8px, 0) rotate(0deg) scale(0.86);
}

.infaedge-listing-row .see-all-thumb-3 {
  right: 2px;
  bottom: 10px;
  z-index: 1;
  transform: translate3d(-6px, 4px, 0) rotate(4deg) scale(0.86);
}

/* After 250ms: fade + fan out with ease-in-out */
.infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-1 {
  transform: translate3d(-14px, 4px, 0) rotate(-22deg) scale(1);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-2 {
  transform: translate3d(0, -12px, 0) rotate(0deg) scale(1.06);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
  z-index: 4;
}

.infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-3 {
  transform: translate3d(16px, 2px, 0) rotate(24deg) scale(1);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.infaedge-listing-row .see-all-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .infaedge-listing-row .see-all-thumb {
    transition: none;
    opacity: 1;
    visibility: visible;
  }

  .infaedge-listing-row .see-all-card.is-revealed .see-all-thumb {
    transition-delay: 0s;
  }

  .infaedge-listing-row .see-all-thumb-1,
  .infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-1 {
    transform: translate3d(0, 0, 0) rotate(-10deg) scale(1);
  }

  .infaedge-listing-row .see-all-thumb-2,
  .infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-2 {
    transform: translate3d(0, 0, 0) rotate(4deg) scale(1);
  }

  .infaedge-listing-row .see-all-thumb-3,
  .infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-3 {
    transform: translate3d(0, 0, 0) rotate(14deg) scale(1);
  }
}

@media (max-width: 767px) {
  .infaedge-listing-row .see-all-card,
  .infaedge-listing-row.is-mobile-scroll > .item .see-all-card {
    overflow: hidden;
  }

  .infaedge-listing-row .see-all-stack {
    width: 96px;
    height: 70px;
  }

  .infaedge-listing-row .see-all-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .infaedge-listing-row .see-all-thumb-1,
  .infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-1 {
    left: 6px;
    bottom: 6px;
    transform: translate3d(-6px, 2px, 0) rotate(-12deg) scale(1);
  }

  .infaedge-listing-row .see-all-thumb-2,
  .infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-2 {
    left: 24px;
    top: 4px;
    transform: translate3d(0, -4px, 0) rotate(0deg) scale(1.04);
  }

  .infaedge-listing-row .see-all-thumb-3,
  .infaedge-listing-row .see-all-card.is-revealed .see-all-thumb-3 {
    right: 6px;
    bottom: 8px;
    transform: translate3d(6px, 2px, 0) rotate(12deg) scale(1);
  }
}


/* ——— Airbnb header secondary filters (listings) ——— */
.airbnb-header--with-filters {
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.airbnb-header--with-filters .airbnb-header-inner {
  width: 100%;
  padding-bottom: 10px;
}

.airbnb-header-filters {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #f4ece8;
  position: relative;
  z-index: 1;
}

.airbnb-header-filters-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 24px 12px;
  min-height: 52px;
}

.infaedge-filter-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 0;
}

.infaedge-filter-scroll::-webkit-scrollbar {
  display: none;
}

.infaedge-map-listings {
  padding: 0 24px;
}

/* Map height accounts for sticky header + filters row */
.airbnb-header--with-filters ~ .infaedge-map-listings .infaedge-listings-map,
body:has(.airbnb-header--with-filters) .infaedge-listings-map {
  height: calc(100vh - 200px);
  min-height: 380px;
}

body:has(.airbnb-header--with-filters) .infaedge-listings-panel {
  min-height: calc(100vh - 200px);
}

@media (max-width: 991px) {
  .airbnb-header-filters-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 12px;
  }

  .infaedge-filter-controls {
    width: 100%;
    justify-content: flex-start;
  }
}


.infaedge-type-chip {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.infaedge-type-chip:hover {
  border-color: rgba(0, 0, 0, 0.28);
}

.infaedge-type-chip.active {
  background: #ff6725;
  border-color: #ff6725;
  color: #fff;
}

.infaedge-map-listings-row {
  min-height: calc(100vh - 160px);
}

.infaedge-map-col {
  position: relative;
}

.infaedge-listings-map {
  width: 100%;
  height: calc(100vh - 160px);
  min-height: 420px;
  position: sticky;
  top: 0;
  z-index: 1;
  background: #e8e4e0;
}

.infaedge-listings-panel {
  min-height: calc(100vh - 160px);
}

.infaedge-map-listings [data-listing-card].is-map-active .listing-card-one {
  box-shadow: 0 0 0 2px #ff6725, 0 10px 28px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
}

/* Price-style map pins (Airbnb-like) */
.infaedge-map-pin {
  background: transparent !important;
  border: 0 !important;
}

.infaedge-map-pin-label {
  display: inline-block;
  transform: translate(-50%, -100%);
  background: #fff;
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.infaedge-map-pin.is-active .infaedge-map-pin-label,
.infaedge-map-pin:hover .infaedge-map-pin-label {
  background: #222;
  color: #fff;
  transform: translate(-50%, -100%) scale(1.06);
}

.infaedge-map-popup a {
  color: #222;
  text-decoration: none;
}

.infaedge-map-popup a:hover {
  color: #ff6725;
}

@media (max-width: 991px) {
  .infaedge-listings-map {
    position: relative;
    height: 28vh;
    min-height: 180px;
    max-height: 220px;
  }

  .infaedge-listings-panel {
    min-height: 0;
  }

  .infaedge-map-listings:not(.is-list-view) .infaedge-listings-panel {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ——— Listings extra filters (beds / baths / amenities multiselect) ——— */
.infaedge-filter-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  margin-right: 2px;
  flex-shrink: 0;
}

.infaedge-filter-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.infaedge-filter-dropdown {
  position: relative;
  z-index: 50;
}

.infaedge-filter-trigger {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.infaedge-filter-trigger:hover,
.infaedge-filter-dropdown.is-open .infaedge-filter-trigger {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.infaedge-filter-trigger.has-selection {
  border-color: #ff6725;
  color: #ff6725;
}

.infaedge-filter-trigger .bi-chevron-down {
  font-size: 12px;
  opacity: 0.65;
  transition: transform 0.15s ease;
}

.infaedge-filter-dropdown.is-open .bi-chevron-down {
  transform: rotate(180deg);
}

.infaedge-filter-count {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ff6725;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.infaedge-filter-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  min-width: 160px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  padding: 8px;
  max-height: min(360px, 60vh);
  overflow: auto;
}

.infaedge-filter-dropdown--wide .infaedge-filter-panel {
  min-width: 280px;
  width: min(320px, 90vw);
  padding: 14px;
}

.infaedge-filter-option {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.infaedge-filter-option:hover,
.infaedge-filter-option.is-selected {
  background: #f5f5f5;
}

.infaedge-filter-option.is-selected {
  color: #ff6725;
  font-weight: 600;
}

.infaedge-filter-panel-title {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.infaedge-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  margin-bottom: 12px;
}

.infaedge-amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  padding: 6px 4px;
  border-radius: 8px;
  margin: 0;
}

.infaedge-amenity-item:hover {
  background: #f7f7f7;
}

.infaedge-amenity-item input {
  width: 16px;
  height: 16px;
  accent-color: #ff6725;
  flex-shrink: 0;
  margin: 0;
}

.infaedge-filter-panel-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 10px;
}

.infaedge-filter-clear,
.infaedge-filter-clear-all {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
}

.infaedge-filter-clear:hover,
.infaedge-filter-clear-all:hover {
  color: #222;
  background: #f5f5f5;
}

.infaedge-filter-apply {
  appearance: none;
  border: 0;
  background: #ff6725;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
}

.infaedge-filter-apply:hover {
  background: #e85a1c;
}

@media (max-width: 767px) {
  .infaedge-filter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .infaedge-filter-controls {
    width: 100%;
  }

  .infaedge-filter-dropdown {
    flex: 1 1 auto;
  }

  .infaedge-filter-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .infaedge-filter-panel {
    left: 0;
    right: 0;
  }
}

/* ═══════ Listings — premium refinements (Airbnb-like) ═══════ */

/* Header: clean white surface with subtle divider */
.airbnb-header--with-filters.theme-main-menu {
  background: #fff !important;
  border-bottom: 0;
  box-shadow: none;
}

.airbnb-header--with-filters .airbnb-header-inner {
  padding: 20px 44px 16px;
  min-height: 0;
}

.airbnb-header--with-filters .airbnb-header-center {
  max-width: none;
}

.airbnb-header--with-filters .airbnb-search.sk-search-bar {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 991px) {
  .airbnb-header--with-filters .airbnb-header-inner {
    padding: 12px 14px;
    min-height: 0;
  }

  .airbnb-header--with-filters .airbnb-search.sk-search-bar {
    width: 100%;
    max-width: none;
  }
}

.airbnb-header--with-filters .airbnb-search-compact,
.airbnb-header--with-filters .airbnb-search {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 4px 14px rgba(0, 0, 0, 0.05);
}

.airbnb-header-filters {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.airbnb-header-filters-inner {
  padding: 10px 24px;
  min-height: 56px;
  justify-content: center;
  gap: 12px;
}

/* Both filter groups meet at the centre instead of hugging the edges */
.airbnb-header-filters-inner .infaedge-filter-scroll {
  flex: 1 1 0;
  justify-content: flex-end;
}

.airbnb-header-filters-inner .infaedge-filter-controls {
  flex: 1 1 0;
  justify-content: flex-start;
}

/* Filter chips: neutral, dark-on-select (premium, not loud) */
.infaedge-type-chip {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.72);
  font-size: 13.5px;
  padding: 7px 15px;
  white-space: nowrap;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02);
}

.infaedge-type-chip:hover {
  border-color: rgba(0, 0, 0, 0.35);
  color: #111;
  background: #fafafa;
}

.infaedge-type-chip.active {
  background: #111;
  border-color: #111;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.infaedge-filter-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.infaedge-filter-trigger {
  border-color: rgba(0, 0, 0, 0.1);
  font-size: 13.5px;
  padding: 7px 14px;
  color: rgba(0, 0, 0, 0.78);
}

.infaedge-filter-trigger.has-selection {
  border-color: #111;
  color: #111;
  background: #fff;
  box-shadow: inset 0 0 0 1px #111;
}

.infaedge-filter-count {
  background: #111;
}

.infaedge-filter-apply {
  background: #111;
}

.infaedge-filter-apply:hover {
  background: #000;
}

.infaedge-amenity-item input {
  accent-color: #111;
}

.infaedge-filter-option.is-selected {
  color: #111;
  background: #f2f2f2;
}

/* Layout: map gets breathing room, list is white and airy */
.infaedge-map-listings-row {
  background: #fff;
}

.infaedge-map-col {
  padding: 36px 12px 12px 6px;
}

.infaedge-listings-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 10px 30px rgba(0, 0, 0, 0.06);
  height: calc(100vh - 200px);
}

body:has(.airbnb-header--with-filters) .infaedge-listings-map {
  top: calc(var(--sk-listings-header-h, 240px) + 12px);
  height: calc(100vh - var(--sk-listings-header-h, 240px) - 24px);
}

.infaedge-listings-panel {
  background: #fff;
  padding: 22px 28px 48px;
}

.infaedge-listings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.infaedge-map-listings:not(.is-list-view) .infaedge-listings-head {
  padding: 22px 28px 0;
  margin-bottom: 18px;
}

.infaedge-map-listings:not(.is-list-view) .infaedge-listings-panel {
  padding-top: 0;
}

@media (min-width: 992px) {
  .infaedge-map-listings:not(.is-list-view) .infaedge-map-col {
    padding-top: 0;
    align-self: stretch;
  }

  /* overflow-x: hidden on .main-page-wrapper creates a scroll containing
     block and prevents position:sticky from pinning the map. */
  body:has(.infaedge-map-listings:not(.is-list-view)) .main-page-wrapper {
    overflow-x: clip;
  }

  body:has(.sk-listings-filters) .infaedge-map-listings:not(.is-list-view) .infaedge-listings-map {
    position: sticky;
    top: calc(var(--sk-listings-header-h, 240px) + 12px);
    height: calc(100vh - var(--sk-listings-header-h, 240px) - 24px);
    max-height: calc(100vh - var(--sk-listings-header-h, 240px) - 24px);
    min-height: 0;
  }
}

#infaedge-listing-summary {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #222;
}

.infaedge-listings-head .color-dark {
  color: #111 !important;
  font-weight: 600;
}

.infaedge-listing-grid {
  --bs-gutter-x: 22px;
  --bs-gutter-y: 30px;
}

/* Airbnb-style listings pagination */
.sk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 48px 0 8px;
  padding: 0;
}

.sk-pagination[hidden] {
  display: none !important;
}

.sk-page-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sk-page-num,
.sk-page-arrow {
  appearance: none;
  border: 0;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.sk-page-num:hover,
.sk-page-arrow:hover:not(:disabled) {
  background: #f2f2f2;
}

.sk-page-num.is-active {
  background: #222;
  color: #fff;
}

.sk-page-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.sk-page-ellipsis {
  width: 32px;
  text-align: center;
  font-size: 14px;
  color: #222;
  line-height: 32px;
}

@media (max-width: 991px) {
  .sk-pagination {
    margin: 28px 0 12px;
    gap: 12px;
  }

  .sk-page-list {
    display: none;
  }

  .sk-page-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .sk-page-arrow:hover:not(:disabled) {
    background: #fff;
  }
}

/* Card */
.infaedge-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
}

.infaedge-card-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 20 / 15;
  background: #f1efed;
}

.infaedge-card-media-link,
.infaedge-card-media-link img {
  display: block;
  width: 100%;
  height: 100%;
}

.infaedge-card-media-link img {
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.infaedge-card:hover .infaedge-card-media-link img {
  transform: scale(1.05);
}

.infaedge-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
}

.infaedge-card-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.infaedge-card-heart:hover {
  background: rgba(0, 0, 0, 0.45);
  transform: scale(1.06);
}

.infaedge-card-heart.is-active {
  background: #fff;
  color: #ff385c;
}

.infaedge-card-heart.is-active .bi-heart::before {
  content: "\f415"; /* bi-heart-fill */
}

.infaedge-card-photos {
  position: absolute;
  left: 10px;
  right: auto;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.infaedge-card-photos:hover {
  background: rgba(0, 0, 0, 0.75);
}

.infaedge-card-body {
  padding: 12px 2px 0;
}

.infaedge-card-title {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111;
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.infaedge-card-title:hover {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.infaedge-card-meta,
.infaedge-card-features {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 0 2px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.infaedge-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.infaedge-card-price {
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111;
}

.infaedge-card-price sub {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  bottom: 0;
}

.infaedge-card-compare {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: #fff;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.infaedge-card-compare:hover {
  border-color: #111;
  color: #111;
}

.infaedge-card-compare.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* Map-linked highlight */
.infaedge-map-listings [data-listing-card].is-map-active .infaedge-card .infaedge-card-media {
  box-shadow: 0 0 0 3px #111;
}

.infaedge-map-listings [data-listing-card].is-map-active .listing-card-one {
  box-shadow: none;
}

/* Pins align with the neutral palette */
.infaedge-map-pin-label {
  font-size: 13px;
  padding: 7px 11px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.infaedge-map-pin.is-active .infaedge-map-pin-label,
.infaedge-map-pin:hover .infaedge-map-pin-label {
  background: #111;
}

@media (max-width: 991px) {
  .infaedge-map-listings {
    padding: 0;
  }

  .infaedge-map-col {
    padding: 16px;
    order: 1;
  }

  .infaedge-list-col {
    order: 2;
  }

  .infaedge-listings-head {
    display: none;
  }

  .airbnb-header-filters-inner .infaedge-filter-scroll,
  .airbnb-header-filters-inner .infaedge-filter-controls {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .infaedge-listings-map,
  body:has(.airbnb-header--with-filters) .infaedge-listings-map {
    border-radius: 16px;
    height: 28vh;
    min-height: 180px;
    max-height: 220px;
    top: 0;
  }

  .infaedge-listings-panel {
    padding: 18px 16px 40px;
  }
}

/* ═══════ Map pin popup card (Airbnb-style) ═══════ */
.leaflet-popup.infaedge-map-popup {
  margin-bottom: 6px;
}

.leaflet-popup.infaedge-map-popup .leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), 0 16px 44px rgba(0, 0, 0, 0.14);
}

.leaflet-popup.infaedge-map-popup .leaflet-popup-content {
  margin: 0;
  width: 260px !important;
  line-height: normal;
}

.leaflet-popup.infaedge-map-popup .leaflet-popup-tip-container {
  display: none;
}

.leaflet-popup.infaedge-map-popup .leaflet-popup-close-button {
  top: 10px;
  left: 10px;
  right: auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font: 700 18px/1 "Inter", sans-serif;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease;
}

.leaflet-popup.infaedge-map-popup .leaflet-popup-close-button:hover {
  color: #000;
  background: #fff;
  transform: scale(1.06);
}

.infaedge-map-card-media {
  position: relative;
  aspect-ratio: 20 / 13;
  background: #f1efed;
}

.infaedge-map-card-media a,
.infaedge-map-card-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.infaedge-map-card-media img {
  object-fit: cover;
}

.infaedge-map-card-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
}

.infaedge-map-card-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.infaedge-map-card-heart:hover {
  background: rgba(0, 0, 0, 0.48);
  transform: scale(1.06);
}

.infaedge-map-card-heart.is-active {
  background: #fff;
  color: #ff385c;
}

.infaedge-map-card-heart.is-active .bi-heart::before {
  content: "\f415";
}

.infaedge-map-card-body {
  padding: 12px 14px 14px;
}

.infaedge-map-card-title {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111;
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.infaedge-map-card-title:hover {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.infaedge-map-card-meta {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 0 2px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.infaedge-map-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.infaedge-map-card-location i {
  color: #c45b32;
  font-size: 12px;
  line-height: 1;
  flex: 0 0 auto;
}

.infaedge-map-card-location span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.infaedge-map-card-price {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111;
  margin: 7px 0 0;
}

.infaedge-map-card-price sub {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  bottom: 0;
}

/* ═══════ Property detail — Airbnb-style photo mosaic ═══════ */
.infaedge-gallery {
  position: relative;
  width: 100%;
}

.infaedge-gallery-mosaic {
  position: relative;
  display: grid;
  gap: 8px;
  height: min(52vh, 520px);
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #ebe7e2;
}

/* 5+ photos: hero left + 2×2 side grid */
.infaedge-gallery[data-gallery-mosaic="5"] .infaedge-gallery-mosaic {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.infaedge-gallery[data-gallery-mosaic="5"] .infaedge-gallery-tile--hero {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.infaedge-gallery[data-gallery-mosaic="5"] .infaedge-gallery-tile--side:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.infaedge-gallery[data-gallery-mosaic="5"] .infaedge-gallery-tile--side:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.infaedge-gallery[data-gallery-mosaic="5"] .infaedge-gallery-tile--side:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.infaedge-gallery[data-gallery-mosaic="5"] .infaedge-gallery-tile--side:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

/* 4 photos: equal 2×2 */
.infaedge-gallery[data-gallery-mosaic="4"] .infaedge-gallery-mosaic {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* 3 photos: hero + two stacked */
.infaedge-gallery[data-gallery-mosaic="3"] .infaedge-gallery-mosaic {
  grid-template-columns: 1.8fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.infaedge-gallery[data-gallery-mosaic="3"] .infaedge-gallery-tile--hero {
  grid-row: 1 / span 2;
}

/* 2 photos: split */
.infaedge-gallery[data-gallery-mosaic="2"] .infaedge-gallery-mosaic {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

/* 1 photo */
.infaedge-gallery[data-gallery-mosaic="1"] .infaedge-gallery-mosaic {
  grid-template-columns: 1fr;
}

.infaedge-gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #ebe7e2;
  cursor: pointer;
}

.infaedge-gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.25s ease;
}

.infaedge-gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  transition: background 0.2s ease;
  pointer-events: none;
}

.infaedge-gallery-tile:hover img {
  transform: scale(1.035);
  filter: brightness(0.96);
}

.infaedge-gallery-tile:hover::before {
  background: rgba(0, 0, 0, 0.08);
}

.infaedge-gallery-tile:focus-visible {
  outline: 3px solid #ff6725;
  outline-offset: -3px;
  z-index: 2;
}

.infaedge-gallery-purpose {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.infaedge-gallery-purpose i {
  font-size: 11px;
  transform: rotate(-45deg);
}

.infaedge-gallery-purpose--buy {
  background: #d9682a;
}

.infaedge-gallery-purpose--rent {
  background: #1f4d3a;
}

.infaedge-gallery-purpose--rent i {
  transform: none;
}

.infaedge-gallery--empty {
  position: relative;
}

.infaedge-gallery--empty .infaedge-gallery-purpose {
  top: 14px;
  left: 14px;
}

.infaedge-gallery-more {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: rgba(17, 17, 17, 0.48);
  color: #fff;
  font-family: "Inter", sans-serif;
  pointer-events: none;
  transition: background 0.2s ease;
}

.infaedge-gallery-tile:hover .infaedge-gallery-more {
  background: rgba(17, 17, 17, 0.58);
}

.infaedge-gallery-more > span:first-child {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.infaedge-gallery-more-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.infaedge-gallery-all {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  color: #111;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.infaedge-gallery-all:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.infaedge-gallery-all i {
  font-size: 13px;
}

.infaedge-gallery-links,
.infaedge-gallery-hidden {
  display: none;
}

.infaedge-gallery-thumbs {
  display: none;
}

.infaedge-gallery-mobile-bar {
  display: none;
}

.infaedge-gallery-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  border-radius: 16px;
  background: #ebe7e2;
  color: rgba(0, 0, 0, 0.45);
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.infaedge-detail-head {
  margin-top: 36px;
}

.infaedge-gallery-nav {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.infaedge-gallery-nav:hover {
  background: #fff;
}

.infaedge-gallery-counter {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  min-width: 48px;
  text-align: center;
}

@media (max-width: 1199px) {
  .infaedge-gallery-mosaic {
    height: min(48vh, 440px);
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .infaedge-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .infaedge-gallery-mosaic {
    display: block;
    height: 62vw;
    min-height: 240px;
    max-height: 360px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  }

  .infaedge-gallery-tile--side {
    display: none;
  }

  .infaedge-gallery-tile--hero {
    width: 100%;
    height: 100%;
    border-radius: 18px;
  }

  .infaedge-gallery-purpose {
    top: auto;
    bottom: 12px;
    left: 12px;
    padding: 7px 12px;
    font-size: 12.5px;
  }

  .infaedge-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    /* Room for the active ring so first/last thumbs are not clipped */
    padding: 4px 2px 6px;
    margin: 0 -2px;
  }

  .infaedge-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .infaedge-gallery-thumb {
    position: relative;
    display: block;
    flex: 0 0 calc((100% - 24px) / 4);
    width: calc((100% - 24px) / 4);
    aspect-ratio: 1.15 / 1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #ebe7e2;
    cursor: pointer;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

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

  .infaedge-gallery-thumb.is-active {
    border-color: #c74e1e;
    outline: none;
    box-shadow: 0 0 0 1px rgba(199, 78, 30, 0.25);
  }

  .infaedge-gallery-all {
    display: none;
  }

  .fancybox__caption,
  .fancybox-caption,
  .fancybox__footer .fancybox__caption,
  .fancybox-caption__body {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .infaedge-gallery-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    pointer-events: none;
  }

  .infaedge-gallery-mobile-bar .infaedge-gallery-nav {
    pointer-events: auto;
    width: 36px;
    height: 36px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  }
}

/* Detail page: Airbnb-style contained width with generous side padding */
.listing-details-one.theme-details-one {
  background: #f7f4f0 !important;
}

.listing-details-one .container.container-large {
  max-width: 1320px;
  padding-left: 48px;
  padding-right: 48px;
}

@media (max-width: 1199px) {
  .listing-details-one .container.container-large {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 767px) {
  .listing-details-one.theme-details-one {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .listing-details-one .container.container-large {
    padding-top: 0px !important;
    padding-right: 20px;
    padding-bottom: 30px;
    padding-left: 20px;
  }

  .listing-details-one .sk-detail-similar-title {
    padding-left: 0;
    padding-right: 0;
  }

  .listing-details-one .sk-detail-similar .similar-listing-slider-one {
    margin-left: 0;
    margin-right: 0;
  }

  .listing-details-one .sk-detail-similar .similar-listing-slider-one .item {
    padding-left: 0;
    padding-right: 0;
  }
}

.fancybox__container .fancybox__slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

.fancybox__container .fancybox__content {
  margin-top: auto;
  margin-bottom: auto;
  align-self: center;
}

.fancybox__container .fancybox__content img {
  max-height: min(70vh, calc(100vh - 200px));
  width: auto;
  object-fit: contain;
}

.fancybox__container .fancybox__nav .f-button.is-prev,
.fancybox__container .fancybox__nav .f-button.is-next {
  display: flex !important;
  visibility: visible;
  opacity: 1;
}

.fancybox__container .fancybox__nav .f-button.is-prev {
  left: 16px;
  right: auto;
}

.fancybox__container .fancybox__nav .f-button.is-next {
  right: 16px;
  left: auto;
}

/* ═══════ Property detail — premium body ═══════ */
.sk-detail {
  padding-bottom: 40px;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.sk-detail-head {
  margin-top: 0;
  padding-bottom: 8px;
}

.sk-detail-head-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 32px;
}

.sk-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.sk-detail-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #111;
  color: #fff;
}

.sk-detail-pill.is-rent {
  background: #1f7a4d;
}

.sk-detail-pill.is-sale,
.sk-detail-pill.is-buy {
  background: #ff6725;
}

.sk-detail-pill--muted {
  background: #fff;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.sk-detail-title {
  margin: 0 0 10px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 35px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.sk-detail-location {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  color: rgba(0, 0, 0, 0.52);
}

.sk-detail-location i {
  color: #c45b32;
  font-size: 14px;
}

.sk-detail-specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
}

.sk-detail-spec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: #2a2a2a;
}

.sk-detail-spec i {
  color: #3d4c3e;
  font-size: 16px;
}

.sk-detail-head-aside {
  flex: 0 0 auto;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.sk-detail-toolbar {
  display: none;
}

.sk-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 0;
}

.sk-detail-share {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.sk-detail-share:hover {
  border-color: #111;
  color: #111;
}

.sk-detail-share.is-copied {
  border-color: #1f7a4d;
  color: #1f7a4d;
}

.sk-detail-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #333;
}

.sk-detail-rating i {
  color: #f5b301;
  font-size: 13px;
}

.sk-detail-rating strong {
  font-weight: 700;
  color: #111;
}

.sk-detail-rating span {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.sk-detail-owner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);

}

.sk-detail-owner-badge {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.5px dashed rgba(46, 125, 70, 0.55);
  color: #2e7d46;
  font-size: 26px;
  background: rgba(46, 125, 70, 0.06);
}

.sk-detail-owner-copy {
  min-width: 0;
}

.sk-detail-owner-label {
  margin: 0 0 2px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
}

.sk-detail-owner-name {
  margin: 0 0 4px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111;
  line-height: 1.2;
}

.sk-detail-owner-note {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.48);
}

.sk-detail-owner-verified {
  color: #2e7d46;
  font-weight: 600;
}

.sk-detail-owner-note-sep {
  color: rgba(0, 0, 0, 0.32);
}

.sk-detail-owner-hint {
  color: rgba(0, 0, 0, 0.48);
  font-weight: 400;
}

.sk-detail-owner-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.72);
}

.sk-detail-owner-meta-item {
  display: inline-flex;
  align-items: center;
}

.sk-detail-owner-meta-item + .sk-detail-owner-meta-item::before {
  content: "|";
  margin: 0 10px;
  color: rgba(0, 0, 0, 0.22);
  font-weight: 400;
}

.sk-detail-owner-rera-label {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
  margin-right: 6px;
}

.sk-detail-owner-rera-value {
  font-weight: 700;
  color: #111;
}

.sk-detail-owner-kda {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #e66c37;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.sk-detail-price-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 4px;
}

.sk-detail-price-value {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1.2;
}

/* Premium price hero */
.sk-price {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.sk-price--hero {
  padding: 14px 18px 14px 20px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #fff8f3 100%);
  border: 1px solid rgba(255, 103, 37, 0.18);
  box-shadow: 0 8px 24px rgba(255, 103, 37, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.sk-price--hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8a4c 0%, #ff6725 55%, #e85a1c 100%);
}

.sk-price-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
}

.sk-price-main {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.sk-price-currency {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #ff6725;
  line-height: 1;
  transform: translateY(-2px);
}

.sk-price--hero .sk-price-number {
  font-family: "Inter", sans-serif;
  font-size: clamp(40px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111;
  line-height: 0.95;
}

.sk-price-unit {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: #ff6725;
  line-height: 1.05;
  margin-left: 2px;
}

.sk-price-unit em {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.sk-price-exact {
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.48);
  letter-spacing: 0.01em;
}

.sk-price-onrequest {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.sk-price--side {
  width: 100%;
  align-items: stretch;
  text-align: left;
  margin-bottom: 16px;
  padding: 16px 16px 16px 18px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.sk-price--side .sk-price-label {
  color: rgba(255, 255, 255, 0.55);
}

.sk-price--side .sk-price-main {
  justify-content: flex-start;
  margin-top: 4px;
}

.sk-price--side .sk-price-currency {
  font-size: 24px;
  color: #ff8a4c;
}

.sk-price--side .sk-price-number {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 0.95;
}

.sk-price--side .sk-price-unit {
  color: #ff8a4c;
  font-size: 18px;
}

.sk-price--side .sk-price-unit em {
  color: rgba(255, 255, 255, 0.5);
}

.sk-price--side .sk-price-exact {
  color: rgba(255, 255, 255, 0.55);
}

.sk-price--side .sk-price-onrequest {
  color: #fff;
}

.sk-detail-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.sk-detail-action:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

.sk-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px 48px;
  margin-top: 28px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.sk-detail-main {
  min-width: 0;
  max-width: 100%;
}

.sk-detail-side {
  position: sticky;
  top: 108px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.sk-detail-side-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.sk-detail-side .sk-cta-card {
  margin-top: 0;
}

.sk-detail-section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  min-width: 0;
  max-width: 100%;
}

.sk-detail-section:first-of-type {
  padding-top: 20px;
}

.sk-detail-section-title {
  margin: 0 0 18px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111;
}

.sk-detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sk-detail-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.sk-detail-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f4ece8;
  color: #ff6725;
  font-size: 17px;
  flex-shrink: 0;
}

.sk-detail-fact-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sk-detail-fact-value {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.sk-detail-fact-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}

.sk-detail-description {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
  white-space: pre-wrap;
}

.sk-detail-description.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
}

.sk-detail-description.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  white-space: pre-wrap;
}

.sk-detail-about-more {
  appearance: none;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: #f15060;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  display: none;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  line-height: 1;
}

.sk-detail-about-more.is-visible {
  display: inline-flex;
}

.sk-detail-about-more:hover {
  text-decoration: underline;
}

.sk-detail-about-more i {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.sk-detail-about-more.is-open i {
  transform: rotate(180deg);
}

.sk-detail-amenities-frame {
  margin-top: 4px;
  padding: 1px;
  background: rgba(28, 25, 23, 0.12);
  border-radius: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.sk-detail-amenities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: #f9f7f2;
  border-radius: 13px;
  overflow: hidden;
  list-style: none;
}

.sk-detail-amenity {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  max-width: 100%;
  padding: 14px 18px;
  margin-top: 4px;
  border-right: 1px solid rgba(28, 25, 23, 0.12);
  border-bottom: 1px solid rgba(28, 25, 23, 0.12);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(34, 30, 26, 0.6);
  box-sizing: border-box;
}

.sk-detail-amenity:nth-child(3n) {
  border-right: none;
}

.sk-detail-amenity-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(34, 30, 26, 0.6);
  display: block;
}

.sk-detail-amenity-label {
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Price trends */
.sk-trend-sub {
  margin: -8px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14.5px;
  color: rgba(34, 30, 26, 0.55);
  line-height: 1.45;
}

.sk-trend-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 6px;
}

.sk-trend-stat-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(34, 30, 26, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.sk-trend-stat-value {
  margin-top: 3px;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  color: #221e1a;
}

.sk-trend-stat-unit {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(34, 30, 26, 0.55);
}

.sk-trend-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  background: rgba(79, 124, 99, 0.12);
  color: #4f7c63;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
}

.sk-trend-badge svg {
  width: 12px;
  height: 12px;
}

.sk-trend-chart-wrap {
  border-radius: 20px;
  padding: 28px 26px 16px;
  margin-top: 18px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(34, 30, 26, 0.05), 0 8px 24px rgba(34, 30, 26, 0.06);
  overflow: hidden;
  min-width: 0;
}

.sk-trend-chart-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.sk-trend-chart-inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 26px 4px 22px;
  box-sizing: border-box;
}

.sk-trend-price-low,
.sk-trend-price-high {
  position: absolute;
  top: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(34, 30, 26, 0.55);
  white-space: nowrap;
  max-width: 46%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sk-trend-price-low {
  left: 0;
}

.sk-trend-price-high {
  right: 0;
  font-size: 16px;
  font-weight: 700;
  color: #c74e1e;
  text-align: right;
}

.sk-trend-year {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  color: rgba(34, 30, 26, 0.55);
  white-space: nowrap;
}

.sk-trend-year.is-first {
  left: 0 !important;
  transform: none;
}

.sk-trend-year.is-last,
.sk-trend-year.is-current {
  left: auto !important;
  right: 0;
  transform: none;
  text-align: right;
}

.sk-trend-year.is-current {
  font-weight: 700;
  color: #221e1a;
}

.sk-trend-note {
  margin: 10px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(34, 30, 26, 0.4);
  line-height: 1.45;
}

@media (max-width: 575px) {
  .sk-trend-sub {
    font-size: 13.5px;
  }

  .sk-trend-stats {
    gap: 18px 28px;
  }

  .sk-trend-stat-value {
    font-size: 20px;
  }

  .sk-trend-chart-wrap {
    padding: 16px 10px 10px;
    border-radius: 16px;
  }

  .sk-trend-chart-inner {
    padding: 22px 2px 20px;
  }

  .sk-trend-price-low,
  .sk-trend-price-high {
    font-size: 12px;
  }

  .sk-trend-price-high {
    font-size: 12.5px;
  }

  .sk-trend-year {
    font-size: 11px;
  }

  .sk-trend-chart-wrap svg text {
    font-size: 9px;
  }
}

/* Legal Document Checklist */
.sk-ldoc-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  min-width: 0;
}

.sk-ldoc-widget {
  margin-top: 6px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(28, 25, 23, 0.12);
  box-shadow: 0 1px 2px rgba(34, 30, 26, 0.05), 0 8px 24px rgba(34, 30, 26, 0.06);
  background: #fff;
  min-width: 0;
  max-width: 100%;
}

.sk-ldoc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(28, 25, 23, 0.12);
}

.sk-ldoc-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.sk-ldoc-icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.sk-ldoc-title h2 {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #221e1a;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.sk-ldoc-accent {
  color: #c74e1e;
}

.sk-ldoc-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(79, 124, 99, 0.12);
  color: #4f7c63;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.sk-ldoc-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.sk-ldoc-body {
  padding: 24px;
  min-width: 0;
}

.sk-ldoc-select-heading {
  margin: 0 0 5px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #221e1a;
}

.sk-ldoc-select-sub {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  color: rgba(34, 30, 26, 0.55);
  line-height: 1.45;
}

.sk-ldoc-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  margin-top: 16px;
  min-width: 0;
  max-width: 100%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.sk-ldoc-tabs::-webkit-scrollbar {
  display: none;
}

.sk-ldoc-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(28, 25, 23, 0.12);
  background: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  color: #221e1a;
  box-shadow: 0 1px 3px rgba(34, 30, 26, 0.06);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.sk-ldoc-tab svg {
  width: 15px;
  height: 15px;
  color: #4f7c63;
  flex-shrink: 0;
  transition: color 0.15s;
}

.sk-ldoc-tab.is-active {
  background: #4f7c63;
  border-color: #4f7c63;
  color: #fff;
  box-shadow: 0 2px 8px rgba(79, 124, 99, 0.25);
}

.sk-ldoc-tab.is-active svg {
  color: #fff;
}

.sk-ldoc-list {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: 14px;
  overflow: hidden;
  min-width: 0;
}

.sk-ldoc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(28, 25, 23, 0.12);
  min-width: 0;
}

.sk-ldoc-item:last-child {
  border-bottom: none;
}

.sk-ldoc-item-left {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  flex: 1 1 auto;
}

.sk-ldoc-item-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #4f7c63;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sk-ldoc-item-ico svg {
  width: 15px;
  height: 15px;
}

.sk-ldoc-item-copy {
  min-width: 0;
}

.sk-ldoc-item-name {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #221e1a;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.sk-ldoc-item-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(34, 30, 26, 0.55);
  margin-top: 1px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.sk-ldoc-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}

.sk-ldoc-status svg {
  width: 11px;
  height: 11px;
}

.sk-ldoc-status.is-mandatory {
  background: rgba(199, 78, 30, 0.12);
  color: #c74e1e;
}

.sk-ldoc-status.is-important {
  background: rgba(79, 124, 99, 0.12);
  color: #4f7c63;
}

.sk-ldoc-status.is-optional {
  background: rgba(34, 30, 26, 0.07);
  color: rgba(34, 30, 26, 0.55);
}

.sk-ldoc-count {
  margin: 10px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(34, 30, 26, 0.4);
}

@media (max-width: 560px) {
  .sk-ldoc-header {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .sk-ldoc-body {
    padding: 16px;
  }

  .sk-ldoc-title h2 {
    font-size: 17px;
  }

  .sk-ldoc-badge {
    white-space: normal;
    line-height: 1.35;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .sk-ldoc-item {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 12px;
    gap: 10px;
  }

  .sk-ldoc-item-left {
    width: 100%;
  }

  .sk-ldoc-status {
    margin-left: 47px;
    align-self: flex-start;
  }

  .sk-ldoc-item-name {
    font-size: 13.5px;
  }

  .sk-ldoc-tab {
    padding: 8px 12px;
    font-size: 12.5px;
  }
}

.sk-detail-scribble {
  display: block;
  width: 44px;
  height: 12px;
  margin: 0 0 10px;
  color: #e4622c;
}

.sk-detail-local-title {
  margin: 0 0 8px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #2c4a38;
}

.sk-detail-local-sub {
  margin: 0 0 28px;
  max-width: 34em;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: #8a837c;
}

.sk-detail-nearby {
  margin: 0;
  padding: 0;
}

.sk-detail-nearby-item {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 22px;
}

.sk-detail-nearby-item:last-child {
  padding-bottom: 0;
}

.sk-detail-nearby-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: rgba(44, 74, 56, 0.16);
}

.sk-detail-nearby-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2c4a38;
  color: #f6f1ea;
  font-size: 15px;
  flex-shrink: 0;
  z-index: 1;
}

.sk-detail-nearby-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
  min-width: 0;
}

.sk-detail-nearby-name {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2c4a38;
  line-height: 1.25;
}

.sk-detail-nearby-meta {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #8a837c;
  line-height: 1.4;
}

.sk-detail-faq-list {
  margin-top: 8px;
}

.sk-detail-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sk-detail-faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 18px 0;
  border: 0;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #2c4a38;
  text-align: left;
  cursor: pointer;
}

.sk-detail-faq-q i {
  flex-shrink: 0;
  color: #e4622c;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.sk-detail-faq-item.is-open .sk-detail-faq-q i {
  transform: rotate(180deg);
}

.sk-detail-faq-a {
  padding: 0 36px 18px 0;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: #8a837c;
}

.sk-detail-side {
  position: sticky;
  top: 108px;
  align-self: start;
}

.sk-detail-side-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Basera-style CTA card */
.sk-cta-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 26px 24px 22px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
}

.sk-cta-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.sk-cta-price-value {
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(30px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1;
}

.sk-cta-price-suffix {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.42);
}

.sk-cta-primary {
  width: 100%;
  appearance: none;
  border: 0;
  border-radius: 14px;
  background: #c45b32;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 18px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(196, 91, 50, 0.28);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.sk-cta-primary:hover {
  background: #b04f2a;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(196, 91, 50, 0.34);
}

.sk-cta-call {
  width: 100%;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 16px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.sk-cta-call:hover {
  background: #f7f5f1;
  border-color: rgba(0, 0, 0, 0.22);
  color: #111;
}

.sk-cta-call i {
  font-size: 16px;
  color: #3d4c3e;
}

.sk-cta-call.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.sk-cta-whatsapp {
  width: 100%;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  border: 1.5px solid rgba(37, 211, 102, 0.45);
  background: #fff;
  color: #128c4a;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 16px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.sk-cta-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.sk-cta-whatsapp .fa-whatsapp {
  font-size: 18px;
}

.sk-cta-whatsapp.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.sk-cta-reassure {
  margin: 14px 0 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.45);
}

.sk-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.48);
}

.sk-cta-trust i {
  color: #3d4c3e;
  font-size: 15px;
}

.sk-cta-trust--compact {
  margin-top: 12px;
}

.sk-cta-back {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  margin-bottom: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sk-cta-back:hover {
  color: #111;
}

.sk-cta-panel--enquiry .sk-detail-enquiry {
  margin: 0;
}

.sk-cta-panel--enquiry .sk-detail-enquiry-title {
  font-size: 22px;
}

.sk-cta-panel--enquiry .sk-detail-submit {
  border-radius: 14px;
  background: #c45b32;
  box-shadow: 0 8px 18px rgba(196, 91, 50, 0.25);
}

.sk-cta-panel--enquiry .sk-detail-submit:hover {
  background: #b04f2a;
}

.sk-detail-enquiry-title {
  margin: 0 0 4px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.sk-detail-enquiry-sub {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.sk-sticky-enquiry {
  display: none;
}

.sk-detail-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}

.sk-detail-field > span {
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.sk-detail-field em {
  font-style: normal;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
}

.sk-detail-field input,
.sk-detail-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #faf9f7;
  padding: 11px 13px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #111;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.sk-detail-field input:focus,
.sk-detail-field textarea:focus {
  background: #fff;
  border-color: rgba(255, 103, 37, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.12);
}

.sk-detail-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  border-radius: 12px;
  background: #ff6725;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 16px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.sk-detail-submit:hover {
  background: #e85a1c;
}

.sk-detail-submit:disabled {
  opacity: 0.7;
  cursor: default;
}

.sk-detail-msg {
  margin: 8px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.sk-detail-msg--error {
  color: #b42318;
}

.sk-detail-msg--success {
  color: #1f7a4d;
}

.sk-detail-builder {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sk-detail-builder-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sk-detail-builder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.sk-detail-builder-label {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.sk-detail-builder-name {
  margin: 2px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.sk-detail-builder-project {
  margin: 2px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.5);
}

.sk-detail-builder-phone {
  display: inline-block;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #ff6725;
  text-decoration: none;
}

.sk-detail-whatsapp {
  margin-top: 14px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 14px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.sk-detail-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

.sk-detail-builder-empty {
  margin: 12px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
}

.sk-detail-similar {
  margin-top: 56px;
  padding-top: 8px;
}

.sk-detail-similar-title {
  margin: 0 0 18px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #111;
  padding: 0 1rem;
}

.sk-detail-similar .similar-listing-slider-one {
  margin-left: -10px;
  margin-right: -10px;
}

.sk-detail-similar .similar-listing-slider-one .item {
  padding: 0 10px 8px;
}

.sk-detail-similar .sk-card--slider {
  margin-bottom: 0;
}

.sk-detail-similar .sk-card-media {
  aspect-ratio: 16 / 11;
}

/* Theme parks similar-home dots at top:-60px (beside the heading). Keep them under the cards. */
.listing-details-one .similar-property .slick-dots {
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 30px 0 0 !important;
  padding: 0;
}

/* ═══════ EMI Calculator (Buy only) ═══════ */
.sk-emi {
  border-bottom: 0;
  padding-bottom: 8px;
}

.sk-emi-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 28px 28px 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.sk-emi-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 28px 36px;
  align-items: center;
}

.sk-emi-title {
  margin: 0 0 22px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.01em;
}

.sk-emi-field {
  margin-bottom: 22px;
}

.sk-emi-field:last-child {
  margin-bottom: 0;
}

.sk-emi-field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}

.sk-emi-field-head span,
.sk-emi-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.sk-emi-field-head span {
  margin-bottom: 0;
}

.sk-emi-field-head strong {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.01em;
}

.sk-emi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #ff6725 0%,
    #ff6725 var(--emi-pct, 20%),
    rgba(0, 0, 0, 0.1) var(--emi-pct, 20%),
    rgba(0, 0, 0, 0.1) 100%
  );
  outline: none;
  cursor: pointer;
}

.sk-emi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6725;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(255, 103, 37, 0.45);
  cursor: pointer;
}

.sk-emi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6725;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(255, 103, 37, 0.45);
  cursor: pointer;
}

.sk-emi-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sk-emi-chip {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #333;
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.sk-emi-chip:hover {
  border-color: rgba(0, 0, 0, 0.28);
}

.sk-emi-chip.is-active {
  background: #1f1f1f;
  border-color: #1f1f1f;
  color: #fff;
}

.sk-emi-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sk-emi-donut-wrap {
  position: relative;
  width: 220px;
  height: 220px;
}

.sk-emi-donut {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #3d4c3e 0% calc(var(--principal) * 1%),
    #ff6725 calc(var(--principal) * 1%) 100%
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 22px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 22px), #000 0);
}

.sk-emi-donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.sk-emi-donut-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
}

.sk-emi-donut-value {
  margin-top: 4px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1;
}

.sk-emi-legend {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sk-emi-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.sk-emi-legend-item::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.sk-emi-legend-item--principal::before {
  background: #3d4c3e;
}

.sk-emi-legend-item--interest::before {
  background: #ff6725;
}

.sk-emi-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sk-emi-stat span {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
}

.sk-emi-stat strong {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}

.sk-emi-note {
  margin: 16px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.42);
}

@media (max-width: 991px) {
  .sk-emi-grid {
    grid-template-columns: 1fr;
  }

  .sk-emi-visual {
    order: -1;
  }
}

@media (max-width: 575px) {
  .sk-emi-card {
    padding: 22px 18px 16px;
  }

  .sk-emi-summary {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sk-emi-donut-wrap {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 991px) {
  .sk-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sk-detail-side {
    position: static;
  }

  .sk-detail-side-top {
    display: none;
  }

  .sk-detail-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sk-detail-head-top {
    flex-direction: column;
    gap: 16px;
  }

  .sk-detail-toolbar {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 16px;
  }

  .sk-detail-location {
    display: flex;
    margin-bottom: 12px;
  }

  .sk-detail-actions {
    justify-content: flex-start;
    gap: 6px;
  }

  .sk-detail-action {
    gap: 5px;
    padding: 6px 11px;
    font-size: 12px;
  }

  .sk-detail-share {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .sk-price--hero {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .sk-price--hero .sk-price-number {
    font-size: 44px;
  }

  .sk-detail-side .sk-cta-card:not(.is-enquiry-open) {
    display: none;
  }

  .sk-sticky-enquiry {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid rgba(13, 26, 28, 0.08);
    box-shadow: 0 -10px 28px rgba(13, 26, 28, 0.1);
  }

  .sk-sticky-enquiry.is-hidden {
    display: none;
  }

  .sk-sticky-enquiry-price {
    min-width: 0;
  }

  .sk-sticky-enquiry-label {
    display: block;
    margin-bottom: 2px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(13, 26, 28, 0.4);
  }

  .sk-sticky-enquiry-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
  }

  .sk-sticky-enquiry-amount {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #c74e1e;
  }

  .sk-sticky-enquiry-suffix {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: rgba(13, 26, 28, 0.45);
  }

  .sk-sticky-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    margin: 0;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: #ff6725;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
  }

  .sk-sticky-enquiry-btn i {
    font-size: 16px;
  }

  /* .listing-details-one .container.container-large {
    padding-bottom: 108px;
  } */

  .scroll-top {
    bottom: 100px;
  }
}

@media (max-width: 760px) {
  .sk-detail-amenities-frame {
    width: 100%;
    max-width: 100%;
  }

  .sk-detail-amenities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sk-detail-amenity {
    padding: 11px 10px;
    gap: 8px;
    font-size: 12.5px;
  }

  .sk-detail-amenity-ico {
    width: 15px;
    height: 15px;
  }

  .sk-detail-amenity:nth-child(3n) {
    border-right: 1px solid rgba(28, 25, 23, 0.12);
  }

  .sk-detail-amenity:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 575px) {
  .sk-detail-title {
    font-size: 26px;
  }

  .sk-detail-local-title {
    font-size: 24px;
  }

  .sk-detail-faq-q {
    font-size: 15px;
  }
}

/* ═══════ Legal / FAQ pages ═══════ */
.infaedge-legal-page {
  padding: 48px 0 100px;
  background: #fff;
}

.infaedge-legal-page .container.container-large {
  max-width: 820px;
  padding-left: 24px;
  padding-right: 24px;
}

.infaedge-legal-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
}

.infaedge-legal-crumb a {
  color: inherit;
  text-decoration: none;
}

.infaedge-legal-crumb a:hover {
  color: #111;
  text-decoration: underline;
}

.infaedge-legal-page h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #111;
  margin: 0 0 28px;
  line-height: 1.2;
}

.infaedge-legal-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.78);
}

.infaedge-legal-body p {
  margin: 0 0 1.1em;
}

.infaedge-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.infaedge-faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.infaedge-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 16px 18px;
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
}

.infaedge-faq-question i {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}

.infaedge-faq-item.is-open .infaedge-faq-question i {
  transform: rotate(180deg);
}

.infaedge-faq-answer {
  padding: 0 18px 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
}

.infaedge-faq-answer p {
  margin: 0 0 0.8em;
}

.infaedge-faq-answer p:last-child {
  margin-bottom: 0;
}

/* ——— StayKee footer (editorial mock) ——— */
.staykee-footer {
  --sk-footer-bg: #f5f0e6;
  --sk-footer-ink: #2f2f2f;
  --sk-footer-muted: #5c564f;
  --sk-footer-soft: #8a8178;
  --sk-footer-accent: #a65d3b;
  --sk-footer-mark: #3d4c3e;
  --sk-footer-line: rgba(58, 58, 58, 0.14);
  position: relative;
  background: var(--sk-footer-bg);
  border-top: 1px solid #dedddd8c;
  padding: 0;
  color: var(--sk-footer-ink);
  overflow: hidden;
}

.staykee-footer-shell {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 78px 56px 40px;
  overflow: visible;
}

.staykee-footer-watermark {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(110px, 18vw, 220px);
  letter-spacing: 0.08em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(90, 78, 68, 0.14);
  text-stroke: 1px rgba(90, 78, 68, 0.14);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.staykee-footer-inner {
  position: relative;
  z-index: 1;
}

.staykee-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px 96px;
}

.staykee-footer-brand {
  flex: 0 1 380px;
  max-width: 400px;
}

.staykee-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 20px;
}

.staykee-footer-fallback {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.staykee-footer-logo img,
.staykee-footer-logo-img {
  height: 52px;
  max-height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.staykee-footer-mark {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.staykee-footer-mark svg {
  display: block;
  width: 46px;
  height: 46px;
}

.staykee-footer-wordmark {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.staykee-footer-name {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  letter-spacing: -0.02em;
}

.staykee-footer-name-stay {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1f1f1f;
}

.staykee-footer-name-kee {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 600;
  color: var(--sk-footer-accent);
  margin-left: 1px;
}

.staykee-footer-motto {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sk-footer-muted);
  line-height: 1.3;
}

.staykee-footer-desc {
  margin: 0 0 16px;
  max-width: 360px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--sk-footer-muted);
}

.staykee-footer-email {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--sk-footer-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 47, 47, 0.45);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.staykee-footer-email:hover {
  color: var(--sk-footer-accent);
  border-color: var(--sk-footer-accent);
}

.staykee-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: "Work Sans", "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.staykee-footer-phone .phone-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2703a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(226, 112, 58, 0.45);
  transition: box-shadow 0.25s ease;
}

.staykee-footer-phone .phone-icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid #e2703a;
  opacity: 0.55;
  animation: pulseRing 2.2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.staykee-footer-phone .phone-icon svg {
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 1;
  display: block;
}

.staykee-footer-phone .phone-text {
  background: linear-gradient(90deg, #c1693d, #e2703a 35%, #3e4b3a 75%, #6b8f5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: letter-spacing 0.25s ease;
}

.staykee-footer-phone:hover {
  text-decoration: none;
  border-bottom: none;
}

.staykee-footer-phone:hover .phone-text {
  letter-spacing: 0.03em;
}

.staykee-footer-phone:hover .phone-icon {
  box-shadow: 0 5px 16px rgba(226, 112, 58, 0.65);
}

.staykee-footer-navs {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 28px 64px;
  padding-top: 6px;
  flex: 0 0 auto;
  margin-left: auto;
}

.staykee-footer-title {
  margin: 0 0 18px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sk-footer-accent);
  line-height: 1.15;
}

.staykee-footer-links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.staykee-footer-links a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--sk-footer-ink);
  text-decoration: none;
  transition: color 0.15s ease;
}

.staykee-footer-links a:hover {
  color: var(--sk-footer-accent);
}

.staykee-footer-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 22px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--sk-footer-line);
}

.staykee-footer-popular-label {
  flex: 0 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a534c;
}

.staykee-footer-popular-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.staykee-footer-popular-list li {
  display: inline-flex;
  align-items: center;
}

.staykee-footer-popular-list li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 12px;
  background: var(--sk-footer-accent);
  border-radius: 0.5px;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.staykee-footer-popular-list a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--sk-footer-ink);
  text-decoration: none;
  transition: color 0.15s ease;
}

.staykee-footer-popular-list a:hover {
  color: var(--sk-footer-accent);
}

.staykee-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--sk-footer-line);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--sk-footer-soft);
}

.staykee-footer-copy {
  justify-self: start;
}

.staykee-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-self: center;
}

.staykee-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(58, 58, 58, 0.22);
  background: transparent;
  color: var(--sk-footer-muted);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.staykee-footer-social a:hover {
  background: var(--sk-footer-accent);
  border-color: var(--sk-footer-accent);
  color: #fff;
}

.staykee-footer-bottom-note {
  justify-self: end;
  font-family: "EB Garamond", Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--sk-footer-soft);
  text-align: right;
}

@media (max-width: 1100px) {
  .staykee-footer-navs {
    gap: 24px 40px;
  }

  .staykee-footer-top {
    gap: 48px;
  }
}

@media (max-width: 991px) {
  .staykee-footer-shell {
    padding: 48px 28px 28px;
  }

  .staykee-footer-watermark {
    display: none;
  }

  .staykee-footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .staykee-footer-brand {
    flex: none;
    max-width: none;
  }

  .staykee-footer-navs {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 18px;
  }

  .staykee-footer-title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .staykee-footer-popular {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 36px;
  }

  .staykee-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 20px;
  }

  .staykee-footer-social {
    justify-content: flex-start;
  }

  .staykee-footer-bottom-note {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .staykee-footer-shell {
    padding: 40px 20px 24px;
  }

  .staykee-footer-name-stay {
    font-size: 28px;
  }

  .staykee-footer-name-kee {
    font-size: 32px;
  }

  .staykee-footer-mark svg {
    width: 40px;
    height: 40px;
  }

  .staykee-footer-logo img,
  .staykee-footer-logo-img {
    height: 42px;
    max-height: 46px;
    max-width: 150px;
  }

  .staykee-footer-navs {
    gap: 16px 12px;
  }

  .staykee-footer-title {
    font-size: 18px;
  }

  .staykee-footer-links a,
  .staykee-footer-popular-list a,
  .staykee-footer-desc,
  .staykee-footer-email,
  .staykee-footer-phone {
    font-size: 13.5px;
  }

  .staykee-footer-links {
    gap: 12px;
  }
}

/* ==========================================================================
   StayKee property cards (Buy / Rent) — client mock layout
   ========================================================================== */

.sk-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
  border: 0;
  font-family: "Inter", system-ui, sans-serif;
}

.sk-card-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #ebe6e0;
}

.sk-card-media-link,
.sk-card-media-link img {
  display: block;
  width: 100%;
  height: 100%;
}

.sk-card-media-link img {
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sk-card:hover .sk-card-media-link img {
  transform: scale(1.04);
}

.sk-card-media-top {
  position: absolute;
  inset: 12px 12px auto;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}

.sk-card-media-top > * {
  pointer-events: auto;
}

.sk-card-purpose {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.sk-card-purpose i {
  font-size: 11px;
  transform: rotate(-45deg);
}

.sk-card-purpose--buy {
  background: #d9682a;
  color: #fff;
}

.sk-card-purpose--rent {
  background: #1f4d3a;
  color: #fff;
}

.sk-card-purpose--rent i {
  transform: none;
}

@media (max-width: 991px) {
  .sk-card-purpose {
    font-size: 11px;
    padding: 4px 8px;
    gap: 4px;
  }

  .sk-card-purpose i {
    font-size: 9px;
  }
}

.sk-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sk-card-action {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.sk-card-action:hover {
  transform: scale(1.06);
}

.sk-card-action.is-active {
  color: #e11d48;
}

.sk-card-action.compare-toggle.is-active {
  color: #1f4d3a;
  background: #eef6f1;
}

.sk-card-action.is-active .bi-heart::before {
  content: "\f415";
}

.sk-card-action .sk-compare-icon {
  display: block;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.sk-card-photos {
  position: absolute;
  left: 12px;
  right: auto;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  cursor: pointer;
}

.sk-card-photos:hover {
  background: rgba(0, 0, 0, 0.72);
}

.sk-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 2px 4px;
  flex: 1 1 auto;
}

.sk-card-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.sk-card-title {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "EB Garamond", "Times New Roman", serif;
  color: #14110f;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sk-card-title:hover {
  color: #14110f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sk-card-rating {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #111;
  font-size: 13px;
  font-weight: 600;
}

.sk-card-rating i {
  color: #f5b301;
  font-size: 12px;
}

.sk-card-location {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(20, 17, 15, 0.52);
  font-size: 13.5px;
  line-height: 1.45;
  min-width: 0;
}

.sk-card-location i {
  color: #c45b32;
  font-size: 13px;
  line-height: 1;
  flex: 0 0 auto;
}

.sk-card-location span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sk-card-specs {
  list-style: none;
  margin: 7px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.sk-card-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(20, 17, 15, 0.5);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.sk-card-spec i {
  font-size: 12px;
  opacity: 0.75;
}

.sk-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 10px;
}

.sk-card-price {
  color: #14110f;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sk-card-price-suffix {
  color: rgba(20, 17, 15, 0.45);
  font-size: 13px;
  font-weight: 400;
}

/* Homepage carousel */
.infaedge-listing-row .sk-card--slider {
  margin-bottom: 8px;
}

.infaedge-listing-row .sk-card-media {
  aspect-ratio: 16 / 11;
}

.infaedge-listing-row .item {
  padding-bottom: 8px;
}

/* Listings grid + map highlight */
.infaedge-listing-grid .sk-card {
  width: 100%;
}

/* Section gutters — wide, evenly padded like the reference layout */
.property-listing-four .container.container-large {
  max-width: 1560px;
  padding-left: 48px;
  padding-right: 48px;
}

@media (max-width: 1399px) {
  .property-listing-four .container.container-large {
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media (max-width: 991px) {
  .property-listing-four .container.container-large {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .property-listing-four .container.container-large {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.infaedge-map-listings [data-listing-card].is-map-active .sk-card-media {
  box-shadow: 0 0 0 3px #1f4d3a;
}

/* ── List / Map view toggle ───────────────────────────────────────────── */
.infaedge-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(20, 17, 15, 0.12);
  border-radius: 999px;
  background: #fff;
  flex-shrink: 0;
}

.infaedge-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(20, 17, 15, 0.65);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.infaedge-view-btn i {
  font-size: 13px;
}

.infaedge-view-btn:hover {
  color: #14110f;
}

.infaedge-view-btn.is-active {
  background: #14332a;
  color: #fff;
}

/* Shared page gutter: filters + cards share the same left/right edge */
body:has(.sk-listings-filters) {
  --sk-listings-gutter: 56px;
}

@media (max-width: 1399px) {
  body:has(.sk-listings-filters) {
    --sk-listings-gutter: 40px;
  }
}

@media (max-width: 991px) {
  body:has(.sk-listings-filters) {
    --sk-listings-gutter: 24px;
  }
}

@media (max-width: 575px) {
  body:has(.sk-listings-filters) {
    --sk-listings-gutter: 16px;
  }
}

/* List mode: map hidden, cards fill the row */
.infaedge-map-listings.is-list-view {
  padding: 0 var(--sk-listings-gutter, 56px) 40px;
}

.infaedge-map-listings.is-list-view .infaedge-listings-head {
  padding-top: 22px;
}

.infaedge-map-listings.is-list-view .infaedge-map-col {
  display: none;
}

.infaedge-map-listings.is-list-view .infaedge-list-col {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}

.infaedge-map-listings.is-list-view .infaedge-listings-map,
.infaedge-map-listings.is-list-view .infaedge-listings-panel {
  height: auto;
  max-height: none;
  overflow: visible;
}

/* Match filter left edge — no extra panel inset in list mode */
.infaedge-map-listings.is-list-view .infaedge-listings-panel {
  padding-left: 0;
  padding-right: 0;
}

.infaedge-map-listings.is-list-view .infaedge-listing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 20px;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  margin-left: 0;
  margin-right: 0;
}

.infaedge-map-listings.is-list-view .infaedge-listing-grid > [data-listing-card] {
  flex: none;
  max-width: none;
  width: auto;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1399px) {
  .infaedge-map-listings.is-list-view {
    padding: 0 var(--sk-listings-gutter, 40px) 36px;
  }

  .infaedge-map-listings.is-list-view .infaedge-listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 24px;
  }
}

@media (max-width: 991px) {
  .infaedge-map-listings.is-list-view {
    padding: 0 var(--sk-listings-gutter, 24px) 28px;
  }

  .infaedge-map-listings.is-list-view .infaedge-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
  }
}

@media (max-width: 767px) {
  .infaedge-map-listings.is-list-view {
    padding: 0 16px 24px;
  }

  .infaedge-map-listings.is-list-view .infaedge-listings-panel {
    padding: 8px 0 24px;
  }

  .infaedge-map-listings.is-list-view .infaedge-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .infaedge-map-listings.is-list-view .sk-card-body {
    padding: 10px 0 2px;
  }

  .sk-card-media {
    border-radius: 16px;
  }

  .sk-card-title {
    font-size: 17px;
  }

  .sk-card-price {
    font-size: 17px;
  }

  .sk-card-action {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* ── Listings filters: category icons + bar (client reference) ───────── */
.sk-listings-filters {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #faf7f4;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 0 14px;
  position: relative;
  z-index: 1;
}

.sk-listings-filters-body {
  display: flex;
  flex-direction: column;
  gap: inherit;
  min-height: 0;
}

@media (max-width: 991px) {
  .sk-listings-filters {
    display: grid;
    grid-template-rows: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
    transition:
      grid-template-rows 0.52s cubic-bezier(0.32, 0.72, 0, 1),
      opacity 0.42s ease,
      border-color 0.42s ease,
      box-shadow 0.42s ease;
    will-change: grid-template-rows, opacity;
  }

  .sk-listings-filters-body {
    overflow: hidden;
    gap: 18px;
    padding: 12px 0;
    transition:
      transform 0.52s cubic-bezier(0.32, 0.72, 0, 1),
      opacity 0.42s ease;
    transform: translateY(0);
    will-change: transform, opacity;
  }

  .airbnb-header--with-filters.is-filters-collapsed .sk-listings-filters {
    grid-template-rows: 0fr;
    opacity: 0;
    border-top-color: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .airbnb-header--with-filters.is-filters-collapsed .sk-listings-filters-body {
    transform: translateY(-10px);
    opacity: 0;
  }
}

.sk-cat-nav {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px 20px;
  width: 100%;
  margin: 0;
  padding: 12px var(--sk-listings-gutter, 56px) 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sk-cat-nav::-webkit-scrollbar {
  display: none;
}

.sk-cat {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.45);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 56px;
  padding: 8px 2px 10px;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.sk-cat:hover {
  color: rgba(0, 0, 0, 0.75);
}

.sk-cat.is-active {
  color: #ff6725;
}

.sk-cat-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.sk-cat-icon svg,
.sk-cat-icon i {
  width: 26px;
  height: 26px;
  display: block;
}

.sk-cat-icon i {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
}

.sk-cat-label {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
}

.sk-cat.is-active .sk-cat-label {
  font-weight: 600;
}

.sk-cat::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 2.5px;
  border-radius: 2px;
  background: #ff6725;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.sk-cat.is-active::after {
  transform: scaleX(1);
}

.sk-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 12px var(--sk-listings-gutter, 56px) 10px;
  overflow: visible;
}

.sk-purpose-tabs.airbnb-purpose-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 0 0 auto;
  min-height: 36px;
}

.sk-purpose-tabs .airbnb-tab {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center;
  gap: 6px !important;
  min-height: 36px;
  padding: 0 1px !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
}

.sk-purpose-tabs .airbnb-tab > span {
  line-height: 1;
  display: block;
}

.sk-purpose-tabs .airbnb-tab.is-active {
  color: #ff6725;
  font-weight: 600;
}

/* Word → gap → short rounded bar (reference) */
.sk-purpose-tabs .airbnb-tab::after {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  transform: none;
  transform-origin: center;
  transition: background 0.15s ease;
}

.sk-purpose-tabs .airbnb-tab.is-active::after {
  background: #ff6725;
  transform: none;
}

.sk-purpose-tabs .airbnb-tab-icon,
.sk-purpose-tabs img.airbnb-tab-icon {
  display: none !important;
}

.sk-quick-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  overflow: visible;
  padding: 0;
  margin: 0;
}

.sk-quick-chips::-webkit-scrollbar {
  display: none;
}

.sk-chip {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: rgba(0, 0, 0, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.sk-chip:hover {
  border-color: rgba(0, 0, 0, 0.3);
  color: #111;
}

.sk-chip.is-active {
  background: #14110f;
  border-color: #14110f;
  color: #fff;
}

.sk-chip--dropdown {
  gap: 6px;
}

.sk-chip--dropdown .bi-chevron-down {
  font-size: 11px;
  opacity: 0.65;
  transition: transform 0.15s ease;
}

.sk-chip-dropdown.is-open .sk-chip--dropdown .bi-chevron-down {
  transform: rotate(180deg);
}

.sk-chip-dropdown {
  position: relative;
  flex: 0 0 auto;
  z-index: 2;
}

.sk-chip-dropdown.is-open {
  z-index: 80;
}

.sk-chip-dropdown .sk-bb-panel {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  min-width: 92px;
  width: auto;
  padding: 10px 8px 8px;
  text-align: center;
}

.sk-chip-dropdown--wide .infaedge-amenities-panel {
  left: 0;
  right: auto;
  transform: none;
  min-width: min(360px, calc(100vw - 32px));
  width: min(360px, calc(100vw - 32px));
  padding: 14px;
  text-align: left;
}

.infaedge-filter-panel.is-fixed-panel,
.sk-chip-dropdown .sk-bb-panel.is-fixed-panel,
.sk-chip-dropdown--wide .infaedge-amenities-panel.is-fixed-panel {
  position: fixed !important;
  right: auto !important;
  transform: none !important;
  z-index: 1200;
}

.sk-chip-dropdown--wide .infaedge-filter-panel-title {
  text-align: left;
}

.sk-chip-dropdown .infaedge-filter-panel-title {
  margin: 0 0 6px;
  text-align: center;
}

.sk-chip-dropdown .infaedge-filter-option {
  text-align: center;
  border-radius: 999px;
  padding: 7px 14px;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 500;
}

.sk-chip-dropdown .infaedge-filter-option:hover {
  background: #f3f3f3;
  color: #111;
}

.sk-chip-dropdown .infaedge-filter-option.is-selected {
  background: #f0f0f0;
  color: #111;
  font-weight: 700;
}

.sk-filter-bar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: 0;
}

.sk-action-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: rgba(0, 0, 0, 0.82);
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 999px;
  padding: 9px 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.sk-action-btn:hover,
.sk-filter-dropdown.is-open .sk-action-btn,
.sk-sort-dropdown.is-open .sk-action-btn {
  border-color: rgba(0, 0, 0, 0.35);
  background: #fff;
}

.sk-action-btn.has-selection {
  border-color: #14110f;
  box-shadow: inset 0 0 0 1px #14110f;
}

.sk-filter-dropdown,
.sk-sort-dropdown {
  position: relative;
}

.sk-filter-panel {
  right: 0;
  left: auto;
  min-width: min(360px, calc(100vw - 32px));
  width: 360px;
}

.sk-filter-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 12px;
}

.sk-filter-option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sk-filter-option-row .infaedge-filter-option {
  flex: 0 0 auto;
  min-width: 42px;
  text-align: center;
  padding: 6px 10px;
}

.sk-listings-filters .infaedge-view-toggle {
  background: #fff;
}

.sk-listings-filters .infaedge-view-btn.is-active {
  background: #14110f;
  color: #fff;
}

body:has(.sk-listings-filters) .infaedge-listings-map,
body:has(.sk-listings-filters) .infaedge-listings-panel {
  min-height: calc(100vh - 240px);
}

body:has(.sk-listings-filters) .infaedge-listings-map {
  height: calc(100vh - 240px);
}

@media (max-width: 991px) {
  body:has(.sk-listings-filters) .infaedge-listings-map,
  body:has(.sk-listings-filters) .infaedge-listings-panel {
    min-height: 0;
  }

  body:has(.sk-listings-filters) .infaedge-listings-map {
    height: 28vh;
    min-height: 180px;
    max-height: 220px;
  }

  .sk-listings-filters {
    gap: 0;
    padding: 0;
  }

  .sk-listings-filters-body {
    gap: 18px;
    padding: 12px 0;
  }

  /* Keep icons scrollable from the start — center clips "All" on narrow screens */
  .sk-cat-nav {
    justify-content: flex-start;
    gap: 4px 16px;
    padding: 8px var(--sk-listings-gutter, 24px) 2px;
    scroll-padding-inline: var(--sk-listings-gutter, 24px);
  }

  /* One horizontal slidable row: purpose + chips + actions */
  .sk-filter-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 6px var(--sk-listings-gutter, 24px) 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-padding-inline: var(--sk-listings-gutter, 24px);
    touch-action: pan-x;
  }

  .sk-filter-bar [data-dropdown-toggle],
  .sk-filter-bar .sk-chip,
  .sk-filter-bar .sk-action-btn,
  .sk-filter-bar .airbnb-tab {
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.06);
  }

  .sk-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .sk-purpose-tabs.airbnb-purpose-tabs {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 16px;
    order: 0;
    padding-left: 16px;
  }

  .sk-quick-chips {
    order: 1;
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow: visible;
    padding-bottom: 0;
    gap: 8px;
  }

  .sk-filter-bar-actions {
    order: 2;
    width: auto;
    margin-left: 0;
    flex: 0 0 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .sk-chip {
    font-size: 13px;
    padding: 7px 14px;
    flex: 0 0 auto;
  }

  .sk-action-btn {
    font-size: 13px;
    padding: 8px 12px;
    flex: 0 0 auto;
  }

  .sk-listings-filters .infaedge-view-toggle {
    flex: 0 0 auto;
  }

  .sk-listings-filters .infaedge-view-btn {
    padding: 7px 12px;
    font-size: 12.5px;
  }
}

@media (max-width: 575px) {
  .sk-listings-filters {
    gap: 0;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .sk-listings-filters-body {
    gap: 16px;
    padding: 2px 0 10px;
  }

  .sk-cat-nav {
    gap: 4px 14px;
    padding: 6px var(--sk-listings-gutter, 16px) 2px;
  }

  .sk-cat {
    min-width: 52px;
    gap: 8px;
    padding: 6px 2px 8px;
  }

  .sk-cat-icon,
  .sk-cat-icon svg,
  .sk-cat-icon i {
    width: 24px;
    height: 24px;
  }

  .sk-cat-icon i {
    font-size: 20px;
    line-height: 24px;
  }

  .sk-cat-label {
    font-size: 11.5px;
  }

  .sk-filter-bar {
    gap: 12px;
    padding: 4px var(--sk-listings-gutter, 16px) 6px;
    padding-left: 20px;
  }

  .sk-purpose-tabs.airbnb-purpose-tabs {
    gap: 14px;
    padding-left: 8px;
  }

  .sk-purpose-tabs .airbnb-tab {
    font-size: 14px;
    min-height: 32px;
  }

  /* Compact sort label on very small screens */
  .sk-sort-dropdown .sk-action-btn [data-sort-label] {
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .infaedge-map-listings.is-list-view .infaedge-listings-head {
    padding-top: 4px;
  }

  #infaedge-listing-summary {
    font-size: 18px;
  }
}

/* ═══════ Terms page — client blueprint layout ═══════ */
.sk-tc {
  --sk-tc-orange: #e4622c;
  --sk-tc-orange-dark: #c94f1e;
  --sk-tc-dark: #221e1a;
  --sk-tc-text: #2b2622;
  --sk-tc-muted: #8a8078;
  --sk-tc-muted-2: #a89e93;
  --sk-tc-cream: #f7f2ea;
  --sk-tc-line: #eae2d5;
  --sk-tc-mono: "IBM Plex Mono", ui-monospace, monospace;
  --sk-tc-serif: "Fraunces", "EB Garamond", Georgia, serif;
  --sk-tc-sans: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  background: #fff;
  color: var(--sk-tc-text);
  font-family: var(--sk-tc-sans);
}

.sk-tc-hero {
  position: relative;
  overflow: hidden;
  background: var(--sk-tc-cream);
  padding: 70px 60px 58px;
  background-image:
    linear-gradient(rgba(34, 30, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 30, 26, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.sk-tc-crosshair {
  position: absolute;
  width: 26px;
  height: 26px;
  opacity: 0.55;
}

.sk-tc-crosshair::before,
.sk-tc-crosshair::after {
  content: "";
  position: absolute;
  background: var(--sk-tc-dark);
}

.sk-tc-crosshair::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.2px;
  transform: translateX(-50%);
}

.sk-tc-crosshair::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.2px;
  transform: translateY(-50%);
}

.sk-tc-crosshair--tl { top: 18px; left: 18px; }
.sk-tc-crosshair--tr { top: 18px; right: 18px; }
.sk-tc-crosshair--bl { bottom: 18px; left: 18px; }
.sk-tc-crosshair--br { bottom: 18px; right: 18px; }

.sk-tc-hero-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.sk-tc-eyebrow {
  font-family: var(--sk-tc-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--sk-tc-orange-dark);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sk-tc-tag-box {
  border: 1px solid var(--sk-tc-orange-dark);
  padding: 2px 8px;
  border-radius: 3px;
}

.sk-tc-hero h1 {
  font-family: var(--sk-tc-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 56px;
  line-height: 1.02;
  color: var(--sk-tc-dark);
  letter-spacing: -1px;
  margin: 0 0 20px;
}

.sk-tc-dim-line {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 620px;
  margin-bottom: 22px;
}

.sk-tc-dim-line svg {
  flex-shrink: 0;
  width: 16px;
  height: 12px;
}

.sk-tc-dim-bar {
  flex: 1;
  height: 1px;
  background: var(--sk-tc-muted-2);
}

.sk-tc-dim-label {
  font-family: var(--sk-tc-mono);
  font-size: 10.5px;
  color: var(--sk-tc-muted);
  letter-spacing: 1px;
  white-space: nowrap;
}

.sk-tc-hero-lead {
  font-size: 14.5px;
  color: var(--sk-tc-muted);
  max-width: 560px;
  line-height: 1.75;
  margin: 0;
}

.sk-tc-spec-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sk-tc-muted-2);
  border: 1px solid var(--sk-tc-muted-2);
  max-width: 820px;
}

.sk-tc-spec-cell {
  background: #fff;
  padding: 14px 18px;
}

.sk-tc-spec-k {
  font-family: var(--sk-tc-mono);
  font-size: 9.5px;
  letter-spacing: 1px;
  color: var(--sk-tc-muted-2);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.sk-tc-spec-v {
  font-family: var(--sk-tc-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sk-tc-dark);
}

.sk-tc-body {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 44px 80px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 56px;
  align-items: start;
}

.sk-tc-toc {
  position: sticky;
  top: 130px;
  z-index: 40;
  align-self: start;
  background: #fff;
}

.sk-tc-toc-label {
  font-family: var(--sk-tc-mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  color: var(--sk-tc-muted-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sk-tc-toc a {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sk-tc-muted);
  padding: 8px 0 8px 14px;
  border-left: 2px solid var(--sk-tc-line);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.sk-tc-toc a .sk-tc-fol {
  font-family: var(--sk-tc-mono);
  font-size: 11px;
  color: var(--sk-tc-muted-2);
  font-weight: 500;
}

.sk-tc-toc a:hover {
  color: var(--sk-tc-text);
}

.sk-tc-toc a.is-active {
  color: var(--sk-tc-orange-dark);
  border-left-color: var(--sk-tc-orange-dark);
}

.sk-tc-toc a.is-active .sk-tc-fol {
  color: var(--sk-tc-orange-dark);
}

.sk-tc-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sk-tc-cream);
  border: 1px solid var(--sk-tc-line);
  border-radius: 4px;
  padding: 7px 16px 7px 14px;
  font-family: var(--sk-tc-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--sk-tc-muted);
  margin-bottom: 40px;
}

.sk-tc-updated svg {
  width: 13px;
  height: 13px;
  stroke: var(--sk-tc-orange-dark);
  flex-shrink: 0;
}

.sk-tc-section {
  margin-bottom: 44px;
  scroll-margin-top: 108px;
}

.sk-tc-sec-dim {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.sk-tc-sec-dim .sk-tc-sec-bar {
  flex: 0 0 40px;
  height: 1px;
  background: var(--sk-tc-orange-dark);
  position: relative;
}

.sk-tc-sec-dim .sk-tc-sec-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  border: 3px solid transparent;
  border-right-color: var(--sk-tc-orange-dark);
}

.sk-tc-fol-tag {
  font-family: var(--sk-tc-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sk-tc-orange-dark);
  letter-spacing: 1.5px;
}

.sk-tc-section h2 {
  font-family: var(--sk-tc-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--sk-tc-dark);
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.sk-tc-section p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #4a443d;
  margin: 0 0 12px;
}

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

.sk-tc-section ul {
  margin: 0 0 12px;
  padding-left: 0;
  list-style: none;
}

.sk-tc-section li {
  font-size: 14.5px;
  line-height: 1.85;
  color: #4a443d;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}

.sk-tc-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  border: 1.5px solid var(--sk-tc-orange-dark);
  transform: rotate(45deg);
}

.sk-tc-redline {
  background: var(--sk-tc-cream);
  border-left: 3px solid var(--sk-tc-orange-dark);
  padding: 16px 20px;
  margin: 18px 0;
  border-radius: 0 8px 8px 0;
}

.sk-tc-redline p {
  margin: 0;
  font-size: 13.5px;
  color: var(--sk-tc-dark);
  font-weight: 600;
}

.sk-tc-rl-tag {
  font-family: var(--sk-tc-mono);
  font-size: 10px;
  color: var(--sk-tc-orange-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.sk-tc-callout {
  background: #f7f2ea;
  border-radius: 15px;
  padding: 32px 34px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sk-tc-callout h3 {
  font-family: var(--sk-tc-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: #b87373;
  margin: 0 0 6px;
}

.sk-tc-callout p {
  font-size: 13.5px;
  color: #46594ec9;
  margin: 0;
}

.sk-tc-callout-btn {
  background: var(--sk-tc-orange);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 24px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(228, 98, 44, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sk-tc-callout-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(228, 98, 44, 0.42);
}

@media (max-width: 980px) {
  .sk-tc-body {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sk-tc-toc {
    position: static;
    top: 64px;
    z-index: 40;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 24px;
    padding: 10px 0 16px;
    background: #fff;
    border-bottom: 1px solid var(--sk-tc-line);
  }

  .sk-tc-toc-label {
    width: 100%;
  }

  .sk-tc-toc a {
    padding: 4px 0;
    border-left: none;
    padding-left: 0;
  }

  .sk-tc-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .sk-tc-hero {
    padding: 48px 24px 40px;
  }

  .sk-tc-hero h1 {
    font-size: 38px;
  }

  .sk-tc-body {
    padding: 40px 20px 56px;
  }

  .sk-tc-callout {
    padding: 26px 22px;
  }

  .sk-tc-crosshair {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 520px) {
  .sk-tc-hero {
    padding: 40px 16px 32px;
  }

  .sk-tc-hero h1 {
    font-size: 29px;
  }

  .sk-tc-section h2 {
    font-size: 20px;
  }

  .sk-tc-body {
    padding: 32px 16px 48px;
  }

  .sk-tc-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .sk-tc-crosshair--tl,
  .sk-tc-crosshair--tr,
  .sk-tc-crosshair--bl,
  .sk-tc-crosshair--br {
    display: none;
  }
}

/* ═══════ Contact page — client correspondence layout ═══════ */
.sk-contact {
  --sk-c-orange: #e4622c;
  --sk-c-orange-dark: #c94f1e;
  --sk-c-dark: #221e1a;
  --sk-c-text: #2b2622;
  --sk-c-muted: #8a8078;
  --sk-c-muted-2: #a89e93;
  --sk-c-cream: #f7f2ea;
  --sk-c-line: #eae2d5;
  --sk-c-rust: #9b3a20;
  --sk-c-gold: #b8894a;
  --sk-c-mono: "IBM Plex Mono", ui-monospace, monospace;
  --sk-c-serif: "Fraunces", "EB Garamond", Georgia, serif;
  --sk-c-sans: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  background: #fff;
  color: var(--sk-c-text);
  font-family: var(--sk-c-sans);
}

.sk-contact-hero {
  position: relative;
  overflow: hidden;
  background: var(--sk-c-cream);
  padding: 64px 44px 54px;
  background-image:
    repeating-linear-gradient(45deg, rgba(138, 128, 120, 0.055) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(-45deg, rgba(138, 128, 120, 0.055) 0 1px, transparent 1px 26px);
  text-align: center;
}

.sk-contact-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.sk-contact-eyebrow {
  font-family: var(--sk-c-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--sk-c-rust);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sk-contact-eyebrow::before,
.sk-contact-eyebrow::after {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--sk-c-rust);
}

.sk-contact-hero h1 {
  font-family: var(--sk-c-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 40px;
  line-height: 1.05;
  color: var(--sk-c-dark);
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.sk-contact-hero p {
  font-size: 14.5px;
  color: var(--sk-c-muted);
  max-width: 780px;
  line-height: 1.7;
  margin: 0 auto;
}

.sk-contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.sk-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--sk-c-line);
  border-radius: 24px;
  padding: 11px 20px 11px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sk-c-dark);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(34, 30, 26, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.sk-contact-pill svg {
  width: 15px;
  height: 15px;
  stroke: var(--sk-c-rust);
  fill: none;
  stroke-width: 1.9;
  flex-shrink: 0;
}

.sk-contact-pill:hover {
  color: var(--sk-c-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 30, 26, 0.08);
  border-color: var(--sk-c-rust);
}

.sk-contact-body {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 44px 90px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 44px;
  align-items: start;
}

.sk-contact-left {
  display: flex;
  flex-direction: column;
}

.sk-contact-letter {
  position: relative;
  background: #fff;
  border: 1px solid var(--sk-c-line);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(34, 30, 26, 0.08);
  overflow: hidden;
}

.sk-contact-letter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 28px;
  border-bottom: 1.5px dashed var(--sk-c-line);
  background: var(--sk-c-cream);
}

.sk-contact-letter-head .to {
  font-family: var(--sk-c-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--sk-c-muted-2);
  text-transform: uppercase;
}

.sk-contact-letter-head .to b {
  color: var(--sk-c-rust);
}

.sk-contact-letter-head svg {
  width: 18px;
  height: 18px;
  stroke: var(--sk-c-rust);
  fill: none;
  stroke-width: 1.7;
}

.sk-contact-form {
  padding: 30px 28px 32px;
}

.sk-contact-f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.sk-contact-f-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.sk-contact-f-group.full {
  grid-column: 1 / -1;
}

.sk-contact-f-group label {
  font-family: var(--sk-c-mono);
  font-size: 10.5px;
  letter-spacing: 1px;
  color: var(--sk-c-muted-2);
  text-transform: uppercase;
}

.sk-contact-f-group input,
.sk-contact-f-group select,
.sk-contact-f-group textarea {
  font-family: var(--sk-c-sans);
  font-size: 14px;
  color: var(--sk-c-text);
  border: 1px solid var(--sk-c-line);
  border-radius: 9px;
  padding: 12px 14px;
  outline: none;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sk-contact-f-group input:focus,
.sk-contact-f-group select:focus,
.sk-contact-f-group textarea:focus {
  border-color: var(--sk-c-rust);
  box-shadow: 0 0 0 3px rgba(155, 58, 32, 0.08);
}

.sk-contact-f-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.sk-contact-f-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A8078' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--sk-c-line);
  border-radius: 9px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}

.phone-input-wrap:focus-within {
  border-color: var(--sk-c-rust);
  box-shadow: 0 0 0 3px rgba(155, 58, 32, 0.08);
}

.country-select {
  position: relative;
  flex-shrink: 0;
  border-right: 1px solid var(--sk-c-line);
}

.country-select-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 12px 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sk-c-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--sk-c-text);
  white-space: nowrap;
}

.country-select-btn img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(34, 30, 26, 0.08);
}

.country-select-btn .cs-caret {
  color: var(--sk-c-muted);
  margin-left: 1px;
  transition: transform 0.15s ease;
}

.country-select.open .cs-caret {
  transform: rotate(180deg);
}

.country-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  width: 220px;
  max-height: 240px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--sk-c-line);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(34, 30, 26, 0.08);
  padding: 6px;
  list-style: none;
  margin: 0;
}

.country-select.open .country-list {
  display: block;
}

.country-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--sk-c-text);
  cursor: pointer;
}

.country-list li:hover,
.country-list li.active {
  background: var(--sk-c-cream);
}

.country-list li img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(34, 30, 26, 0.08);
  flex-shrink: 0;
}

.country-list li span {
  flex: 1;
}

.country-list li b {
  font-weight: 600;
  color: var(--sk-c-muted);
  margin-left: auto;
}

.phone-input-wrap input {
  border: none !important;
  border-radius: 0 8px 8px 0 !important;
  flex: 1;
  min-width: 0;
}

.phone-input-wrap input:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

.sk-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: var(--sk-c-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(228, 98, 44, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  margin-top: 6px;
}

.sk-contact-submit:hover {
  background: var(--sk-c-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(228, 98, 44, 0.42);
}

.sk-contact-submit svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
}

.sk-contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 28px 60px;
}

.sk-contact-success.is-show {
  display: flex;
}

.sk-contact-success h3 {
  font-family: var(--sk-c-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--sk-c-dark);
  margin: 0 0 8px;
}

.sk-contact-success p {
  font-size: 13.5px;
  color: var(--sk-c-muted);
  max-width: 320px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.sk-contact-success .again {
  font-family: var(--sk-c-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sk-c-rust);
  border-bottom: 1px solid rgba(155, 58, 32, 0.35);
  padding-bottom: 2px;
  text-decoration: none;
}

.sk-contact-stamp {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  transform: rotate(-8deg) scale(0.4);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.2, 1.4, 0.4, 1), opacity 0.3s ease;
}

.sk-contact-success.is-show .sk-contact-stamp {
  transform: rotate(-8deg) scale(1);
  opacity: 1;
}

.sk-contact-map {
  margin-top: 26px;
  text-align: left;
}

.sk-contact-map .sk-contact-eyebrow {
  justify-content: flex-start;
}

.sk-contact-map .sk-contact-eyebrow::before,
.sk-contact-map .sk-contact-eyebrow::after {
  display: none;
}

.sk-contact-map h2 {
  font-family: var(--sk-c-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  color: var(--sk-c-dark);
  letter-spacing: -0.5px;
  margin: 12px 0 18px;
}

.sk-contact-map-canvas {
  position: relative;
  width: 100%;
  height: 300px;
  background: var(--sk-c-cream);
  border-radius: 20px;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(45deg, rgba(138, 128, 120, 0.07) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(-45deg, rgba(138, 128, 120, 0.07) 0 1px, transparent 1px 28px);
}

.sk-contact-map-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sk-contact-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sk-contact-pin svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 3px rgba(34, 30, 26, 0.18));
}

.sk-contact-pin .pin-label {
  font-family: var(--sk-c-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--sk-c-dark);
  background: #fff;
  border: 1px solid var(--sk-c-line);
  border-radius: 8px;
  padding: 3px 9px;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(34, 30, 26, 0.05);
}

.sk-contact-pin.is-hq svg,
.sk-contact-pin.hq svg {
  stroke: var(--sk-c-rust);
  fill: var(--sk-c-rust);
}

.sk-contact-pin.is-hq .pin-label,
.sk-contact-pin.hq .pin-label {
  border-color: var(--sk-c-rust);
  color: var(--sk-c-rust);
  font-weight: 700;
}

.sk-contact-pin.is-satellite svg,
.sk-contact-pin.satellite svg {
  stroke: var(--sk-c-gold);
  fill: var(--sk-c-gold);
}

.sk-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sk-contact-card {
  background: #fff;
  border: 1px solid var(--sk-c-line);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(34, 30, 26, 0.05);
}

.sk-contact-card h4 {
  font-family: var(--sk-c-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--sk-c-dark);
  margin: 0 0 14px;
}

.sk-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--sk-c-line);
}

.sk-contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sk-contact-row:first-of-type {
  padding-top: 0;
}

.sk-contact-ci {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sk-c-cream);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-contact-ci svg {
  width: 14px;
  height: 14px;
  stroke: var(--sk-c-rust);
  fill: none;
  stroke-width: 1.9;
}

.sk-contact-cd {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sk-contact-cl {
  font-family: var(--sk-c-mono);
  font-size: 9.5px;
  letter-spacing: 0.8px;
  color: var(--sk-c-muted-2);
  text-transform: uppercase;
}

.sk-contact-cv {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sk-c-dark);
  text-decoration: none;
}

.sk-contact-cv:hover {
  color: var(--sk-c-rust);
}

.sk-contact-office {
  font-size: 13.5px;
  color: #4a443d;
  line-height: 1.8;
  margin-bottom: 14px;
}

.sk-contact-office .note {
  display: block;
  font-family: var(--sk-c-mono);
  font-size: 9.5px;
  color: var(--sk-c-muted-2);
  margin-top: 6px;
}

.sk-contact-hours {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--sk-c-muted);
  padding: 4px 0;
}

.sk-contact-hours b {
  color: var(--sk-c-dark);
}

.sk-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sk-contact-chip {
  font-family: var(--sk-c-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--sk-c-dark);
  background: var(--sk-c-cream);
  border: 1px solid var(--sk-c-line);
  border-radius: 14px;
  padding: 5px 11px;
}

.sk-contact-chip.is-all {
  background: rgb(91, 158, 140);
  color: #fff;
  border-color: transparent;
}

.sk-contact-social {
  display: flex;
  gap: 10px;
}

.sk-contact-social a,
.sk-contact-social .icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sk-c-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #211d1a;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.sk-contact-social a svg,
.sk-contact-social .icon-circle svg {
  transition: fill 0.15s ease;
}

.sk-contact-social a:hover,
.sk-contact-social .icon-circle:hover {
  transform: scale(1.08);
  color: #fff;
}

.sk-contact-social a.is-ig:hover,
.sk-contact-social .icon-circle.icon-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.sk-contact-social a.is-fb:hover,
.sk-contact-social .icon-circle.icon-facebook:hover {
  background: #1877f2;
}

.sk-contact-social a.is-wa:hover,
.sk-contact-social .icon-circle.icon-whatsapp:hover {
  background: #25d366;
}

@media (max-width: 980px) {
  .sk-contact-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 860px) {
  .sk-contact-hero {
    padding: 44px 20px 36px;
  }

  .sk-contact-hero h1 {
    font-size: 36px;
  }

  .sk-contact-body {
    padding: 44px 20px 60px;
  }
}

@media (max-width: 520px) {
  .sk-contact-hero h1 {
    font-size: 28px;
  }

  .sk-contact-f-row {
    grid-template-columns: 1fr;
  }

  .sk-contact-form {
    padding: 24px 20px 28px;
  }

  .sk-contact-letter-head {
    padding: 16px 20px;
  }

  .sk-contact-map-canvas {
    height: 230px;
    border-radius: 16px;
  }

  .sk-contact-pin .pin-label {
    font-size: 9px;
    padding: 3px 7px;
  }

  .sk-contact-pin svg {
    width: 16px;
    height: 16px;
  }
}

/* Theme overflow-x:hidden on .main-page-wrapper traps sticky descendants. */
body:has(.sk-faq, .sk-tc) .main-page-wrapper {
  overflow-x: clip;
}

/* ===== StayKee FAQ (client registry layout) ===== */
.sk-faq {
  --sk-faq-orange: #e4622c;
  --sk-faq-dark: #221e1a;
  --sk-faq-text: #2b2622;
  --sk-faq-muted: #8a8078;
  --sk-faq-muted-2: #a89e93;
  --sk-faq-cream: #f7f2ea;
  --sk-faq-line: #eae2d5;
  --sk-faq-green: #2c4a38;
  --sk-faq-rust: #9b3a20;
  --sk-faq-gold: #b8894a;
  --sk-faq-mono: "IBM Plex Mono", ui-monospace, monospace;
  --sk-faq-serif: "Fraunces", "EB Garamond", Georgia, serif;
  --sk-faq-sans: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --sk-faq-shadow-sm: 0 1px 2px rgba(34, 30, 26, 0.05), 0 1px 1px rgba(34, 30, 26, 0.04);
  --sk-faq-shadow-md: 0 6px 20px rgba(34, 30, 26, 0.08);
  --sk-faq-shadow-lg: 0 16px 40px rgba(34, 30, 26, 0.14);
  color: var(--sk-faq-text);
  font-family: var(--sk-faq-sans);
  background: #fff;
}

.sk-faq-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  z-index: 101;
  background: transparent;
  pointer-events: none;
}

.sk-faq-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sk-faq-rust), var(--sk-faq-orange));
  transition: width 0.08s linear;
}

.sk-faq-hero {
  position: relative;
  overflow: hidden;
  background: var(--sk-faq-cream);
  padding: 64px 44px 54px;
  background-image:
    repeating-linear-gradient(45deg, rgba(138, 128, 120, 0.055) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(-45deg, rgba(138, 128, 120, 0.055) 0 1px, transparent 1px 26px);
}

.sk-faq-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.sk-faq-eyebrow {
  font-family: var(--sk-faq-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--sk-faq-rust);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sk-faq-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--sk-faq-rust);
}

.sk-faq-hero h1 {
  font-family: var(--sk-faq-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 52px;
  line-height: 1.05;
  color: var(--sk-faq-dark);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.sk-faq-hero p {
  font-size: 14.5px;
  color: var(--sk-faq-muted);
  max-width: 460px;
  line-height: 1.7;
  margin: 0;
}

.sk-faq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  align-items: center;
}

.sk-faq-chips-label {
  font-family: var(--sk-faq-mono);
  font-size: 10.5px;
  color: var(--sk-faq-muted-2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 2px;
}

.sk-faq-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--sk-faq-dark);
  background: #fff;
  border: 1px solid var(--sk-faq-line);
  border-radius: 16px;
  padding: 6px 13px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.sk-faq-chip:hover {
  background: var(--sk-faq-rust);
  border-color: var(--sk-faq-rust);
  color: #fff;
  transform: translateY(-1px);
}

.sk-faq-ledger {
  position: relative;
  background: #fff;
  border: 1px solid var(--sk-faq-line);
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: var(--sk-faq-shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sk-faq-ledger:hover {
  transform: translateY(-3px);
  box-shadow: var(--sk-faq-shadow-lg);
}

.sk-faq-lrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--sk-faq-line);
  font-family: var(--sk-faq-mono);
}

.sk-faq-lrow:last-of-type {
  border-bottom: none;
}

.sk-faq-lrow .lk {
  font-size: 10.5px;
  letter-spacing: 1px;
  color: var(--sk-faq-muted-2);
  text-transform: uppercase;
}

.sk-faq-lrow .lv {
  font-size: 12.5px;
  color: var(--sk-faq-dark);
  font-weight: 600;
  text-align: right;
}

.sk-faq-stamp {
  position: absolute;
  top: -30px;
  right: -18px;
  width: 118px;
  height: 118px;
  transform: rotate(-9deg);
  opacity: 0.92;
  filter: drop-shadow(0 3px 6px rgba(155, 58, 32, 0.18));
  pointer-events: none;
}

.sk-faq-stamp svg {
  width: 100%;
  height: 100%;
}

.sk-faq-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sk-faq-cream);
  border: 1px solid var(--sk-faq-line);
  border-radius: 8px;
  padding: 4px 4px 4px 12px;
  margin-top: 14px;
}

.sk-faq-search svg {
  width: 14px;
  height: 14px;
  stroke: var(--sk-faq-muted-2);
  flex-shrink: 0;
}

.sk-faq-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--sk-faq-mono);
  font-size: 12px;
  color: var(--sk-faq-text);
  padding: 9px 0;
  min-width: 0;
}

.sk-faq-search input::placeholder {
  color: var(--sk-faq-muted-2);
}

.sk-faq-search button {
  background: var(--sk-faq-dark);
  color: #fff;
  font-family: var(--sk-faq-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 9px 14px;
  border-radius: 6px;
  border: none;
  flex-shrink: 0;
  cursor: pointer;
}

.sk-faq-search button:hover {
  background: var(--sk-faq-rust);
}

.sk-faq-body {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 44px 80px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 56px;
  align-items: start;
}

.sk-faq-toc {
  position: sticky;
  top: 130px;
  z-index: 40;
  align-self: start;
  background: #fff;
}

.sk-faq-toc-label {
  font-family: var(--sk-faq-mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  color: var(--sk-faq-muted-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sk-faq-toc a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sk-faq-muted);
  padding: 8px 0;
  border-left: 2px solid var(--sk-faq-line);
  padding-left: 14px;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.sk-faq-toc a:hover {
  color: var(--sk-faq-text);
}

.sk-faq-toc a.is-active {
  border-left-color: currentColor;
}

.sk-faq-toc a[href="#s1"].is-active { color: var(--sk-faq-orange); }
.sk-faq-toc a[href="#s2"].is-active { color: var(--sk-faq-green); }
.sk-faq-toc a[href="#s3"].is-active { color: var(--sk-faq-rust); }
.sk-faq-toc a[href="#s4"].is-active { color: var(--sk-faq-gold); }
.sk-faq-toc a[href="#s5"].is-active { color: var(--sk-faq-dark); }

.sk-faq-fol {
  font-family: var(--sk-faq-mono);
  font-size: 11px;
  font-weight: 700;
  margin-right: 8px;
}

.sk-faq-fol.c1 { color: var(--sk-faq-orange); }
.sk-faq-fol.c2 { color: var(--sk-faq-green); }
.sk-faq-fol.c3 { color: var(--sk-faq-rust); }
.sk-faq-fol.c4 { color: var(--sk-faq-gold); }
.sk-faq-fol.c5 { color: var(--sk-faq-dark); }

.sk-faq-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sk-faq-cream);
  border: 1px solid var(--sk-faq-line);
  border-radius: 20px;
  padding: 7px 16px 7px 14px;
  font-family: var(--sk-faq-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--sk-faq-muted);
  margin-bottom: 40px;
}

.sk-faq-updated svg {
  width: 13px;
  height: 13px;
  stroke: var(--sk-faq-rust);
  flex-shrink: 0;
}

.sk-faq-section {
  margin-bottom: 44px;
  padding-top: 14px;
  border-top: 1px solid var(--sk-faq-line);
  scroll-margin-top: 96px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sk-faq-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.sk-faq-section.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.sk-faq-sec-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.sk-faq-sec-head h2 {
  font-family: var(--sk-faq-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--sk-faq-dark);
  letter-spacing: -0.3px;
  margin: 0;
}

.sk-faq-sec-num {
  font-family: var(--sk-faq-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -1px;
}

.sk-faq-sec-num.c1 { color: var(--sk-faq-orange); }
.sk-faq-sec-num.c2 { color: var(--sk-faq-green); }
.sk-faq-sec-num.c3 { color: var(--sk-faq-rust); }
.sk-faq-sec-num.c4 { color: var(--sk-faq-gold); }
.sk-faq-sec-num.c5 { color: var(--sk-faq-dark); }

.sk-faq-sec-count {
  font-family: var(--sk-faq-mono);
  font-size: 10.5px;
  color: var(--sk-faq-muted-2);
  margin-left: auto;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.sk-faq-item {
  border-bottom: 1px dashed var(--sk-faq-line);
  transition: background 0.15s ease;
}

.sk-faq-item:first-of-type {
  border-top: 1px dashed var(--sk-faq-line);
}

.sk-faq-item:hover {
  background: rgba(228, 98, 44, 0.025);
}

.sk-faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  font-family: inherit;
  color: inherit;
}

.sk-faq-q .qn {
  font-family: var(--sk-faq-mono);
  font-size: 11.5px;
  color: var(--sk-faq-muted-2);
  flex-shrink: 0;
  width: 24px;
}

.sk-faq-q .q-title {
  font-size: 14.8px;
  font-weight: 700;
  color: var(--sk-faq-dark);
  letter-spacing: -0.1px;
  flex: 1;
  line-height: 1.4;
}

.sk-faq-most {
  font-family: var(--sk-faq-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--sk-faq-rust);
  background: rgba(155, 58, 32, 0.08);
  border: 1px solid rgba(155, 58, 32, 0.2);
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.sk-faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--sk-faq-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.2s ease, border-color 0.15s ease;
}

.sk-faq-item.is-open .sk-faq-toggle {
  background: var(--sk-faq-rust);
  border-color: var(--sk-faq-rust);
  transform: rotate(45deg);
}

.sk-faq-toggle svg {
  width: 11px;
  height: 11px;
  stroke: var(--sk-faq-dark);
  stroke-width: 2.4;
}

.sk-faq-item.is-open .sk-faq-toggle svg {
  stroke: #fff;
}

.sk-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.sk-faq-a-inner {
  padding: 0 0 22px 40px;
  font-size: 14px;
  line-height: 1.85;
  color: #4a443d;
  max-width: 640px;
}

.sk-faq-a-inner p {
  margin: 0;
}

.sk-faq-a-inner p + p {
  margin-top: 10px;
}

.sk-faq-inline {
  color: var(--sk-faq-rust);
  font-weight: 700;
  border-bottom: 1px solid rgba(155, 58, 32, 0.35);
  text-decoration: none;
}

.sk-faq-inline:hover {
  border-color: var(--sk-faq-rust);
}

.sk-faq-empty {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--sk-faq-muted);
  font-size: 14px;
  font-family: var(--sk-faq-mono);
}

.sk-faq-callout {
  position: relative;
  overflow: hidden;
  background: #f7f2ea;
  border-radius: 16px;
  padding: 32px 34px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sk-faq-callout-text h3 {
  font-family: var(--sk-faq-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: #5a5353;
  margin: 0 0 6px;
}

.sk-faq-callout-text p {
  font-size: 13.5px;
  color: #908980;
  margin: 0;
}

.sk-faq-callout-btn {
  background: #8aa39c;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 24px;
  white-space: nowrap;
  box-shadow: 0 4px 14px #8aa39c;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
}

.sk-faq-callout-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(228, 98, 44, 0.42);
}

@media (max-width: 980px) {
  .sk-faq-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .sk-faq-body {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sk-faq-toc {
    position: static;
    top: 64px;
    z-index: 40;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 24px;
    padding: 10px 0 16px;
    background: #fff;
    border-bottom: 1px solid var(--sk-faq-line);
  }

  .sk-faq-toc a {
    padding: 4px 0;
    border-left: none;
    padding-left: 0;
  }

  .sk-faq-stamp {
    top: -14px;
    right: 0;
  }
}

@media (max-width: 860px) {
  .sk-faq-hero {
    padding: 44px 20px 36px;
  }

  .sk-faq-hero h1 {
    font-size: 36px;
  }

  .sk-faq-body {
    padding: 40px 20px 56px;
  }

  .sk-faq-callout {
    padding: 26px 22px;
  }
}

@media (max-width: 520px) {
  .sk-faq-hero h1 {
    font-size: 28px;
  }

  .sk-faq-sec-head h2 {
    font-size: 20px;
  }

  .sk-faq-a-inner {
    padding-left: 0;
  }

  .sk-faq-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .sk-faq-stamp {
    display: none;
  }

  .sk-faq-most {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sk-faq-section {
    opacity: 1;
    transform: none;
  }
}

/* ===== StayKee Privacy (map legend layout) ===== */
.sk-privacy {
  --sk-p-terrain: #f2ead9;
  --sk-p-terrain-deep: #e7dab8;
  --sk-p-ink: #2e2a21;
  --sk-p-forest: #3f6b4a;
  --sk-p-water: #3e7da6;
  --sk-p-pin: #c43e3e;
  --sk-p-sand: #b4842a;
  --sk-p-plum: #6e4e8c;
  --sk-p-muted: #6e6656;
  --sk-p-line: #d9cba5;
  --sk-p-display: "Bebas Neue", Impact, sans-serif;
  --sk-p-sans: "Karla", Inter, system-ui, sans-serif;
  --sk-p-mono: "IBM Plex Mono", ui-monospace, monospace;
  font-family: var(--sk-p-sans);
  color: var(--sk-p-ink);
  background: #f7f2ea;
}

.sk-privacy a {
  color: inherit;
}

.sk-privacy-hero {
  position: relative;
  margin: 30px auto 0;
  max-width: 1080px;
  padding: 0 46px;
}

.sk-privacy-frame {
  position: relative;
  border: 2px solid var(--sk-p-ink);
  border-radius: 6px;
  overflow: hidden;
  background: #f2ead9;
  padding: 40px 40px 30px;
}

.sk-privacy-roads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
}

.sk-privacy-compass {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  z-index: 2;
  opacity: 0.8;
}

.sk-privacy-cartouche {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 8px;
}

.sk-privacy-kicker {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sk-p-water);
  font-weight: 700;
  margin-bottom: 10px;
}

.sk-privacy-cartouche h1 {
  font-family: var(--sk-p-display);
  font-size: 56px;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0 0 12px;
  color: var(--sk-p-ink);
}

.sk-privacy-cartouche p {
  font-size: 14.5px;
  color: var(--sk-p-muted);
  line-height: 1.7;
  margin: 0 0 6px;
}

.sk-privacy-chips {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px dashed var(--sk-p-line);
}

.sk-privacy-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sk-p-muted);
}

.sk-privacy-chip svg {
  width: 12px;
  height: 12px;
  fill: var(--sk-p-pin);
}

.sk-privacy-scale {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sk-privacy-scale .bar {
  width: 60px;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--sk-p-ink) 0 10px, transparent 10px 20px);
}

.sk-privacy-scale span {
  font-family: var(--sk-p-mono);
  font-size: 9.5px;
  color: var(--sk-p-muted);
  letter-spacing: 0.5px;
}

.sk-privacy-routes {
  max-width: 1080px;
  margin: 26px auto 0;
  padding: 0 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.sk-privacy-routes a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sk-p-ink);
  text-decoration: none;
  padding: 7px 13px;
  border: 1px solid var(--sk-p-line);
  border-radius: 20px;
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.sk-privacy-routes a:hover {
  border-color: var(--sk-p-ink);
  background: var(--sk-p-terrain-deep);
  color: var(--sk-p-ink);
}

.sk-privacy-routes .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sk-privacy .c-forest { background: var(--sk-p-forest); }
.sk-privacy .c-water { background: var(--sk-p-water); }
.sk-privacy .c-pin { background: var(--sk-p-pin); }
.sk-privacy .c-sand { background: var(--sk-p-sand); }
.sk-privacy .c-plum { background: var(--sk-p-plum); }

.sk-privacy-legend {
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 46px 30px;
}

.sk-privacy-legend-title {
  font-family: var(--sk-p-display);
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--sk-p-muted);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sk-privacy-legend-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sk-p-line);
}

.sk-privacy-row {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--sk-p-line);
  scroll-margin-top: 96px;
}

.sk-privacy-row:first-of-type {
  border-top: 1px solid var(--sk-p-line);
}

.sk-privacy-swatch {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sk-p-display);
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.5px;
}

.sk-privacy-row-body {
  flex: 1;
  min-width: 0;
}

.sk-privacy-row-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.sk-privacy-row-head h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  color: var(--sk-p-ink);
}

.sk-privacy-code {
  font-family: var(--sk-p-mono);
  font-size: 11px;
  color: var(--sk-p-muted);
  letter-spacing: 0.5px;
}

.sk-privacy-row-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #4c4636;
  margin: 0 0 10px;
}

.sk-privacy-row-body p:last-child {
  margin-bottom: 0;
}

.sk-privacy-row-body h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 14px 0 6px;
  color: var(--sk-p-ink);
}

.sk-privacy-row-body ul {
  list-style: none;
  margin: 6px 0 10px;
  padding: 0;
}

.sk-privacy-row-body ul li {
  font-size: 13.5px;
  line-height: 1.75;
  color: #4c4636;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.sk-privacy-row-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sk-p-muted);
}

.sk-privacy-row-body a {
  color: var(--sk-p-pin);
  font-weight: 600;
  text-decoration: none;
}

.sk-privacy-row-body a:hover {
  text-decoration: underline;
}

.sk-privacy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.sk-privacy-tag {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--sk-p-line);
  color: var(--sk-p-ink);
  background: rgba(255, 255, 255, 0.55);
}

.sk-privacy-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--sk-p-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-left: 2px solid var(--sk-p-sand);
  padding: 8px 0 8px 12px;
}

.sk-privacy-table {
  margin: 10px 0 4px;
  border: 1px solid var(--sk-p-line);
  border-radius: 6px;
  overflow: hidden;
}

.sk-privacy-mrow {
  display: flex;
  gap: 14px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--sk-p-line);
  background: #fff;
}

.sk-privacy-mrow:last-child {
  border-bottom: none;
}

.sk-privacy-mrow:nth-child(even) {
  background: rgba(0, 0, 0, 0.015);
}

.sk-privacy-mrow .mk {
  flex: 0 0 150px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sk-p-ink);
}

.sk-privacy-mrow .mv {
  flex: 1;
  font-size: 12.5px;
  color: var(--sk-p-muted);
  line-height: 1.6;
}

.sk-privacy-dest {
  max-width: 1080px;
  margin: 20px auto 70px;
  padding: 0 46px;
}

.sk-privacy-dest-box {
  border: 2px solid var(--sk-p-ink);
  border-radius: 6px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sk-privacy-dest-box h2 {
  font-family: var(--sk-p-display);
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: 0.5px;
  color: var(--sk-p-ink);
}

.sk-privacy-dest-box p {
  font-size: 13.5px;
  color: var(--sk-p-muted);
  max-width: 380px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.sk-privacy-mail {
  font-weight: 700;
  font-size: 14px;
  color: var(--sk-p-ink);
  border-bottom: 2px solid var(--sk-p-pin);
  padding-bottom: 2px;
  text-decoration: none;
}

.sk-privacy-mail:hover {
  color: var(--sk-p-pin);
}

.sk-privacy-or {
  display: inline-block;
  margin: 0 10px;
  font-size: 12px;
  color: var(--sk-p-muted);
}

.sk-privacy-pin {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .sk-privacy-hero {
    padding: 0 22px;
  }

  .sk-privacy-frame {
    padding: 30px 20px 24px;
  }

  .sk-privacy-cartouche h1 {
    font-size: 38px;
  }

  .sk-privacy-compass {
    display: none;
  }

  .sk-privacy-chips {
    gap: 12px 16px;
  }

  .sk-privacy-routes {
    padding: 0 22px;
    justify-content: flex-start;
  }

  .sk-privacy-legend {
    padding: 38px 22px 20px;
  }

  .sk-privacy-row {
    flex-direction: column;
    gap: 12px;
  }

  .sk-privacy-dest {
    padding: 0 22px;
  }

  .sk-privacy-dest-box {
    padding: 26px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .sk-privacy-mrow {
    flex-direction: column;
    gap: 3px;
  }

  .sk-privacy-mrow .mk {
    flex: none;
  }
}

/* ═══════ Customer login / signup modal (StayKee auth card) ═══════ */
#loginModal.sk-auth-modal .modal-dialog {
  max-width: 560px;
  width: calc(100% - 40px);
  margin: 1.5rem auto;
}

#loginModal.sk-auth-modal .modal-content,
#loginModal.sk-auth-modal .sk-auth-card {
  background: #fbfaf7;
  border: 0;
  border-radius: 24px;
  padding: 52px 34px 32px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 94vh;
  overflow-y: auto;
  position: relative;
  font-family: "Inter", system-ui, sans-serif;
}

.sk-auth-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e9e5dc;
  background: #fff;
  color: #8a8577;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.sk-auth-close:hover {
  background: #f2efe8;
  color: #33332c;
}

.sk-auth-tabs {
  position: relative;
  display: flex;
  background: #ececec;
  border-radius: 999px;
  padding: 4px;
}

.sk-auth-tab-pill {
  position: absolute;
  top: 4px;
  left: 0;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, width 0.25s ease;
}

.sk-auth-tab {
  flex: 1;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 11px 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #9a9a9a;
  cursor: pointer;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.sk-auth-tab.active {
  color: #e8623a;
}

.sk-auth-title {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #22231d !important;
  text-align: center;
  letter-spacing: -0.3px;
  margin: 4px 0 0 !important;
  line-height: 1.2 !important;
}

.sk-auth-switch {
  font-size: 13px !important;
  color: #94907f !important;
  text-align: center;
  margin: 6px 0 8px !important;
  line-height: 1.4;
}

.sk-auth-switch a {
  color: #4c7a54;
  font-weight: 700;
  text-decoration: none;
}

.sk-auth-switch a:hover {
  text-decoration: underline;
}

.sk-auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sk-auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sk-auth-field label {
  font-size: 12.5px;
  font-weight: 700;
  color: #514e42;
  margin: 0;
}

.sk-auth-req {
  color: #c2694a;
}

.sk-auth-field input {
  height: 45px;
  border-radius: 13px;
  border: 1.5px solid #ece8de;
  background: #fff;
  padding: 0 15px;
  font-size: 14px;
  font-family: "Inter", system-ui, sans-serif;
  color: #22231d;
  outline: none;
  width: 100%;
  box-shadow: none;
}

.sk-auth-field input::placeholder {
  color: #b8b3a3;
}

.sk-auth-field input:focus {
  border-color: #4c7a54;
  box-shadow: 0 0 0 3px rgba(76, 122, 84, 0.12);
}

.sk-auth-password {
  position: relative;
}

.sk-auth-password input {
  padding-right: 46px;
}

.sk-auth-password-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #9a9688;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.sk-auth-password-toggle:hover {
  color: #4c7a54;
}

.sk-auth-password-toggle:focus-visible {
  outline: 2px solid #4c7a54;
  outline-offset: -4px;
  border-radius: 10px;
}

.sk-auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  color: #94907f;
  line-height: 1.4;
  margin: 0;
  cursor: pointer;
}

.sk-auth-terms input,
.sk-auth-check input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #4c7a54;
}

.sk-auth-terms a {
  color: #514e42;
  font-weight: 700;
  text-decoration: none;
}

.sk-auth-terms a:hover {
  text-decoration: underline;
}

.sk-auth-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}

.sk-auth-check {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #514e42;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
}

.sk-auth-check input {
  margin: 0;
}

.sk-auth-forgot {
  color: #4c7a54;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.sk-auth-forgot:hover {
  text-decoration: underline;
}

.sk-auth-error {
  font-size: 13px;
  color: #b42318;
  margin: 0;
}

.sk-auth-submit {
  height: 47px;
  border: 0;
  border-radius: 13px;
  background: #f15060;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s ease, transform 0.15s ease;
}

.sk-auth-submit:hover {
  background: #dd3f4f;
  transform: translateY(-1px);
  color: #fff;
}

.sk-auth-submit:active {
  transform: translateY(0);
}

.sk-auth-divider,
.sk-auth-social {
  display: none !important;
}

.sk-auth-social-btn {
  flex: 1;
  height: 45px;
  border-radius: 13px;
  border: 1.5px solid #ece8de;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: "Inter", system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: #33332c;
}

.sk-auth-social-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.sk-auth-social-btn:hover:not(.is-disabled) {
  background: #f7f5ee;
  border-color: #ddd6c4;
}

.sk-auth-social-btn.is-disabled {
  opacity: 0.7;
  cursor: default;
}

body.modal-open:has(#loginModal.show) .modal-backdrop {
  background: #141816;
  opacity: 0.5;
}

@media (max-width: 768px) {
  #loginModal.sk-auth-modal .modal-dialog {
    width: calc(100% - 24px);
  }

  #loginModal.sk-auth-modal .modal-content,
  #loginModal.sk-auth-modal .sk-auth-card {
    padding: 46px 24px 24px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  #loginModal.sk-auth-modal .sk-auth-card {
    padding: 40px 20px 20px;
    gap: 12px;
  }

  .sk-auth-close {
    top: 8px;
    right: 8px;
  }

  .sk-auth-title {
    font-size: 19px !important;
  }

  .sk-auth-field input,
  .sk-auth-submit,
  .sk-auth-social-btn {
    height: 43px;
  }

  .sk-auth-social {
    flex-direction: column;
  }
}
