:root {
  --dn-nav-ink: #122033;
  --dn-nav-muted: #647184;
  --dn-nav-gold: #b9913d;
  --dn-nav-gold-soft: #f7f0df;
  --dn-nav-line: #e6e0d5;
  --dn-nav-panel: rgba(255, 255, 255, 0.96);
  --dn-nav-shadow: 0 14px 38px rgba(20, 30, 43, 0.09);
}

[data-headercontainer="zptheme-data-headercontainer"] {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: rgba(250, 249, 246, 0.86);
  border-bottom: 1px solid rgba(223, 217, 206, 0.72);
  box-shadow: 0 5px 18px rgba(17, 27, 40, 0.035);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.theme-header {
  padding: 8px 16px 10px !important;
  background: transparent !important;
}

.theme-header > .zpcontainer:not(.theme-responsive-menu-area) {
  width: min(1440px, calc(100% - 8px)) !important;
  min-height: 76px;
  margin-inline: auto !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(218, 210, 195, 0.92);
  border-radius: 18px;
  background: var(--dn-nav-panel);
  box-shadow: var(--dn-nav-shadow);
}

.theme-logo-parent a {
  min-width: 58px;
  min-height: 58px;
  padding: 5px;
  border: 1px solid #eee7d8;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #faf7ef);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(24, 32, 44, 0.07);
}

.theme-logo-parent img {
  max-height: 54px !important;
  width: auto !important;
  object-fit: contain;
}

.theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 5px !important;
  border: 1px solid var(--dn-nav-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #faf9f6, #f5f2eb);
  box-shadow: inset 0 1px 0 #fff;
}

.theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li {
  margin: 0 !important;
}

.theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li > a {
  min-height: 42px;
  padding: 0 14px !important;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--dn-nav-ink) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 13px !important;
  font-weight: 750 !important;
  line-height: 1.2;
  text-decoration: none !important;
  transition: color .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li > a:hover,
.theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li > a:focus-visible {
  border-color: #e1d6c2;
  background: #fff;
  color: #76591f !important;
  box-shadow: 0 7px 18px rgba(32, 40, 51, 0.08);
  transform: translateY(-1px);
}

.theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li.theme-menu-selected > a,
.theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li > a.theme-menu-selected {
  border-color: #142238 !important;
  background: linear-gradient(135deg, #17263b, #0e1929) !important;
  color: #fff !important;
  box-shadow: 0 8px 19px rgba(15, 27, 44, 0.22) !important;
}

.theme-menu .theme-sub-menu {
  min-width: 230px !important;
  padding: 8px !important;
  border: 1px solid var(--dn-nav-line) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 18px 46px rgba(18, 27, 39, 0.16) !important;
  overflow: hidden;
}

.theme-menu .theme-sub-menu li {
  margin: 2px 0 !important;
}

.theme-menu .theme-sub-menu li > a {
  min-height: 42px;
  padding: 9px 11px !important;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--dn-nav-ink) !important;
  display: flex !important;
  align-items: center;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.theme-menu .theme-sub-menu li > a:hover,
.theme-menu .theme-sub-menu li > a:focus-visible {
  border-color: #eadfc9;
  background: var(--dn-nav-gold-soft) !important;
  color: #73551c !important;
}

.theme-lang-container-non-res .theme-lang-label,
.theme-lang-container-res .theme-lang-label {
  min-height: 38px;
  padding: 0 12px !important;
  border: 1px solid #e0d6c2;
  border-radius: 10px;
  background: #fff;
  color: #6c5427;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(28, 35, 46, 0.05);
}

@media (max-width: 991px) {
  [data-headercontainer="zptheme-data-headercontainer"] {
    background: rgba(255, 255, 255, 0.94);
  }

  .theme-header {
    width: calc(100% - 18px) !important;
    min-height: 68px;
    margin: 7px 9px !important;
    padding: 7px 10px !important;
    border: 1px solid rgba(218, 210, 195, 0.92);
    border-radius: 16px;
    background: var(--dn-nav-panel) !important;
    box-shadow: 0 9px 26px rgba(19, 29, 42, 0.09);
    align-items: center !important;
  }

  .theme-header > .zpcontainer:not(.theme-responsive-menu-area) {
    width: auto !important;
    min-width: 0 !important;
    min-height: 52px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1 1 auto;
  }

  .theme-logo-parent a {
    min-width: 52px;
    min-height: 52px;
    border-radius: 12px;
  }

  .theme-logo-parent img {
    max-height: 47px !important;
  }

  .theme-responsive-menu-container {
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    border: 1px solid #ded4c1;
    border-radius: 13px;
    background: linear-gradient(145deg, #fff, #f8f4eb);
    display: grid !important;
    place-items: center;
    box-shadow: 0 6px 16px rgba(21, 31, 44, 0.08);
  }

  .theme-responsive-menu-area {
    position: static !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 0 0 46px !important;
  }

  .theme-responsive-menu-container:hover,
  .theme-responsive-menu-container:focus-within {
    border-color: #cdb782;
    background: #fffaf0;
  }

  .theme-burger-icon,
  .theme-close-icon {
    color: #72581f !important;
  }

  .theme-responsive-menu.theme-menu-area {
    position: fixed !important;
    top: 84px !important;
    left: 9px !important;
    right: 9px !important;
    width: auto !important;
    max-height: calc(100vh - 98px) !important;
    padding: 10px !important;
    border: 1px solid #ded7ca !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.985) !important;
    box-shadow: 0 24px 60px rgba(14, 24, 38, 0.2) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }

  .theme-responsive-menu.theme-menu-area > .theme-menu {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] {
    display: grid !important;
    gap: 6px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li > a {
    width: 100% !important;
    min-height: 46px !important;
    padding: 0 13px !important;
    border: 1px solid #ebe6dd !important;
    border-radius: 12px !important;
    background: #fbfaf7 !important;
    color: var(--dn-nav-ink) !important;
    justify-content: flex-start !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    box-shadow: 0 2px 8px rgba(20, 29, 41, 0.035) !important;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li > a:hover,
  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li > a:focus-visible {
    border-color: #d6c59f !important;
    background: #fffaf0 !important;
    color: #674d18 !important;
    transform: none !important;
  }

  html[dir="rtl"] .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li > a {
    justify-content: flex-start !important;
    text-align: right;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li.theme-menu-selected > a {
    border-color: #c2a75f !important;
    background: linear-gradient(135deg, #fff7e7, #f6ecd5) !important;
    color: #674d18 !important;
    box-shadow: inset 3px 0 0 #b9913d, 0 6px 14px rgba(37, 44, 54, 0.06) !important;
  }

  html[dir="rtl"] .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li.theme-menu-selected > a {
    box-shadow: inset -3px 0 0 #b9913d, 0 6px 14px rgba(37, 44, 54, 0.06) !important;
  }

  .theme-responsive-menu .theme-sub-menu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    margin-top: 5px !important;
    padding: 6px !important;
    border-radius: 12px !important;
    background: #f7f4ee !important;
    box-shadow: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-menu a { transition: none !important; }
}

/* Property Finder-inspired shell: flat header, quiet navigation and compact search controls. */
@media (min-width: 992px) {
  [data-headercontainer="zptheme-data-headercontainer"] {
    background: #fff !important;
    border-bottom: 1px solid #e6e7ea !important;
    box-shadow: 0 1px 8px rgba(16, 24, 40, 0.045) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .theme-header-topbar {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    inset-inline-end: 18px !important;
    z-index: 40 !important;
    width: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    pointer-events: auto !important;
  }

  .theme-header-topbar > .zpcontainer {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: auto !important;
  }

  .theme-header {
    min-height: 72px !important;
    padding: 0 72px 0 28px !important;
    background: #fff !important;
  }

  html[dir="rtl"] .theme-header {
    padding: 0 28px 0 72px !important;
  }

  .theme-header > .zpcontainer:not(.theme-responsive-menu-area) {
    width: min(1500px, 100%) !important;
    min-height: 72px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .theme-logo-parent a {
    min-width: 58px !important;
    min-height: 58px !important;
    padding: 3px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .theme-logo-parent img { max-height: 54px !important; }

  .theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] {
    gap: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li > a {
    min-height: 72px !important;
    padding: 0 14px !important;
    border: 0 !important;
    border-bottom: 3px solid transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #252832 !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li > a:hover,
  .theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li > a:focus-visible {
    border-bottom-color: #d6bb78 !important;
    background: #faf9f7 !important;
    color: #6b501a !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li.theme-menu-selected > a,
  .theme-navigation-and-icons .theme-menu > ul[data-zs-menu-container] > li > a.theme-menu-selected {
    border-color: transparent transparent #b9913d !important;
    background: transparent !important;
    color: #191c22 !important;
    box-shadow: none !important;
  }
}

.theme-lang-container-non-res .theme-lang-label,
.theme-lang-container-res .theme-lang-label {
  min-width: 42px !important;
  padding: 0 10px !important;
  justify-content: center !important;
  letter-spacing: .6px !important;
  font-size: 11px !important;
}

/* Minimal language control: opposite the menu, with no framed capsule. */
.theme-lang-container-non-res .theme-lang-label,
.theme-lang-container-res .theme-lang-label {
  min-width: 0 !important;
  min-height: 32px !important;
  padding: 0 3px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #6d727b !important;
  box-shadow: none !important;
}
.theme-lang-container-non-res .theme-lang-label:hover,
.theme-lang-container-res .theme-lang-label:hover { color: #8b6725 !important; }

@media (max-width: 991px) {
  .theme-header { border-radius: 0 !important; border-inline: 0 !important; box-shadow: 0 3px 14px rgba(19,29,42,.055) !important; }
  .theme-responsive-menu-container { border: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }
  .theme-lang-container-res { margin-inline-start: auto !important; margin-inline-end: 8px !important; }
}

#dnHybridListings.dn-pf-shell {
  --dn-pf-accent: #b9913d;
  --dn-pf-accent-dark: #8b6725;
  --dn-pf-ink: #20232b;
  --dn-pf-line: #dedfe3;
  max-width: 1500px !important;
  padding: 24px 28px 54px !important;
}

#dnHybridListings.dn-pf-shell .dn-head {
  min-height: 34px !important;
  margin: 0 0 14px !important;
  padding: 0 2px 10px !important;
  border-bottom: 0 !important;
}

#dnHybridListings.dn-pf-shell .dn-brand {
  color: #1e222a !important;
  font-size: 13px !important;
  letter-spacing: .85px !important;
}

#dnHybridListings.dn-pf-shell .dn-filter-section {
  position: relative !important;
  max-width: 1240px !important;
  margin: 0 auto 20px !important;
  padding: 22px 24px 20px !important;
  border: 1px solid #e1e2e5 !important;
  border-radius: 24px !important;
  background: #fff !important;
  box-shadow: 0 14px 42px rgba(20, 25, 35, .075) !important;
  overflow: visible !important;
}

#dnHybridListings.dn-pf-shell .dn-filter-title-row {
  margin-bottom: 12px !important;
}

#dnHybridListings.dn-pf-shell .dn-filter-title-line h1 {
  color: var(--dn-pf-ink) !important;
  font-size: 25px !important;
  font-weight: 750 !important;
  letter-spacing: -.45px !important;
}

#dnHybridListings.dn-pf-shell .dn-filter-title-copy p {
  margin-top: 5px !important;
  color: #747983 !important;
  font-size: 12px !important;
}

#dnHybridListings.dn-pf-shell .dn-mode-row {
  width: min(600px, 100%) !important;
  margin: 0 auto 14px !important;
  padding: 5px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 4px !important;
  border: 1px solid #e4e2e8 !important;
  border-radius: 999px !important;
  background: #f7f6f8 !important;
}

#dnHybridListings.dn-pf-shell .dn-mode-btn {
  width: 100% !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #4f535c !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  box-shadow: none !important;
}

#dnHybridListings.dn-pf-shell .dn-mode-btn.active {
  background: #fff !important;
  color: #684d17 !important;
  box-shadow: 0 3px 12px rgba(24, 29, 38, .09) !important;
}

#dnHybridListings.dn-pf-shell .dn-pf-search-row {
  width: 100% !important;
  min-height: 58px !important;
  margin: 0 0 14px !important;
  padding: 4px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 6px !important;
  border: 1px solid #d9dadd !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 2px 9px rgba(20, 25, 35, .05) !important;
}

#dnHybridListings.dn-pf-shell .dn-search-wide {
  min-height: 48px !important;
  margin: 0 !important;
  padding-inline: 14px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: none !important;
}

#dnHybridListings.dn-pf-shell .dn-search-wide input {
  min-height: 48px !important;
  color: #2f333b !important;
  font-size: 13px !important;
}

