/* SEARCH SECTIONS: GLOBAL THEME | IMAGE CARD | FILTERS | PROPERTY DETAILS | FOOTER */
:root
{
  --charcoal: #292425;
  --coral: #e94f64;
  --coral-dark: #bd344d;
  --coral-soft: #fff0f2;
  --sand: #f7f3f0;
  --sand-deep: #eee7e2;
  --white: #fff;
  --ink: #292425;
  --muted: #6d6466;
  --line: #ded7d3;
  --green: #34725a;
  --whatsapp: #198f36;
  --shadow: 0 14px 38px rgba(58, 40, 43, .12);
  --font: "Manrope", sans-serif;
}
*
{
  box-sizing: border-box
}
html
{
  scroll-behavior: smooth
}
body
{
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 16px/1.5 var(--font);
  -webkit-font-smoothing: antialiased
}
[hidden]
{
  display: none!important
}
a
{
  color: inherit;
  text-decoration: none
}
button, input, select
{
  color: inherit;
  font: inherit
}
button, a
{
  -webkit-tap-highlight-color: transparent
}
button
{
  cursor: pointer;
  touch-action: manipulation
}
img
{
  max-width: 100%
}
:where(a, button, input, select, [tabindex]):focus-visible
{
  outline: 3px solid var(--coral);
  outline-offset: 3px
}
.sr-only
{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}
.inline-icon
{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}
.site-header
{
  position: sticky;
  top: 0;
  z-index: 30;
  height: 78px;
  padding: 0 clamp(22px, 3.5vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px)
}
.nav-group
{
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  font-size: 14px;
  font-weight: 700
}
.nav-right
{
  justify-self: end
}
.nav-group a, .saved-trigger
{
  min-height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  white-space: nowrap
}
.nav-group a:hover, .saved-trigger:hover
{
  color: var(--coral-dark);
  border-bottom-color: var(--coral)
}
.brand
{
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: center
}
.brand img
{
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%
}
.brand>span
{
  display: flex;
  flex-direction: column;
  line-height: 1
}
.brand strong
{
  color: var(--charcoal);
  font-size: 17px;
  letter-spacing: .035em
}
.brand small
{
  margin-top: 6px;
  color: var(--coral-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .24em
}
.saved-trigger>svg
{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8
}
.saved-trigger .saved-count
{
  min-width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border-radius: 99px;
  background: var(--coral-soft);
  color: var(--coral-dark);
  font-size: 10px
}
.sign-in
{
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--charcoal);
  border-radius: 10px;
  background: var(--charcoal);
  color: #fff;
  font-size: 13px;
  font-weight: 800
}
.sign-in:hover
{
  background: var(--coral-dark);
  border-color: var(--coral-dark)
}
.menu-button
{
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff
}
.menu-button span
{
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--charcoal)
}
.mobile-navigation
{
  position: absolute;
  top: calc(100% + 1px);
  right: clamp(15px, 3.5vw, 58px);
  width: min(360px, calc(100vw - 30px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 55px rgba(52, 36, 40, .18);
  backdrop-filter: blur(16px)
}
.mobile-navigation a
{
  min-height: 62px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #eee9e6;
  border-radius: 10px
}
.mobile-navigation a:last-child
{
  border-bottom: 0
}
.mobile-navigation a:hover
{
  background: var(--coral-soft);
  color: var(--coral-dark)
}
.mobile-navigation span
{
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase
}
.mobile-navigation strong
{
  font-size: 14px
}
.menu-button.is-open span:first-child
{
  transform: translateY(7px) rotate(45deg)
}
.menu-button.is-open span:nth-child(2)
{
  opacity: 0
}
.menu-button.is-open span:last-child
{
  transform: translateY(-7px) rotate(-45deg)
}
.menu-button span
{
  transition: transform .18s ease, opacity .18s ease
}
.hero
{
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: #403637
}
.hero-slides
{
  position: absolute;
  inset: 0;
  overflow: hidden
}
.hero-slide
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0;
  transition: opacity 1.05s cubic-bezier(.4, 0, .2, 1)
}
.hero-slide.is-active
{
  opacity: 1
}
.hero-overlay
{
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 28, 30, .84), rgba(40, 30, 33, .38) 60%, rgba(40, 30, 33, .18)), linear-gradient(0deg, rgba(29, 23, 25, .42), transparent 60%)
}
.hero-content
{
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 42px));
  color: #fff
}
.hero-kicker
{
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase
}
h1
{
  max-width: 780px;
  margin: 0 0 34px;
  font-size: clamp(55px, 6.8vw, 88px);
  line-height: .98;
  letter-spacing: -.052em;
  text-shadow: 0 4px 28px rgba(24, 17, 18, .28)
}
.search-shell
{
  position: relative;
  width: min(760px, 100%)
}
.search-panel
{
  position: relative;
  z-index: 3;
  height: 76px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 70px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(26, 17, 19, .28)
}
.search-location-icon
{
  width: 23px;
  height: 23px;
  margin-left: 24px;
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round
}
.search-panel input
{
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600
}
.search-panel input::placeholder
{
  color: #847a7c;
  opacity: 1
}
.search-panel>button
{
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: var(--coral);
  color: #fff
}
.search-panel>button:hover
{
  background: var(--coral-dark)
}
.search-panel>button svg
{
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round
}
.location-suggestions
{
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: 425px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow)
}
.suggestion-heading
{
  padding: 18px 20px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase
}
.location-suggestions>button
{
  width: 100%;
  min-height: 68px;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 13px;
  border: 0;
  border-bottom: 1px solid #eee9e6;
  background: #fff;
  text-align: left
}
.location-suggestions>button:last-child
{
  border-bottom: 0
}
.location-suggestions>button:hover, .location-suggestions>button.active
{
  background: var(--coral-soft)
}
.suggestion-icon
{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--sand);
  color: var(--coral-dark)
}
.suggestion-copy
{
  min-width: 0;
  display: flex;
  flex-direction: column
}
.suggestion-copy strong
{
  font-size: 15px
}
.suggestion-copy small
{
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap
}
.suggestion-arrow
{
  width: 20px;
  fill: none;
  stroke: #8d8385;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}
.suggestion-empty
{
  padding: 24px;
  display: flex;
  flex-direction: column
}
.suggestion-empty strong
{
  font-size: 15px
}
.suggestion-empty span
{
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px
}
.quick-links
{
  margin-top: 17px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 13px
}
.quick-links>span
{
  color: rgba(255, 255, 255, .77)
}
.quick-links button
{
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 99px;
  background: rgba(38, 29, 31, .42);
  color: #fff;
  font-size: 12px;
  font-weight: 700
}
.quick-links button:hover
{
  border-color: #fff;
  background: rgba(38, 29, 31, .68)
}
.section-label
{
  display: block;
  margin-bottom: 10px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase
}
h2
{
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.042em
}
.outline-button, .primary-button
{
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  border-radius: 10px;
  background: #fff;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800
}
.primary-button
{
  border-color: var(--coral);
  background: var(--coral);
  color: #fff
}
.primary-button:hover
{
  border-color: var(--coral-dark);
  background: var(--coral-dark)
}
.whatsapp-team-button
{
  gap: 9px;
  border-color: var(--whatsapp);
  background: var(--whatsapp)
}
.whatsapp-team-button:hover
{
  border-color: #117628;
  background: #117628
}
.whatsapp-team-button svg
{
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}
.homes-section
{
  padding: 88px clamp(22px, 4vw, 68px) 110px;
  background: var(--sand);
  border-top: 1px solid var(--sand-deep)
}
.section-heading
{
  max-width: 1400px;
  margin: 0 auto 31px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px
}
.section-heading p
{
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 15px
}
.section-heading p strong
{
  color: var(--ink)
}
.view-all
{
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap
}
.view-all:hover
{
  color: var(--coral-dark);
  border-color: var(--coral-dark)
}
.filters
{
  max-width: 1400px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}
.quick-filter-group, .toolbar-actions
{
  display: flex;
  align-items: center;
  gap: 9px
}
.filter-chip
{
  min-height: 43px;
  padding: 0 16px;
  border: 1px solid #cfc6c2;
  border-radius: 99px;
  background: #fff;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap
}
.filter-chip:hover
{
  border-color: var(--charcoal)
}
.filter-chip.active
{
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff
}
.filter-drawer-trigger
{
  min-height: 46px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--charcoal);
  border-radius: 11px;
  background: #fff;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800
}
.filter-drawer-trigger:hover, .filter-drawer-trigger[aria-expanded="true"]
{
  background: var(--coral-soft);
  border-color: var(--coral)
}
.filter-drawer-trigger svg
{
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}
#filter-count
{
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 99px;
  background: var(--coral);
  color: #fff;
  font-size: 10px
}
/* IMAGE CARD: public property card layout, gallery, image sizing, and card features */
.property-grid
{
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px
}
.property-card
{
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(58, 40, 43, .07);
  cursor: pointer
}
.property-card:hover
{
  border-color: #bcada8;
  box-shadow: var(--shadow)
}
.card-image
{
  position: relative;
  aspect-ratio: 1.58/1;
  overflow: hidden;
  background: #d9d5d3
}
.card-image img
{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 1;
  transition: opacity .45s cubic-bezier(.4, 0, .2, 1)
}
.card-image img.is-switching
{
  opacity: .18
}
.property-badge
{
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: var(--charcoal);
  box-shadow: 0 3px 10px rgba(35, 25, 27, .12);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase
}
.save-button
{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--charcoal);
  box-shadow: 0 3px 10px rgba(35, 25, 27, .13)
}
.save-button svg
{
  width: 21px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.9
}
.save-button.saved
{
  color: var(--coral-dark)
}
.save-button.saved svg
{
  fill: var(--coral);
  stroke: var(--coral-dark)
}
.gallery-control
{
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(35, 25, 27, .18);
  opacity: 0;
  transform: translateY(-50%)
}
.gallery-control svg, .dialog-gallery-control svg
{
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}
.gallery-previous
{
  left: 14px
}
.gallery-next
{
  right: 14px
}
.property-card:hover .gallery-control, .gallery-control:focus-visible
{
  opacity: 1
}
.gallery-control:hover
{
  background: var(--coral);
  color: #fff
}
.photo-count
{
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(41, 36, 37, .9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums
}
.card-body
{
  padding: 23px 24px 22px
}
.card-price
{
  display: flex;
  align-items: baseline;
  gap: 9px
}
.card-price strong
{
  color: var(--charcoal);
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -.025em
}
.card-price span
{
  color: var(--muted);
  font-size: 11px
}
.card-body h3
{
  margin: 8px 0 5px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -.018em
}
.card-location, .dialog-location
{
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px
}
.card-location .inline-icon
{
  width: 16px;
  height: 16px;
  color: var(--coral-dark)
}
.card-features
{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 14px 0;
  border-top: 1px solid #e8e2df;
  border-bottom: 1px solid #e8e2df
}
.card-features span
{
  min-width: 0;
  padding: 0 14px;
  border-right: 1px solid #e2dcd9;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4
}
.card-features span:first-child
{
  padding-left: 0
}
.card-features span:last-child
{
  padding-right: 0;
  border-right: 0
}
.card-features b
{
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap
}
.card-tags
{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px
}
.tag-pill
{
  padding: 3px 9px;
  border: 1px solid #e8e2df;
  border-radius: 99px;
  background: #faf8f6;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700
}
.pdp-amenities-grid
{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px
}
.pdp-amenity-chip
{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border: 1px solid #e1dbd7;
  border-radius: 99px;
  background: #faf8f6;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700
}
.pdp-amenity-chip .inline-icon
{
  width: 14px;
  height: 14px;
  color: var(--green)
}
.card-footer
{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}
.card-footer>span
{
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700
}
.card-footer>span .inline-icon
{
  width: 17px;
  height: 17px
}
.card-actions
{
  display: flex;
  align-items: center;
  gap: 5px
}
.card-contact
{
  min-height: 38px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
  background: #eaf8ed;
  color: #14752b;
  font-size: 11px;
  font-weight: 800
}
.card-contact:hover
{
  background: #d9f3df
}
.card-contact svg
{
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}
.view-property
{
  min-height: 44px;
  padding: 0 2px 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800
}
.view-property:hover
{
  color: var(--coral-dark)
}
.view-property svg
{
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round
}
.empty-state
{
  max-width: 1400px;
  margin: auto;
  padding: 72px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff
}
.empty-state h3
{
  margin: 0;
  color: var(--charcoal);
  font-size: 26px
}
.empty-state p
{
  color: var(--muted);
  font-size: 14px
}
.empty-state button
{
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 800
}
.blog-section
{
  padding: 96px clamp(22px, 4vw, 68px) 108px;
  background: #fff
}
.blog-grid
{
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.18fr .91fr .91fr;
  gap: 24px
}
.blog-card
{
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff
}
.blog-card:hover
{
  border-color: #bcada8;
  box-shadow: var(--shadow)
}
.blog-image
{
  position: relative;
  display: block;
  aspect-ratio: 1.45/1;
  overflow: hidden;
  background: #ddd8d5
}
.blog-image img
{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}
.blog-featured .blog-image
{
  aspect-ratio: 1.55/1
}
.blog-copy
{
  padding: 24px
}
.blog-copy>span
{
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase
}
.blog-copy h3
{
  margin: 11px 0;
  color: var(--charcoal);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.25;
  letter-spacing: -.025em
}
.blog-copy p
{
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65
}
.blog-link
{
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800
}
.blog-link:hover
{
  color: var(--coral-dark)
}
.blog-link span
{
  margin-left: 8px;
  font-size: 18px
}
.services-section
{
  padding: 88px clamp(22px, 4vw, 68px) 104px;
  background: #f1ece8;
  border-top: 1px solid var(--sand-deep)
}
.section-heading.centered
{
  display: block;
  text-align: center
}
.service-grid
{
  max-width: 1200px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}
.service-card
{
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff
}
.service-card:hover
{
  border-color: #bcada8
}
.service-art
{
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--coral-soft);
  color: var(--coral-dark)
}
.service-art svg
{
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}
.service-card h3
{
  margin: 23px 0 9px;
  color: var(--charcoal);
  font-size: 23px;
  letter-spacing: -.02em
}
.service-card p
{
  min-height: 72px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65
}
.service-card a
{
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--charcoal);
  border-radius: 10px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800
}
.service-card a:hover
{
  border-color: var(--coral-dark);
  color: var(--coral-dark)
}
.advisor-section
{
  padding: 88px clamp(30px, 8vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  background: var(--charcoal);
  color: #fff
}
.advisor-section h2
{
  color: #fff
}
.advisor-section .section-label
{
  color: #ff9eaa
}
.advisor-section p
{
  max-width: 560px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.8
}
.site-footer
{
  padding: 62px clamp(24px, 4vw, 68px) 30px;
  border-top: 1px solid var(--line);
  background: #fff
}
.footer-main
{
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(28px, 5vw, 78px)
}
.footer-about p
{
  max-width: 320px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px
}
.footer-brand
{
  justify-self: auto
}
.footer-column
{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px
}
.footer-column strong
{
  margin-bottom: 4px;
  color: var(--charcoal);
  font-size: 13px
}
.footer-column a:hover
{
  color: var(--coral-dark)
}
.footer-bottom
{
  margin-top: 48px;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px
}
.mobile-social-links, .footer-social-links
{
  display: flex;
  align-items: center;
  gap: 8px
}
.mobile-social-links
{
  min-height: 54px;
  padding: 8px 10px;
  border-bottom: 1px solid #eee9e6
}
.mobile-social-links a, .footer-social-links a
{
  width: 34px;
  min-height: 34px!important;
  padding: 0!important;
  display: grid!important;
  place-items: center;
  border: 1px solid var(--line)!important;
  border-radius: 50%!important;
  color: var(--charcoal)
}
.mobile-social-links a::after
{
  display: none
}
.mobile-social-links a:hover, .footer-social-links a:hover
{
  border-color: var(--coral-dark)!important;
  background: var(--coral-soft)!important;
  color: var(--coral-dark)!important
}
.mobile-social-links svg, .footer-social-links svg
{
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor
}
.footer-social-links
{
  margin-top: 1px
}
.filter-dialog
{
  position: fixed;
  inset: 0 0 0 auto;
  width: min(500px, 100%);
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: -18px 0 48px rgba(35, 24, 26, .2)
}
.filter-dialog::backdrop
{
  background: rgba(35, 28, 30, .58);
  backdrop-filter: blur(2px)
}
.filter-sheet
{
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto
}
.filter-sheet>header
{
  padding: 26px 28px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line)
}
.filter-sheet>header .section-label
{
  margin-bottom: 3px;
  font-size: 10px
}
.filter-sheet>header h2
{
  font-size: 34px
}
.sheet-close
{
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--charcoal)
}
.sheet-close:hover
{
  border-color: var(--charcoal)
}
.sheet-close svg, .dialog-close svg
{
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round
}
.filter-sheet-content
{
  padding: 0 28px;
  overflow-y: auto
}
.filter-sheet fieldset
{
  margin: 0;
  padding: 27px 0;
  border: 0;
  border-bottom: 1px solid var(--line)
}
.filter-sheet fieldset:last-child
{
  border-bottom: 0
}
.filter-sheet legend
{
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 800
}
.filter-options
{
  display: grid;
  gap: 3px
}
.filter-options.two-column
{
  grid-template-columns: 1fr 1fr;
  column-gap: 18px
}
.filter-options label
{
  min-height: 45px;
  padding: 4px 0;
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer
}
.filter-options input[type="checkbox"]
{
  appearance: none;
  width: 22px;
  height: 22px;
  margin: 0;
  position: relative;
  border: 1.5px solid #998d8f;
  border-radius: 6px;
  background: #fff
}
.filter-options input[type="checkbox"]:checked
{
  border-color: var(--coral);
  background: var(--coral)
}
.filter-options input[type="checkbox"]:checked:after
{
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}
.filter-options small
{
  color: #918689;
  font-size: 12px
}
.price-labels
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}
.price-labels>span
{
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  font-size: 11px
}
.price-labels>span:last-child
{
  text-align: right
}
.price-labels strong
{
  margin-top: 2px;
  color: var(--charcoal);
  font-size: 14px
}
.dual-range
{
  position: relative;
  height: 44px;
  margin: 20px 7px 0
}
.range-track
{
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 99px;
  background: #ded6d3
}
.range-fill
{
  position: absolute;
  inset-block: 0;
  border-radius: inherit;
  background: var(--coral)
}
.dual-range input[type="range"]
{
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 44px;
  margin: 0;
  border: 0;
  background: transparent;
  pointer-events: none
}
.dual-range input[type="range"]::-webkit-slider-runnable-track
{
  height: 4px;
  background: transparent
}
.dual-range input[type="range"]::-webkit-slider-thumb
{
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -10px;
  border: 3px solid var(--coral);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(64, 42, 46, .2);
  pointer-events: auto
}
.dual-range input[type="range"]::-moz-range-track
{
  height: 4px;
  background: transparent
}
.dual-range input[type="range"]::-moz-range-thumb
{
  width: 19px;
  height: 19px;
  border: 3px solid var(--coral);
  border-radius: 50%;
  background: #fff;
  pointer-events: auto
}
.filter-sheet>footer
{
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  background: #fff
}
.reset-filters
{
  min-height: 46px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid var(--charcoal);
  background: transparent;
  font-size: 13px;
  font-weight: 800
}
.apply-filters
{
  min-width: 205px;
  min-height: 50px;
  padding: 0 19px;
  border: 0;
  border-radius: 11px;
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 800
}
.apply-filters:hover
{
  background: var(--coral-dark)
}
.property-dialog
{
  position: relative;
  width: min(1040px, calc(100% - 28px));
  max-height: 92vh;
  padding: 0;
  overflow: auto;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(30, 20, 22, .42)
}
.property-dialog::backdrop
{
  background: rgba(35, 28, 30, .7);
  backdrop-filter: blur(4px)
}
.dialog-close
{
  position: sticky;
  z-index: 9;
  top: 14px;
  margin: 14px 14px -57px auto;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(41, 36, 37, .94);
  color: #fff;
  box-shadow: 0 7px 20px rgba(20, 15, 16, .25)
}
#dialog-content
{
  transition: opacity .15s ease, transform .15s ease
}
#dialog-content.is-leaving-next, #dialog-content.is-entering-previous
{
  opacity: .25;
  transform: translateX(-7%)
}
#dialog-content.is-leaving-previous, #dialog-content.is-entering-next
{
  opacity: .25;
  transform: translateX(7%)
}
.dialog-gallery
{
  padding: 16px;
  background: #ede8e5
}
.dialog-main-photo
{
  position: relative;
  height: min(62vh, 580px);
  overflow: hidden;
  border-radius: 12px;
  background: var(--charcoal)
}
.dialog-main-photo>img
{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain
}
.dialog-gallery-control
{
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(30, 20, 22, .22);
  transform: translateY(-50%)
}
.dialog-gallery-control:hover
{
  background: var(--coral);
  color: #fff
}
.dialog-gallery-previous
{
  left: 16px
}
.dialog-gallery-next
{
  right: 16px
}
.dialog-photo-count
{
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 8px;
  background: rgba(41, 36, 37, .9);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums
}
.dialog-thumbnails
{
  margin-top: 10px;
  padding: 3px 2px 8px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin
}
.dialog-thumbnails button
{
  flex: 0 0 92px;
  width: 92px;
  height: 70px;
  padding: 0;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 8px;
  background: #d8d2cf;
  opacity: .72
}
.dialog-thumbnails button:hover, .dialog-thumbnails button.active
{
  border-color: var(--coral);
  opacity: 1
}
.dialog-thumbnails img
{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}
.dialog-details
{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  padding: 38px
}
.dialog-details h2
{
  margin: 6px 0 9px;
  font-size: 35px
}
.dialog-price
{
  color: var(--charcoal);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em
}
.dialog-location
{
  margin-bottom: 0;
  font-size: 14px
}
.dialog-location .inline-icon
{
  color: var(--coral-dark)
}
.dialog-quick-meta
{
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}
.dialog-quick-meta span
{
  min-height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 9px;
  background: #f2f0f6;
  color: #5e5868;
  font-size: 11px;
  font-weight: 800
}
.dialog-quick-meta span:first-child
{
  background: #eaf8ed;
  color: #197533
}
.dialog-quick-meta .inline-icon
{
  width: 16px;
  height: 16px
}
.detail-list
{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}
.detail-list div
{
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}
.detail-list span
{
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase
}
.detail-list strong
{
  display: block;
  margin-top: 5px;
  color: var(--charcoal);
  font-size: 13px
}
.inquiry-box
{
  padding: 25px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--sand)
}
.inquiry-kicker
{
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase
}
.inquiry-box h3
{
  margin: 7px 0 10px;
  font-size: 21px;
  line-height: 1.25
}
.inquiry-box p
{
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7
}
.whatsapp-button
{
  width: 100%;
  min-height: 51px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 11px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 13px;
  font-weight: 800
}
.whatsapp-button:hover
{
  background: #117628
}
.whatsapp-button svg, .dialog-action-bar svg
{
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}
.contact-unavailable
{
  min-height: 51px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #beb6b3;
  border-radius: 11px;
  color: var(--muted);
  font-size: 12px;
  text-align: center
}
.dialog-page-link
{
  min-height: 44px;
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px
}
.dialog-property-browser
{
  display: none
}
.dialog-action-bar
{
  display: none
}
.toast
{
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 24px;
  max-width: calc(100% - 30px);
  padding: 13px 19px;
  border-radius: 10px;
  background: var(--charcoal);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%)
}
.toast.show
{
  opacity: 1
}
@media(max-width:1100px)
{
  .nav-group
  {
    display: none
  }
  .site-header
  {
    grid-template-columns: minmax(0,1fr) auto auto;
    gap: 8px
  }
  .brand
  {
    justify-self: start
  }
  .menu-button
  {
    display: block
  }
  .mobile-contact-now
  {
    display: inline-flex
  }
  .blog-grid
  {
    grid-template-columns: 1fr 1fr
  }
  .blog-featured
  {
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 1.1fr .9fr
  }
  .blog-featured .blog-image
  {
    aspect-ratio: auto
  }
  .filters
  {
    align-items: flex-start
  }
  .quick-filter-group
  {
    max-width: 54%;
    flex-wrap: wrap
  }
  .toolbar-actions
  {
    align-self: flex-start
  }
}
@media(max-width:760px)
{
  body
  {
    font-size: 16px
  }
  .site-header
  {
    height: 68px;
    padding: 0 15px
  }
  .brand img
  {
    width: 41px;
    height: 41px
  }
  .brand strong
  {
    font-size: 15px
  }
  .brand small
  {
    font-size: 7px
  }
  .hero
  {
    min-height: 520px;
    background-position: 45% center
  }
  .hero-content
  {
    width: calc(100% - 30px)
  }
  .hero-kicker
  {
    font-size: 10px
  }
  .hero h1
  {
    margin-bottom: 28px;
    font-size: clamp(48px, 15vw, 61px)
  }
  .search-panel
  {
    height: 68px;
    grid-template-columns: 47px minmax(0, 1fr) 61px;
    border-radius: 15px
  }
  .search-location-icon
  {
    width: 20px;
    margin-left: 18px
  }
  .search-panel input
  {
    padding: 0 8px;
    font-size: 16px
  }
  .search-panel>button
  {
    width: 48px;
    height: 48px;
    border-radius: 12px
  }
  .location-suggestions
  {
    top: calc(100% + 8px);
    max-height: 360px;
    border-radius: 15px
  }
  .location-suggestions>button
  {
    min-height: 66px;
    padding: 9px 14px;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    gap: 10px
  }
  .suggestion-icon
  {
    width: 42px;
    height: 42px
  }
  .suggestion-copy small
  {
    font-size: 11px
  }
  .quick-links
  {
    margin-top: 14px;
    font-size: 12px
  }
  .quick-links button
  {
    min-height: 34px;
    padding: 0 11px;
    font-size: 11px
  }
  .homes-section
  {
    padding: 62px 15px 76px
  }
  .section-heading
  {
    display: block;
    margin-bottom: 25px
  }
  .section-heading h2
  {
    font-size: 37px
  }
  .section-heading p
  {
    font-size: 14px;
    line-height: 1.6
  }
  .view-all
  {
    margin-top: 19px
  }
  .filters
  {
    display: block
  }
  .quick-filter-group
  {
    max-width: none;
    padding-bottom: 7px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none
  }
  .quick-filter-group::-webkit-scrollbar
  {
    display: none
  }
  .toolbar-actions
  {
    width: 100%;
    margin-top: 9px
  }
  .filter-drawer-trigger
  {
    flex: 0 0 auto
  }
  .sort-control
  {
    min-width: 0;
    flex: 1 1 auto
  }
  .sort-control>span
  {
    display: none
  }
  .sort-control select
  {
    width: 100%;
    max-width: none
  }
  .property-grid
  {
    grid-template-columns: 1fr;
    gap: 20px
  }
  .card-image
  {
    aspect-ratio: 1.35/1
  }
  .gallery-control
  {
    width: 44px;
    height: 44px;
    opacity: 1
  }
  .card-body
  {
    padding: 20px
  }
  .card-price strong
  {
    font-size: 25px
  }
  .card-features span
  {
    padding: 0 9px
  }
  .card-features b
  {
    font-size: 12px
  }
  .blog-section
  {
    padding: 72px 15px 80px
  }
  .blog-grid
  {
    grid-template-columns: 1fr
  }
  .blog-featured
  {
    grid-column: auto;
    display: block
  }
  .blog-featured .blog-image, .blog-image
  {
    aspect-ratio: 1.45/1
  }
  .services-section
  {
    padding: 68px 15px 76px
  }
  .service-grid
  {
    grid-template-columns: 1fr
  }
  .service-card p
  {
    min-height: 0
  }
  .advisor-section
  {
    padding: 70px 22px;
    grid-template-columns: 1fr;
    gap: 28px
  }
  .footer-top
  {
    display: block
  }
  .footer-links
  {
    margin-top: 26px;
    flex-wrap: wrap;
    gap: 18px 24px
  }
  .filter-dialog
  {
    width: 100%
  }
  .filter-sheet>header
  {
    padding: 21px 20px 17px
  }
  .filter-sheet-content
  {
    padding: 0 20px
  }
  .filter-options.two-column
  {
    grid-template-columns: 1fr;
    gap: 2px
  }
  .filter-sheet>footer
  {
    padding: 14px 20px
  }
  .apply-filters
  {
    min-width: 0;
    flex: 1
  }
  .property-dialog
  {
    width: calc(100% - 14px);
    max-height: 94vh
  }
  .dialog-close
  {
    margin: 11px 0 0 calc(100vw - 65px)
  }
  .dialog-gallery
  {
    padding: 7px
  }
  .dialog-main-photo
  {
    height: 49vh;
    min-height: 330px
  }
  .dialog-gallery-control
  {
    width: 44px;
    height: 44px
  }
  .dialog-gallery-previous
  {
    left: 10px
  }
  .dialog-gallery-next
  {
    right: 10px
  }
  .dialog-thumbnails button
  {
    flex-basis: 74px;
    width: 74px;
    height: 59px
  }
  .dialog-details
  {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 24px 21px 28px
  }
  .dialog-details h2
  {
    font-size: 31px
  }
}
@media(max-width:760px)
{
  .hero-slide
  {
    object-position: 45% center
  }
  .footer-main
  {
    grid-template-columns: 1fr 1fr
  }
  .footer-about
  {
    grid-column: 1/3
  }
  .footer-bottom
  {
    display: grid
  }
  .site-footer
  {
    padding-top: 50px
  }
}
@media(max-width:760px)
{
  .property-dialog
  {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
    background: #f4f4f9;
    box-shadow: none
  }
  .property-dialog::backdrop
  {
    background: #2e2b2d
  }
  .dialog-close
  {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
    margin: 0;
    width: 44px;
    height: 44px;
    background: rgba(35, 31, 33, .94)
  }
  .dialog-gallery
  {
    padding: 0 0 10px;
    background: #f0ecea
  }
  .dialog-main-photo
  {
    height: min(48svh, 470px);
    min-height: 300px;
    border-radius: 0 0 24px 24px;
    background: #252122
  }
  .dialog-gallery-control
  {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .96)
  }
  .dialog-thumbnails
  {
    margin-top: 10px;
    padding: 2px 12px 4px;
    gap: 8px;
    scrollbar-width: none
  }
  .dialog-thumbnails::-webkit-scrollbar
  {
    display: none
  }
  .dialog-thumbnails button
  {
    flex-basis: 82px;
    width: 82px;
    height: 62px;
    border-width: 3px;
    border-radius: 12px
  }
  .dialog-details
  {
    display: block;
    padding: 2px 10px 20px;
    background: #f4f4f9
  }
  .dialog-details>div
  {
    padding: 22px 18px 19px;
    border: 1px solid #e6e4ec;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(39, 35, 43, .04)
  }
  .dialog-price
  {
    font-size: 30px;
    letter-spacing: -.04em
  }
  .dialog-details h2
  {
    margin-top: 7px;
    font-size: clamp(29px, 8.7vw, 38px);
    line-height: 1.07;
    letter-spacing: -.045em
  }
  .dialog-location
  {
    margin: 11px 0 0;
    font-size: 15px
  }
  .dialog-quick-meta
  {
    margin-top: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none
  }
  .dialog-quick-meta span
  {
    flex: 0 0 auto
  }
  .detail-list
  {
    margin-top: 20px;
    border: 0;
    gap: 8px;
    background: transparent
  }
  .detail-list div
  {
    min-height: 72px;
    padding: 13px 12px;
    border: 1px solid #eceaf0;
    border-radius: 13px;
    background: #f8f8fb
  }
  .detail-list strong
  {
    font-size: 14px
  }
  .inquiry-box
  {
    display: none
  }
  .dialog-property-browser
  {
    padding: 9px 10px 22px;
    display: block;
    background: #f4f4f9
  }
  .dialog-property-browser>header
  {
    padding: 13px 8px 12px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px
  }
  .dialog-property-browser>header>div>span
  {
    color: var(--coral-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase
  }
  .dialog-property-browser h3
  {
    margin: 3px 0 0;
    font-size: 23px;
    line-height: 1.12;
    letter-spacing: -.035em
  }
  .swipe-hint
  {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700
  }
  .dialog-property-track
  {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
  }
  .dialog-property-track::-webkit-scrollbar
  {
    display: none
  }
  .dialog-property-card
  {
    flex: 0 0 78vw;
    max-width: 300px;
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 112px 1fr;
    scroll-snap-align: center;
    border: 1px solid #e5e2e8;
    border-radius: 18px;
    background: #fff;
    color: var(--charcoal);
    text-align: left
  }
  .dialog-property-card img
  {
    width: 112px;
    height: 124px;
    display: block;
    object-fit: cover
  }
  .dialog-property-card>span
  {
    min-width: 0;
    padding: 14px 12px;
    display: flex;
    flex-direction: column
  }
  .dialog-property-card strong
  {
    font-size: 14px
  }
  .dialog-property-card b
  {
    margin-top: 4px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.2;
    text-overflow: ellipsis
  }
  .dialog-property-card small
  {
    margin-top: auto;
    overflow: hidden;
    color: var(--muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap
  }
  .dialog-action-bar
  {
    position: sticky;
    z-index: 6;
    bottom: 0;
    padding: 11px max(13px, env(safe-area-inset-right)) calc(11px + env(safe-area-inset-bottom)) max(13px, env(safe-area-inset-left));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid rgba(218, 216, 225, .9);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 -14px 35px rgba(41, 36, 44, .12);
    backdrop-filter: blur(18px)
  }
  .dialog-action-bar>div
  {
    min-width: 0;
    display: flex;
    flex-direction: column
  }
  .dialog-action-bar small
  {
    overflow: hidden;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap
  }
  .dialog-action-bar strong
  {
    font-size: 16px;
    white-space: nowrap
  }
  .dialog-action-bar>a
  {
    min-width: 166px;
    min-height: 54px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 16px;
    background: var(--whatsapp);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 7px 18px rgba(25, 143, 54, .2)
  }
  .dialog-action-bar>a.full-listing-action
  {
    background: var(--charcoal);
    box-shadow: none
  }
  .property-card
  {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(47, 35, 38, .08)
  }
  .property-card h3
  {
    font-size: 21px;
    line-height: 1.22
  }
  .card-location
  {
    font-size: 13px
  }
  .card-features
  {
    padding: 11px 0;
    overflow-x: auto;
    scrollbar-width: none
  }
  .card-features span
  {
    flex: 0 0 auto;
    min-width: 98px
  }
  .card-footer
  {
    align-items: center;
    padding-top: 13px;
    border-top: 1px solid #eee9e7
  }
  .card-footer>span
  {
    align-self: center
  }
  .card-actions
  {
    gap: 4px
  }
  .card-contact span
  {
    display: inline
  }
  .card-contact
  {
    width: auto;
    min-height: 42px;
    padding: 0 12px;
    justify-content: center
  }
  .view-property
  {
    min-height: 42px;
    padding-left: 9px
  }
}
@media(prefers-reduced-motion:reduce)
{
  *, *:before, *:after
  {
    scroll-behavior: auto!important
  }
  .hero-slide, .card-image img
  {
    transition: none!important
  }
}

/* Compact property cards: the same readable 2 × 2 fact layout at every width. */
.card-features { grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px 0; }
.card-features span:nth-child(2) { border-right:0; }
.card-features span:nth-child(n+3) { border-top:1px solid #e8e2df; padding-top:10px; }
.card-tags { flex-wrap:nowrap; overflow:hidden; }
.tag-pill { flex:0 0 auto; overflow:hidden; max-width:100%; text-overflow:ellipsis; white-space:nowrap; }
@media (min-width:761px) {
  .pdp-hero { height:min(37vh,360px); min-height:300px; }
  .pdp-hero>img { object-fit:cover; }
  .pdp-media-strip { position:absolute; z-index:5; right:16px; bottom:14px; left:150px; margin:0; padding:0; }
  .pdp-media-strip button { flex-basis:62px; width:62px; height:46px; }
  .pdp-media-dots { display:none; }
  .pdp-media-open span { bottom:16px; }
  .pdp-body { padding-top:16px; }
  .pdp-primary-info h2 { font-size:clamp(28px,3.2vw,42px); line-height:1.06; }
}
/* Targeted property controls and revised navigation details */ @media(min-width:1051px)
{
  .nav-left>a[href="/emi-calculator"]
  {
    min-height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: var(--coral);
    color: #fff
  }
  .nav-left>a[href="/emi-calculator"]:hover
  {
    border: 0;
    background: var(--coral-dark);
    color: #fff
  }
}
.mobile-navigation .mobile-social-links
{
  min-height: 0;
  margin: 2px 2px 8px;
  padding: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #f0dadd;
  border-radius: 12px;
  background: var(--coral-soft)
}
.mobile-navigation .mobile-social-links a
{
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 52, 77, .25);
  border-radius: 9px;
  background: #fff;
  color: var(--coral-dark)
}
/* PROPERTY COMPARISON AND DETAIL NAVIGATION */
.contact-now
{
  transition: background .2s ease, color .2s ease, box-shadow .2s ease
}
.site-header.is-scrolled .contact-now
{
  padding: 0 16px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 7px 16px rgba(189, 52, 77, .22)
}
.site-header.is-scrolled .contact-now:hover
{
  background: var(--coral-dark);
  color: #fff
}
.mobile-contact-now
{
  display: none;
  min-height: 40px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease,color .2s ease,box-shadow .2s ease
}
.site-header.is-scrolled .mobile-contact-now
{
  background: var(--coral);
  color: #fff;
  box-shadow: 0 7px 16px rgba(189,52,77,.22)
}
@media(max-width:1100px)
{
  .mobile-contact-now
  {
    display: inline-flex
  }
}
.more-navigation
{
  position: relative
}
.more-trigger
{
  width: 42px;
  height: 42px;
  padding: 10px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid #ded7d3;
  border-radius: 50%;
  background: #f5f1ef;
  color: var(--charcoal)
}
.more-trigger span
{
  width: 18px;
  height: 2px;
  display: block;
  margin: auto;
  border-radius: 99px;
  background: currentColor
}
.more-trigger:hover, .more-trigger[aria-expanded="true"]
{
  border-color: var(--coral);
  color: var(--coral-dark)
}
.more-menu
{
  position: absolute;
  z-index: 35;
  top: calc(100% + 10px);
  right: 0;
  width: 250px;
  padding: 9px;
  border: 1px solid #ebd9dc;
  border-radius: 18px;
  background: #fffafa;
  box-shadow: 0 22px 48px rgba(42, 31, 34, .18)
}
.more-menu a, .more-menu button, .more-menu span
{
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 12px;
  background: none;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  text-align: left
}
.more-menu a:hover, .more-menu button:hover
{
  background: var(--coral-soft);
  color: var(--coral-dark)
}
.more-menu a::after, .more-menu button::after
{
  content: "→";
  margin-left: auto;
  color: var(--coral-dark);
  font-size: 16px
}
.more-menu span
{
  min-height: 28px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700
}
.pdp-detail-navigation
{
  position: sticky;
  z-index: 12;
  top: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border: 0;
  border-radius: 0;
  background: rgba(243,243,248,.94);
  box-shadow: 0 9px 18px rgba(41,36,44,.07);
  backdrop-filter: blur(14px);
  scrollbar-width: none
}

/* Circular popup gallery and immersive image viewer */
.pdp-media-open
{
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in
}
.pdp-media-open span
{
  position: absolute;
  left: 18px;
  bottom: 70px;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(28,24,25,.52);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(9px)
}
.pdp-media-counter
{
  position: absolute;
  z-index: 4;
  left: 18px;
  bottom: 18px;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(28,24,25,.58);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(9px)
}
.pdp-lightbox[hidden]
{
  display: none
}
.pdp-lightbox
{
  position: absolute;
  z-index: 40;
  inset: 0;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(17,14,15,.78)
}
.pdp-lightbox-backdrop
{
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: default
}
.pdp-lightbox-panel
{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: #171415;
  box-shadow: 0 32px 90px rgba(0,0,0,.48)
}
.pdp-lightbox-panel header
{
  min-height: 66px;
  padding: 10px 13px 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff
}
.pdp-lightbox-panel header>span
{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}
.pdp-lightbox-panel header>strong
{
  margin-left: auto;
  color: rgba(255,255,255,.72);
  font-size: 11px
}
.pdp-lightbox-panel header button,
.pdp-lightbox-arrow
{
  width: 45px;
  height: 45px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  backdrop-filter: blur(10px)
}
.pdp-lightbox-panel svg,
.pdp-lightbox-arrow svg
{
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}
.pdp-lightbox-panel figure
{
  min-height: 0;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  touch-action: none;
  cursor: grab
}
.pdp-lightbox-panel figure:active
{
  cursor: grabbing
}
.pdp-lightbox-panel figure img
{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none
}
.pdp-lightbox-arrow
{
  position: absolute;
  z-index: 3;
  top: 52%;
  background: rgba(255,255,255,.88);
  color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transform: translateY(-50%)
}
.pdp-lightbox-arrow.previous
{
  left: 32px
}
.pdp-lightbox-arrow.next
{
  right: 32px
}
.pdp-page.is-viewing-gallery .pdp-purchase-bar
{
  visibility: hidden
}
@media(max-width:760px)
{
  .pdp-detail-navigation
  {
    margin: 0 -2px;
    padding: 8px 2px
  }
  .pdp-media-open span,
  .pdp-media-arrow,
  .pdp-lightbox-arrow
  {
    display: none
  }
  .pdp-media-counter
  {
    left: auto;
    right: 13px;
    bottom: 13px
  }
  .pdp-lightbox
  {
    position: fixed;
    padding: 0;
    background: #141112
  }
  .pdp-lightbox-panel
  {
    border: 0;
    border-radius: 0
  }
  .pdp-lightbox-panel header
  {
    padding-top: max(10px,env(safe-area-inset-top))
  }
}
.pdp-detail-navigation::-webkit-scrollbar
{
  display: none
}
.pdp-detail-navigation button
{
  min-height: 36px;
  padding: 0 14px;
  flex: 0 0 auto;
  border: 1px solid #d9d2ce;
  border-radius: 999px;
  background: #eee9e6;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800
}
.pdp-detail-navigation button:hover, .pdp-detail-navigation button.is-active
{
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 3px 10px rgba(41, 36, 37, .1)
}
.pdp-detail-stack
{
  display: grid;
  gap: 12px
}
.pdp-compare
{
  border-color: #e7d9dc;
  background: linear-gradient(140deg, #fff 0%, #fff7f8 100%)
}
.pdp-compare>p
{
  max-width: 590px;
  margin: 7px 0 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7
}
.compare-heading
{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px
}
.compare-heading h3 em
{
  color: var(--coral-dark);
  font-style: normal
}
.compare-heading button
{
  min-height: 33px;
  padding: 0 10px;
  border: 1px solid #e5ceD2;
  border-radius: 9px;
  background: #fff;
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 800
}
.compare-cards
{
  margin-top: 11px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px
}
.compare-property-card, .compare-add-card
{
  min-height: 62px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  border: 1px solid #e6dfe1;
  border-radius: 12px;
  background: #fff;
  text-align: left
}
.compare-property-card img
{
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover
}
.compare-property-card div, .compare-add-card
{
  min-width: 0
}
.compare-property-card span, .compare-property-card small, .compare-add-card small
{
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap
}
.compare-property-card span
{
  color: var(--coral-dark);
  text-transform: uppercase;
  letter-spacing: .08em
}
.compare-property-card strong
{
  display: block;
  overflow: hidden;
  margin: 1px 0;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap
}
.compare-add-card
{
  justify-content: center;
  flex-direction: column;
  border-style: dashed;
  border-color: #d8bfc5;
  color: var(--coral-dark)
}
.compare-add-card:hover
{
  border-color: var(--coral);
  background: #fff
}
.compare-add-card b
{
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 15px
}
.compare-add-card span
{
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 800
}
.compare-picker
{
  margin-top: 12px;
  padding: 10px;
  border: 1px solid #e8dfe1;
  border-radius: 12px;
  background: #fff
}
.compare-picker input
{
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ded7d3;
  border-radius: 9px;
  outline: 0;
  font-size: 11px
}
.compare-picker input:focus
{
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-soft)
}
.compare-picker-results
{
  max-height: 220px;
  margin-top: 8px;
  overflow: auto
}
.compare-picker-option
{
  width: 100%;
  min-height: 53px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  text-align: left
}
.compare-picker-option:hover
{
  background: var(--coral-soft)
}
.compare-picker-option img
{
  width: 42px;
  height: 40px;
  border-radius: 7px;
  object-fit: cover
}
.compare-picker-option strong, .compare-picker-option small
{
  display: block;
  font-size: 10px
}
.compare-picker-option small
{
  color: var(--muted);
  font-size: 9px
}
.compare-facts
{
  margin: 11px 0 0;
  border: 1px solid #eadfe1;
  border-radius: 11px;
  overflow: hidden
}
.compare-facts div
{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #f0e7e8
}
.compare-facts div:last-child
{
  border-bottom: 0
}
.compare-facts dt, .compare-facts dd
{
  min-width: 0;
  margin: 0;
  padding: 9px;
  font-size: 10px;
  overflow-wrap: anywhere
}
.compare-facts dt
{
  color: var(--muted);
  font-weight: 800
}
.compare-facts dd
{
  border-left: 1px solid #f0e7e8;
  color: var(--charcoal);
  font-weight: 800
}
@media(max-width:760px)
{
  .compare-cards { gap: 7px }
  .compare-property-card, .compare-add-card { min-height: 55px; padding: 5px }
  .compare-property-card img { width: 39px; height: 43px }
  .compare-property-card small { display: none }
  .compare-property-card strong { font-size: 9px }
  .compare-facts dt, .compare-facts dd { padding: 8px 6px; font-size: 9px }
}
.mobile-navigation .mobile-social-links a:hover
{
  border-color: var(--coral);
  background: var(--coral);
  color: #fff
}
.mobile-navigation .mobile-social-links svg
{
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor
}
.mobile-navigation .mobile-social-links a::after
{
  display: none
}
.card-price
{
  margin: 0 0 15px
}
.card-body>.card-location
{
  margin-bottom: 7px
}
.card-body h3
{
  margin-top: 0
}
.card-features
{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0
}
.card-features span
{
  padding: 0 9px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 1px 6px;
  align-items: center
}
.card-features span>svg
{
  grid-row: 1/3;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--coral-dark);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}