#dnHybridListings.dn-pf-shell .dn-pf-search-row .dn-search-btn {
  width: auto !important;
  min-width: 164px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 20px !important;
  border: 1px solid var(--dn-pf-accent-dark) !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #c8a758, #a87d28) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  box-shadow: 0 6px 15px rgba(139, 103, 37, .2) !important;
}

#dnHybridListings.dn-pf-shell .dn-filter-pill-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  padding: 0 !important;
}

#dnHybridListings.dn-pf-shell .dn-filter-pill {
  min-height: 42px !important;
  padding: 0 14px !important;
  border: 1px solid var(--dn-pf-line) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #4a4f58 !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

#dnHybridListings.dn-pf-shell .dn-filter-pill:hover,
#dnHybridListings.dn-pf-shell .dn-filter-pill:focus-within {
  border-color: #bda05d !important;
  background: #fffdf8 !important;
}

#dnHybridListings.dn-pf-shell .dn-filter-action-row {
  margin-top: 14px !important;
  padding-top: 13px !important;
  border-top: 1px solid #ececef !important;
}

#dnHybridListings.dn-pf-shell .dn-filter-action-row > .dn-mode-row { display: none !important; }

#dnHybridListings.dn-pf-shell .dn-search-actions {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 9px !important;
}

#dnHybridListings.dn-pf-shell .dn-clear-btn,
#dnHybridListings.dn-pf-shell .dn-map-btn {
  min-height: 40px !important;
  padding: 0 15px !important;
  border: 1px solid #dedfe3 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #4f545d !important;
  box-shadow: none !important;
}