.card-features b
{
  font-size: 12px
}
.card-features small
{
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap
}
.pdp-facts-list
{
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #e7e3e5;
  border-left: 1px solid #e7e3e5
}
.pdp-facts-list div
{
  padding: 13px;
  border-right: 1px solid #e7e3e5;
  border-bottom: 1px solid #e7e3e5
}
.pdp-facts-list dt
{
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase
}
.pdp-facts-list dd
{
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800
}
.pdp-videos>div
{
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}
.pdp-videos a
{
  min-height: 42px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ded7d3;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800
}
.pdp-videos a:hover
{
  border-color: var(--coral);
  color: var(--coral-dark)
}
.pdp-videos svg
{
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5
}
@media(max-width:760px)
{
  .card-features
  {
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px
  }
  .card-features span
  {
    min-width: 0!important;
    padding: 0 8px!important
  }
  .card-features span:nth-child(2)
  {
    border-right: 0
  }
  .pdp-facts-list
  {
    grid-template-columns: 1fr 1fr
  }
}
/* Property detail components */ .property-dialog.is-pager
{
  width: min(1180px, calc(100% - 28px));
  max-width: none;
  height: 92vh;
  max-height: 920px;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #312f30;
  box-shadow: 0 35px 110px rgba(23, 18, 20, .5)
}
.property-dialog.is-pager::backdrop
{
  background: rgba(31, 28, 29, .82);
  backdrop-filter: blur(7px)
}
.property-dialog.is-pager #dialog-content
{
  height: 100%;
  overflow: hidden;
  transition: none;
  transform: none
}
.pdp-viewport
{
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
  opacity: 0;
  transition: opacity .12s ease;
  cursor: grab
}
.pdp-viewport.is-ready
{
  opacity: 1
}
.pdp-viewport:active
{
  cursor: grabbing
}
.pdp-track
{
  height: 100%;
  padding: 0 7vw;
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden
}
.pdp-track.is-dragging
{
  cursor: grabbing
}
.pdp-page
{
  position: relative;
  flex: 0 0 min(860px, calc(100vw - 110px));
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #f3f3f8;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .1);
  contain: layout paint
}
.pdp-scroll
{
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
  touch-action: pan-y;
  background: #f3f3f8
}
.pdp-hero
{
  position: relative;
  height: min(49vh, 490px);
  min-height: 380px;
  overflow: hidden;
  background: #242021
}
.pdp-hero>img
{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none
}
.pdp-top-controls
{
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  pointer-events: none
}
.pdp-top-controls>div
{
  display: flex;
  gap: 9px
}
.pdp-top-controls button
{
  width: 47px;
  height: 47px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  color: #282425;
  box-shadow: 0 5px 18px rgba(22, 17, 18, .13);
  backdrop-filter: blur(14px);
  pointer-events: auto
}
.pdp-top-controls button:hover
{
  background: #fff
}
.pdp-top-controls button.is-saved
{
  background: var(--coral);
  color: #fff
}
.pdp-top-controls svg, .pdp-media-arrow svg, .pdp-advisor-card svg, .pdp-info-rows>a>svg, .pdp-full-link svg
{
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round
}
.pdp-top-controls button.is-saved svg
{
  fill: currentColor
}
.pdp-media-arrow
{
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .93);
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(21, 17, 18, .18);
  transform: translateY(-50%)
}
.pdp-media-arrow.previous
{
  left: 17px
}
.pdp-media-arrow.next
{
  right: 17px
}
.pdp-media-dots
{
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 17px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 99px;
  background: rgba(28, 24, 25, .46);
  transform: translateX(-50%);
  backdrop-filter: blur(8px)
}
.pdp-media-dots button
{
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55)
}
.pdp-media-dots button.active
{
  width: 18px;
  border-radius: 99px;
  background: #fff
}
.pdp-media-strip
{
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  max-width: min(52%, 390px);
  padding: 5px;
  display: flex;
  gap: 5px;
  overflow-x: auto;
  border-radius: 11px;
  background: rgba(30, 25, 26, .52);
  scrollbar-width: none;
  backdrop-filter: blur(8px)
}
.pdp-media-strip::-webkit-scrollbar
{
  display: none
}
.pdp-media-strip button
{
  width: 42px;
  height: 34px;
  padding: 0;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #3d3638;
  opacity: .72
}
.pdp-media-strip button.active, .pdp-media-strip button:hover
{
  border-color: #fff;
  opacity: 1
}
.pdp-media-strip img
{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}
.pdp-body
{
  padding: 12px;
  display: grid;
  gap: 12px
}
.pdp-quick-attributes
{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px
}
.pdp-quick-attributes>div, .pdp-quick-attributes>button
{
  min-height: 72px;
  padding: 12px 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e3e1e9;
  border-radius: 13px;
  background: #fff;
  color: var(--charcoal);
  text-align: left
}
.pdp-quick-attributes span
{
  color: #706979;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em
}
.pdp-quick-attributes strong
{
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap
}
.pdp-quick-attributes>button
{
  border-color: #86c98e;
  background: #effbf1;
  color: #19772d
}
.pdp-primary-info, .pdp-section, .pdp-advisor-card, .pdp-info-rows>a, .pdp-similar
{
  border: 1px solid #e5e3eb;
  background: #fff
}
.pdp-primary-info, .pdp-section, .pdp-similar
{
  padding: 24px;
  border-radius: 18px
}
.pdp-status-line
{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #686171;
  font-size: 11px;
  font-weight: 700
}
.pdp-status-line>span
{
  display: inline-flex;
  align-items: center;
  gap: 5px
}
.pdp-status-line>span:first-child
{
  color: #197633
}
.pdp-status-line .inline-icon
{
  width: 16px;
  height: 16px
}
.pdp-primary-info h2
{
  margin: 11px 0 7px;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.06;
  letter-spacing: -.05em
}
.pdp-property-id
{
  margin: 9px 0 0;
  color: var(--coral-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .015em
}
.pdp-location
{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px
}
.pdp-location .inline-icon
{
  width: 18px;
  color: var(--coral-dark)
}
.pdp-price
{
  margin-top: 20px;
  padding-top: 17px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #ece9e8
}
.pdp-price strong
{
  font-size: 25px;
  letter-spacing: -.03em
}
.pdp-price span
{
  color: var(--muted);
  font-size: 11px
}
.pdp-eyebrow
{
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase
}
.pdp-section h3, .pdp-similar h3
{
  margin: 5px 0 18px;
  font-size: 25px;
  line-height: 1.14;
  letter-spacing: -.035em
}
.pdp-layout-options
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}
.pdp-layout-options>div
{
  min-height: 73px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e4e1e0;
  border-radius: 12px;
  background: #f8f7f7
}
.pdp-layout-options>div.selected
{
  border: 2px solid var(--coral);
  background: #fff6f7
}
.pdp-layout-options span
{
  color: var(--muted);
  font-size: 10px
}
.pdp-layout-options strong
{
  margin-top: 4px;
  font-size: 13px
}
.pdp-description
{
  margin: 20px 0 0;
  color: #585052;
  font-size: 13px;
  line-height: 1.7
}
.pdp-full-link
{
  min-height: 48px;
  margin-top: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee9e8;
  font-size: 12px;
  font-weight: 800
}
.pdp-full-link svg
{
  width: 18px
}
.pdp-advisor-card
{
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
  border-radius: 17px
}
.pdp-advisor-card>img
{
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 13px
}
.pdp-advisor-card>div
{
  min-width: 0;
  display: flex;
  flex-direction: column
}
.pdp-advisor-card strong
{
  font-size: 14px
}
.pdp-advisor-card span
{
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap
}
.pdp-advisor-card>a
{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f3f1f4
}
.pdp-info-rows
{
  display: grid;
  gap: 9px
}
.pdp-info-rows>a
{
  min-height: 68px;
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 11px;
  border-radius: 15px
}
.pdp-info-icon
{
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #f4f2f4;
  color: var(--charcoal)
}
.pdp-info-icon .inline-icon
{
  width: 20px;
  height: 20px
}
.pdp-info-rows>a>span:nth-child(2)
{
  min-width: 0;
  display: flex;
  flex-direction: column
}
.pdp-info-rows strong
{
  font-size: 13px
}
.pdp-info-rows small
{
  color: var(--muted);
  font-size: 10px
}
.pdp-info-rows>a>svg
{
  width: 18px
}
.pdp-similar
{
  overflow: hidden
}
.pdp-similar header
{
  padding: 0 2px
}
.pdp-similar-track
{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x
}
.pdp-similar-track::-webkit-scrollbar
{
  display: none
}
.pdp-similar-track button
{
  flex: 0 0 220px;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #e5e1e0;
  border-radius: 14px;
  background: #fff;
  color: var(--charcoal);
  text-align: left
}
.pdp-similar-track img
{
  width: 100%;
  height: 135px;
  display: block;
  object-fit: cover
}
.pdp-similar-track button>span
{
  padding: 12px;
  display: flex;
  flex-direction: column
}
.pdp-similar-track strong
{
  font-size: 13px
}
.pdp-similar-track b
{
  margin-top: 3px;
  font-size: 13px
}
.pdp-similar-track small
{
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px
}
.pdp-purchase-bar
{
  position: sticky;
  z-index: 6;
  bottom: 0;
  padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(218, 216, 225, .9);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 -14px 35px rgba(41, 36, 44, .12);
  backdrop-filter: blur(18px)
}
.pdp-purchase-bar>div
{
  min-width: 0;
  display: flex;
  flex-direction: column
}
.pdp-purchase-bar small
{
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap
}
.pdp-purchase-bar strong
{
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap
}
.pdp-purchase-bar>div>span
{
  color: var(--muted);
  font-size: 9px
}
.pdp-purchase-bar>a
{
  min-width: 180px;
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 15px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(25, 143, 54, .2)
}
.pdp-purchase-bar>a.full-listing-action
{
  background: var(--charcoal);
  box-shadow: none
}
.pdp-purchase-bar svg
{
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}
@media(max-width:760px)
{
  .property-dialog.is-pager
  {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
    background: #302e2f;
    box-shadow: none
  }
  .pdp-track
  {
    padding: 0 12px;
    gap: 10px
  }
  .pdp-page
  {
    flex-basis: calc(100vw - 64px);
    border-radius: 22px
  }
  .pdp-scroll
  {
    scrollbar-width: none
  }
  .pdp-scroll::-webkit-scrollbar
  {
    display: none
  }
  .pdp-hero
  {
    height: 46svh;
    min-height: 350px;
    border-radius: 22px 22px 0 0
  }
  .pdp-top-controls
  {
    top: max(12px, env(safe-area-inset-top));
    left: 12px;
    right: 12px
  }
  .pdp-top-controls button
  {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .9)
  }
  .pdp-top-controls>div
  {
    gap: 7px
  }
  .pdp-media-arrow
  {
    width: 44px;
    height: 44px
  }
  .pdp-media-arrow.previous
  {
    left: 12px
  }
  .pdp-media-arrow.next
  {
    right: 12px
  }
  .pdp-media-dots
  {
    bottom: 13px
  }
  .pdp-body
  {
    padding: 9px;
    gap: 9px
  }
  .pdp-quick-attributes
  {
    grid-template-columns: 1fr 1fr 88px;
    gap: 7px
  }
  .pdp-quick-attributes>div:nth-child(3)
  {
    display: none
  }
  .pdp-quick-attributes>div, .pdp-quick-attributes>button
  {
    min-height: 69px;
    padding: 11px 10px
  }
  .pdp-primary-info, .pdp-section, .pdp-similar
  {
    padding: 19px 17px;
    border-radius: 17px
  }
  .pdp-primary-info h2
  {
    font-size: clamp(28px, 8.5vw, 37px)
  }
  .pdp-price strong
  {
    font-size: 23px
  }
  .pdp-layout-options
  {
    grid-template-columns: 1fr 1fr
  }
  .pdp-layout-options>div:last-child
  {
    grid-column: 1/3
  }
  .pdp-advisor-card
  {
    padding: 14px
  }
  .pdp-info-rows>a
  {
    min-height: 65px;
    padding: 12px
  }
  .pdp-similar-track button
  {
    flex-basis: 68vw;
    max-width: 250px
  }
  .pdp-purchase-bar
  {
    padding-left: 12px;
    padding-right: 12px
  }
  .pdp-purchase-bar>a
  {
    min-width: 155px;
    padding: 0 15px
  }
  .property-dialog.is-pager .dialog-close
  {
    display: none
  }
}
@media(prefers-reduced-motion:reduce)
{
  .pdp-track
  {
    transition: none!important
  }
  .pdp-viewport
  {
    transition: none!important
  }
}
/* Single-property detail: one clean page with no neighbouring sheets or page-swipe motion. */ .property-dialog.is-detail
{
  width: min(860px, calc(100% - 28px));
  max-width: none;
  height: 92vh;
  max-height: 920px;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #f3f3f8;
  box-shadow: 0 35px 110px rgba(23, 18, 20, .48)
}
.property-dialog.is-detail::backdrop
{
  background: rgba(31, 28, 29, .82);
  backdrop-filter: blur(7px)
}
.property-dialog.is-detail #dialog-content, .pdp-single
{
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: none;
  transform: none
}
.pdp-single .pdp-page
{
  width: 100%;
  height: 100%;
  max-width: none;
  overflow: hidden;
  display: block;
  flex: none;
  border-radius: 22px;
  box-shadow: none
}
.pdp-similar-track>a
{
  flex: 0 0 220px;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #e5e1e0;
  border-radius: 14px;
  background: #fff;
  color: var(--charcoal);
  text-align: left
}
.pdp-similar-track>a>span
{
  padding: 12px;
  display: flex;
  flex-direction: column
}
.pdp-similar-track>a:hover
{
  border-color: #bcada8
}
@media(max-width:760px)
{
  .property-dialog.is-detail
  {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
    background: #f3f3f8;
    box-shadow: none
  }
  .pdp-single .pdp-page
  {
    border-radius: 0
  }
  .pdp-single .pdp-hero
  {
    border-radius: 0
  }
  .pdp-top-controls
  {
    top: max(12px, env(safe-area-inset-top));
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right))
  }
  .pdp-similar-track>a
  {
    flex-basis: 68vw;
    max-width: 250px
  }
  .property-dialog.is-detail .dialog-close
  {
    display: none
  }
}
.pdp-drag-handle
{
  display: none
}
@media(max-width:760px)
{
  .property-dialog.is-detail
  {
    inset: 78px 8px 0;
    width: auto;
    height: auto;
    max-height: none;
    margin: 0;
    border-radius: 24px 24px 0 0;
    background: #f3f3f8;
    box-shadow: 0 -8px 42px rgba(28, 22, 24, .24);
    will-change: transform, opacity
  }
  .property-dialog.is-detail::backdrop
  {
    background: rgba(35, 28, 30, .14);
    backdrop-filter: none
  }
  .pdp-single .pdp-page, .pdp-single .pdp-hero
  {
    border-radius: 24px 24px 0 0
  }
  .pdp-scroll
  {
    overscroll-behavior-y: none
  }
  .pdp-top-controls
  {
    top: 19px;
    left: max(13px, env(safe-area-inset-left));
    right: max(13px, env(safe-area-inset-right))
  }
  .pdp-drag-handle
  {
    position: absolute;
    z-index: 6;
    top: 8px;
    left: 50%;
    width: 40px;
    height: 5px;
    display: block;
    border-radius: 99px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 1px 6px rgba(20, 16, 17, .22);
    transform: translateX(-50%);
    pointer-events: none
  }
  .property-dialog.is-detail.is-dragging-down
  {
    user-select: none;
    box-shadow: 0 -4px 32px rgba(28, 22, 24, .18)
  }
  .property-dialog.is-detail.is-dismissing
  {
    pointer-events: none
  }
}
@media(max-width:760px)
{
  .pdp-single .pdp-media-arrow,
  .pdp-single .pdp-lightbox-arrow
  {
    display: none
  }
}

/* Progressive property results */
.property-load-more
{
  padding: 30px 0 0;
  display: flex;
  justify-content: center
}
.property-load-more button
{
  min-width: 220px;
  min-height: 56px;
  padding: 8px 11px 8px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 17px;
  border: 1px solid #ddd4d0;
  border-radius: 16px;
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 9px 24px rgba(42,31,34,.08);
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease
}
.property-load-more button:hover
{
  border-color: var(--coral);
  box-shadow: 0 13px 30px rgba(42,31,34,.12);
  transform: translateY(-2px)
}
.property-load-more button[hidden]
{
  display: none
}
.property-load-more span
{
  font-size: 13px;
  font-weight: 800
}
.property-load-more small
{
  color: var(--muted);
  font-size: 9px;
  font-weight: 700
}
.property-load-more b
{
  grid-column: 2;
  grid-row: 1/3;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral-dark);
  font-size: 17px
}
.compare-property-link
{
  width: fit-content;
  margin-top: 5px;
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 800
}
.compare-property-link:hover
{
  text-decoration: underline
}
@media(max-width:760px)
{
  .property-load-more
  {
    padding-top: 22px
  }
  .property-load-more button
  {
    width: min(100%,260px)
  }
}
@media(prefers-reduced-motion:reduce)
{
  .property-dialog.is-detail
  {
    transition: none!important
  }
}
/* Refined navigation and official WhatsApp brand mark */ .site-header
{
  border-bottom-color: rgba(222, 215, 211, .78);
  box-shadow: 0 8px 28px rgba(47, 35, 38, .055)
}
.nav-left
{
  justify-self: start;
  padding: 4px;
  border: 1px solid #ece6e3;
  border-radius: 999px;
  background: #faf8f7
}
.nav-left a
{
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px
}
.nav-left a:hover
{
  border: 0;
  background: #fff;
  color: var(--coral-dark);
  box-shadow: 0 3px 12px rgba(49, 35, 38, .07)
}
.nav-right
{
  gap: 8px
}
.nav-right>a, .nav-right .saved-trigger
{
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px
}
.nav-right>a:hover, .nav-right .saved-trigger:hover
{
  border: 0;
  background: var(--coral-soft);
  color: var(--coral-dark)
}
.whatsapp-mark
{
  fill: currentColor!important;
  stroke: none!important;
  stroke-width: 0!important
}
@media(max-width:1100px)
{
  .menu-button
  {
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    border-radius: 50%;
    background: var(--charcoal);
    box-shadow: 0 7px 18px rgba(41, 36, 37, .16)
  }
  .menu-button:hover, .menu-button.is-open
  {
    background: var(--coral-dark)
  }
  .menu-button span
  {
    width: 19px;
    margin: 5px auto;
    background: #fff;
    border-radius: 99px
  }
  .mobile-navigation
  {
    top: calc(100% + 9px);
    right: 12px;
    width: min(370px, calc(100vw - 24px));
    padding: 8px;
    border: 1px solid #e8e1de;
    border-radius: 18px;
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 24px 60px rgba(42, 31, 34, .2)
  }
  .mobile-navigation a
  {
    min-height: 64px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 12px
  }
  .mobile-navigation a+ a
  {
    margin-top: 2px
  }
  .mobile-navigation a:hover
  {
    background: #fff3f4
  }
  .mobile-navigation a::after
  {
    content: "→";
    color: var(--coral-dark);
    font-size: 17px;
    text-align: right
  }
  .mobile-navigation span
  {
    color: var(--coral-dark);
    font-size: 9px
  }
  .mobile-navigation strong
  {
    font-size: 15px;
    letter-spacing: -.015em
  }
  .mobile-navigation .mobile-compare-link
  {
    width: 100%;
    min-height: 64px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: var(--charcoal);
    text-align: left
  }
  .mobile-navigation .mobile-compare-link::after
  {
    content: "→";
    color: var(--coral-dark);
    font-size: 17px;
    text-align: right
  }
  .mobile-navigation .mobile-compare-link:hover
  {
    background: #fff3f4
  }
  .mobile-navigation .mobile-compare-link span
  {
    color: var(--coral-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase
  }
  .mobile-navigation .mobile-compare-link strong
  {
    font-size: 15px;
    letter-spacing: -.015em
  }
}
@media(max-width:760px)
{
  .site-header
  {
    padding: 0 14px
  }
  .brand
  {
    gap: 9px
  }
  .menu-button
  {
    width: 44px;
    height: 44px
  }
  .mobile-navigation
  {
    left: 12px;
    right: 12px;
    width: auto
  }
}
/* In-popup location preview */ .pdp-map-preview
{
  overflow: hidden;
  border: 1px solid #e5e3eb;
  border-radius: 18px;
  background: #fff
}
.pdp-map-preview>header
{
  padding: 19px 19px 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px
}
.pdp-map-preview h3
{
  margin: 5px 0 0;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.035em
}
.pdp-map-preview>header>a
{
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap
}
.pdp-map-preview>header>a:hover
{
  color: var(--coral-dark)
}
.pdp-map-preview>header>a svg
{
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round
}
.pdp-map-preview iframe
{
  width: 100%;
  height: 245px;
  display: block;
  border: 0;
  background: #e8e4e2
}
.pdp-map-preview>p
{
  min-height: 46px;
  margin: 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600
}
.pdp-map-preview>p .inline-icon
{
  width: 17px;
  color: var(--coral-dark)
}
@media(max-width:760px)
{
  .pdp-map-preview
  {
    border-radius: 17px
  }
  .pdp-map-preview>header
  {
    padding: 17px 16px 13px;
    align-items: center
  }
  .pdp-map-preview h3
  {
    font-size: 20px
  }
  .pdp-map-preview iframe
  {
    height: 215px
  }
  .pdp-map-preview>p
  {
    padding: 0 16px
  }
}
.mobile-navigation .mobile-social-links a
{
  grid-template-columns: 1fr
}
.card-body h3
{
  font-size: 21px
}
.card-price strong
{
  font-size: 19px
}
.card-price span
{
  color: #2f7d4a;
  font-size: 13px;
  font-weight: 700
}
@media(max-width:760px)
{
  .card-price strong
  {
    font-size: 18px
  }
}
.card-features small
{
  white-space: normal;
  line-height: 1.15
}