@media (max-width: 720px) {
  #dnHybridListings.dn-pf-shell { padding: 14px 10px 44px !important; }
  #dnHybridListings.dn-pf-shell .dn-head { display: none !important; }
  #dnHybridListings.dn-pf-shell .dn-filter-section {
    padding: 16px 12px 14px !important;
    border-radius: 18px !important;
  }
  #dnHybridListings.dn-pf-shell .dn-filter-title-line h1 { font-size: 22px !important; }
  #dnHybridListings.dn-pf-shell .dn-mode-row { margin-bottom: 11px !important; }
  #dnHybridListings.dn-pf-shell .dn-mode-btn { min-height: 38px !important; padding: 0 8px !important; font-size: 10.5px !important; }
  #dnHybridListings.dn-pf-shell .dn-mode-btn svg { display: none !important; }
  #dnHybridListings.dn-pf-shell .dn-pf-search-row {
    min-height: 52px !important;
    border-radius: 14px !important;
  }
  #dnHybridListings.dn-pf-shell .dn-pf-search-row .dn-search-btn {
    min-width: 50px !important;
    width: 50px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 11px !important;
  }
  #dnHybridListings.dn-pf-shell .dn-pf-search-row .dn-search-btn span { display: none !important; }
  #dnHybridListings.dn-pf-shell .dn-filter-pill-row {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
    scrollbar-width: none;
  }
  #dnHybridListings.dn-pf-shell .dn-filter-pill-row::-webkit-scrollbar { display: none; }
  #dnHybridListings.dn-pf-shell .dn-filter-pill { flex: 0 0 auto !important; }
}

/* Mobile navigation R8: one quiet bar, one clean drawer, no nested frames. */
@media (max-width: 991px) {
  [data-headercontainer="zptheme-data-headercontainer"] {
    top: 0 !important;
    min-height: 60px !important;
    background: rgba(255,255,255,.97) !important;
    border-bottom: 1px solid #eceef1 !important;
    box-shadow: none !important;
    backdrop-filter: blur(12px) !important;
  }

  .theme-header {
    width: 100% !important;
    min-height: 60px !important;
    height: 60px !important;
    margin: 0 !important;
    padding: 0 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .theme-header > .zpcontainer:not(.theme-responsive-menu-area) {
    min-height: 60px !important;
    height: 60px !important;
  }

  .theme-logo-parent a {
    width: 44px !important;
    min-width: 44px !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 2px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .theme-logo-parent img {
    width: auto !important;
    max-width: 42px !important;
    max-height: 48px !important;
  }

  .theme-responsive-menu-area,
  .theme-responsive-menu-container {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
  }

  .theme-responsive-menu-container {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .theme-responsive-menu-container:hover,
  .theme-responsive-menu-container:focus-within {
    background: #f7f5ef !important;
  }

  .theme-responsive-menu.theme-menu-area {
    display: none !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: calc(100dvh - 60px) !important;
    margin: 0 !important;
    padding: 7px 12px 14px !important;
    border: 0 !important;
    border-top: 1px solid #eceef1 !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,.985) !important;
    box-shadow: 0 14px 32px rgba(15,23,42,.08) !important;
    overflow-y: auto !important;
  }

  .theme-responsive-menu.theme-menu-area.dn-menu-open {
    display: block !important;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] {
    gap: 0 !important;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li {
    border-bottom: 1px solid #f0f1f3 !important;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li:last-child {
    border-bottom: 0 !important;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li > a {
    min-height: 46px !important;
    padding: 0 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li > a:hover,
  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li > a:focus-visible {
    background: #faf8f2 !important;
    color: #73571e !important;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li.theme-menu-selected > a {
    background: #fbf7ee !important;
    color: #73571e !important;
    box-shadow: inset 2px 0 0 #b9913d !important;
  }

  html[dir="rtl"] .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li.theme-menu-selected > a {
    box-shadow: inset -2px 0 0 #b9913d !important;
  }

  .theme-responsive-menu .theme-sub-menu {
    margin: 0 12px 6px !important;
    padding: 0 10px !important;
    border: 0 !important;
    border-inline-start: 1px solid #e8dcc4 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .theme-responsive-menu .theme-sub-menu li > a {
    min-height: 40px !important;
    padding: 7px 6px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .theme-responsive-menu .theme-lang-container-res {
    width: auto !important;
    min-width: 0 !important;
    margin: 9px 6px 0 auto !important;
    padding: 0 !important;
    justify-content: flex-end !important;
  }

  html[dir="rtl"] .theme-responsive-menu .theme-lang-container-res {
    margin-left: 6px !important;
    margin-right: auto !important;
    justify-content: flex-start !important;
  }

  .theme-responsive-menu .theme-lang-label {
    width: auto !important;
    min-width: 30px !important;
    padding: 0 !important;
    justify-content: center !important;
  }
}

/* R9: stop the template caret from overlapping short EN/FA/AR labels. */
.theme-lang-container-non-res .theme-lang-label::after,
.theme-lang-container-res .theme-lang-label::after,
.theme-responsive-menu .theme-lang-label::after {
  display: none !important;
  content: none !important;
}

.theme-lang-dropdown {
  min-width: 70px !important;
  padding: 5px !important;
  border: 1px solid #e4e7ec !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: 0 12px 30px rgba(16,24,40,.12) !important;
}

.theme-lang-dropdown [data-theme-lang-list] {
  min-height: 34px !important;
  padding: 0 9px !important;
  border-radius: 7px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #4b5563 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.theme-lang-dropdown [data-theme-lang-list]:hover,
.theme-lang-dropdown [data-theme-lang-status="true"] {
  background: #f7f0df !important;
  color: #75591f !important;
}

.dn-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  z-index: 8800;
}
body.dn-menu-open .dn-menu-backdrop {
  display: block;
}
body.dn-menu-open a[href*="wa.me"],
body.dn-menu-open a[href*="whatsapp"] {
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 980px) {
  .theme-responsive-menu.theme-menu-area.dn-menu-open {
    display: flex !important;
    flex-direction: column !important;
    top: 60px !important;
    max-height: calc(100dvh - 60px) !important;
    height: calc(100dvh - 60px) !important;
    z-index: 9100 !important;
    padding: 12px 14px 24px !important;
    animation: dnMenuSlide 0.22s ease-out;
  }
  html[dir="rtl"] .theme-responsive-menu.theme-menu-area.dn-menu-open {
    animation-name: dnMenuSlideRtl;
  }
  .theme-responsive-menu .theme-lang-container-res {
    display: none !important;
  }
  .dn-mobile-lang-bar {
    display: flex;
    gap: 8px;
    margin: 0 0 12px;
    padding: 6px;
    border: 1px solid #ece7dc;
    border-radius: 12px;
    background: #faf8f2;
  }
  .dn-mobile-lang-btn {
    flex: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #4b5563 !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
  }
  .dn-mobile-lang-btn.is-active {
    background: #14181f;
    color: #fff !important;
  }
}

@keyframes dnMenuSlide {
  from { transform: translateX(-18px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes dnMenuSlideRtl {
  from { transform: translateX(18px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.dn-desc {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: start;
}

/* R10: always-visible language bar, smaller hamburger, tighter listings, mobile combo sheet. */
.theme-lang-container-non-res,
.theme-lang-container-res,
.dn-mobile-lang-bar {
  display: none !important;
}

.dn-header-lang {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: max-content !important;
  max-width: 100%;
  margin: 0;
  padding: 3px;
  border: 1px solid #e4dccb;
  border-radius: 999px;
  background: #fff;
  box-sizing: border-box;
  flex: 0 0 auto;
  align-self: center;
  white-space: nowrap;
  word-break: normal;
  overflow: hidden;
  z-index: 3;
}

.dn-header-lang-btn {
  min-width: 34px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: #4b5563 !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dn-header-lang-btn.is-active {
  background: #14181f;
  color: #fff !important;
}

.dn-header-lang-standalone {
  position: sticky;
  top: 0;
  z-index: 9000;
  justify-content: flex-end;
  margin: 0;
  padding: 8px 12px;
  border: 0;
  border-bottom: 1px solid #eceef1;
  border-radius: 0;
  background: rgba(255,255,255,.97);
}

@media (min-width: 992px) {
  .theme-header-topbar {
    position: absolute !important;
    top: 50% !important;
    inset-inline-end: 18px !important;
    inset-inline-start: auto !important;
    transform: translateY(-50%);
    z-index: 40 !important;
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    pointer-events: auto !important;
  }
  .theme-header-topbar .zpcontainer,
  .theme-header-topbar > .zpcontainer {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    word-break: normal !important;
    pointer-events: auto !important;
  }
  .dn-header-lang {
    pointer-events: auto !important;
  }
}

@media (max-width: 991px) {
  .theme-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
  }
  .theme-header-topbar {
    display: none !important;
  }
  .dn-header-lang {
    margin-inline-start: auto;
    margin-inline-end: 2px;
    padding: 2px;
  }
  .dn-header-lang-btn {
    min-width: 30px;
    min-height: 26px;
    padding: 0 7px;
    font-size: 10.5px;
  }

  .theme-responsive-menu-area,
  .theme-responsive-menu-container {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    flex: 0 0 36px !important;
    overflow: visible !important;
  }

  .theme-responsive-menu-container,
  [data-zp-burger-clickable-area] {
    position: relative !important;
    z-index: 60 !important;
    pointer-events: auto !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid #e6e0d4 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  .dn-header-lang {
    position: relative;
    z-index: 50;
  }
  .theme-responsive-menu.theme-menu-area,
  .theme-responsive-menu.theme-menu-area.dn-menu-open {
    z-index: 10 !important;
    top: 60px !important;
  }
  .theme-responsive-menu.theme-menu-area.dn-menu-open::before {
    content: "Menu";
    display: block;
    margin: 2px 4px 8px;
    color: #8a8170;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  html[lang="fa"] .theme-responsive-menu.theme-menu-area.dn-menu-open::before { content: "منو"; }
  html[lang="ar"] .theme-responsive-menu.theme-menu-area.dn-menu-open::before { content: "القائمة"; }

  .theme-burger-icon {
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #5c4a24 !important;
    transform: none !important;
    position: relative !important;
    display: block !important;
  }
  .theme-burger-icon:before,
  .theme-burger-icon:after {
    content: "" !important;
    position: absolute !important;
    inset-inline-start: 0 !important;
    width: 100% !important;
    height: 2px !important;
    margin: 0 !important;
    background: #5c4a24 !important;
  }
  .theme-burger-icon:before { inset-block-start: -6px !important; }
  .theme-burger-icon:after { inset-block-start: 6px !important; }
  .theme-burger-icon.theme-close-icon {
    background: transparent !important;
  }
  .theme-burger-icon.theme-close-icon:before {
    inset-block-start: 0 !important;
    transform: rotate(45deg) !important;
  }
  .theme-burger-icon.theme-close-icon:after {
    inset-block-start: 0 !important;
    transform: rotate(-45deg) !important;
  }

  .theme-responsive-menu.theme-menu-area.dn-menu-open {
    display: block !important;
    height: auto !important;
    max-height: min(78dvh, calc(100dvh - 64px)) !important;
    padding: 10px 12px 16px !important;
    border-radius: 0 0 16px 16px !important;
    background: #fff !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .14) !important;
  }

  .dn-mobile-menu-title {
    margin: 2px 4px 8px;
    color: #8a8170;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .theme-responsive-menu .theme-menu > ul[data-zs-menu-container] > li > a {
    min-height: 44px !important;
    font-size: 14px !important;
    font-weight: 650 !important;
  }
}

body:has(.dn-site-head) .dn-header-lang,
body:has(.dn-site-head) .dn-header-lang-standalone {
  display: none !important;
}

.dn-languages {
  display: flex !important;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid #ece7dc;
  border-radius: 999px;
  background: #faf8f2;
}

.dn-languages a {
  min-width: 30px;
  min-height: 26px;
  padding: 0 7px;
  border-radius: 999px;
  color: #4b5563 !important;
  font-size: 10.5px;
  font-weight: 800;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dn-languages a[aria-current="true"],
.dn-languages a.is-active {
  background: #14181f;
  color: #fff !important;
}

@media (max-width: 900px) {
  .dn-mobile-menu {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 720px) {
  .theme-content-area:has(#dnHybridListings) .zpcontainer,
  .theme-content-area:has(#dnHybridListings) .zpcontainer-fluid {
    padding-inline: 0 !important;
  }

  #dnHybridListings {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  #dnHybridListings.dn-pf-shell {
    padding: 8px 8px 28px !important;
  }

  #dnHybridListings .dn-grid,
  #dnHybridListings.dn-pf-shell .dn-grid {
    gap: 10px !important;
  }

  #dnHybridListings .dn-combo-panel:not([hidden]) {
    left: 8px !important;
    right: 8px !important;
    top: auto !important;
    bottom: 10px !important;
    width: auto !important;
    max-width: none !important;
    max-height: min(70vh, 460px) !important;
    z-index: 12050 !important;
  }
}
