

:root {
  --zoo-primary: #4b52d4;
  --zoo-primary-dark: #3a40b0;
  --zoo-accent: #d946b9;
  --zoo-accent-rgb: 217, 70, 185;
  --zoo-dark: #12141c;
  --zoo-muted: #5c6475;
  --zoo-bg: #f4f5fb;
  
  --zoo-header-gradient: linear-gradient(90deg, #0f1020 0%, #2b2f77 45%, #585FE7 70%, #E44FBF 100%);
  --zoo-header-gradient-stop-0: #0f1020;
  --zoo-header-gradient-stop-45: #2b2f77;
  --zoo-header-gradient-stop-70: #585fe7;
  --zoo-header-gradient-stop-100: #e44fbf;
  
  --zr-navy: #15152a;
  --zr-navy-footer: #0f1020;
  --zr-magenta: #e11d74;
  --zr-purple: #7c3aed;
  
  --zr-gradient-hero: linear-gradient(118deg, #000000 0%, #585FE7 52%, #E44FBF 100%);
  
  --zr-gradient-brand: linear-gradient(90deg, #E44FBF 0%, #585FE7 100%);
  --zr-gradient-cta: var(--zr-gradient-brand);
  --zr-section-head-gradient: var(--zoo-header-gradient);
  
  --zr-home-block-title-gradient: linear-gradient(118deg, #000000 0%, #585FE7 52%, #E44FBF 100%);
  --zr-card-shadow: 0 14px 42px rgba(17, 17, 42, 0.09);
  
  --zr-elev-1: 0 10px 30px rgba(17, 17, 42, 0.08);
  --zr-elev-2: 0 18px 60px rgba(17, 17, 42, 0.10);
  --zr-elev-3: 0 24px 90px rgba(17, 17, 42, 0.14);
  --zr-radius-lg: 1.25rem;
  --zr-radius-md: 1rem;
  --zr-blur: 14px;
  --zr-border: rgba(255, 255, 255, 0.72);
  --zr-soft-bg: #f1f3fb;
  
  --zr-btn-radius: 10px;
  --zr-btn-gradient: linear-gradient(100deg, #E44FBF 0%, #7C3AED 52%, #585FE7 100%);
  --zr-btn-shadow: 0 12px 28px rgba(88, 95, 231, 0.24), 0 5px 16px rgba(228, 79, 191, 0.16);
  --zr-btn-shadow-hover: 0 16px 36px rgba(88, 95, 231, 0.32), 0 8px 22px rgba(228, 79, 191, 0.2);
  --zr-btn-focus: 0 0 0 0.22rem rgba(124, 58, 237, 0.24);
  
  --zr-nav-radius: var(--zr-btn-radius);
  --zr-nav-panel-radius: var(--zr-radius-md);
  --zr-icon-fill: 0;
  --zr-icon-wght: 300;
  --zr-icon-grad: 0;
  --zr-icon-opsz: 24;
  
  --zr-header-h: 88px;

  --zr-price-gradient: linear-gradient(105deg, #585fe7 0%, #7c3aed 42%, #e44fbf 100%);
  --zr-price-gradient-stop-0: #585fe7;
  --zr-price-gradient-stop-42: #7c3aed;
  --zr-price-gradient-stop-100: #e44fbf;
}

.zr-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin: 0;
  font-family: "Montserrat", "Inter", sans-serif;
  line-height: 1;
}

.zr-price__amount {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  background: var(--zr-price-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.zr-price__suffix {
  color: #4a51689e;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.zr-price--sm .zr-price__amount {
  font-size: 1.15rem;
}

.zr-price--sm .zr-price__suffix {
  font-size: 0.82rem;
}

.zr-price--lg .zr-price__amount {
  font-size: clamp(0.85rem, 2vw, 1.65rem);
}

.zr-price--lg .zr-price__suffix {
  font-size: clamp(0.75rem, 1.15vw, 0.92rem);
}

html {
  scroll-behavior: smooth;
  
  scrollbar-gutter: stable;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    "FILL" var(--zr-icon-fill, 0),
    "wght" var(--zr-icon-wght, 300),
    "GRAD" var(--zr-icon-grad, 0),
    "opsz" var(--zr-icon-opsz, 24);
  vertical-align: -0.14em;
}

.zoo-body .material-symbols-rounded {
  flex-shrink: 0;
}

.zoo-body .mdi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: -0.14em;
}

.zoo-body :is(a, button, .btn) .material-symbols-rounded {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
}

.zoo-body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--zoo-dark);
  background: var(--zoo-bg);
}


.zoo-body .btn:not(.btn-close) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.045em;
  border-radius: var(--zr-btn-radius);
  min-height: 52px;
  padding: 0.82rem 1.8rem;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.zoo-body .btn:not(.btn-close) > i,
.zoo-body .btn:not(.btn-close) > .material-symbols-rounded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.08em;
}

.zoo-body .btn-sm:not(.btn-close) {
  padding: 0.52rem 1.2rem;
  min-height: 42px;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.zoo-body .btn-sm:not(.btn-close) .material-symbols-rounded {
  --zr-icon-opsz: 20;
  font-size: 1rem;
}

.zoo-body .btn-lg:not(.btn-close) {
  min-height: 58px;
  padding: 0.9rem 2rem;
  font-size: 1.02rem;
}

.zoo-body .btn-lg:not(.btn-close) .material-symbols-rounded {
  font-size: 1.12em;
}

.zoo-body .btn-link {
  border-radius: 0.35rem;
  min-height: auto;
  font-weight: 600;
  letter-spacing: normal;
  padding: 0.35rem 0.55rem;
}


.zoo-body .btn.rounded-pill:not(.btn-close) {
  border-radius: var(--zr-btn-radius) !important;
}

.zoo-body .zr-nav-icon-btn {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0 !important;
  letter-spacing: normal;
  font-weight: 600;
  border-width: 1px;
}

.zoo-body .zr-btn-solid,
.zoo-body .zr-btn-solid-pink,
.zoo-body .zr-home-btn-pink,
.zoo-body .zr-home-search-btn,
.zoo-body .zr-footer-news-btn,
.zoo-body .btn-primary {
  border: 2px solid rgba(255, 255, 255, 0.32);
  background: var(--zr-btn-gradient);
  color: #fff !important;
  box-shadow: var(--zr-btn-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 0 rgba(15, 16, 32, 0.1);
}

.zoo-body .zr-btn-solid:hover,
.zoo-body .zr-btn-solid:focus,
.zoo-body .zr-btn-solid-pink:hover,
.zoo-body .zr-btn-solid-pink:focus,
.zoo-body .zr-home-btn-pink:hover,
.zoo-body .zr-home-btn-pink:focus,
.zoo-body .zr-home-search-btn:hover,
.zoo-body .zr-home-search-btn:focus,
.zoo-body .zr-footer-news-btn:hover,
.zoo-body .zr-footer-news-btn:focus,
.zoo-body .btn-primary:hover,
.zoo-body .btn-primary:focus {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
  filter: brightness(1.04) saturate(1.05);
  transform: translateY(-1px);
  box-shadow: var(--zr-btn-shadow-hover);
}

.zoo-body .zr-btn-outline,
.zoo-body .zr-home-section-btn,
.zoo-body .btn-outline-primary:not(.country):not(.zr-offer-tab) {
  border: 2px solid transparent;
  color: #4b52d4 !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)) padding-box,
    var(--zr-btn-gradient) border-box;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(88, 95, 231, 0.08);
}

.zoo-body .zr-btn-outline:hover,
.zoo-body .zr-btn-outline:focus,
.zoo-body .zr-home-section-btn:hover,
.zoo-body .zr-home-section-btn:focus,
.zoo-body .btn-outline-primary:not(.country):not(.zr-offer-tab):hover,
.zoo-body .btn-outline-primary:not(.country):not(.zr-offer-tab):focus {
  background: var(--zr-btn-gradient);
  border-color: transparent;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--zr-btn-shadow);
}

.zoo-body .btn-outline-secondary {
  border-width: 2px;
  font-weight: 700;
}

.zoo-body .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.92) !important;
  color: #fff !important;
  background: transparent !important;
  font-weight: 700;
}

.zoo-body .btn-outline-light:hover,
.zoo-body .btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #fff !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.zoo-body .btn-light,
.zoo-body .zr-btn-light {
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.92);
  color: #ae49a7 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  font-weight: 700;
}

.zoo-body .btn-light:hover,
.zoo-body .btn-light:focus,
.zoo-body .zr-btn-light:hover,
.zoo-body .zr-btn-light:focus {
  background: #fff !important;
  border-color: #fff !important;
  color: #171833 !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15, 16, 32, 0.16);
}

.zoo-body .btn:not(.btn-close):focus-visible,
.zoo-body .zr-btn-outline:focus-visible,
.zoo-body .zr-btn-solid:focus-visible,
.zoo-body .zr-btn-light:focus-visible {
  outline: 0;
  box-shadow: var(--zr-btn-shadow), var(--zr-btn-focus);
}

.zoo-body .btn:not(.btn-close):active,
.zoo-body .zr-btn-solid:active,
.zoo-body .zr-btn-outline:active,
.zoo-body .zr-btn-light:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .zoo-body .btn:not(.btn-close),
  .zoo-body .zr-btn-solid,
  .zoo-body .zr-btn-outline,
  .zoo-body .zr-mobile-cta,
  .zoo-body .zr-mobile-call {
    transition: none !important;
  }

  .zoo-body .btn:not(.btn-close):hover,
  .zoo-body .zr-btn-solid:hover,
  .zoo-body .zr-btn-outline:hover,
  .zoo-body .zr-mobile-cta:hover,
  .zoo-body .zr-mobile-call:hover {
    transform: none !important;
  }
}

.bg-zr-soft {
  background: var(--zr-soft-bg) !important;
}
h1,
h2,
h3,
.display-5,
.navbar-brand {
  font-family: "Montserrat", "Inter", sans-serif;
}
.zoo-header {
  background: var(--zoo-header-gradient);
  backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.20);
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.zoo-header.zoo-header--scrolled {
  background: var(--zoo-header-gradient);
  backdrop-filter: blur(18px) saturate(1.25);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.zoo-header .navbar {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: padding 0.22s ease;
}

.zoo-header.zoo-header--scrolled .navbar {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.zoo-logo {
  transition: max-height 0.22s ease, transform 0.22s ease;
}

.zoo-header.zoo-header--scrolled .zoo-logo {
  transform: translateY(-1px);
}

.zoo-header.zoo-header--scrolled .zoo-logo {
  max-height: 42px;
}

.zoo-header .navbar-nav .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.83rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92) !important;
  padding: 0.62rem 0.95rem;
  line-height: 1;
  border-radius: var(--zr-nav-radius);
  position: relative;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}


.zoo-header .nav-link::after {
  content: none !important;
}

.zoo-header .navbar-toggler {
  background: transparent !important;
}

.zoo-header .navbar-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.zoo-header .navbar-nav .nav-link:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.zoo-header .navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.zoo-header .dropdown-toggle.nav-link.active {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.12) !important;
}


.zoo-header .navbar-nav .nav-link:focus-visible,
.zoo-header .navbar-toggler:focus-visible,
.zoo-header .dropdown-item:focus-visible {
  
  
}

.zoo-header .dropdown-menu {
  --bs-dropdown-bg: rgba(18, 20, 28, 0.96);
  border-radius: var(--zr-nav-panel-radius);
  padding: 0.5rem;
}


.zoo-header .navbar-nav,
.zoo-header .nav-item.dropdown {
  position: static;
}

.zoo-header .navbar {
  position: relative;
}

.zoo-header .dropdown-menu.zr-mega {
  --bs-dropdown-bg: transparent;
  position: absolute;
  background: transparent;
  padding: 0;
  margin-top: 0.05rem!important;
  left: 0;
  right: 0;
  transform: none;
  width: 100%;
  max-width: none;
  z-index: 1050;
  pointer-events: none;
}


.zoo-header .dropdown-menu.zr-mega[data-bs-popper] {
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
  transform: none !important;
}

.zoo-header .dropdown-menu.zr-mega.show {
  display: block;
}

.zr-mega .zr-mega-row {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0.75rem;
  border-radius: var(--zr-nav-panel-radius);
  background: #fff;
  border: 1px solid rgba(15, 16, 32, 0.08);
  box-shadow: 0 18px 46px rgba(15, 16, 32, 0.16);
  overflow: visible; 
  pointer-events: auto;
}

.zr-mega .zr-mega-row::before {
  content: "";
  position: absolute;
  top: -10px;
  left: var(--zr-mega-caret-x, 50%);
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background: #fff;
  border-left: 1px solid rgba(15, 16, 32, 0.08);
  border-top: 1px solid rgba(15, 16, 32, 0.08);
}


.zr-mega .zr-mega-inner {
  border-radius: calc(var(--zr-nav-panel-radius) - 0.15rem);
  overflow: hidden;
  pointer-events: auto;
}

.zr-mega-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 5.85rem;
  padding: 0.95rem 1.05rem;
  border-radius: 0; 
  text-decoration: none;
  color: var(--zoo-dark);
  border: none;
  background: #fff;
  box-shadow: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}


.zoo-header .zr-mega-item,
.zoo-header .zr-mega-item:hover,
.zoo-header .zr-mega-item:focus,
.zoo-header .zr-mega-item:active,
.zoo-header .zr-mega-item:visited {
  color: var(--zoo-dark) !important;
}

.zr-mega-item:hover {
  background: rgba(88, 95, 231, 0.06);
  transform: translateY(-1px);
}

.zr-mega-ic {
  width: 48px;
  height: 48px;
  min-width: 48px;
  flex: 0 0 48px;
  border-radius: 12px; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 95, 231, 0.06);
  border: 1px solid rgba(88, 95, 231, 0.14);
  position: relative;
  overflow: hidden;
}

.zr-mega-txt {
  display: block;
  min-width: 0;
}

.zr-mega-ic::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--zr-gradient-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.22;
  pointer-events: none;
}

.zr-mega-ic i {
  display: block;
  font-size: 22px;
  line-height: 1;
  position: relative;
  z-index: 1;
  color: #2b2f77;
}

.zr-mega-ic .material-symbols-rounded {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
}

.zr-mega-title {
  font-weight: 500;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.83rem;
  line-height: 1.1;
}

.zr-mega-desc {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 0.1rem;
}


.zoo-header .zr-mega-item .zr-mega-title {
  color: var(--zoo-dark) !important;
}
.zoo-header .zr-mega-item:hover .zr-mega-title,
.zoo-header .zr-mega-item:focus .zr-mega-title {
  color: var(--zoo-dark) !important;
}
.zoo-header .zr-mega-item .zr-mega-desc {
  color: #64748b !important;
}
.zoo-header .zr-mega-item:hover .zr-mega-desc {
  color: #5b6575 !important;
}
.zoo-header .zr-mega-ic i {
  color: #2b2f77 !important;
}
.zoo-header .zr-mega-item:hover .zr-mega-ic i {
  color: var(--zoo-primary) !important;
}
.zoo-header .zr-mega-item:hover .zr-mega-arrow {
  color: rgba(15, 16, 32, 0.52) !important;
}


.zr-mega .zr-mega-inner .row > [class*="col-"] {
  position: relative;
}
.zr-mega .zr-mega-inner .row > [class*="col-"]:not(:first-child)::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(15, 16, 32, 0.18);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
}

.zr-mega-arrow {
  margin-left: auto;
  color: rgba(15, 16, 32, 0.45);
  font-size: 1.05rem;
  --zr-icon-wght: 250;
  --zr-icon-opsz: 20;
  transition: transform 0.18s ease, color 0.18s ease;
}

.zr-mega-item:hover .zr-mega-arrow {
  color: rgba(15, 16, 32, 0.58);
  transform: translateX(1px);
}


.zr-nav-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.zr-nav-icon-btn i {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.18rem;
}

.offcanvas.zr-offcanvas {
  --bs-offcanvas-bg: transparent;
  --bs-offcanvas-width: min(100vw, 430px);
  background:
    radial-gradient(ellipse 90% 55% at 100% 48%, rgba(228, 79, 191, 0.62) 0%, transparent 58%),
    radial-gradient(ellipse 80% 55% at 12% 4%, rgba(88, 95, 231, 0.34) 0%, transparent 58%),
    linear-gradient(145deg, #101044 0%, #21146d 45%, #7c2bd7 100%);
  color: #fff;
  border-left: 0;
}

.zr-offcanvas .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.05rem 1rem 0.55rem;
}

.zr-offcanvas .offcanvas-title {
  flex: 0 1 auto;
  min-width: 0;
}

.zr-offcanvas .offcanvas-header > .d-flex {
  margin-left: auto;
  flex: 0 0 auto;
}

.zr-offcanvas .offcanvas-body {
  padding: 0.45rem 1rem 0.9rem;
}

.zr-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.zr-mobile-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.66rem;
  padding: 0.58rem 0.18rem;
  min-height: 2.65rem;
  border-radius: 0.62rem;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.zr-mobile-ic {
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 1.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: rgba(255, 255, 255, 0.72);
}

.zr-mobile-ic i {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  font-size: 0.9rem;
}
.zr-mobile-label {
  font-weight: 500;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.zr-mobile-chevron {
  margin-left: auto;
  opacity: 0.5;
  --zr-icon-wght: 250;
  --zr-icon-opsz: 20;
  font-size: 0.98rem;
}

.zr-mobile-link:hover,
.zr-mobile-link:focus {
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  transform: translateX(1px);
}

.zr-mobile-link:hover .zr-mobile-ic,
.zr-mobile-link:focus .zr-mobile-ic,
.zr-mobile-accordion[aria-expanded="true"] .zr-mobile-ic {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.zr-mobile-accordion[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.055);
}

.zr-mobile-accordion[aria-expanded="true"] .zr-mobile-chevron {
  transform: rotate(180deg);
  opacity: 0.75;
}

.zr-mobile-sub {
  width: 100%;
  align-self: stretch;
  margin: 0.02rem 0 0.22rem;
  padding: 0.05rem 0 0.08rem 2.2rem;
  border-left: 0;
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.zr-mobile-sublink {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.18rem 0.4rem 0.3rem;
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  position: relative;
  font-weight: 500;
  font-size: 0.84rem;
}

.zr-mobile-sublink i {
  margin-left: auto;
  --zr-icon-wght: 250;
  --zr-icon-opsz: 20;
  font-size: 0.9rem;
  opacity: 0.56;
}

.zr-mobile-sublink:hover {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.zr-mobile-sublink::before {
  content: none;
}

.zr-mobile-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.15rem;
  padding: 0.62rem 0.82rem;
  border-radius: var(--zr-btn-radius);
  background: var(--zr-btn-gradient);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 750;
  font-size: 0.91rem;
  letter-spacing: 0.005em;
  box-shadow: 0 15px 34px rgba(15, 16, 32, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.zr-mobile-cta-ic {
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 2.1rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.zr-mobile-cta.zr-mobile-cta--text {
  gap: 0.5rem;
  padding-left: 1rem;
  padding-right: 0.75rem;
}

.zr-mobile-cta .material-symbols-rounded {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.08rem;
}

.zr-mobile-call {
  margin-top: 0.42rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.12rem;
  padding: 0.54rem 0.78rem;
  border-radius: var(--zr-btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.9);
  color: #2b2f77;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.zr-mobile-cta:hover,
.zr-mobile-cta:focus,
.zr-mobile-call:hover,
.zr-mobile-call:focus {
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.zr-mobile-cta:hover,
.zr-mobile-cta:focus {
  filter: brightness(1.04);
  box-shadow: 0 18px 42px rgba(15, 16, 32, 0.28);
}

.zr-mobile-call:hover,
.zr-mobile-call:focus {
  background: #fff;
  color: #2b2f77;
  box-shadow: 0 14px 32px rgba(15, 16, 32, 0.16);
}

.zr-mobile-call i {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.08rem;
  color: #585fe7;
}

.zr-mobile-call span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.zr-mobile-call small {
  margin-top: 0.08rem;
  color: #5c6470;
  font-size: 0.76rem;
  font-weight: 600;
}

.zr-mobile-contacts {
  margin-top: 0.55rem;
  padding: 0.48rem 0.58rem;
  border-radius: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.zr-mobile-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.28rem 0.25rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  min-width: 0;
  font-size: 0.72rem;
}

.zr-mobile-contact span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zr-mobile-contact i {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  opacity: 0.85;
  font-size: 0.95rem;
}

@media (max-width: 575.98px) {
  .offcanvas.zr-offcanvas {
    --bs-offcanvas-width: 100vw;
  }
}

@media (min-width: 992px) {
  .zr-offcanvas { display: none; }
}

.zoo-header .dropdown-item {
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--zr-nav-radius);
  padding: 0.6rem 0.75rem;
}

.zoo-header .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.zoo-logo {
  max-height: 48px;
  width: auto;
}

.zoo-cta {
  color: var(--zoo-primary) !important;
}

.zoo-cta.btn.zr-btn-ghost-light {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 2px solid rgba(255, 255, 255, 0.86) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.zoo-cta.btn.zr-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #fff !important;
  color: #fff !important;
  filter: none;
  transform: translateY(-1px);
}

.zoo-cta.btn.zr-btn-ghost-light:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

@media (max-width: 991.98px) {
  .zoo-header .navbar-nav {
    padding-top: 0.75rem;
  }
  .zoo-header .navbar-nav .nav-link {
    padding: 0.65rem 0.9rem;
  }
}

.zoo-hero {
  position: relative;
  min-height: calc(100svh - var(--zr-header-h, 0px));
  background-color: #2a2f5c;
  background-image: linear-gradient(105deg, rgba(36, 40, 72, 0.92), rgba(74, 52, 120, 0.75)),
    url("../images/marketing-zoo.jpg");
  background-size: cover;
  background-position: center bottom;
  color: #fff;
}

.zoo-hero h1 {
  color: #fff;
  line-height: 1.15;
}

.zoo-section {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.zoo-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 14px 40px rgba(18, 20, 28, 0.08);
}

.zoo-card img {
  border-radius: 0.75rem;
}

.zoo-tile-link img {
  border-radius: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zoo-tile-link:hover img {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(18, 20, 28, 0.12);
}

.zoo-footer {
  position: relative;
  background: var(--zr-gradient-hero);
  overflow: hidden;
}

.zoo-footer-logo {
  max-height: 40px;
  width: auto;
  opacity: 0.95;
}

.zoo-footer::before {
  content: "";
  position: absolute;
  inset: 0% -10% auto -10%;
  height: 100%;
  
  pointer-events: none;
  z-index: 0;
}

.zoo-footer .container-xl {
  position: relative;
  z-index: 1;
}

.zoo-footer__hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.zoo-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.zoo-footer__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 0 0.3rem 0;
}

.zoo-footer__list i {
  width: 18px;
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  font-size: 1rem;
  opacity: 0.75;
  flex-shrink: 0;
}

.zoo-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zoo-footer__links li + li {
  margin-top: 0.35rem;
}

.zoo-footer__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.zoo-footer__link:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.zoo-footer__link > i:first-child {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.9;
}

.zoo-footer__link .material-symbols-rounded:last-child {
  opacity: 0.7;
}

.zoo-footer__social-wrap {
  position: relative;
  display: inline-block;
  margin-top: 14px;
}

.zoo-footer__social-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 70px;
  background: radial-gradient(circle, rgba(88, 95, 231, 0.26) 0%, transparent 65%),
    radial-gradient(circle, rgba(228, 79, 191, 0.22) 0%, transparent 65%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.zoo-footer .zoo-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.zoo-footer .zoo-footer__social a {
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.zoo-footer .zoo-footer__social a::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--zr-gradient-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.18;
  transition: opacity 0.18s ease;
}

.zoo-footer .zoo-footer__social a:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.32);
}

.zoo-footer .zoo-footer__social a:hover::before {
  opacity: 0.46;
}

.zoo-footer .zoo-footer__social a i {
  font-size: 20px;
}

.zoo-footer__social-btn {
  height: 42px;
  padding: 0 0.95rem;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.9rem;
}


.zoo-footer .zoo-footer__social a.zoo-footer__social--ig:hover,
.zoo-footer .zoo-footer__social a.zoo-footer__social--fb:hover {
  border-color: rgba(228, 79, 191, 0.28);
  box-shadow: 0 18px 52px rgba(88, 95, 231, 0.16), 0 18px 52px rgba(228, 79, 191, 0.12), 0 18px 52px rgba(0, 0, 0, 0.28);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.78) !important;
}

.btn-zoo-primary {
  background: #fff;
  color: var(--zoo-primary);
  border: 2px solid #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--zr-btn-radius);
  padding: 0.68rem 1.55rem;
}

.btn-zoo-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--zoo-primary-dark);
  border-color: #fff;
}

.btn-zoo-outline {
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: transparent;
  border-radius: var(--zr-btn-radius);
  padding: 0.68rem 1.55rem;
}

.btn-zoo-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border-color: #fff;
}

.zoo-news-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #1e2130;
  color: #fff;
}

.zoo-news-card .ratio {
  background: #000;
}



.zr-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.zr-accent {
  color: #ff4fa3;
}


.zr-eyebrow,
.zr-home-eyebrow,
.zr-section-muted,
.zoo-kontakt-section-head__eyebrow,
.zoo-kontakt-hero__eyebrow {
  display: block;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #585fe7;
}

.zr-split-hero .zr-eyebrow,
.zoo-hero .zr-eyebrow,
.zoo-hero .zoo-kontakt-hero__eyebrow,
.zr-home-hero__kicker {
  color: rgba(255, 255, 255, 0.82);
}

.zr-section-title,
.zr-eyebrow + h1,
.zoo-kontakt-hero__eyebrow + h1,
.zr-split-hero h1.display-5,
.zr-home-section-head h2,
.zr-home-section-head-row h2,
.zoo-kontakt-map-panel__title {
  position: relative;
  display: inline-block;
  padding-bottom: 1.05rem;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.zr-section-title::after,
.zr-eyebrow + h1::after,
.zoo-kontakt-hero__eyebrow + h1::after,
.zr-split-hero h1.display-5::after,
.zr-home-section-head h2::after,
.zr-home-section-head-row h2::after,
.zoo-kontakt-map-panel__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(4.2rem, 8vw, 8.8rem);
  height: 0.16rem;
  border-radius: 999px;
  background: var(--zr-gradient-brand);
}

.text-center .zr-section-title::after,
.text-center.zr-home-section-head h2::after,
.zr-home-section-head.text-center h2::after,
.zoo-kontakt-section-head.text-center .zoo-kontakt-map-panel__title::after {
  left: 50%;
  transform: translateX(-50%);
}

.text-center .zr-eyebrow,
.text-center .zr-home-eyebrow,
.text-center .zr-section-muted,
.zoo-kontakt-section-head.text-center .zoo-kontakt-section-head__eyebrow {
  text-align: center;
}


h1 .zr-accent,
h2 .zr-accent,
h3 .zr-accent,
h4 .zr-accent,
h5 .zr-accent,
h6 .zr-accent,
.display-1 .zr-accent,
.display-2 .zr-accent,
.display-3 .zr-accent,
.display-4 .zr-accent,
.display-5 .zr-accent,
.display-6 .zr-accent,
h1 .text-primary,
h2 .text-primary,
h3 .text-primary,
h4 .text-primary,
h5 .text-primary,
h6 .text-primary,
.display-1 .text-primary,
.display-2 .text-primary,
.display-3 .text-primary,
.display-4 .text-primary,
.display-5 .text-primary,
.display-6 .text-primary,
h1 .zoo-kontakt-hero__accent,
h2 .zoo-kontakt-hero__accent,
h3 .zoo-kontakt-hero__accent,
h4 .zoo-kontakt-hero__accent,
h5 .zoo-kontakt-hero__accent,
h6 .zoo-kontakt-hero__accent,
.display-1 .zoo-kontakt-hero__accent,
.display-2 .zoo-kontakt-hero__accent,
.display-3 .zoo-kontakt-hero__accent,
.display-4 .zoo-kontakt-hero__accent,
.display-5 .zoo-kontakt-hero__accent,
.display-6 .zoo-kontakt-hero__accent {
  background: var(--zr-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(228, 79, 191, 0.14);
}

.zr-split-hero {
  position: relative;
  overflow: hidden;
  background: var(--zr-gradient-hero);
  color: #fff;
  min-height: calc(100svh - var(--zr-header-h, 0px));
  min-height: calc(100dvh - var(--zr-header-h, 0px));
}

.zr-split-hero::before {
  content: "";
  position: absolute;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  right: -8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.45) 0%, transparent 68%);
  pointer-events: none;
}

.zr-split-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='%23ff4fa3' stroke-opacity='0.15' stroke-width='1.2' d='M40 140 L100 40 L160 140 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 85% 70%;
  background-size: 180px;
  pointer-events: none;
}

.zr-split-hero .container-xl {
  max-width: 1240px;
}

.zr-split-hero .display-5 {
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.zr-split-hero .lead {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
}

.zr-split-hero .zr-hero-inner {
  position: relative;
  z-index: 1;
}

.zr-scroll-downs {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.zr-scroll-downs a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: #fff;
  text-decoration: none;
}

.zr-mousey {
  width: 27px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  margin: 1rem;
}

.zr-scroller {
  width: 4px;
  height: 8px;
  border-radius: 10px;
  background: var(--zr-gradient-brand);
  animation: zrScroll 2.2s cubic-bezier(.15,.41,.69,.94) infinite;
}

.zr-scroll-downs__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 100;
  letter-spacing: 0.5em;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.42);
  opacity: 0.82;
  transform: translateY(0);
  animation: zrScrollLabel 2.8s ease-in-out infinite;
}

@keyframes zrScroll {
  0% { opacity: 0; transform: translateY(0); }
  10% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(15px); }
}

@keyframes zrScrollLabel {
  0%, 100% { opacity: 0.72; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(3px); }
}

@media (prefers-reduced-motion: reduce) {
  .zr-scroller,
  .zr-scroll-downs__label {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.zr-hero-visual-wrap {
  position: relative;
}

.zr-hero-visual-wrap .zr-hero-glow {
  position: absolute;
  inset: 10% -5% auto auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, transparent 65%);
  filter: blur(2px);
}



.zr-hero-img {
  position: relative;
  z-index: 1;
  max-height: min(420px, 55vh);
  width: auto;
  margin-left: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}


.zr-legal-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.zr-legal-hero-card::before,
.zr-legal-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.zr-legal-hero-card::before {
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(228, 79, 191, 0.35) 0%, transparent 70%);
}

.zr-legal-hero-card::after {
  width: 240px;
  height: 240px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(88, 95, 231, 0.35) 0%, transparent 70%);
}

.zr-legal-hero-card .zr-legal-hero-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.zr-legal-hero-card .zr-legal-hero-icon i {
  --zr-icon-wght: 260;
  --zr-icon-opsz: 40;
  font-size: 2.2rem;
  background: var(--zr-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.zr-btn-solid-pink,
.zr-btn-ghost-light {
  min-height: 54px;
  padding: 0.86rem 1.9rem;
  line-height: 1.1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.zr-btn-ghost-light {
  border: 2px solid transparent !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)) padding-box,
    linear-gradient(100deg, rgba(255, 255, 255, 0.95) 0%, rgba(228, 79, 191, 0.9) 48%, rgba(88, 95, 231, 0.95) 100%) border-box !important;
  backdrop-filter: none;
  box-shadow: 0 10px 26px rgba(15, 16, 32, 0.12);
}


.zr-filter-card {
  border-radius: var(--zr-radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 70px rgba(18, 20, 40, 0.18);
  backdrop-filter: blur(var(--zr-blur));
}

.zr-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: var(--zr-btn-radius);
  padding: 0.45rem 0.9rem;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(75, 82, 212, 0.18);
  background: rgba(75, 82, 212, 0.08);
  color: #1d1f3b;
}

.zr-filter-chip.is-active {
  background: linear-gradient(90deg, rgba(228, 79, 191, 0.14) 0%, rgba(88, 95, 231, 0.14) 100%);
  border-color: rgba(88, 95, 231, 0.35);
  color: #1d1f3b;
  box-shadow: 0 8px 22px rgba(88, 95, 231, 0.12);
}

.zr-filter-card .form-control,
.zr-filter-card .form-select {
  border-radius: 0.9rem;
  border-color: rgba(148, 163, 184, 0.35);
}

.zr-filter-card .form-control:focus,
.zr-filter-card .form-select:focus {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
}

.zr-filter-card .btn-primary {
  border-radius: var(--zr-btn-radius);
  background: var(--zr-gradient-brand);
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 38px rgba(88, 95, 231, 0.28), 0 8px 24px rgba(228, 79, 191, 0.12);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.zr-filter-card .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(88, 95, 231, 0.32), 0 10px 28px rgba(228, 79, 191, 0.16);
}

.zr-filter-card .btn-outline-primary,
.zr-filter-card .btn-outline-secondary {
  border-radius: var(--zr-btn-radius);
  border-width: 2px;
  font-weight: 700;
}

.zr-nemovitosti-filter-toolbar {
  width: 100%;
}

.zr-nemovitosti-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2f2a7a;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #29248a 0%, #5b32c6 48%, #bf2eb2 100%) border-box;
  border: 2px solid transparent;
  box-shadow: 0 10px 26px rgba(88, 95, 231, 0.18);
  transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.zr-nemovitosti-filter-toggle:hover {
  color: #231c62;
  box-shadow: 0 14px 34px rgba(88, 95, 231, 0.24);
  transform: translateY(-1px);
}

.zr-nemovitosti-filter-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.35), 0 10px 26px rgba(88, 95, 231, 0.18);
}

.zr-nemovitosti-filter-toggle__chev {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

#nemovitostiFilterToggle[aria-expanded="true"] .zr-nemovitosti-filter-toggle__chev {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .zr-nemovitosti-filter-toggle,
  .zr-nemovitosti-filter-toggle__chev {
    transition: none;
  }

  .zr-nemovitosti-filter-toggle:hover {
    transform: none;
  }

  #nemovitostiFilterPanel.collapsing {
    transition: none !important;
  }
}

.zr-hero-house-outline {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 79, 163, 0.55);
  border-radius: 12px;
  transform: skewX(-6deg);
  pointer-events: none;
  z-index: 0;
}

.zr-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.zr-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1 1 150px;
  max-width: 210px;
  padding: 0.72rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.zr-trust-item > .material-symbols-rounded {
  --zr-icon-wght: 270;
  --zr-icon-opsz: 24;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.22rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.zr-trust-item > .mdi {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.zr-trust-item > .material-symbols-rounded::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--zr-gradient-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
}

.zr-trust-value {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.18rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.zr-trust-item small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.35;
  margin-top: 0.18rem;
}

.zr-section-muted {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.zr-section-title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  color: var(--zoo-dark);
}

.zr-stat-card {
  border: 1px solid rgba(15, 16, 32, 0.06);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: var(--zr-elev-1);
  padding: 1.35rem 1rem;
  height: 100%;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zr-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--zr-elev-2);
}

.zr-stat-card .zr-stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 16, 32, 0.03);
  border: 1px solid rgba(88, 95, 231, 0.18);
  color: #2b2f77;
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.zr-stat-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--zoo-dark);
  line-height: 1.2;
}

.zr-team-card {
  border: 1px solid rgba(15, 16, 32, 0.06);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: var(--zr-elev-1);
  padding: 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zr-team-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--zr-elev-2);
}

.zr-team-card img,
.zr-team-card .zr-team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
}

.zr-team-card .zr-team-avatar {
  background: linear-gradient(145deg, #e9e4ff, #fce7f3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zoo-primary);
  --zr-icon-wght: 280;
  --zr-icon-opsz: 40;
  font-size: 1.8rem;
}

.zr-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  margin: 0 0.15rem;
  color: var(--zoo-primary);
  font-size: 1.15rem;
  background: rgba(75, 82, 212, 0.08);
  border: 1px solid rgba(88, 95, 231, 0.2);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.zr-social a:hover {
  transform: translateY(-2px);
  background: rgba(75, 82, 212, 0.12);
  box-shadow: 0 10px 28px rgba(88, 95, 231, 0.15);
}

.zr-map-panel {
  background: linear-gradient(160deg, #eef0f7 0%, #e4e8f2 100%);
  border-radius: 1.25rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.zr-map-panel svg {
  width: 78%;
  max-width: 340px;
  height: auto;
  opacity: 0.85;
}

.zr-home-cta-band .zr-cta-band,
.zr-cta-band {
  background:
    radial-gradient(ellipse 45% 120% at 94% 50%, rgba(255, 255, 255, 0.14) 0%, transparent 55%),
    linear-gradient(90deg, #312e81 0%, #6d28d9 50%, #c026a7 100%);
  border-radius: 1.15rem;
  padding: 1.45rem clamp(1.25rem, 3vw, 2.35rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 56px rgba(88, 95, 231, 0.28), 0 10px 40px rgba(0, 0, 0, 0.18);
}

.zr-cta-band .zr-cta-ic {
  --zr-icon-wght: 250;
  --zr-icon-opsz: 40;
  font-size: 2.35rem;
  color: rgba(255, 255, 255, 0.95);
}

.zr-cta-icon-badge {
  width: clamp(4.25rem, 7vw, 5.6rem);
  height: clamp(4.25rem, 7vw, 5.6rem);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  --zr-icon-wght: 250;
  --zr-icon-opsz: 48;
  font-size: clamp(2.25rem, 4.4vw, 3.1rem);
  line-height: 1;
  border: 2px solid rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.zr-cta-body {
  max-width: 34rem;
}

.zr-cta-btn {
  min-width: 13rem;
  padding-block: 0.72rem;
  box-shadow: 0 10px 28px rgba(15, 16, 32, 0.14);
}

.zr-btn-solid-pink {
  background: var(--zr-btn-gradient);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.055em;
  padding: 0.86rem 1.9rem;
  border-radius: var(--zr-btn-radius);
  box-shadow: var(--zr-btn-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.zr-gradient-brand {
  background: var(--zr-gradient-brand) !important;
}

.zr-text-gradient-brand {
  background: var(--zr-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .zr-text-gradient-home-block {
    background-image: var(--zr-home-block-title-gradient);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}


.zr-btn-solid-pink:hover {
  filter: brightness(1.04) saturate(1.05);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--zr-btn-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.zr-btn-solid-pink:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.zr-btn-ghost-light {
  border: 2px solid transparent;
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--zr-btn-radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)) padding-box,
    linear-gradient(100deg, rgba(255, 255, 255, 0.95) 0%, rgba(228, 79, 191, 0.9) 48%, rgba(88, 95, 231, 0.95) 100%) border-box !important;
  backdrop-filter: none;
  box-shadow: 0 10px 26px rgba(15, 16, 32, 0.12);
}

.zr-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #fff !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.zr-btn-ghost-light:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}


.zoo-body :is(
  .zr-btn-solid,
  .zr-btn-solid-pink,
  .zr-home-btn-pink,
  .zr-home-search-btn,
  .zr-footer-news-btn,
  .zr-btn-outline,
  .zr-btn-ghost-light,
  .zr-btn-light,
  .zr-home-btn-outline,
  .btn-zoo-primary,
  .btn-zoo-outline
) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.22s ease,
    filter 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    background-color 0.22s ease,
    background-position 0.45s ease;
}

.zoo-body :is(
  .zr-btn-solid,
  .zr-btn-solid-pink,
  .zr-home-btn-pink,
  .zr-home-search-btn,
  .zr-footer-news-btn
) {
  background-size: 165% 100%;
  background-position: 0% 50%;
}

.zoo-body :is(
  .zr-btn-solid,
  .zr-btn-solid-pink,
  .zr-home-btn-pink,
  .zr-home-search-btn,
  .zr-footer-news-btn
)::after {
  content: "";
  position: absolute;
  inset: -45% -30%;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  opacity: 0;
  transform: translateX(-38%) rotate(8deg);
  transition: opacity 0.28s ease, transform 0.62s ease;
}

.zoo-body :is(
  .zr-btn-ghost-light,
  .zr-btn-outline,
  .zr-btn-light,
  .zr-home-btn-outline,
  .btn-zoo-outline
)::after,
.zoo-body .btn-zoo-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(228, 79, 191, 0.16), rgba(88, 95, 231, 0.16));
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left center;
  
}

.zoo-body :is(
  .zr-btn-solid,
  .zr-btn-solid-pink,
  .zr-home-btn-pink,
  .zr-home-search-btn,
  .zr-footer-news-btn,
  .zr-btn-outline,
  .zr-btn-ghost-light,
  .zr-btn-light,
  .zr-home-btn-outline,
  .btn-zoo-primary,
  .btn-zoo-outline
) > :is(i, .material-symbols-rounded, .mdi) {
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (hover: hover) {
  .zoo-body :is(
    .zr-btn-solid,
    .zr-btn-solid-pink,
    .zr-home-btn-pink,
    .zr-home-search-btn,
    .zr-footer-news-btn
  ):hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: var(--zr-btn-shadow-hover), 0 12px 28px rgba(15, 16, 32, 0.12);
  }

  .zoo-body :is(
    .zr-btn-solid,
    .zr-btn-solid-pink,
    .zr-home-btn-pink,
    .zr-home-search-btn,
    .zr-footer-news-btn
  ):hover::after {
    opacity: 1;
    transform: translateX(38%) rotate(8deg);
  }

  .zoo-body :is(
    .zr-btn-ghost-light,
    .zr-btn-outline,
    .zr-btn-light,
    .zr-home-btn-outline,
    .btn-zoo-primary,
    .btn-zoo-outline
  ):hover {
    
    box-shadow: 0 16px 34px rgba(15, 16, 32, 0.16), 0 8px 22px rgba(88, 95, 231, 0.12);
  }

  .zoo-body :is(
    .zr-btn-ghost-light,
    .zr-home-btn-outline,
    .btn-zoo-outline
  ):hover {
    border-color: rgba(255, 255, 255, 0.98) !important;
    background:
      linear-gradient(rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.13)) padding-box,
      linear-gradient(100deg, rgba(255, 255, 255, 0.98) 0%, rgba(228, 79, 191, 0.95) 48%, rgba(88, 95, 231, 0.98) 100%) border-box !important;
  }

  .zoo-body .btn-zoo-primary:hover {
    background-color: #fff;
    color: var(--zoo-primary-dark);
    border-color: #fff;
  }

  .zoo-body :is(
    .zr-btn-ghost-light,
    .zr-btn-outline,
    .zr-btn-light,
    .zr-home-btn-outline,
    .btn-zoo-primary,
    .btn-zoo-outline
  ):hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .zoo-body :is(
    .zr-btn-solid,
    .zr-btn-solid-pink,
    .zr-home-btn-pink,
    .zr-home-search-btn,
    .zr-footer-news-btn,
    .zr-btn-ghost-light,
    .zr-home-btn-outline,
    .btn-zoo-primary,
    .btn-zoo-outline
  ):hover > :is(i, .material-symbols-rounded, .mdi) {
    transform: translateX(0.16rem);
  }
}

.zoo-body :is(
  .zr-btn-solid,
  .zr-btn-solid-pink,
  .zr-home-btn-pink,
  .zr-home-search-btn,
  .zr-footer-news-btn,
  .zr-btn-ghost-light,
  .zr-home-btn-outline,
  .btn-zoo-primary,
  .btn-zoo-outline
):focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 3px;
  box-shadow: var(--zr-btn-shadow), var(--zr-btn-focus);
}

.zoo-body :is(
  .zr-btn-solid,
  .zr-btn-solid-pink,
  .zr-home-btn-pink,
  .zr-home-search-btn,
  .zr-footer-news-btn,
  .zr-btn-ghost-light,
  .zr-home-btn-outline,
  .btn-zoo-primary,
  .btn-zoo-outline
):active {
  transform: translateY(0);
  filter: brightness(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .zoo-body :is(
    .zr-btn-solid,
    .zr-btn-solid-pink,
    .zr-home-btn-pink,
    .zr-home-search-btn,
    .zr-footer-news-btn,
    .zr-btn-ghost-light,
    .zr-home-btn-outline,
    .btn-zoo-primary,
    .btn-zoo-outline
  ),
  .zoo-body :is(
    .zr-btn-solid,
    .zr-btn-solid-pink,
    .zr-home-btn-pink,
    .zr-home-search-btn,
    .zr-footer-news-btn,
    .zr-btn-ghost-light,
    .zr-home-btn-outline,
    .btn-zoo-primary,
    .btn-zoo-outline
  )::after,
  .zoo-body :is(
    .zr-btn-solid,
    .zr-btn-solid-pink,
    .zr-home-btn-pink,
    .zr-home-search-btn,
    .zr-footer-news-btn,
    .zr-btn-ghost-light,
    .zr-home-btn-outline,
    .btn-zoo-primary,
    .btn-zoo-outline
  ) > :is(i, .material-symbols-rounded, .mdi) {
    transition: none !important;
  }

  .zoo-body :is(
    .zr-btn-solid,
    .zr-btn-solid-pink,
    .zr-home-btn-pink,
    .zr-home-search-btn,
    .zr-footer-news-btn,
    .zr-btn-ghost-light,
    .zr-home-btn-outline,
    .btn-zoo-primary,
    .btn-zoo-outline
  )::after {
    opacity: 0 !important;
    transform: none !important;
  }

  .zoo-body :is(
    .zr-btn-solid,
    .zr-btn-solid-pink,
    .zr-home-btn-pink,
    .zr-home-search-btn,
    .zr-footer-news-btn,
    .zr-btn-ghost-light,
    .zr-home-btn-outline,
    .btn-zoo-primary,
    .btn-zoo-outline
  ):hover,
  .zoo-body :is(
    .zr-btn-solid,
    .zr-btn-solid-pink,
    .zr-home-btn-pink,
    .zr-home-search-btn,
    .zr-footer-news-btn,
    .zr-btn-ghost-light,
    .zr-home-btn-outline,
    .btn-zoo-primary,
    .btn-zoo-outline
  ):hover > :is(i, .material-symbols-rounded, .mdi) {
    transform: none !important;
  }
}

.zr-icon-card {
  border: none;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(15, 16, 32, 0.06);
  box-shadow: var(--zr-elev-2);
  padding: 1.35rem 1.1rem;
  height: 100%;
}

.zr-card-lift {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.zr-card-lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--zr-elev-3);
}

.zr-prose {
  color: rgba(18, 20, 28, 0.92);
  line-height: 1.75;
}

.zr-article-hero-img {
  border-radius: var(--zr-radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(18, 20, 40, 0.16);
}

.zr-photo-real {
  transform: translateZ(0);
  filter: saturate(1.06) contrast(1.03);
}

.zr-icon-card .zr-ic-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: rgba(15, 16, 32, 0.03);
  border: 1px solid rgba(88, 95, 231, 0.16);
  color: #2b2f77;
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.42rem;
  position: relative;
  overflow: hidden;
}

.zr-icon-card .zr-ic-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--zr-gradient-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}

.zr-icon-card .zr-ic-wrap i {
  position: relative;
  z-index: 1;
}

.zr-process {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  position: relative;
}

.zr-process-step {
  flex: 1 1 140px;
  max-width: 200px;
  text-align: center;
  position: relative;
}

.zr-process-step .zr-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zr-gradient-brand);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 32px rgba(88, 95, 231, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.22rem;
}

.zr-branch-mini {
  border-radius: 1.1rem;
  border: 1px solid rgba(15, 16, 32, 0.06);
  box-shadow: var(--zr-elev-1);
  padding: 1.25rem;
  height: 100%;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zr-branch-mini:hover {
  transform: translateY(-2px);
  box-shadow: var(--zr-elev-2);
}

.zr-breadcrumb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
}

.zr-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.zr-breadcrumb a:hover {
  text-decoration: underline;
}

.zr-legal-layout {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 2rem;
}

@media (max-width: 991.98px) {
  .zr-legal-layout {
    grid-template-columns: 1fr;
  }
}

.zr-side-nav {
  position: sticky;
  top: 5.5rem;
  border: 1px solid #e8eaf4;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}

.zr-side-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  color: var(--zoo-dark);
  text-decoration: none;
  border-bottom: 1px solid #eef0f7;
  font-size: 0.9rem;
}

.zr-side-nav .material-symbols-rounded {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  font-size: 1rem;
}

.zr-side-nav a:hover,
.zr-side-nav a.active {
  background: rgba(124, 58, 237, 0.08);
  color: var(--zoo-primary);
}

.zr-side-nav a:last-child {
  border-bottom: none;
}

.zr-nemovitosti-hero .zr-filter-shell {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.zr-filter-tabs .nav-link {
  border-radius: var(--zr-btn-radius) !important;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--zoo-dark);
}

.zr-filter-tabs .nav-link.active {
  background: var(--zoo-primary) !important;
  color: #fff !important;
}

.bg-zr-soft {
  background: #f1f3fb !important;
}


#zrContactModal .modal-content.fp-modal,
#zrCookieModal .modal-content.fp-modal {
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 16, 32, 0.08);
  box-shadow: var(--zr-elev-3);
  background: #fff;
}

#zrContactModal .modal-dialog,
#zrCookieModal .modal-dialog {
  padding-inline: 0.5rem;
}

#zrContactModal .modal-dialog {
  max-width: min(1000px, calc(100vw - 2rem));
}

#zrContactModal .modal-title,
#zrCookieModal .modal-title {
  font-family: "Montserrat", "Inter", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}


#zrContactModal .fp-chip {
  border-radius: var(--zr-btn-radius);
  border: 1px solid rgba(88, 95, 231, 0.22);
  background: #fff;
  color: #2b2f77;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.6rem;
  box-shadow: 0 2px 8px rgba(15, 16, 32, 0.04);
}

#zrContactModal .fp-chip:hover {
  border-color: rgba(228, 79, 191, 0.4);
  background: rgba(228, 79, 191, 0.06);
}

#zrContactModal .fp-chip.is-active {
  background: var(--zr-gradient-brand) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow:
    0 12px 32px rgba(88, 95, 231, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

#zrContactModal .form-control,
#zrContactModal textarea.form-control {
  border-radius: 0.9rem;
  border-color: rgba(148, 163, 184, 0.45);
  min-height: 2.75rem;
  font-size: 0.8rem;
}

#zrContactModal .form-control:focus {
  border-color: rgba(88, 95, 231, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(88, 95, 231, 0.12);
}

#zrContactModal #zrSubmitBtn.btn.zr-home-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.55rem 1.15rem !important;
  border-radius: var(--zr-btn-radius) !important;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600 !important;
  font-size: 0.8rem;
}

#zrContactModal #zrSubmitBtn.zr-home-hero-cta--ghost > i.material-symbols-rounded {
  width: auto;
  min-width: 1em;
  font-size: 1.08em;
  --zr-icon-wght: 280;
  --zr-icon-opsz: 28;
}

#zrContactModal #zrSubmitBtn:disabled {
  opacity: 0.55;
  pointer-events: none;
}

#zrContactModal .fp-chip .material-symbols-rounded {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  font-size: 1rem;
}


#zrContactModal .zr-contact-modal.modal-content.fp-modal {
  background: transparent;
  border: none;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(12, 16, 40, 0.24);
}


@media (min-width: 992px) {
  #zrContactModal .zr-contact-modal > .row.g-0 > .zr-contact-modal__main.col-lg-8 {
    flex: 0 0 65%;
    max-width: 65%;
  }

  #zrContactModal .zr-contact-modal > .row.g-0 > .zr-contact-modal__aside.col-lg-4 {
    flex: 0 0 35%;
    max-width: 35%;
  }
}

#zrContactModal .zr-contact-modal__main {
  background: #fff;
}

#zrContactModal .zr-contact-modal__main-inner {
  padding: 1.85rem 1.85rem 2rem;
}

@media (max-width: 991.98px) {
  #zrContactModal .zr-contact-modal__main-inner {
    padding-right: 3.35rem;
  }
}

#zrContactModal .zr-contact-modal__close-mobile {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

#zrContactModal .zr-contact-modal__close-desktop {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(20, 20, 50, 0.12);
  opacity: 1;
  filter: none;
}

#zrContactModal .zr-contact-modal__main h2 {
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

#zrContactModal .zr-contact-modal__head-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #585fe7 0%, #7c3aed 55%, #d946b9 100%);
  color: #fff;
  --zr-icon-wght: 270;
  --zr-icon-opsz: 28;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 12px 32px rgba(88, 95, 231, 0.38);
}

#zrContactModal .fp-chip:not(.is-active) .material-symbols-rounded {
  color: var(--zoo-primary);
  opacity: 0.92;
}

#zrContactModal .fp-chip.is-active .material-symbols-rounded {
  color: #fff !important;
}

#zrContactModal .zr-contact-field {
  position: relative;
}

#zrContactModal .zr-contact-field__ic {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(88, 95, 231, 0.65);
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  font-size: 1.05rem;
  pointer-events: none;
  z-index: 2;
}

#zrContactModal .zr-contact-field--textarea .zr-contact-field__ic {
  top: 1rem;
  transform: none;
}

#zrContactModal .zr-contact-field__input {
  padding-left: 2.65rem;
}

#zrContactModal .zr-contact-field--textarea .zr-contact-field__input {
  padding-top: 1.05rem;
  
  resize: vertical;
}

#zrContactModal .zr-contact-modal__privacy {
  flex: 1 1 200px;
  max-width: 22rem;
  line-height: 1.35;
  font-size: 0.7rem;
}

#zrContactModal .zr-contact-modal__status:not(:empty) {
  color: var(--zoo-primary);
}


#zrContactModal .zr-contact-modal__aside {
  --zr-contact-art: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-left: 1px solid rgba(88, 95, 231, 0.12);
  background-color: #f2efff;
  background-image:
    linear-gradient(
      180deg,
      rgba(246, 244, 255, 0.99) 0%,
      rgba(246, 244, 255, 0.94) 28%,
      rgba(246, 244, 255, 0.62) 47%,
      rgba(246, 244, 255, 0.08) 69%,
      rgba(246, 244, 255, 0) 100%
    ),
    radial-gradient(ellipse 120% 82% at 88% 8%, rgba(217, 70, 185, 0.12) 0%, transparent 56%),
    radial-gradient(ellipse 95% 72% at 16% 86%, rgba(88, 95, 231, 0.1) 0%, transparent 54%),
    radial-gradient(ellipse 100% 72% at 82% 98%, rgba(217, 70, 185, 0.11) 0%, transparent 52%),
    var(--zr-contact-art),
    linear-gradient(165deg, #f3f1ff 0%, #eef0ff 45%, #faf5ff 100%);
  background-repeat: no-repeat;
  background-position:
    center top,
    center 2%,
    center bottom,
    center bottom,
    center bottom,
    center center;
  background-size:
    100% 72%,
    125% 68%,
    135% 74%,
    145% 58%,
    100% auto,
    cover;
}

@media (max-width: 991.98px) {
  #zrContactModal .zr-contact-modal__aside {
    border-left: none;
    border-top: 1px solid rgba(88, 95, 231, 0.12);
    min-height: min(52vw, 340px);
    background-position:
      center top,
      center 2%,
      center bottom,
      center bottom,
      center bottom,
      center center;
    background-size:
      100% 66%,
      125% 68%,
      135% 74%,
      145% 58%,
      100% auto,
      cover;
  }
}

#zrContactModal .zr-contact-modal__aside-inner {
  position: relative;
  z-index: 1;
  padding: 2.35rem 1.55rem clamp(12rem, 33vh, 17.5rem);
  min-height: 100%;
  width: 100%;
  align-items: center;
  text-align: center;
}


#zrContactModal .zr-contact-modal__aside-body {
  max-width: 17.5rem;
  text-align: center;
}

@media (min-width: 992px) {
  #zrContactModal .zr-contact-modal__aside-inner {
    margin-top: auto;
  }
}

#zrContactModal .zr-contact-modal__aside-list {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

#zrContactModal .zr-contact-modal__aside-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: start;
  padding: 0.65rem 0;
  text-align: center;
}

#zrContactModal .zr-contact-modal__aside-item-text {
  text-align: start;
  min-width: 0;
}

#zrContactModal .zr-contact-modal__aside-item + .zr-contact-modal__aside-item {
  border-top: 1px solid rgba(15, 16, 32, 0.06);
}

#zrContactModal .zr-contact-modal__aside-ic {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  font-size: 1.05rem;
  color: #585fe7;
  background: rgba(88, 95, 231, 0.1);
  border: 1px solid rgba(88, 95, 231, 0.18);
}

#zrContactModal .zr-contact-modal__aside-meta {
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

/* Contact modal: center the aside text block within the visual column. */
#zrContactModal .zr-contact-modal__aside {
  display: flex;
}

#zrContactModal .zr-contact-modal__aside-inner {
  height: 100%;
  min-height: 100%;
  /* justify-content: center !important; */
  /* padding: clamp(2.75rem, 7vh, 5rem) 1.55rem !important; */
}

#zrContactModal .zr-contact-modal__aside-body {
  margin-block: auto;
}

@media (min-width: 992px) {
  #zrContactModal .zr-contact-modal__aside-inner {
    margin-top: 0;
  }
}


#zrCookieModal .zr-btn-solid {
  background: var(--zr-btn-gradient) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border-radius: var(--zr-btn-radius);
  font-weight: 600;
  box-shadow: var(--zr-btn-shadow);
}

#zrCookieModal .zr-btn-solid:hover {
  filter: brightness(1.05);
  color: #fff !important;
}


.zoo-body #zrCookieModal .form-check.form-switch .form-check-input {
  border-radius: 2em !important;
  cursor: pointer;
}

.zoo-body #zrCookieModal .form-check.form-switch .form-check-input:checked,
.zoo-body #zrCookieModal .form-check.form-switch .form-check-input:checked:focus {
  background-color: #585fe7 !important;
  border-color: #585fe7 !important;
}

.zoo-body #zrCookieModal .form-check.form-switch .form-check-input:disabled {
  opacity: 0.55 !important;
  cursor: not-allowed;
}

.zoo-body #zrCookieModal .form-check.form-switch .form-check-input:checked:disabled {
  background-color: #585fe7 !important;
  border-color: #585fe7 !important;
  opacity: 0.45 !important;
}

.zoo-body #zrCookieModal .form-check-input:focus,
.zoo-body #zrContactModal #zrConsent:focus {
  border-color: rgba(88, 95, 231, 0.65) !important;
  box-shadow: 0 0 0 0.2rem rgba(88, 95, 231, 0.18) !important;
}

.zoo-body #zrCookieModal .form-check-input:checked,
.zoo-body #zrCookieModal .form-check-input[type="checkbox"]:checked,
.zoo-body #zrContactModal .form-check-input:checked,
.zoo-body #zrContactModal #zrConsent:checked {
  background-color: #585fe7 !important;
  border-color: #585fe7 !important;
}

.zoo-body #zrCookieModal .was-validated .form-check-input:valid:checked,
.zoo-body #zrContactModal .was-validated .form-check-input:valid:checked {
  background-color: #585fe7 !important;
  border-color: #585fe7 !important;
}

.zoo-body #zrContactModal .form-check:not(.form-switch) .form-check-input[type="checkbox"] {
  border-radius: 0.35rem !important;
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.2em;
  cursor: pointer;
}


.zr-home-hero {
  padding-bottom: 5.5rem;
  overflow: hidden;
}


.zr-home-hero.zr-split-hero {
  /* color: #fff; */
}


.zr-home-hero.zr-split-hero.zr-home-hero--split {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: calc(100svh - var(--zr-header-h, 0px));
  min-height: calc(100dvh - var(--zr-header-h, 0px));
  padding-top: clamp(0.5rem, 2vw, 1rem);
  padding-bottom: clamp(3.5rem, 8vh, 4.75rem);
  isolation: isolate;
  background: var(--zr-gradient-hero);
}


.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  /* rgba stops so `__bg-house` shows through; solid `--zr-gradient-hero` would cover it. `.zoo-kontakt-hero` can override on kontakt. */
  background: linear-gradient(
    118deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(88, 95, 231, 0.42) 48%,
    rgba(228, 79, 191, 0.28) 100%
  );
}


.zr-home-hero.zr-split-hero.zr-home-hero--split::before,
.zr-home-hero.zr-split-hero.zr-home-hero--split::after {
  z-index: 15;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__bg-house {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 82% 62%;
  opacity: 0.82;
  filter: blur(28px);
  -webkit-filter: blur(28px);
  transform-origin: 75% 58%;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(10, 6, 22, 0.52) 0%,
    rgba(10, 6, 22, 0.2) 40%,
    rgba(10, 6, 22, 0) 68%
  );
}

@media (max-width: 991.98px) {
  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__bg-house {
    filter: blur(16px);
    -webkit-filter: blur(16px);
    opacity: 0.45;
    background-position: 70% 58%;
  }
}


.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__shell.zr-hero-inner {
  z-index: 30;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__shell {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  min-width: 0;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__row {
  flex: 1 1 auto;
  align-items: stretch;
  min-width: 0;
}

@media (min-width: 992px) {
  
  .zr-home-hero.zr-split-hero.zr-home-hero--split {
    padding-bottom: 0;
  }

  
  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__shell {
    justify-content: flex-end;
  }

  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__row {
    
  }

  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__visual {
    align-self: stretch;
    min-height: 0;
  }
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__copy {
  min-width: 0;
  text-align: left;
  align-items: stretch;
}

@media (max-width: 991.98px) {
  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__copy {
    margin-inline: auto;
    max-width: min(100%, 40rem);
    
    justify-content: center;
  }
}


.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__overline {
  font-variant: all-small-caps;
  letter-spacing: 0.22em;
  text-transform: none;
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__title {
  display: block;
  width: 100%;
  max-width: min(100%, 17em);
  padding-bottom: 0;
  margin-bottom: 0.85rem;
  font-size: clamp(2.25rem, 5.2vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__title::after {
  display: none;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__title .zr-accent {
  background: linear-gradient(100deg, #ff4fa3 0%, #e44fbf 28%, #7c3aed 72%, #585fe7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__lead {
  max-width: 36rem;
  line-height: 1.55;
  font-size: clamp(1rem, 0.9vw + 0.62rem, 1.14rem);
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-hero-cta-row--home {
  width: 100%;
  max-width: min(100%, 58rem);
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-hero-cta-pair {
  width: 100%;
}

@media (min-width: 576px) {
  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-hero-cta-pair {
    flex-direction: row;
    align-items: stretch;
  }

  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-hero-cta-pair .zr-home-hero-cta--ghost {
    
    min-width: 0;
  }
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero-cta--pill {
  
  min-height: 3rem;
  
  
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__visual {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__visual.text-lg-end {
    align-items: flex-end;
  }
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__trust.zr-trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

@media (min-width: 400px) and (max-width: 991.98px) {
  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__trust.zr-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__trust.zr-trust-row .zr-trust-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (min-width: 992px) {
  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__trust.zr-trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: clamp(0.75rem, 2vw, 1.25rem);
  }
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__trust.zr-trust-row .zr-home-hero-trust-card {
  max-width: none;
  flex: initial;
  min-width: 0;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--zr-radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero-trust-card__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero-trust-card__icon .material-symbols-rounded {
  font-size: 1.32rem;
  color: #fff;
  --zr-icon-wght: 300;
  --zr-icon-opsz: 24;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero-trust-card__text {
  min-width: 0;
  flex: 1 1 auto;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero-trust-card__text small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.35;
  margin-top: 0.12rem;
  font-weight: 500;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero-trust-card .zr-trust-value {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-scroll-downs {
  z-index: 40;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: clamp(40px, 32.2vh, 42px);
}

.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-scroll-downs--home .zr-scroll-downs__label {
  font-size: clamp(0.58rem, 1.1vw, 0.66rem);
  letter-spacing: 0.38em;
  font-weight: 200;
  opacity: 0.88;
}

.zr-home-hero.zr-split-hero .zr-home-hero__visual {
  overflow: hidden;
  min-height: 0;
}

.zr-home-hero.zr-split-hero .zr-hero-composite {
  
  z-index: 1;
  
  
  
  
  
  
  width: 100%;
  max-width: min(720px, 100%);
  
  
  
  
  
  
}

@media (min-width: 992px) {
  .zr-home-hero.zr-split-hero .zr-hero-visual-wrap.text-lg-end .zr-hero-composite {
    margin-right: 0;
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  .zr-home-hero.zr-split-hero .zr-hero-composite {
    max-width: min(100%, 520px);
    align-items: center;
  }
}

.zr-home-hero.zr-split-hero .zr-hero-layer-img {
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.58));
}

.zr-home-hero.zr-split-hero .zr-hero-layer-img--person {
  width: auto;
  max-width: min(100%, min(92vw, 720px));
  
  max-height: none;
  object-fit: contain;
  object-position: 50% 100%;
  transform: translateY(min(12px, 1.8vw));
}

@media (min-width: 992px) {
  
  .zr-home-hero.zr-split-hero.zr-home-hero--split .zr-hero-layer-img--person {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .zr-home-hero.zr-split-hero .zr-hero-layer-img--person {
    max-width: min(100%, 100vw);
    height: min(
      88svh,
      88vh,
      min(880px, calc(100dvh - var(--zr-header-h, 0px) - clamp(5.5rem, 20svh, 11rem)))
    );
    object-position: 50% 100%;
    transform: translateY(min(10px, 2.5vw));
  }
}


.zr-home-hero.zr-split-hero .zr-hero-layer-img--scene {
  width: 100%;
  max-width: min(100%, min(92vw, 720px));
  height: auto;
  border-radius: var(--zr-radius-lg);
}

.zr-home-search-below {
  padding-top: clamp(1.25rem, 3.5vw, 2rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}


.zr-split-hero:not(.zr-home-hero--split) .zr-scroll-downs {
  z-index: 4;
}

.zr-home-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, #1a0f2e 0%, #4c1d95 38%, #7c3aed 62%, #db2777 100%);
}
.zr-home-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 0.5rem;
}
.zr-home-hero__kicker {
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}
.zr-home-hero__title {
  line-height: 1.12;
}
.zr-home-btn-pink {
  background: var(--zr-btn-gradient);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.055em;
  border-radius: var(--zr-btn-radius);
  min-height: 54px;
  padding: 0.86rem 1.9rem;
  text-transform: uppercase;
  box-shadow: var(--zr-btn-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.zr-home-btn-pink:hover {
  filter: brightness(1.04) saturate(1.05);
  color: #fff !important;
  box-shadow: var(--zr-btn-shadow-hover);
}
.zr-home-btn-outline {
  border: 2px solid transparent !important;
  color: #fff !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)) padding-box,
    linear-gradient(100deg, rgba(255, 255, 255, 0.95) 0%, rgba(228, 79, 191, 0.9) 48%, rgba(88, 95, 231, 0.95) 100%) border-box !important;
  font-weight: 700;
  letter-spacing: 0.055em;
  border-radius: var(--zr-btn-radius);
  min-height: 54px;
  padding: 0.86rem 1.9rem;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(15, 16, 32, 0.12);
}
.zr-home-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #fff !important;
  color: #fff !important;
}
.zr-home-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--zr-btn-radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
}
.zr-home-pill i {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.18rem;
  opacity: 0.95;
}
.zr-home-pill strong {
  display: block;
  font-size: 0.78rem;
}
.zr-home-pill span {
  display: block;
  font-size: 0.68rem;
  opacity: 0.8;
}
.zr-home-hero__visual {
  min-height: 280px;
}
.zr-home-house-line {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-52%);
  width: min(52%, 320px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
.zr-home-house-svg {
  width: 100%;
  height: auto;
}
.zr-home-glow {
  right: 0;
  left: auto;
  width: 75%;
}
.zr-home-hero-img {
  max-height: min(440px, 58vh);
  position: relative;
  z-index: 1;
}
.zr-home-search-wrap {
  margin-top: 0;
  z-index: 1;
}
.zr-home-search {
  border-radius: 1.35rem;
}
.zr-home-search-tabs .zr-home-tab {
  cursor: pointer;
  padding: 0;
  border-radius: var(--zr-btn-radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zoo-muted);
  border: 1px solid transparent;
}
.zr-home-search-tabs .zr-home-tab span {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--zr-btn-radius);
  border: 1px solid transparent;
}
.zr-home-tab input:focus-visible + span {
  outline: 2px solid rgba(88, 95, 231, 0.45);
  outline-offset: 2px;
  border-radius: var(--zr-btn-radius);
}
.zr-home-tab input:checked + span {
  color: #2b2f77;
  background: rgba(88, 95, 231, 0.1);
  border: 1px solid rgba(88, 95, 231, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.zr-home-search-tabs .zr-home-tab.is-active {
  color: #2b2f77;
  background: rgba(88, 95, 231, 0.1);
  border-color: rgba(88, 95, 231, 0.2);
}
.zr-home-tab--link span {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  color: inherit;
}
.zr-home-tab--link {
  color: var(--zoo-muted) !important;
}
.zr-home-input-group .input-group-text,
.zr-home-input-group .form-control,
.zr-home-select,
.zr-home-input {
  border-radius: 0.85rem !important;
  min-height: 46px;
}
.zr-home-search-btn {
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--zr-btn-gradient);
  min-height: 46px;
  border-radius: var(--zr-btn-radius);
}
.zr-home-search-btn:hover {
  filter: brightness(1.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.zr-home-advanced-link {
  color: #585fe7;
}


.zr-search-card.zr-home-search {
  --zr-search-border: rgba(99, 102, 241, 0.28);
  --zr-search-input-border: #e6e8ef;
  --zr-search-lavender: #f3f0ff;
  --zr-search-lavender-strong: #e9e3ff;
  --zr-search-purple: #5b21b6;
  --zr-search-purple-soft: #6d28d9;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--zr-search-border) !important;
  box-shadow:
    0 4px 6px rgba(79, 70, 229, 0.04),
    0 22px 50px rgba(15, 23, 42, 0.07) !important;
}

.zr-search-head {
  gap: 0.75rem 1rem;
}


.zr-search-deal-tabs.zr-search-deal-tabs--segmented {
  gap: 0;
  padding: 0;
  flex: 1 1 16rem;
  min-width: 0;
  background: #f4f5fb;
  border: 1px solid #e8eaf4;
  border-radius: 12px;
  overflow: hidden;
}

.zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab + .zr-search-deal-tab {
  margin-left: -1px;
}

.zr-search-deal-tabs .zr-search-deal-tab {
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  background: transparent;
}

.zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab {
  position: relative;
  z-index: 0;
  border-radius: 0;
}

.zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab:has(input:checked),
.zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab.is-active {
  z-index: 2;
}

.zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab--link:hover {
  z-index: 1;
}

.zr-search-deal-tabs .zr-search-deal-tab span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  line-height: 1.2;
}

.zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab span {
  border-radius: 0;
  box-sizing: border-box;
}

.zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab:first-child span {
  border-top-left-radius: 11px;
  border-bottom-left-radius: 11px;
}

.zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab:last-child span {
  border-top-right-radius: 11px;
  border-bottom-right-radius: 11px;
}

.zr-search-deal-tabs .zr-search-deal-tab span > .material-symbols-rounded {
  --zr-icon-wght: 400;
  --zr-icon-opsz: 22;
  font-size: 1.15rem;
  color: #9ca3af;
}

.zr-search-deal-tab input:focus-visible + span {
  outline: 2px solid rgba(99, 102, 241, 0.45);
  outline-offset: 2px;
}

.zr-search-deal-tab input:checked + span,
.zr-search-deal-tabs .zr-search-deal-tab.is-active span {
  color: var(--zr-search-purple);
  background: #fff;
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.12);
}

.zr-search-deal-tab input:checked + span > .material-symbols-rounded,
.zr-search-deal-tabs .zr-search-deal-tab.is-active span > .material-symbols-rounded {
  color: var(--zr-search-purple-soft);
}

.zr-search-deal-tab--link span {
  color: inherit;
}

.zr-search-deal-tab--link {
  color: #6b7280 !important;
  text-decoration: none !important;
}

.zr-search-deal-tab--link:hover span {
  color: var(--zr-search-purple-soft);
}

.zr-search-offers-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem 0.45rem 0.55rem;
  border-radius: 12px;
  border: 1px solid var(--zr-search-input-border);
  background: linear-gradient(135deg, #fafbff 0%, var(--zr-search-lavender) 100%);
  max-width: 100%;
}

.zr-search-offers-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(199, 210, 254, 0.65);
  color: var(--zr-search-purple-soft);
  flex-shrink: 0;
}

.zr-search-offers-badge__icon .material-symbols-rounded {
  --zr-icon-wght: 500;
  --zr-icon-opsz: 22;
  font-size: 1.2rem;
}

.zr-search-offers-badge__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.25;
  min-width: 0;
}

.zr-search-offers-badge__text strong {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: -0.02em;
}

.zr-search-offers-badge__text small {
  font-size: 0.68rem;
  font-weight: 400;
  color: #6b7280;
}


.zr-search-locality {
  display: flex;
  align-items: stretch;
  min-height: 52px;
  border: 1px solid var(--zr-search-input-border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.zr-search-locality:focus-within {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.1);
}

.zr-search-locality__pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem 0 0.75rem;
  color: var(--zr-search-purple-soft);
  flex-shrink: 0;
}

.zr-search-locality__pin .material-symbols-rounded {
  --zr-icon-wght: 400;
  --zr-icon-opsz: 24;
  font-size: 1.35rem;
}

.zr-search-locality__body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.4rem 0.35rem 0.45rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zr-search-locality__title {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374151;
  line-height: 1.15;
}

.zr-search-locality__hint {
  margin: 0.08rem 0 0.12rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #9ca3af;
  line-height: 1.2;
}

.zr-search-locality__input {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  background: transparent !important;
}

.zr-search-locality__input:focus {
  box-shadow: none !important;
}

.zr-search-locality__geo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  border: 0;
  border-left: 1px solid var(--zr-search-input-border);
  background: #fafbfd;
  color: #6b7280;
  cursor: default;
}

.zr-search-locality__geo .material-symbols-rounded {
  --zr-icon-wght: 400;
  font-size: 1.2rem;
}


.zr-search-icon-select {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--zr-search-input-border);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.zr-search-icon-select:focus-within {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.1);
}

.zr-search-icon-select__lead {
  position: absolute;
  left: 0.72rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  color: #9ca3af;
  pointer-events: none;
  z-index: 2;
}

.zr-search-icon-select__lead .material-symbols-rounded {
  --zr-icon-wght: 400;
  --zr-icon-opsz: 22;
  font-size: 1.2rem;
}

.zr-search-icon-select .zr-search-select {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: 52px !important;
  padding-left: 2.45rem;
  padding-right: 2.35rem;
  background-color: transparent !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.zr-search-icon-select::after {
  content: "expand_more";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
  position: absolute;
  right: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}


.zr-search-metric {
  display: flex;
  align-items: stretch;
  min-height: 52px;
  border: 1px solid var(--zr-search-input-border);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.zr-search-metric:focus-within {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.1);
}

.zr-search-metric__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem 0 0.65rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.zr-search-metric__ico .material-symbols-rounded {
  --zr-icon-wght: 400;
  --zr-icon-opsz: 22;
  font-size: 1.15rem;
}

.zr-search-metric__fields {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.2rem 0;
}

.zr-search-metric__input {
  flex: 1 1 0;
  min-width: 0;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: 42px !important;
  padding-left: 0.15rem !important;
  padding-right: 0.15rem !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  background: transparent !important;
}

.zr-search-metric__input:focus {
  box-shadow: none !important;
}

.zr-search-metric__sep {
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.zr-search-metric__suffix {
  flex-shrink: 0;
  align-self: center;
  padding: 0 0.65rem 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #9ca3af;
}


.zr-search-card .zr-search-select,
.zr-search-card .zr-search-control {
  border-radius: 12px !important;
  min-height: 46px;
  border-color: var(--zr-search-input-border) !important;
  color: #1f2937;
}

.zr-search-card .zr-search-select:focus,
.zr-search-card .zr-search-control:focus {
  border-color: rgba(99, 102, 241, 0.45) !important;
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.12);
}

.zr-search-range {
  display: flex;
  align-items: stretch;
  gap: 0.4rem;
  min-width: 0;
}

.zr-search-range__input {
  flex: 1 1 0;
  min-width: 0;
}

.zr-search-range__sep {
  align-self: center;
  color: #9ca3af;
  font-weight: 600;
  line-height: 1;
  flex: 0 0 auto;
}

.zr-search-divider {
  border: 0;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  opacity: 1;
  margin: 0;
}

.zr-search-divider--advanced {
  margin-top: 0.15rem;
}


.zr-search-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0.65rem 0.85rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: var(--zr-search-lavender);
  border: 1px solid rgba(199, 210, 254, 0.55);
}

@media (max-width: 575.98px) {
  .zr-search-trust {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

.zr-search-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #4b5563;
  min-width: 0;
}

.zr-search-trust__item i {
  --zr-icon-wght: 500;
  --zr-icon-opsz: 22;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #4f46e5;
  margin-top: 0.06rem;
}

.zr-search-trust__item strong {
  color: #1f2937;
  font-weight: 700;
}


.zr-search-advanced-toggle-wrap {
  width: 100%;
}

.zr-search-card .zr-search-advanced-toggle.btn-link {
  color: var(--zr-search-purple-soft) !important;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  text-decoration: none !important;
}

.zr-search-card .zr-search-advanced-toggle.btn-link:hover {
  color: var(--zr-search-purple) !important;
}

.zr-search-card .zr-search-advanced-toggle.btn-link:focus-visible {
  outline: 2px solid rgba(99, 102, 241, 0.45);
  outline-offset: 3px;
  border-radius: 0.35rem;
}

.zr-search-advanced-toggle__chevron {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.zr-search-advanced-toggle.is-expanded .zr-search-advanced-toggle__chevron {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .zr-search-advanced-toggle__chevron {
    transition: none;
  }
}

.zr-search-advanced__inner {
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}


.zr-search-cat__btn {
  border-radius: 999px !important;
  font-weight: 700;
  font-size: 0.78rem;
  border: 1px solid var(--zr-search-input-border) !important;
  color: #4b5563 !important;
  background: #fff !important;
  padding: 0.35rem 0.85rem 0.35rem 0.65rem !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
}

.zr-search-cat__btn .zr-search-cat__ic {
  --zr-icon-wght: 400;
  --zr-icon-opsz: 20;
  font-size: 1.05rem;
  color: #9ca3af;
}

.zr-search-cat__check {
  display: none;
  --zr-icon-wght: 600;
  font-size: 1rem;
  color: var(--zr-search-purple-soft);
}

.zr-search-cat__btn--all.is-active .zr-search-cat__check {
  display: inline-flex;
}

.zr-search-cat__btn:hover {
  border-color: rgba(99, 102, 241, 0.35) !important;
  color: var(--zr-search-purple-soft) !important;
}

.zr-search-cat__btn.is-active {
  color: var(--zr-search-purple) !important;
  background: #fff !important;
  border: 2px solid rgba(124, 58, 237, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.08);
}

.zr-search-cat__btn.is-active .zr-search-cat__ic {
  color: var(--zr-search-purple-soft);
}


.zr-search-adv-select {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--zr-search-input-border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.zr-search-adv-select__ic {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  color: #9ca3af;
  pointer-events: none;
}

.zr-search-adv-select__ic .material-symbols-rounded {
  --zr-icon-wght: 400;
  font-size: 1.1rem;
}

.zr-search-adv-select__sel {
  padding-left: 2.35rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: 48px !important;
}

.zr-search-adv-select:focus-within {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 0 0 0.15rem rgba(99, 102, 241, 0.08);
}

.zr-search-adv-select__sel:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}


.zr-search-card .zr-search-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
}

.zr-search-footer__right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  flex: 1 1 16rem;
  max-width: 100%;
}

@media (min-width: 576px) {
  .zr-search-footer__right {
    margin-left: auto;
    align-items: flex-end;
  }
}

.zr-search-footer__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  align-self: stretch;
  justify-content: stretch;
  gap: 0;
  width: 100%;
}

.zr-search-card .zr-search-footer__reset {
  border: 0 !important;
  background: transparent !important;
  color: #6b7280 !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.35rem 0.25rem !important;
  min-height: auto !important;
  gap: 0.35rem;
  letter-spacing: normal;
}

.zr-search-card .zr-search-footer__reset:hover {
  color: var(--zr-search-purple-soft) !important;
}

.zr-search-card .zr-search-footer__reset .material-symbols-rounded {
  --zr-icon-wght: 500;
  font-size: 1.15rem;
  color: #9ca3af;
}

.zr-search-card .zr-search-submit {
  flex: 1 1 100%;
  min-width: min(100%, 12rem);
  min-height: 52px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.6rem 1.15rem;
  border-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(100deg, #7c3aed 0%, #a855f7 38%, #6366f1 100%);
  box-shadow:
    0 10px 28px rgba(99, 102, 241, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: none;
}

.zr-search-card .zr-search-submit:hover,
.zr-search-card .zr-search-submit:focus {
  filter: brightness(1.05);
  color: #fff !important;
  transform: none;
  box-shadow:
    0 12px 32px rgba(99, 102, 241, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.zr-search-card .zr-search-submit:active {
  transform: none;
  filter: brightness(0.98);
}

.zr-search-card .zr-search-submit .material-symbols-rounded {
  --zr-icon-wght: 500;
  font-size: 1.25rem;
}

.zr-search-submit__arrow {
  font-size: 1.1rem !important;
  margin-left: 0.1rem;
}

.zr-search-footer__right .zr-search-submit-hint {
  margin: 0;
  padding-left: 0.1rem;
  font-size: 0.78rem !important;
  line-height: 1.35;
  color: #9ca3af !important;
  text-align: right;
}

@media (max-width: 575.98px) {
  .zr-search-footer__right .zr-search-submit-hint {
    text-align: left;
  }

  .zr-search-card .zr-search-submit {
    min-width: 0;
  }
}
.zr-home-section {
  position: relative;
}
.zr-home-section-head {
  max-width: 100%;
}
.zr-home-section-head-row {
  position: relative;
  width: 100%;
  row-gap: 0.85rem !important;
}
.zr-home-section-head-row > div {
  min-width: 0;
  max-width: min(100%, 46rem);
}
.zr-home-eyebrow {
  display: block;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  color: #585fe7;
}
.zr-home-eyebrow::before {
  display: none;
}
.zr-home-section-btn {
  border-color: rgba(88, 95, 231, 0.28);
  color: #4b52d4;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(88, 95, 231, 0.08);
}
.zr-home-section-btn:hover {
  background: var(--zr-btn-gradient);
  border-color: transparent;
  color: #fff !important;
}
.zr-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  max-width: 100%;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #5b4ee6;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  text-shadow: 0 6px 18px rgba(88, 95, 231, 0.12);
  transition: color 0.18s ease, transform 0.18s ease, text-shadow 0.18s ease;
}
.zr-view-all-link i {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.18em;
  line-height: 1;
  transition: transform 0.18s ease;
}
.zr-view-all-link:hover,
.zr-view-all-link:focus {
  color: #E44FBF;
  text-decoration: none;
  text-shadow: 0 8px 22px rgba(109, 40, 217, 0.18);
}
.zr-view-all-link:hover i,
.zr-view-all-link:focus i {
  transform: translateX(0.25rem);
}
.zr-view-all-link:focus-visible {
  outline: 2px solid rgba(88, 95, 231, 0.4);
  outline-offset: 0.35rem;
  border-radius: 0.5rem;
}
.zr-home-section--why-sell {
  background: #f1f3f8;
}

.zr-home-why-sell-head {
  text-align: left;
}

.zr-home-why-sell-head .zr-home-eyebrow {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5c6470;
}

.zr-home-why-sell-title {
  position: relative;
  display: block;
  max-width: 100%;
  padding-bottom: 0;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #14183a;
  margin-top: 30px;
}

.zr-home-why-sell-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 576px) {
  .zr-home-why-sell-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }
}

@media (min-width: 768px) {
  .zr-home-why-sell-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1.1rem;
  }
}

@media (min-width: 992px) {
  .zr-home-why-sell-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem 1rem;
  }
}

@media (min-width: 1200px) {
  .zr-home-why-sell-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1.1rem;
  }
}

.zr-home-why-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.zr-home-why-benefit__icon {
  width: clamp(3.15rem, 5.5vw, 3.55rem);
  height: clamp(3.15rem, 5.5vw, 3.55rem);
  min-width: clamp(3.15rem, 5.5vw, 3.55rem);
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.22);
  box-shadow: 0 10px 26px rgba(15, 16, 32, 0.07);
  color: #6d28d9;
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: clamp(1.18rem, 2.1vw, 1.35rem);
  line-height: 1;
}

.zr-home-why-benefit__icon > .material-symbols-rounded {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 25px;
  color: #E44FBF;
}

.zr-home-why-benefit__title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(0.82rem, 1.15vw, 0.92rem);
  font-weight: 800;
  line-height: 1.25;
  color: #14183a;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.zr-home-why-benefit__desc {
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  line-height: 1.45;
  color: #6b7280;
  font-size: 12px;
}
.zr-home-featured {
  
}
.zr-featured-carousel {
  padding-inline: 0;
}
.zr-featured-carousel .carousel-inner {
  padding-inline: 0;
}
.zr-featured-carousel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .zr-featured-carousel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .zr-featured-carousel__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.zr-featured-carousel__cell {
  min-width: 0;
}

.zr-home-offers-grid > .zr-listing-card-col {
  display: flex;
  scroll-margin-top: calc(var(--zr-header-h, 88px) + 1rem);
}
.zr-home-offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(15, 16, 32, 0.06);
  box-shadow: 0 8px 26px rgba(15, 16, 32, 0.08);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 26.5rem;
  height: 100%;
}
.zr-home-offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 95, 231, 0.18);
  box-shadow: 0 16px 38px rgba(15, 16, 32, 0.14);
}
.zr-home-offer-media {
  background: #eef0fb;
  aspect-ratio: 1.52 / 1;
}

.zr-offer-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.zr-offer-card-media:not(.zr-offer-card-media--carousel) .zr-offer-card-media__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zr-offer-card-media--carousel .zr-offer-card-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(5%) scale(1.05);
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  will-change: opacity, transform;
}

.zr-offer-card-media--carousel .zr-offer-card-media__img.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.zr-offer-card-media--carousel.is-dir-next .zr-offer-card-media__img.is-outgoing {
  opacity: 0;
  transform: translateX(-6%) scale(1.04);
  z-index: 1;
}

.zr-offer-card-media--carousel.is-dir-next .zr-offer-card-media__img.is-incoming {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 3;
}

.zr-offer-card-media--carousel.is-dir-prev .zr-offer-card-media__img.is-outgoing {
  opacity: 0;
  transform: translateX(6%) scale(1.04);
  z-index: 1;
}

.zr-offer-card-media--carousel.is-dir-prev .zr-offer-card-media__img.is-incoming {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 3;
}

.zr-offer-card-media--carousel.is-hovered .zr-offer-card-media__img.is-active {
  transform: translateX(0) scale(1.045);
}

.zr-offer-card-media__dots,
.zr-offer-card-media__nav {
  position: absolute;
  z-index: 5;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.zr-offer-card-media--carousel.is-hovered .zr-offer-card-media__dots,
.zr-offer-card-media--carousel.is-hovered .zr-offer-card-media__nav,
.zr-home-offer-media:hover .zr-offer-card-media__dots,
.zr-home-offer-media:hover .zr-offer-card-media__nav,
.zr-home-offer-media:focus-within .zr-offer-card-media__dots,
.zr-home-offer-media:focus-within .zr-offer-card-media__nav,
.zr-listing-card__media:hover .zr-offer-card-media__dots,
.zr-listing-card__media:hover .zr-offer-card-media__nav,
.zr-listing-card__media:focus-within .zr-offer-card-media__dots,
.zr-listing-card__media:focus-within .zr-offer-card-media__nav,
.zr-saved-drawer-card__thumb--carousel:hover .zr-offer-card-media__dots,
.zr-saved-drawer-card__thumb--carousel:hover .zr-offer-card-media__nav,
.zr-saved-drawer-card__thumb--carousel:focus-within .zr-offer-card-media__dots,
.zr-saved-drawer-card__thumb--carousel:focus-within .zr-offer-card-media__nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.zr-offer-card-media__dots {
  left: 0.7rem;
  bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.32rem;
}

.zr-offer-card-media__dot {
  width: 0.44rem;
  height: 0.44rem;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.zr-offer-card-media__dot.is-active {
  background: #fff;
  transform: scale(1.12);
}

.zr-offer-card-media__nav {
  right: 0.7rem;
  bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.zr-offer-card-media__btn {
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 16, 32, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 16px rgba(15, 16, 32, 0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.zr-offer-card-media__btn .material-symbols-rounded {
  font-size: 1.15rem;
  --zr-icon-wght: 300;
}

.zr-offer-card-media__btn:hover,
.zr-offer-card-media__btn:focus-visible {
  color: #6d28d9;
  background: rgba(255, 255, 255, 0.96);
}

.zr-saved-drawer-card__thumb--carousel {
  position: relative;
  display: block;
  flex: 0 0 5.5rem;
  width: 5.5rem;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  border-radius: 0.65rem;
  background: #eef0fb;
}

.zr-saved-drawer-card__thumb--carousel .zr-offer-card-media {
  border-radius: inherit;
}

@media (hover: none) {
  .zr-offer-card-media__dots,
  .zr-offer-card-media__nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zr-offer-card-media--carousel .zr-offer-card-media__img,
  .zr-offer-card-media--carousel.is-hovered .zr-offer-card-media__img.is-active {
    transition: none;
    transform: none;
  }
}

.zr-home-offer-media:not(:has(.zr-offer-card-media--carousel)) img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zr-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  border: 0;
  color: #fff;
  box-shadow: 0 6px 14px rgba(88, 95, 231, 0.18);
  white-space: normal;
  text-align: center;
  hyphens: auto;
}
.zr-card-badge--deal {
  background: linear-gradient(135deg, #7c3aed 0%, #d946b9 100%);
}
.zr-card-badge--reserved {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #fff;
}
.zr-card-badge--top {
  background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
}
.zr-card-badge--new {
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
}
.zr-card-badge--cat {
  background: rgba(255, 255, 255, 0.96);
  color: #E44FBF;
  border: 1px solid rgba(124, 58, 237, 0.22);
  box-shadow: 0 6px 14px rgba(15, 16, 32, 0.08);
}
.zr-card-badge--muted {
  background: rgba(15, 16, 32, 0.55);
  color: #fff;
  box-shadow: 0 6px 14px rgba(15, 16, 32, 0.12);
}
.zr-home-offer-badges,
.zr-home-blog-badges {
  position: absolute;
  left: 0.6rem;
  top: 0.6rem;
  right: 3.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  z-index: 2;
  align-items: flex-start;
  align-content: flex-start;
  pointer-events: none;
}
.zr-home-offer-badges .zr-card-badge,
.zr-home-blog-badges .zr-card-badge {
  pointer-events: none;
}
.fp-card-badges .badge.fp-badge {
  padding: 0.22rem 0.48rem !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.2 !important;
}
.zr-home-offer-heart {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.12rem;
  box-shadow: 0 8px 22px rgba(15, 16, 32, 0.1);
  backdrop-filter: blur(10px);
  z-index: 3;
}
.zr-home-offer-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin: 1rem 1rem 1.1rem;
  min-height: 0;
}
.zr-home-offer-text {
  flex: 1 1 auto;
  min-height: 4.85rem;
  overflow: hidden;
}
.zr-home-offer-title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.3;
  color: #151536;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zr-home-offer-location {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0;
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.35;
}

.zr-home-offer-location i {
  flex-shrink: 0;
  margin-top: 0.05rem;
  color: #d946b9;
  font-size: 1rem;
}

.zr-home-offer-location span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-width: 0;
}

.zr-home-offer-excerpt {
  display: none;
  margin: 0 0 0.65rem;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.55;
}

.zr-home-offer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px solid #cecece;
  padding-top: 10px;
}

.zr-home-offer-card .zr-price {
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.zr-home-offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 600;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.zr-home-offer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.zr-home-stats {
  background: #fff;
}
.zr-home-stats-panel {
  overflow: hidden;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border-radius: 1.15rem;
  background:
    radial-gradient(ellipse 40% 120% at 100% 50%, rgba(255, 255, 255, 0.18) 0%, transparent 58%),
    linear-gradient(90deg, #29248a 0%, #5b32c6 48%, #bf2eb2 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 20px rgba(88, 95, 231, 0.24);
}
.zr-home-stats-label {
  flex: 0 0 clamp(220px, 28%, 300px);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  margin-right: clamp(1.25rem, 3vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.zr-home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.45rem);
}
.zr-home-stat {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.45rem 0.25rem;
  color: #fff;
}
.zr-home-stat-ic {
  flex: 0 0 auto;
  --zr-icon-wght: 250;
  --zr-icon-opsz: 32;
  font-size: clamp(1.28rem, 2vw, 1.58rem);
  line-height: 1;
  opacity: 0.35;
  margin-top: 0.18rem;
}
.zr-home-stat-num {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  font-family: "Montserrat", "Inter", sans-serif;
  line-height: 1;
}
.zr-home-stat-text {
  max-width: 8.5rem;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  line-height: 1.35;
}
@media (max-width: 991.98px) {
  .zr-home-stats-label {
    flex-basis: auto;
    padding-right: 0;
    padding-bottom: 1.15rem;
    margin-right: 0;
    margin-bottom: 1.15rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  .zr-home-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .zr-home-stat {
    justify-content: flex-start;
  }
}
@media (max-width: 575.98px) {
  .zr-home-stats-grid {
    grid-template-columns: 1fr;
  }
}

.zr-home-references {
  
}
.zr-reference-carousel {
  position: relative;
  padding-inline: 2.25rem;
}
.zr-home-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(88, 95, 231, 0.08);
  background: #fff;
  box-shadow: 0 8px 26px rgba(15, 16, 32, 0.08);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.zr-home-quote::before {
  content: "“";
  position: absolute;
  right: 1rem;
  top: 0.55rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(88, 95, 231, 0.08);
  pointer-events: none;
}
.zr-home-quote:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 95, 231, 0.2);
  box-shadow: 0 6px 28px rgba(15, 16, 32, 0.14);
}
.zr-home-quote-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.zr-home-quote-avatar {
  width: 3.7rem;
  height: 3.7rem;
  flex: 0 0 3.7rem;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(88, 95, 231, 0.16);
}
.zr-home-quote-name {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
  color: #151536;
  line-height: 1.15;
}
.zr-home-quote-city {
  color: #6b7280;
  font-size: 0.82rem;
  margin-top: 0.15rem;
}
.zr-home-stars {
  color: #f59e0b;
  letter-spacing: 0.1em;
}
.zr-home-quote-text {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.72;
}
.zr-reference-carousel__controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  transition: opacity 0.18s ease;
}
.zr-reference-carousel:hover .zr-reference-carousel__controls,
.zr-reference-carousel:focus-within .zr-reference-carousel__controls {
  opacity: 1;
}
.zr-reference-carousel__btn {
  position: absolute;
  top: 50%;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(88, 95, 231, 0.12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6d28d9;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(15, 16, 32, 0.1);
  backdrop-filter: blur(10px);
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1rem;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.zr-reference-carousel__btn:first-child {
  left: 0.15rem;
}
.zr-reference-carousel__btn:last-child {
  right: 0.15rem;
}
.zr-reference-carousel__btn:hover,
.zr-reference-carousel__btn:focus,
.zr-reference-carousel__btn:active,
.zr-reference-carousel__btn.is-interacted {
  color: #fff;
  background: var(--zr-gradient-brand);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(88, 95, 231, 0.22);
  transform: translateY(-50%) scale(1.04);
}
.zr-reference-carousel__btn:focus-visible {
  outline: 2px solid rgba(88, 95, 231, 0.38);
  outline-offset: 3px;
}
@media (max-width: 575.98px) {
  .zr-reference-carousel {
    padding-inline: 0;
    padding-bottom: 3.4rem;
  }
  .zr-reference-carousel__controls {
    inset: auto 0 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    opacity: 1;
  }
  .zr-reference-carousel__btn {
    position: static;
    transform: none;
  }
  .zr-reference-carousel__btn:hover,
  .zr-reference-carousel__btn:focus,
  .zr-reference-carousel__btn:active,
  .zr-reference-carousel__btn.is-interacted {
    transform: translateY(-1px);
  }
}
.zr-home-news {
  
}
.zr-home-blog-card {
  position: relative;
  height: 100%;
  min-height: 26.5rem;
  border-radius: 1.15rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(15, 16, 32, 0.08);
  transition: transform 0.18s ease, box-shadow 0.22s ease;
}
.zr-home-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(15, 16, 32, 0.14);
}
.zr-home-blog-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.zr-home-blog-media {
  position: relative;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  background: #eef0fb;
}
.zr-home-blog-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.zr-home-blog-card:hover .zr-home-blog-media img {
  transform: scale(1.045);
}
.zr-home-blog-fav {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 16, 32, 0.45);
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.12rem;
  box-shadow: 0 8px 22px rgba(15, 16, 32, 0.1);
  backdrop-filter: blur(10px);
  z-index: 3;
}
.zr-home-blog-arrow {
  position: absolute;
  right: -0.9rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #6d28d9;
  --zr-icon-wght: 270;
  --zr-icon-opsz: 40;
  font-size: 1.65rem;
  box-shadow: 0 14px 34px rgba(88, 95, 231, 0.2);
}
.zr-home-blog-body {
  flex: 1;
  padding: 1.05rem 1.1rem 1.25rem;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.zr-home-blog-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  flex-shrink: 0;
}
.zr-home-blog-date {
  flex: 0 0 auto;
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 600;
}
.zr-home-blog-title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1.02rem);
  font-weight: 700;
  line-height: 1.45;
  color: #151536;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}
.zr-home-blog-excerpt {
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 4.75rem;
}

.zr-home-partners-band {
  padding-top: 0.25rem;
}
.zr-home-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding: 0.95rem 1.25rem;
  border-radius: var(--zr-radius-md);
  background: #fff;
  border: 1px solid rgba(15, 16, 32, 0.06);
  box-shadow: 0 10px 28px rgba(17, 17, 42, 0.07);
}
.zr-home-partners__label {
  flex: 0 0 auto;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  letter-spacing: 0.02em;
  color: #151536;
  line-height: 1.2;
  max-width: 11rem;
}
.zr-home-partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1 1 12rem;
  min-width: 0;
  gap: 0;
  margin: 0;
  padding: 0;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(15, 16, 32, 0.12);
  list-style: none;
}
.zr-home-partners__logo {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  min-height: 2.75rem;
}
.zr-home-partners__logo + .zr-home-partners__logo {
  border-left: 1px solid rgba(15, 16, 32, 0.12);
}
.zr-home-partners__logo img {
  display: block;
  height: clamp(1.2rem, 2.5vw, 1.65rem);
  width: auto;
  max-width: min(9.5rem, 34vw);
  object-fit: contain;
  object-position: center;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
  filter: grayscale(1) brightness(0.42) contrast(1.05);
  opacity: 0.92;
}
@media (hover: hover) and (pointer: fine) {
  .zr-home-partners__logo:hover img {
    filter: grayscale(1) sepia(1) saturate(6.5) hue-rotate(285deg) brightness(1.05) contrast(1.05);
    opacity: 1;
    transform: translateY(-1px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .zr-home-partners__logo img {
    transition: none;
  }
  .zr-home-partners__logo:hover img {
    transform: none;
  }
}
@media (max-width: 767.98px) {
  .zr-home-partners__logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
    border-left: 0;
    padding-left: 0;
    width: 100%;
    flex-basis: 100%;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 1.25rem), transparent 100%);
  }
  .zr-home-partners__label {
    max-width: none;
    width: 100%;
  }
  .zr-home-partners__logo {
    flex: 0 0 auto;
  }
}
.zr-home-branches {
  
}
.zr-home-news-head,
.zr-home-branches-head,
.zr-home-featured-head,
.zr-home-references-head {
  text-align: left;
}

.zr-home-news-head .zr-home-eyebrow,
.zr-home-branches-head .zr-home-eyebrow,
.zr-home-featured-head .zr-home-eyebrow,
.zr-home-references-head .zr-home-eyebrow {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5c6470;
}

.zr-home-news-head .zr-home-news-title,
.zr-home-branches-head .zr-home-branches-title,
.zr-home-featured-head .zr-home-featured-title,
.zr-home-references-head .zr-home-references-title,
.zoo-kontakt-explorer__title {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding-bottom: 0;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #14183a;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .zr-home-news-head .zr-home-news-title,
  .zr-home-branches-head .zr-home-branches-title,
  .zr-home-featured-head .zr-home-featured-title,
  .zr-home-references-head .zr-home-references-title,
  .zoo-kontakt-explorer__title {
    background-image: var(--zr-home-block-title-gradient);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.zr-home-news-head .zr-home-news-title::after,
.zr-home-branches-head .zr-home-branches-title::after,
.zr-home-featured-head .zr-home-featured-title::after,
.zr-home-references-head .zr-home-references-title::after,
.zoo-kontakt-explorer__title::after {
  content: "";
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  display: block;
  width: 34%;
  min-width: 3.25rem;
  max-width: 11rem;
  height: 2px;
  margin-top: 1.05rem;
  border-radius: 1px;
  background: var(--zr-home-block-title-gradient);
}

@media (max-width: 767.98px) {
  .zr-home-section {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .zr-home-section-head-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0.9rem !important;
    margin-bottom: 1.25rem !important;
  }

  .zr-home-news-head,
  .zr-home-branches-head,
  .zr-home-featured-head,
  .zr-home-references-head {
    width: 100%;
  }

  .zr-home-news-head .zr-home-eyebrow,
  .zr-home-branches-head .zr-home-eyebrow,
  .zr-home-featured-head .zr-home-eyebrow,
  .zr-home-references-head .zr-home-eyebrow {
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.2em;
  }

  .zr-home-news-head .zr-home-news-title,
  .zr-home-branches-head .zr-home-branches-title,
  .zr-home-featured-head .zr-home-featured-title,
  .zr-home-references-head .zr-home-references-title,
  .zoo-kontakt-explorer__title {
    display: inline-block;
    max-width: 100%;
    font-size: clamp(1.75rem, 8.6vw, 2.2rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .zr-home-news-head .zr-home-news-title::after,
  .zr-home-branches-head .zr-home-branches-title::after,
  .zr-home-featured-head .zr-home-featured-title::after,
  .zr-home-references-head .zr-home-references-title::after,
  .zoo-kontakt-explorer__title::after {
    width: clamp(5rem, 28vw, 8.5rem);
    margin-top: 0.85rem;
  }

  .zr-view-all-link {
    margin-left: 0;
    font-size: 0.95rem;
    line-height: 1.3;
    white-space: normal;
  }

  .zr-view-all-link i {
    flex: 0 0 auto;
  }

  .zr-featured-carousel .carousel-item > .row,
  .zr-featured-carousel__grid,
  .zr-home-references .carousel-item > .row,
  .zr-home-news-grid {
    padding-top: 1.35rem !important;
    padding-bottom: 1.35rem !important;
  }
}

.zr-home-branches .zr-home-eyebrow::before {
  display: none;
}
.zr-home-branches .zr-home-eyebrow::after {
  display: none;
}
.zr-home-map-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(285px, 34vw, 430px);
  padding: 0;
  border-radius: 1.6rem;
  background: radial-gradient(ellipse 25% 35% at 60% 35%, rgba(124, 58, 237, 0.12) 0%, transparent 70%),
  radial-gradient(ellipse 55% 80% at 40% 45%, rgba(217, 70, 185, 0.08) 0%, transparent 68%);
  border: none;
  box-shadow: none;
}
.zr-home-cz-map.zoo-cz-map {
  width: min(100%, 650px);
  max-width: 650px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  filter: drop-shadow(0 20px 22px rgba(88, 95, 231, 0.16));
}
.zr-home-cz-map.zoo-cz-map--vector svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.zr-home-cz-map .zk-region.is-empty {
  fill: #f2f0fb !important;
  stroke: rgba(205, 199, 228, 0.9) !important;
}
.zr-home-cz-map .zk-region.is-branch,
.zr-home-cz-map .zk-region--link {
  
  stroke: rgba(255, 255, 255, 0.86) !important;
  stroke-width: 0.72 !important;
}
.zr-home-cz-map .zoo-map-pin__shape {
  filter: drop-shadow(0 2px 2px rgba(88, 95, 231, 0.35));
}
.zr-home-office-card {
  border-color: rgba(88, 95, 231, 0.08) !important;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 28px rgba(15, 16, 32, 0.08);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.zr-home-office-card:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 95, 231, 0.2) !important;
  box-shadow: var(--zr-elev-1);
}
.zr-home-office-card:focus {
  outline: none;
  border-color: rgba(217, 70, 185, 0.34) !important;
  box-shadow: 0 0 0 0.22rem rgba(217, 70, 185, 0.14), var(--zr-elev-1);
}

.zr-home-branches .zr-home-office-card:focus,
.zr-home-branches .zr-home-office-card:focus-visible {
  outline: none !important;
  border-color: rgba(18, 20, 28, 0.08) !important;
  box-shadow: 0 4px 28px rgba(15, 16, 32, 0.08);
}
.zr-home-office-card__body {
  padding: clamp(1.15rem, 2vw, 1.45rem);
}
.zr-home-office-title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: -0.025em;
  color: #151536;
}
.zr-home-office-region {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.05rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: #E44FBF;
  font-size: 0.76rem;
  font-weight: 700;
}
.zr-home-office-region i {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  font-size: 0.95rem;
  color: #d946b9;
}
.zr-home-office-address {
  font-size: 0.9rem;
  line-height: 1.45;
  font-size: 13px;
}
.zr-home-office-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #4b52d4;
  font-weight: 600;
  font-size: 13px;
}
.zr-home-office-contact i {
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #E44FBF;
  background: rgba(124, 58, 237, 0.09);
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  font-size: 0.92rem;
}
.zr-home-office-contact a {
  color: #4b52d4;
}

.zr-home-office-more,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-solid.zr-home-hero-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    color 0.32s ease 0.1s,
    border-color 0.32s ease 0.1s,
    box-shadow 0.32s ease 0.1s;
}

.zr-home-office-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(88, 95, 231, 0.24);
  color: #cd5fba;
  text-decoration: none;
  background: transparent;
}


.zoo-body .btn.zr-btn-outline.zr-home-branches-all,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta {
  transform: none;
  border: 1px solid rgba(88, 95, 231, 0.24);
  box-shadow: none;
  color: #cd5fba !important;
  background: transparent !important;
}


.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta {
  transform: none;
  filter: none;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.96) !important;
  background: transparent !important;
  font-size: 0.8rem;
  font-weight: 400;
}

.zoo-body .btn.zr-btn-outline.zr-home-branches-all:hover,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all:focus-visible,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all:active,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:hover,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:focus-visible,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:active,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:hover,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:focus-visible,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:active,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:hover,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:focus-visible,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:active,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:hover,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:focus-visible,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:active {
  transform: none;
  filter: none;
  background: transparent !important;
}

.zr-home-office-more::before,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta::before,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all::before,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta::before,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta::before,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    #e44fbf 0%,
    #585fe7 42%,
    #7c3aed 58%,
    #585fe7 100%
  );
  background-size: 220% 100%;
  background-position: 100% 50%;
  opacity: 0;
  transition:
    opacity 0.36s ease 0.1s,
    background-position 0.75s ease 0.12s;
}

.zr-home-office-more i,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta i,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all i,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta i,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta i,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta i {
  color: currentColor;
  transition: color 0.32s ease 0.1s;
}


.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta.zr-home-hero-cta--ghost > i.material-symbols-rounded {
  width: auto;
  min-width: 1em;
  font-size: 1.08em;
  --zr-icon-opsz: 28;
}

.zr-home-office-more:hover::before,
.zr-home-office-more:focus-visible::before,
.zr-home-office-more:active::before,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:hover::before,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:focus-visible::before,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:active::before,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all:hover::before,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all:focus-visible::before,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all:active::before,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:hover::before,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:focus-visible::before,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:active::before,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:hover::before,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:focus-visible::before,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:active::before,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:hover::before,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:focus-visible::before,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:active::before {
  opacity: 1;
  background-position: 0% 50%;
}

.zr-home-office-more:hover,
.zr-home-office-more:focus-visible,
.zr-home-office-more:active {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(88, 95, 231, 0.22);
}

.zoo-body .btn.zr-btn-outline.zr-home-branches-all:hover,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all:focus-visible,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all:active,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:hover,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:focus-visible,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:active,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:hover,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:focus-visible,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:active,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:hover,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:focus-visible,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:active,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:hover,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:focus-visible,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:active {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 18px rgba(88, 95, 231, 0.22);
}

.zr-home-office-more:focus-visible,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:focus-visible,
.zoo-body .btn.zr-btn-outline.zr-home-branches-all:focus-visible,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:focus-visible,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:focus-visible,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:focus-visible {
  outline: 2px solid rgba(88, 95, 231, 0.55);
  outline-offset: 3px;
  box-shadow: 0 6px 18px rgba(88, 95, 231, 0.22);
}

.zr-home-office-more:focus:not(:focus-visible),
.zoo-body .btn.zr-btn-outline.zr-home-branches-all:focus:not(:focus-visible),
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:focus:not(:focus-visible) {
  outline: none;
}

.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:focus:not(:focus-visible),
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:focus:not(:focus-visible) {
  outline: none;
}


.zoo-body .btn.zr-btn-outline.zr-home-branches-all:focus:not(:focus-visible),
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:focus:not(:focus-visible),
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:focus:not(:focus-visible) {
  color: #cd5fba !important;
  border-color: rgba(88, 95, 231, 0.24);
  box-shadow: none;
  background: transparent !important;
  filter: none;
  transform: none;
}

.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:focus:not(:focus-visible),
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:focus:not(:focus-visible) {
  color: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
  background: transparent !important;
  filter: none;
  transform: none;
}

.zoo-body .btn.zr-btn-outline.zr-home-branches-all:focus:not(:focus-visible)::before,
.zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:focus:not(:focus-visible)::before,
#zrContactModal #zrSubmitBtn.btn.zr-btn-outline.zr-home-hero-cta:focus:not(:focus-visible)::before,
.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:focus:not(:focus-visible)::before,
.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:focus:not(:focus-visible)::before {
  opacity: 0;
  background-position: 100% 50%;
}

@media (prefers-reduced-motion: reduce) {
  .zr-home-office-more,
  .zr-home-office-more::before,
  .zr-home-office-more i,
  .zoo-body .btn.zr-btn-outline.zr-home-branches-all,
  .zoo-body .btn.zr-btn-outline.zr-home-branches-all::before,
  .zoo-body .btn.zr-btn-outline.zr-home-branches-all i,
  .zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta,
  .zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta::before,
  .zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta i,
  .zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta,
  .zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta::before,
  .zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta i,
  .zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta,
  .zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta::before,
  .zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta i {
    transition-duration: 0.01ms;
    transition-delay: 0s;
  }

  .zr-home-office-more:hover::before,
  .zr-home-office-more:focus-visible::before,
  .zr-home-office-more:active::before,
  .zoo-body .btn.zr-btn-outline.zr-home-branches-all:hover::before,
  .zoo-body .btn.zr-btn-outline.zr-home-branches-all:focus-visible::before,
  .zoo-body .btn.zr-btn-outline.zr-home-branches-all:active::before,
  .zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:hover::before,
  .zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:focus-visible::before,
  .zoo-body .btn.zr-btn-outline.zr-home-section-btn--outline-cta:active::before,
  .zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:hover::before,
  .zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:focus-visible::before,
  .zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta:active::before,
  .zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:hover::before,
  .zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:focus-visible::before,
  .zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.zr-btn-outline.zr-home-hero-cta:active::before {
    background-position: 50% 50%;
  }
}
.zr-hero-cta-row .btn.zr-home-hero-cta {
  justify-content: center;
  text-align: center;
}

.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-outline.zr-home-hero-cta {
  min-height: 2.9rem;
  padding-left: clamp(1.05rem, 2.5vw, 1.35rem);
  padding-right: clamp(1.05rem, 2.5vw, 1.35rem);
}

.zoo-body .zr-home-hero--split .zr-hero-cta-row .btn.zr-btn-solid.zr-home-hero-cta {
  padding-left: clamp(1.05rem, 2.5vw, 1.35rem);
  padding-right: clamp(1.05rem, 2.5vw, 1.35rem);
}

.zoo-body .zoo-header .navbar-collapse .zoo-cta.btn.btn-sm.zr-btn-outline.zr-home-hero-cta {
  min-height: 42px;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
}

.zr-home-branches-actions {
  display: flex;
  justify-content: center;
}
.zr-home-branches-all {
  min-height: 2.9rem;
  padding: 0.7rem 1.2rem;
}
.zr-home-branches-all i {
  --zr-icon-wght: 320;
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .zr-home-branches-actions {
    justify-content: space-around;
  }
}
.zr-home-cta-band {
  background: transparent;
    padding: 3rem 0rem 6rem 0rem;
}
.zr-footer-mega .zr-footer-heading {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.zr-footer-mega .zr-footer-links a {
  opacity: 0.88;
}
.zr-footer-mega .zr-footer-links a:hover {
  opacity: 1;
  text-decoration: underline !important;
}


.zr-footer-mega .zr-footer-contact-list li {
  align-items: flex-start;
  gap: 0.75rem;
}
  .zr-footer-mega .zr-footer-ic,
  .zr-footer-mega .zr-footer-ic_ {
    flex-shrink: 0;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 3px;
  }

.zr-footer-mega .zr-footer-ic .material-symbols-rounded,
.zr-footer-mega .zr-footer-ic_ .material-symbols-rounded {
  width: auto;
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  font-size: 1rem;
  line-height: 1;
  opacity: 0.92;
}

.zr-footer-mega .zr-footer-news-card {
  padding: 1.15rem 1.1rem 1.25rem;
  border-radius: 1.15rem;
  background:
    radial-gradient(ellipse 120% 90% at 95% 5%, rgba(217, 70, 185, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 90% 80% at 5% 95%, rgba(88, 95, 231, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
}

.zr-footer-mega .zr-footer-legal {
  padding-top: 0.15rem;
}

.zr-footer-mega .zr-footer-legal-sep {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 300;
  line-height: 1;
  user-select: none;
  padding-inline: 4.5mm;
}
.zr-footer-socials .zoo-footer__social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.15rem;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.zr-footer-socials .zoo-footer__social-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: translateY(-1px);
}
.zr-footer-socials .zr-social-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.zr-footer-news-btn {
  background: var(--zr-btn-gradient);
  border: 2px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.zr-footer-news-btn:hover {
  filter: brightness(1.04) saturate(1.05);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45);
}


.zr-motion-ready .zr-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.58s ease,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--zr-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.zr-motion-ready .zr-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.zr-motion-ready .zr-reveal--soft {
  transform: translate3d(0, 14px, 0);
}

.zr-motion-ready .zr-reveal--scale {
  transform: translate3d(0, 18px, 0) scale(0.985);
}

.zr-motion-ready .zr-reveal--scale.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.zr-motion-ready .zr-counting {
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .zr-motion-ready .zr-reveal,
  .zr-motion-ready .zr-reveal--soft,
  .zr-motion-ready .zr-reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
@media (max-width: 991.98px) {
  .zr-home-search-wrap {
    margin-top: 0;
  }
  .zr-home-house-line {
    opacity: 0.45;
  }
}
.carousel-inner {
    padding: 0 20px;
}
.zr-cta-body p {
    font-size: 12px;
}
.nav-link:focus-visible {
    box-shadow: none;
}

span.zr-home-blog-fav i {
    margin-top: 4px;
    font-size: 26px;
    color: #E44FBF;
}

.zr-home-offer-heart i {
    font-size: 30px;
    color: #E44FBF;
    margin-top: 5px;
}

.zr-home-search-below--mock {
  padding-top: clamp(1.6rem, 4vw, 2.6rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.zr-search-card.zr-search-card--homepage {
  --zr-search-border: rgba(218, 222, 235, 0.96);
  --zr-search-input-border: #e6e8ef;
  --zr-search-text: #232840;
  --zr-search-muted: #6b7285;
  --zr-search-placeholder: #939ab0;
  --zr-search-purple: #4f46e5;
  --zr-search-purple-soft: #6d5df4;
  --zr-search-magenta: #d946b9;
  --zr-home-ctrl-minh: 3.0625rem;
  font-size: 0.875rem;
  line-height: 1.45;
  border-radius: 22px;
  border: 1px solid rgba(223, 226, 238, 0.98) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95)),
    radial-gradient(ellipse 65% 60% at 12% 12%, rgba(228, 79, 191, 0.08), transparent 60%),
    radial-gradient(ellipse 65% 60% at 92% 18%, rgba(88, 95, 231, 0.08), transparent 60%);
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.10),
    0 4px 12px rgba(15, 23, 42, 0.04) !important;
  overflow: hidden;
}

.zr-search-card--homepage > .card-body {
  padding: clamp(1.15rem, 2vw, 1.75rem) clamp(1rem, 2.8vw, 2.05rem) 0 !important;
}

.zr-search-head--homepage {
  margin-bottom: 0;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  column-gap: clamp(0.65rem, 1.4vw, 1rem);
  row-gap: 0.55rem;
}

@media (min-width: 992px) {
  .zr-search-head--homepage {
    align-items: stretch;
  }
}

.zr-search-card--homepage .zr-search-deal-tabs.zr-search-deal-tabs--homepage {
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(100%, 46rem);
  padding: 0;
  gap: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--zr-search-input-border);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.035);
  overflow: hidden;
}

.zr-search-card--homepage .zr-search-deal-tabs .zr-search-deal-tab {
  position: relative;
  flex: 1 1 auto;
  min-width: 8.25rem;
  color: #535a71;
  border-radius: 0;
}

.zr-search-card--homepage .zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1%;
  background: rgba(224, 227, 238, 0.95);
  pointer-events: none;
  z-index: -1;
}

.zr-search-card--homepage .zr-search-deal-tabs .zr-search-deal-tab span {
  width: 100%;
  min-height: 49px;
  padding: 0.55rem 0.85rem;
  background: transparent;
  gap: 0.5rem;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(0.75rem, 0.68rem + 0.35vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}


.zr-search-card--homepage .zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab span {
  border-radius: 0;
}

.zr-search-card--homepage .zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab:first-child span {
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;
}

.zr-search-card--homepage .zr-search-deal-tabs.zr-search-deal-tabs--segmented .zr-search-deal-tab:last-child span {
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
}

.zr-search-card--homepage .zr-search-deal-tabs .zr-search-deal-tab span > .material-symbols-rounded {
  --zr-icon-wght: 320;
  --zr-icon-opsz: 22;
  font-size: 1.1rem;
  color: #7b8296;
}

.zr-search-card--homepage .zr-search-deal-tab input:checked + span,
.zr-search-card--homepage .zr-search-deal-tabs .zr-search-deal-tab.is-active span {
  color: #a83bb5;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(100deg, var(--zr-search-magenta), var(--zr-search-purple-soft)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 0 1px rgba(228, 79, 191, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.zr-search-card--homepage .zr-search-deal-tab input:checked + span > .material-symbols-rounded,
.zr-search-card--homepage .zr-search-deal-tabs .zr-search-deal-tab.is-active span > .material-symbols-rounded {
  color: #b73db9;
}

.zr-search-card--homepage .zr-search-offers-badge--homepage {
  flex: 0 0 auto;
  flex-shrink: 0;
  margin-left: 0;
  border: 0;
  background: transparent;
  padding: 0.25rem 0.2rem;
  gap: 0.65rem;
  box-shadow: none;
  align-self: center;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 992px) {
  .zr-search-card--homepage .zr-search-offers-badge--homepage {
    align-self: stretch;
  }
}

.zr-search-card--homepage .zr-search-offers-badge__icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e8f1;
  color: #697084;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.055);
}

.zr-search-card--homepage .zr-search-offers-badge__icon .material-symbols-rounded {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 22;
  font-size: 1.18rem;
}

.zr-search-card--homepage .zr-search-offers-badge__text strong {
  font-size: 0.8125rem;
  color: #4d5369;
}

.zr-search-card--homepage .zr-search-offers-badge__text small {
  font-size: 0.7rem;
  color: #8b92a3;
}

.zr-search-card--homepage .zr-search-primary-grid {
  display: grid;
  grid-template-columns: minmax(280px, 2.7fr) minmax(190px, 1.55fr) repeat(4, minmax(118px, 1fr));
  gap: clamp(0.6rem, 1.2vw, 0.95rem);
  align-items: stretch;
}


.zr-search-card--homepage .zr-search-secondary-grid.row {
  --bs-gutter-x: clamp(0.6rem, 1.2vw, 0.95rem);
  --bs-gutter-y: clamp(0.6rem, 1.2vw, 0.95rem);
}

.zr-search-card--homepage .zr-search-field {
  position: relative;
  display: flex;
  align-items: center;
  /* min-height: clamp(4.65rem, 4.9vw, 5.1rem); */
  height: 100%;
  border: 1px solid var(--zr-search-input-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.025);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.zr-search-card--homepage .zr-search-field--mini {
  min-height: clamp(4rem, 4.2vw, 4.35rem);
}

.zr-search-card--homepage .zr-search-field:focus-within {
  border-color: rgba(109, 93, 244, 0.42);
  box-shadow: 0 0 0 1px rgba(109, 93, 244, 0.1), 0 10px 24px rgba(15, 23, 42, 0.05);
}

.zr-search-card--homepage .zr-search-field__icon {
  width: 2.65rem;
  min-width: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7f8799;
}

.zr-search-card--homepage .zr-search-field__icon--brand {
  color: #ad3ab6;
}

.zr-search-card--homepage .zr-search-field__icon .material-symbols-rounded {
  --zr-icon-wght: 320;
  --zr-icon-opsz: 22;
  font-size: 1.15rem;
}

.zr-search-card--homepage .zr-search-field__body {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  padding: 0.55rem 0.6rem 0.55rem 0;
}

.zr-search-card--homepage .zr-search-field__label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #5c6377;
  line-height: 1.15;
}

.zr-search-card--homepage .zr-search-field__input,
.zr-search-card--homepage .zr-search-field__select {
  width: 100%;
  min-height: 1.5rem !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: inherit;
  font-weight: 600;
  color: var(--zr-search-text);
  line-height: 1.3;
}

.zr-search-card--homepage .zr-search-field__input::placeholder {
  color: var(--zr-search-placeholder);
  opacity: 1;
}

.zr-search-card--homepage .zr-search-field__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 1.5rem !important;
  color: #9aa1b3;
  cursor: pointer;
}

.zr-search-card--homepage .zr-search-field__geo {
  width: 2.65rem;
  min-width: 2.65rem;
  height: 100%;
  border: 0;
  background: transparent;
  color: #778094;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zr-search-card--homepage .zr-search-field__geo .material-symbols-rounded {
  --zr-icon-wght: 320;
  font-size: 1.12rem;
}

.zr-search-card--homepage .zr-search-field__input.zr-search-control {
  min-height: var(--zr-home-ctrl-minh) !important;
  padding: 0.5rem 0.65rem !important;
  border: 1px solid var(--zr-search-input-border) !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  color: var(--zr-search-text);
}

.zr-search-card--homepage .zr-search-field__input.zr-search-control:hover {
  border-color: #dce0ea !important;
}

.zr-search-card--homepage .zr-search-field__input.zr-search-control:focus {
  border-color: rgba(109, 93, 244, 0.55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 0.2rem rgba(109, 93, 244, 0.14) !important;
  outline: 0;
}

.zr-search-card--homepage .zr-search-field__input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.zr-search-card--homepage .zr-search-field__input[type="number"]::-webkit-outer-spin-button,
.zr-search-card--homepage .zr-search-field__input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.zr-search-cat--homepage {
  gap: clamp(0.6rem, 1.4vw, 1rem) !important;
}

.zr-search-card--homepage .zr-search-cat__btn {
  min-height: 48px;
  min-width: 8.75rem;
  border-radius: 14px !important;
  padding: 0.55rem 1rem !important;
  font-size: 0.8125rem;
  font-weight: 750;
  color: #62697b !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid var(--zr-search-input-border) !important;
  gap: 0.5rem;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.025);
}

.zr-search-card--homepage .zr-search-cat__btn .zr-search-cat__ic,
.zr-search-card--homepage .zr-search-cat__btn .zr-search-cat__check {
  --zr-icon-wght: 320;
  --zr-icon-opsz: 22;
  font-size: 1.1rem;
  color: #81889b;
}

.zr-search-card--homepage .zr-search-cat__btn--all .zr-search-cat__check {
  display: none;
}

.zr-search-card--homepage .zr-search-cat__btn--all.is-active .zr-search-cat__check {
  display: inline-flex;
}

.zr-search-card--homepage .zr-search-cat__btn.is-active {
  color: #6d4eda !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(100deg, var(--zr-search-magenta), var(--zr-search-purple-soft)) border-box !important;
  border: 2px solid transparent !important;
  box-shadow: 0 0 0 1px rgba(109, 93, 244, 0.08), 0 10px 26px rgba(109, 93, 244, 0.08);
}

.zr-search-card--homepage .zr-search-cat__btn.is-active .zr-search-cat__ic,
.zr-search-card--homepage .zr-search-cat__btn.is-active .zr-search-cat__check {
  color: #a83bb5;
}

.zr-search-divider--homepage {
  border-top-color: #e6e9f2;
}

.zr-search-advanced-toggle-wrap--homepage {
  width: 100%;
  margin-top: 0.65rem !important;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(230, 233, 242, 0.92);
}


.zr-search-card--homepage #zrSearchCardBodyCollapse.collapsing {
  transition: height 0.38s ease;
}

.zr-search-card--homepage #zrSearchCardBodyCollapse.zr-search-card-body-collapse--rm.collapsing {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .zr-search-card--homepage #zrSearchCardBodyCollapse.collapsing {
    transition: none;
  }
}

.zr-search-head--homepage-deal-only {
  width: 100%;
}

.zr-search-card--homepage .zr-search-advanced-toggle.is-expanded .zr-search-advanced-toggle__chevron {
  transform: none;
}

.zr-search-card--homepage .zr-search-advanced-toggle.btn-link {
  gap: 0.45rem;
  color: #ad3ab6 !important;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  min-height: 2rem !important;
  padding-left: 0.2rem !important;
  margin-bottom: 0.65rem;
}

.zr-search-card--homepage .zr-search-advanced-toggle.btn-link[aria-expanded="true"] {
  margin-bottom: -0.95rem;
}

.zr-search-card--homepage .zr-search-advanced-toggle__chevron {
  order: -1;
  --zr-icon-wght: 500;
  font-size: 1.15rem;
}

.zr-search-card--homepage .zr-search-advanced__inner--homepage {
  border-top: 0;
}

.zr-search-card--homepage .zr-search-field--select::after {
  content: none;
  display: none;
}


.zr-search-card--homepage .zr-search-field--select .zr-search-field__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.35rem;
  grid-template-rows: auto minmax(var(--zr-home-ctrl-minh), auto);
  column-gap: 0.3rem;
  row-gap: 0.28rem;
  align-items: center;
  padding: 0.55rem 0.5rem 0.55rem 0;
}

.zr-search-card--homepage .zr-search-field--select .zr-search-field__label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.zr-search-card--homepage .zr-search-field--select .zr-search-field__body::after {
  content: "";
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: center;
  width: 1.15rem;
  height: 1.15rem;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%237881a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 100% no-repeat;
  opacity: 0.95;
}

.zr-search-card--homepage .zr-search-field--select .zr-search-field__select.zr-search-control {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  min-height: var(--zr-home-ctrl-minh) !important;
  padding: 0.5rem 0.55rem !important;
  margin: 0;
  font-size: inherit;
  font-weight: 600;
  line-height: 1.3;
  color: var(--zr-search-text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff !important;
  background-image: none !important;
  border: 1px solid var(--zr-search-input-border) !important;
  border-radius: 10px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.zr-search-card--homepage .zr-search-field--select .zr-search-field__select.zr-search-control:hover {
  border-color: #dce0ea !important;
}

.zr-search-card--homepage .zr-search-field--select .zr-search-field__select.zr-search-control:invalid {
  color: var(--zr-search-muted);
}

.zr-search-card--homepage .zr-search-field--select .zr-search-field__select.zr-search-control:focus,
.zr-search-card--homepage .zr-search-field--select .zr-search-field__select.zr-search-control:focus-visible {
  border-color: rgba(109, 93, 244, 0.55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 0.2rem rgba(109, 93, 244, 0.14) !important;
  outline: 0;
}

.zr-search-card--homepage .zr-search-field--select .zr-search-field__select.zr-search-control:disabled {
  color: var(--zr-search-muted);
  cursor: not-allowed;
  opacity: 0.72;
  background-color: #f5f6fb !important;
  -webkit-text-fill-color: var(--zr-search-muted);
}

.zr-search-card--homepage .zr-search-adv-select {
  position: relative;
  min-height: var(--zr-home-ctrl-minh);
  border: 1px solid var(--zr-search-input-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.02);
  overflow: visible;
}

.zr-search-card--homepage .zr-search-adv-select:focus-within {
  border-color: rgba(109, 93, 244, 0.48);
  box-shadow: 0 0 0 0.22rem rgba(109, 93, 244, 0.1);
}

.zr-search-card--homepage .zr-search-adv-select::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  pointer-events: none;
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%237881a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 100% no-repeat;
}

.zr-search-card--homepage .zr-search-adv-select__ic {
  left: 0.85rem;
  color: #7f8799;
}

.zr-search-card--homepage .zr-search-adv-select__ic .material-symbols-rounded {
  --zr-icon-wght: 320;
  --zr-icon-opsz: 22;
  font-size: 1.1rem;
}

.zr-search-card--homepage .zr-search-adv-select__sel.form-select,
.zr-search-card--homepage .zr-search-adv-select .zr-search-adv-select__sel.zr-search-control {
  --bs-form-select-bg-img: none;
  min-height: var(--zr-home-ctrl-minh) !important;
  padding: 0.55rem 2.5rem 0.55rem 2.65rem !important;
  color: var(--zr-search-text);
  font-weight: 600;
  font-size: inherit;
  line-height: 1.3;
  background-color: transparent !important;
  background-image: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
}

.zr-search-card--homepage .zr-search-adv-select__sel.zr-search-control:invalid {
  color: var(--zr-search-muted);
}

.zr-search-card--homepage .zr-search-adv-select__sel.zr-search-control:focus,
.zr-search-card--homepage .zr-search-adv-select__sel.zr-search-control:focus-visible {
  outline: 2px solid rgba(109, 93, 244, 0.42);
  outline-offset: 2px;
  border-radius: 8px;
}

.zr-search-card--homepage .zr-search-adv-select__sel.zr-search-control:disabled {
  opacity: 0.58 !important;
  color: var(--zr-search-muted) !important;
  cursor: not-allowed;
  background-color: rgba(243, 244, 249, 0.65) !important;
  -webkit-text-fill-color: var(--zr-search-muted);
}

.zr-search-card--homepage .zr-search-adv-select:has(.zr-search-adv-select__sel:disabled) {
  background-color: #f5f6fb;
  border-color: #e4e7f0;
}

.zr-search-card--homepage .zr-search-adv-select:has(.zr-search-adv-select__sel:disabled)::after {
  opacity: 0.45;
}

.zr-search-card--homepage .zr-search-footer--homepage {
  margin: clamp(1.25rem, 2.4vw, 1.75rem) calc(clamp(1rem, 2.8vw, 2.05rem) * -1) 0;
  padding: 1.05rem clamp(1rem, 2.8vw, 2.05rem) 1.05rem;
  border-top: 1px solid #e6e9f2;
  background: linear-gradient(180deg, rgba(250, 251, 255, 0.86), rgba(255, 255, 255, 0.96));
}

.zr-search-card--homepage .zr-search-footer--homepage .zr-search-footer__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.45rem 1rem !important;
  border: 1px solid rgba(223, 228, 240, 0.98) !important;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: #5b6377 !important;
  font-size: 0.8125rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-decoration: none !important;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.zr-search-card--homepage .zr-search-footer--homepage .zr-search-footer__reset:hover {
  border-color: rgba(109, 93, 244, 0.38) !important;
  color: var(--zr-search-purple-soft) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 0 0 1px rgba(109, 93, 244, 0.06);
}

.zr-search-card--homepage .zr-search-footer--homepage .zr-search-footer__reset:focus-visible {
  outline: 2px solid rgba(109, 93, 244, 0.35);
  outline-offset: 2px;
}

.zr-search-card--homepage .zr-search-footer--homepage .zr-search-footer__reset .material-symbols-rounded {
  --zr-icon-wght: 420;
  font-size: 1.1rem;
  color: #8b93a8;
  transition: color 0.18s ease;
}

.zr-search-card--homepage .zr-search-footer--homepage .zr-search-footer__reset:hover .material-symbols-rounded {
  color: var(--zr-search-purple-soft);
}

.zr-search-card--homepage .zr-search-submit {
  min-height: 52px;
  min-width: min(100%, 22rem);
  border-radius: 12px;
  padding-inline: 1.65rem;
  font-size: 0.9375rem;
  background: linear-gradient(100deg, #c236a7 0%, #a943d3 45%, #4f5df2 100%);
  box-shadow: 0 14px 34px rgba(79, 93, 242, 0.28), 0 10px 26px rgba(194, 54, 167, 0.14);
}

.zr-search-card--homepage .zr-search-submit .material-symbols-rounded {
  font-size: 1.2rem;
}

.zr-search-card--homepage .zr-search-submit__arrow {
  margin-left: 0.65rem;
}

.zr-search-card--homepage .zr-search-submit-hint {
  width: 100%;
  padding-top: 0.1rem;
  text-align: center !important;
  font-size: 0.75rem !important;
  line-height: 1.35 !important;
  color: #7b8294 !important;
}

@media (max-width: 1399.98px) {
  .zr-search-card--homepage .zr-search-primary-grid {
    grid-template-columns: minmax(280px, 2.2fr) minmax(170px, 1.25fr) repeat(4, minmax(108px, 0.9fr));
  }

  .zr-search-card--homepage .zr-search-deal-tabs .zr-search-deal-tab {
    min-width: 7.5rem;
  }
}

@media (max-width: 1199.98px) {
  .zr-search-card--homepage .zr-search-primary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zr-search-primary-grid__item--locality,
  .zr-search-primary-grid__item--type {
    grid-column: span 2;
  }

  .zr-search-card--homepage .zr-search-deal-tabs.zr-search-deal-tabs--homepage {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .zr-search-card--homepage .zr-search-offers-badge--homepage {
    flex: 0 1 auto;
    flex-basis: 100%;
    justify-content: center;
    margin-left: 0;
    max-width: 100%;
    align-self: center;
    padding-top: 0.15rem;
  }
}

@media (min-width: 1200px) {
  .zr-search-card--homepage .zr-search-head--homepage .zr-search-offers-badge--homepage {
    margin-left: auto;
  }
}

@media (max-width: 767.98px) {
  .zr-search-card.zr-search-card--homepage {
    border-radius: 18px;
  }

  .zr-search-card--homepage > .card-body {
    padding: 1rem 0.85rem 0 !important;
  }

  .zr-search-card--homepage .zr-search-primary-grid {
    grid-template-columns: 1fr;
  }

  .zr-search-primary-grid__item--locality,
  .zr-search-primary-grid__item--type {
    grid-column: auto;
  }

  .zr-search-card--homepage .zr-search-field {
    min-height: 4rem;
  }

  .zr-search-card--homepage .zr-search-field--mini {
    min-height: 3.85rem;
  }

  .zr-search-card--homepage .zr-search-deal-tabs .zr-search-deal-tab {
    min-width: 50%;
  }

  .zr-search-card--homepage .zr-search-deal-tabs .zr-search-deal-tab span {
    min-height: 46px;
    font-size: 0.8125rem;
  }

  .zr-search-card--homepage .zr-search-cat__btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
  }

  .zr-search-card--homepage .zr-search-footer--homepage {
    margin-inline: -0.85rem;
    padding-inline: 0.85rem;
  }

  .zr-search-card--homepage .zr-search-footer__right,
  .zr-search-card--homepage .zr-search-footer__cta-row,
  .zr-search-card--homepage .zr-search-submit {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .zr-search-card--homepage .zr-search-cat__btn,
  .zr-search-card--homepage .zr-search-deal-tabs .zr-search-deal-tab {
    flex-basis: 100%;
  }
}


.zr-listing-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fe 46%, #ffffff 100%);
  overflow: visible;
}

.zr-listing-hero {
  min-height: clamp(520px, 68vh, 760px);
  display: flex;
  align-items: center;
  color: #fff;
  background: #08091b;
  isolation: isolate;
}

.zr-listing-hero__bg,
.zr-listing-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.zr-listing-hero__bg {
  background-size: cover;
  background-position: center right;
}

.zr-listing-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 5, 24, 0.92) 0%, rgba(19, 14, 52, 0.7) 34%, rgba(19, 14, 52, 0.28) 66%, rgba(3, 5, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 5, 24, 0.4) 0%, rgba(3, 5, 24, 0.04) 42%, rgba(3, 5, 24, 0.82) 100%);
}

.zr-listing-hero__inner {
  position: relative;
  padding-top: clamp(4.5rem, 9vw, 7rem);
  padding-bottom: clamp(7rem, 14vw, 11rem);
}

.zr-listing-hero__copy {
  width: min(100%, 45rem);
}

.zr-listing-hero__overline {
  color: rgba(255, 255, 255, 0.72);
}

.zr-listing-hero__title {
  margin: 0;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(2.25rem, 5.2vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  color: #fff;
}

.zr-listing-hero__title span {
  background: var(--zr-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.zr-listing-hero__lead {
  max-width: 35rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}

.zr-listing-hero__actions,
.zr-listing-hero__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.zr-listing-hero__actions {
  margin-top: 2rem;
}

.zr-listing-hero__btn {
  min-width: min(100%, 15rem);
}

.zr-listing-hero__btn--ghost {
  color: #fff !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) padding-box,
    linear-gradient(100deg, rgba(255, 255, 255, 0.95), rgba(228, 79, 191, 0.9), rgba(88, 95, 231, 0.95)) border-box !important;
}

.zr-listing-hero__quick {
  margin-top: 2.4rem;
}

.zr-nemovitosti-hero .zr-listing-hero__quick {
  margin-top: 1.25rem;
}

/* Hero photo visible through overlays (same treatment as `.zoo-kontakt-hero`). */
.zr-nemovitosti-hero.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__bg-house {
  /* opacity: 1; */
  filter: none;
  -webkit-filter: none;
  transform: none;
  background-size: cover;
  /* background-position: 72% center; */
}

.zr-nemovitosti-hero.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__bg-gradient {
  background: linear-gradient(
    118deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(88, 95, 231, 0.42) 48%,
    rgba(228, 79, 191, 0.28) 100%
  );
}

.zr-nemovitosti-hero.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__bg-scrim {
  background: linear-gradient(
    100deg,
    rgba(10, 6, 22, 0.48) 0%,
    rgba(10, 6, 22, 0.26) 42%,
    rgba(10, 6, 22, 0.08) 70%,
    rgba(10, 6, 22, 0.22) 100%
  );
}

@media (max-width: 991.98px) {
  .zr-nemovitosti-hero.zr-home-hero.zr-split-hero.zr-home-hero--split .zr-home-hero__bg-house {
    filter: none;
    -webkit-filter: none;
    opacity: 1;
    background-position: 68% center;
  }
}

.zr-listing-quick {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(9, 12, 36, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
}

.zr-listing-quick:hover,
.zr-listing-quick.is-active {
  border-color: rgba(228, 79, 191, 0.85);
  color: #fff;
  background: rgba(124, 58, 237, 0.28);
}

.zr-listing-search-section {
  position: relative;
  z-index: 3;
  margin-top: 0;
}

/* Legacy style_list.css positions .filter-container absolutely — reset on listing page */
.zr-listing-page .zr-listing-search-section .filter-container {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: none;
  margin: 0;
  padding: 0;
  z-index: auto;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.zr-listing-search {
  border-radius: 12px !important;
}

.zr-listing-search > .card-body {
  padding: clamp(1rem, 2.2vw, 2rem) !important;
}

.zr-listing-search__intro {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.zr-listing-search__intro .zr-listing-search__head {
  margin-bottom: 0 !important;
}

.zr-listing-filter-panel {
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--zr-search-input-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.035);
}

.zr-listing-filter-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.95fr) minmax(220px, 1.2fr) minmax(220px, 1.2fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

.zr-listing-filter-col {
  min-width: 0;
}

.zr-listing-filter-col__title {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #5c6377;
  line-height: 1.2;
}

.zr-listing-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.zr-listing-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 4.4rem;
  padding: 0.5rem 0.4rem 0.5rem;
  border: 1px solid rgba(226, 230, 240, 0.95);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 8px 24px rgba(15, 23, 42, 0.04);
  color: #5c6377;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.zr-listing-type-card:hover {
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.98) inset, 0 12px 28px rgba(109, 93, 244, 0.08);
  transform: translateY(-1px);
}

.zr-listing-type-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #f3f4f8 0%, #eceff6 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.zr-listing-type-card__ic {
  --zr-icon-wght: 280;
  --zr-icon-opsz: 24;
  font-size: 1.45rem;
  color: #7b8396;
  transition: color 0.2s ease;
}

.zr-listing-type-card__label {
  font-size: 0.8125rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.zr-listing-type-card__check {
  display: none;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.28);
  --zr-icon-wght: 700;
  font-size: 0.72rem;
  color: #fff;
}

.zr-listing-type-card.is-active {
  color: #6d4eda;
  background: linear-gradient(180deg, rgba(252, 248, 255, 0.98) 0%, rgba(245, 240, 255, 0.92) 100%);
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, rgba(252, 248, 255, 0.98) 0%, rgba(245, 240, 255, 0.92) 100%) padding-box,
    linear-gradient(120deg, rgba(228, 79, 191, 0.85), rgba(109, 93, 244, 0.95)) border-box;
  box-shadow:
    0 0 0 1px rgba(109, 93, 244, 0.06),
    0 14px 32px rgba(109, 93, 244, 0.12);
  transform: none;
}

.zr-listing-type-card.is-active .zr-listing-type-card__icon-wrap {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.16) 0%, rgba(99, 102, 241, 0.14) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 6px 16px rgba(109, 93, 244, 0.12);
}

.zr-listing-type-card.is-active .zr-listing-type-card__ic {
  color: #8b3fd6;
  --zr-icon-wght: 420;
}

.zr-listing-type-card.is-active .zr-listing-type-card__check {
  display: inline-flex;
}

.zr-listing-range-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.zr-listing-range-input__label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #8b92a3;
}

.zr-listing-range-input__field {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--zr-search-input-border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.zr-listing-range-input__control {
  flex: 1 1 auto;
  min-width: 0;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0.45rem 0.55rem !important;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #4d5369;
}

.zr-listing-range-input__control--price {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.zr-listing-range-input__control:focus {
  outline: 0;
}

.zr-listing-range-input__unit {
  padding: 0 0.65rem 0 0.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9aa1b3;
  white-space: nowrap;
}

.zr-listing-dual-slider {
  position: relative;
  height: 1.35rem;
  margin: 0.15rem 0 0.85rem;
}

.zr-listing-dual-slider__track,
.zr-listing-dual-slider__fill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 0.35rem;
  border-radius: 999px;
}

.zr-listing-dual-slider__track {
  left: 0;
  right: 0;
  background: #e8ebf3;
}

.zr-listing-dual-slider__fill {
  background: linear-gradient(90deg, #a855f7 0%, #6366f1 100%);
}

.zr-listing-dual-slider__input {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin: 0;
  transform: translateY(-50%);
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
  height: 1.35rem;
}

.zr-listing-dual-slider__input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
  cursor: pointer;
  pointer-events: auto;
}

.zr-listing-dual-slider__input::-moz-range-thumb {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
  cursor: pointer;
  pointer-events: auto;
}

.zr-listing-dual-slider__input--max {
  z-index: 2;
}

.zr-listing-range-presets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.zr-listing-range-presets__btn {
  min-height: 34px;
  padding: 0.35rem 0.45rem;
  border: 1px solid var(--zr-search-input-border);
  border-radius: 999px;
  background: #fff;
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background-color 0.18s ease;
}

.zr-listing-range-presets__btn:hover,
.zr-listing-range-presets__btn.is-active {
  border-color: rgba(168, 85, 247, 0.45);
  color: #7c3aed;
  background: rgba(250, 245, 255, 0.85);
}

.zr-listing-more-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-top: 1px solid #e6e9f2;
  border-radius: 0;
  background: transparent;
  color: #ad3ab6 !important;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none !important;
}

.zr-listing-more-toggle__chevron {
  --zr-icon-wght: 500;
  font-size: 1.15rem;
  transition: transform 0.22s ease;
}

.zr-listing-more-toggle[aria-expanded="true"] .zr-listing-more-toggle__chevron {
  transform: rotate(180deg);
}

.zr-listing-advanced {
  border-top: 1px solid #e6e9f2;
  margin-top: 0.25rem;
  padding-top: 1rem;
}

.zr-search-card .zr-search-footer.zr-search-footer--listing-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex-wrap: nowrap;
}

.zr-search-card .zr-search-footer.zr-search-footer--listing-compact .zr-search-footer__split-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  box-sizing: border-box;
}

.zr-search-card .zr-search-footer.zr-search-footer--listing-compact .zr-search-footer__reset {
  justify-content: center;
}

.zr-search-card .zr-search-footer.zr-search-footer--listing-compact .zr-search-submit--with-count {
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 48px;
  min-height: 48px !important;
  max-height: 48px;
  justify-content: center;
  gap: 0.5rem !important;
  padding: 0 0.75rem !important;
  font-size: 0.8125rem;
  line-height: 1;
  border-width: 0;
  box-shadow:
    0 10px 28px rgba(99, 102, 241, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.zr-search-submit--with-count > span:not(.zr-search-submit__count) {
  flex: 0 1 auto;
  text-align: center;
}

.zr-search-submit__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  margin-left: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.24);
  font-size: 0.8125rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  flex-shrink: 0;
}

.zr-search-card .zr-search-footer.zr-search-footer--listing-compact .zr-search-submit__count {
  min-width: 2.25rem;
  margin-left: 0.15rem;
  padding: 0.28rem 0.55rem;
  font-size: 0.75rem;
}

.zr-listing-search-head {
  display: grid;
  width: 100%;
  gap: 0.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zr-listing-deal-btn {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.zr-listing-deal-btn span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 4rem;
  padding: 0.5rem 0.45rem;
  border: 1px solid var(--zr-search-input-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.025);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  color: #535a71;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.zr-listing-deal-btn span > .material-symbols-rounded {
  --zr-icon-wght: 320;
  --zr-icon-opsz: 22;
  font-size: 1.15rem;
  color: #7b8296;
  flex-shrink: 0;
}

.zr-listing-deal-btn:hover span {
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 10px 24px rgba(109, 93, 244, 0.08);
  transform: translateY(-1px);
}

.zr-listing-deal-btn input:focus-visible + span {
  outline: 2px solid rgba(99, 102, 241, 0.45);
  outline-offset: 2px;
}

.zr-listing-deal-btn input:checked + span {
  color: #a83bb5;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(100deg, var(--zr-search-magenta), var(--zr-search-purple-soft)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 0 1px rgba(228, 79, 191, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.zr-listing-deal-btn input:checked + span > .material-symbols-rounded {
  color: #b73db9;
}

.zr-listing-search-head__locality {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  margin-left: 0;
}

@media (min-width: 768px) {
  .zr-listing-search-head {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .zr-listing-deal-btn span {
    flex-direction: row;
    min-height: 49px;
    padding: 0.55rem 0.65rem;
    font-size: clamp(0.72rem, 0.66rem + 0.22vw, 0.8125rem);
  }
}

@media (min-width: 992px) {
  .zr-listing-search-head {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(20rem, 2.15fr);
    align-items: stretch;
    gap: 0.65rem;
  }

  .zr-listing-search-head__locality {
    grid-column: auto;
    min-width: 0;
  }

  .zr-listing-deal-btn span {
    padding-inline: 0.75rem;
    font-size: clamp(0.72rem, 0.68rem + 0.15vw, 0.8125rem);
  }

  .zr-listing-locality-input {
    min-height: 52px;
    padding-inline: 1rem 0.95rem;
  }

  .zr-listing-locality-input__field {
    font-size: 0.875rem;
  }
}

@media (min-width: 1200px) {
  .zr-listing-search-head {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(24rem, 2.5fr);
    gap: 0.75rem;
  }

  .zr-listing-deal-btn span {
    padding-inline: 0.85rem;
    font-size: 0.8125rem;
  }
}

.zr-listing-locality-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 52px;
  padding: 0 0.95rem 0 0.8rem;
  border: 1px solid var(--zr-search-input-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.025);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.zr-listing-locality-input:focus-within {
  border-color: rgba(109, 93, 244, 0.42);
  box-shadow: 0 0 0 1px rgba(109, 93, 244, 0.1), 0 10px 24px rgba(15, 23, 42, 0.05);
}

.zr-listing-locality-input__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ad3ab6;
}

.zr-listing-locality-input__icon .material-symbols-rounded {
  --zr-icon-wght: 320;
  --zr-icon-opsz: 22;
  font-size: 1.15rem;
}

.zr-listing-locality-input__field {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-height: 2.35rem !important;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4d5369;
  line-height: 1.3;
}

.zr-listing-locality-input__field:focus {
  outline: 0;
}

.zr-listing-locality-input__field::placeholder {
  color: #9aa1b3;
  opacity: 1;
}

.zr-listing-search .zr-search-head--homepage-deal-only .zr-search-deal-tabs--homepage {
  max-width: 100%;
}

.zr-listing-secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1rem);
}

.zr-search-adv-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.zr-search-adv-field__label {
  margin: 0;
  padding-left: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #5c6377;
  line-height: 1.2;
}

.zr-search-adv-field .zr-search-adv-select {
  flex: 1 1 auto;
}

.zr-search-adv-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: var(--zr-home-ctrl-minh, 52px);
  height: 100%;
  padding: 0.65rem 0.85rem 0.65rem 1rem;
  border: 1px solid var(--zr-search-input-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.02);
}

.zr-search-adv-toggle__copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.zr-search-adv-toggle__label {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #5c6377;
  line-height: 1.2;
}

.zr-search-adv-toggle__hint {
  font-size: 0.72rem;
  color: #8b92a3;
  line-height: 1.25;
}

.zr-search-adv-toggle .form-check-input {
  width: 2.5rem;
  height: 1.35rem;
  margin: 0;
  cursor: pointer;
}

.zr-search-adv-toggle .form-check-input:checked {
  background-color: #8b5cf6;
  border-color: #8b5cf6;
}

.zr-search-saved-promo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--zr-home-ctrl-minh, 52px);
  height: 100%;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(250, 245, 255, 0.95) 0%, rgba(238, 242, 255, 0.98) 100%);
  box-shadow: 0 8px 22px rgba(109, 93, 244, 0.06);
}

.zr-search-saved-promo__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(139, 92, 246, 0.18);
  color: #a855f7;
  flex-shrink: 0;
}

.zr-search-saved-promo__icon .material-symbols-rounded {
  --zr-icon-wght: 420;
  font-size: 1.15rem;
}

.zr-search-saved-promo__text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.zr-search-saved-promo__text strong {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #5c6377;
  line-height: 1.2;
}

.zr-search-saved-promo__text small {
  font-size: 0.72rem;
  color: #8b92a3;
  line-height: 1.25;
}

.zr-search-submit-hint--listing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  text-align: center;
  font-size: 0.78rem !important;
  line-height: 1.35;
  color: #9ca3af !important;
}

.zr-search-submit-hint--listing .material-symbols-rounded {
  --zr-icon-wght: 400;
  font-size: 0.95rem;
  color: #b4bac7;
}

.zr-search-adv-field--toggle,
.zr-search-adv-field--promo {
  gap: 0;
  justify-content: flex-end;
}

.zr-search-adv-field--toggle .zr-search-adv-toggle,
.zr-search-adv-field--promo .zr-search-saved-promo {
  height: 100%;
}

.zr-listing-search .zr-search-advanced-toggle[aria-expanded="true"] .zr-search-advanced-toggle__chevron {
  transform: rotate(180deg);
}

.zr-listing-save-search {
  flex: 0 0 auto;
  min-width: min(100%, 12rem);
  min-height: 52px;
  border-radius: 12px;
}

.zr-listing-search .zr-search-footer__cta-row {
  gap: 0.8rem;
  justify-content: flex-end;
}

.zr-search-card .zr-search-footer.zr-search-footer--listing-compact .zr-search-submit {
  flex: 1 1 auto;
}

.zr-listing-results {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  overflow: visible;
  scroll-margin-top: 1cm;
}

.zr-listing-results .container-xl {
  overflow: visible;
}

.zr-listing-search__head {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.zoo-kontakt-explorer__head.zr-listing-results__head {
  /*align-items: flex-end;*/
}

.zr-listing-results__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 100;
  overflow: visible;
}

.zr-listing-results__head-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.zr-listing-results__head .count-offers {
  font-variant-numeric: tabular-nums;
}

.zr-listing-results__head .count-offers-map-hint {
  font-size: 0.72em;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

.zr-listing-card-col--no-map .zr-home-offer-card {
  outline: 1px dashed rgba(100, 116, 139, 0.35);
  outline-offset: -1px;
}

.zr-listing-results__head-copy .zoo-kontakt-explorer__eyebrow {
  display: block;
  margin: 0 0 0.65rem;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #94a3b8;
}

.zr-listing-results__head-copy .zoo-kontakt-explorer__title {
  margin: 0 0 0.85rem;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .zr-listing-results__head-copy .zoo-kontakt-explorer__title .count-offers,
  .zr-listing-results__head-copy .zoo-kontakt-explorer__title .count-offers-label {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
  }
}

.zr-listing-results__head-copy .zoo-kontakt-explorer__lead {
  max-width: 42rem;
  margin: 0;
  color: #64748b;
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  line-height: 1.6;
}

.zr-listing-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-end;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
  overflow: visible;
}

.zr-listing-sort-wrap {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.zr-listing-sort-wrap.is-open {
  z-index: 110;
}

.zr-listing-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #e6e8f2 !important;
  background: #fff !important;
  color: #3f4270 !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 24px rgba(17, 17, 42, 0.05);
  font-weight: 600;
  white-space: nowrap;
}

.zr-listing-sort__label {
  font-weight: 800;
  color: #252944;
}

.zr-listing-sort__chevron {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.zr-listing-sort-wrap.is-open .zr-listing-sort__chevron {
  transform: rotate(180deg);
}

.zr-listing-sort-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 120;
  min-width: 14.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border: 1px solid #e6e8f2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 17, 42, 0.12);
}

.zr-listing-sort-wrap.is-open .zr-listing-sort-menu {
  display: block !important;
}

.zr-listing-sort-menu > li {
  display: block;
  margin: 0;
  padding: 0;
}

.zr-listing-sort-menu[hidden] {
  display: none !important;
}

.zr-listing-sort-option {
  display: block;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #3f4270;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.zr-listing-sort-option:hover,
.zr-listing-sort-option:focus-visible {
  background: #f4f5fb;
  color: #252944;
  outline: none;
}

.zr-listing-sort-option.is-active {
  color: #fff;
  background: linear-gradient(100deg, #7c3aed 0%, #585fe7 100%);
}

.zr-listing-view {
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.25rem;
  border: 1px solid #e6e8f2;
  border-radius: 8px;
  background: #fff;
}

.zr-listing-view__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2.05rem;
  height: 2.05rem;
  padding: 0 0.72rem;
  border: 0;
  border-radius: 7px;
  color: #4b52d4;
  background: transparent;
  font-weight: 800;
}

.zr-listing-view__btn.is-active {
  color: #fff;
  background: linear-gradient(100deg, #7c3aed 0%, #585fe7 100%);
  box-shadow: 0 10px 22px rgba(88, 95, 231, 0.22);
}

.zr-listing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 1.5rem;
  align-items: start;
}

.zr-listing-map-panel {
  position: sticky;
  top: calc(var(--zr-header-h, 88px) + 1rem);
  min-height: 44rem;
  border-radius: 12px;
  overflow: hidden;
  background: #eef1f6;
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: var(--zr-card-shadow);
}

.zr-listing-map-panel #map {
  width: 100%;
  height: 44rem;
  min-height: 44rem;
}

.zr-listing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(15, 16, 32, 0.08);
  box-shadow: 0 10px 28px rgba(17, 17, 42, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  color: inherit;
}

.zr-listing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.24);
  box-shadow: 0 18px 42px rgba(17, 17, 42, 0.12);
}

.zr-listing-card__media {
  position: relative;
  display: block;
  flex-shrink: 0;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  background: #eef1f6;
  isolation: isolate;
}

.zr-listing-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.zr-listing-card:hover .zr-offer-card-media__img.is-active {
  transform: scale(1.04);
}

.zr-listing-card__badges {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  right: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  z-index: 2;
  pointer-events: none;
}

.zr-listing-card__badges .zr-card-badge {
  pointer-events: none;
}

.zr-listing-card .zr-home-offer-heart {
  z-index: 3;
}

.zr-listing-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 15.5rem;
  padding: 1.05rem;
}

.zr-listing-card__title {
  color: #141638;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zr-listing-card:hover .zr-listing-card__title {
  color: #6d28d9;
}

.zr-listing-card__address {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.4rem;
  margin: 0.45rem 0 0.65rem;
  color: #667085;
  font-size: 0.82rem;
  line-height: 1.35;
}

.zr-listing-card__address i {
  color: #d946b9;
}

.zr-listing-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  margin-bottom: 0.85rem;
}

.zr-listing-card__price .zr-price {
  margin: 0;
}

.zr-listing-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
  margin-bottom: 1rem;
  color: #4b5574;
  font-size: 0.8rem;
  font-weight: 700;
}

.zr-listing-card__facts span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.zr-home-offer-meta i,
.zr-listing-card__facts i {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0.35rem;
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.08);
  --zr-icon-wght: 280;
  --zr-icon-opsz: 20;
  font-size: 0.86rem;
}

.zr-listing-load {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-top: clamp(1.25rem, 2.5vw, 2rem); */
}

.zr-listing-load__more {
  width: 100%;
}

.zr-listing-empty {
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 2rem;
  text-align: center;
  color: #667085;
  box-shadow: var(--zr-card-shadow);
}

.leaflet-marker-icon.zr-map-marker,
.leaflet-marker-icon.zr-map-marker-detail {
  background: transparent !important;
  border: none !important;
}

.zr-map-marker {
  filter: drop-shadow(0 10px 16px rgba(88, 95, 231, 0.24));
  transition: filter 0.18s ease, transform 0.18s ease;
}

.zr-map-marker-svg {
  display: block;
  width: 42px;
  height: 42px;
  overflow: visible;
}

.zr-map-marker-fill {
  fill: url(#zr-map-pin-gradient);
}

.leaflet-marker-icon.zr-map-marker-detail {
  filter: drop-shadow(0 10px 16px rgba(88, 95, 231, 0.24));
}

.zr-map-marker-detail-svg {
  display: block;
  width: 31.5px;
  height: 49.518px;
  overflow: visible;
}

.zr-map-marker-detail-svg .zr-map-marker-detail-fill {
  fill: url(#zr-map-pin-gradient);
}

.leaflet-marker-icon.zr-map-marker.is-active {
  filter: drop-shadow(0 14px 24px rgba(109, 40, 217, 0.42));
  transform: scale(1.1);
  transform-origin: 50% 100%;
  z-index: 1000 !important;
}

.zr-listing-map-panel .marker-cluster:not(.zr-map-cluster),
.zr-listing-map-panel .marker-cluster-small:not(.zr-map-cluster),
.zr-listing-map-panel .marker-cluster-medium:not(.zr-map-cluster),
.zr-listing-map-panel .marker-cluster-large:not(.zr-map-cluster) {
  background: transparent !important;
}

.zr-listing-map-panel .leaflet-marker-icon.zr-map-cluster {
  background: var(--zr-price-gradient) !important;
  background-color: transparent !important;
}

.leaflet-marker-icon.zr-map-cluster.zr-map-cluster--hidden,
.leaflet-container.marker-cluster-spiderfied .leaflet-marker-icon.zr-map-cluster.leaflet-marker-spiderfied-center {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.zr-map-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--zr-price-gradient);
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(88, 95, 231, 0.38);
  color: #fff;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
  line-height: 1;
}

.zr-map-cluster--md {
  border-width: 3px;
}

.zr-map-cluster--lg {
  border-width: 4px;
}

.zr-map-cluster__count {
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.zr-map-cluster--md .zr-map-cluster__count {
  font-size: 0.9rem;
}

.zr-map-cluster--lg .zr-map-cluster__count {
  font-size: 0.98rem;
}

.zr-listing-shell[data-view="grid"] {
  grid-template-columns: minmax(0, 1fr);
}

.zr-listing-shell[data-view="grid"] .zr-listing-map-panel {
  display: none;
}

.zr-listing-shell[data-view="list"] {
  grid-template-columns: minmax(0, 1fr);
}

.zr-listing-shell[data-view="list"] .zr-listing-map-panel {
  display: none;
}

.zr-listing-shell[data-view="list"] .zr-listing-card-col {
  width: 100%;
  max-width: 100%;
}

.zr-listing-shell[data-view="list"] .zr-home-offers-grid {
  --bs-gutter-y: 1rem;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-card {
  display: grid !important;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 12.5rem;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-card > .zr-home-offer-media,
.zr-listing-shell[data-view="list"] .zr-home-offer-card > .zr-home-offer-body {
  display: block;
  min-width: 0;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-media {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  min-height: 0;
  height: 100%;
  max-height: none;
  overflow: hidden;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-body {
  grid-column: 2;
  grid-row: 1;
  display: flex !important;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 0;
  min-height: 12.5rem;
  margin: 0;
  padding: 0.85rem 1.35rem;
  justify-content: flex-start;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-text {
  flex: 0 0 auto;
  min-height: 0;
  overflow: visible;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-title {
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.35;
  color: #151536;
  -webkit-line-clamp: 2;
  margin-bottom: 0.45rem;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-location {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 0.65rem;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
  color: #4b5563c2;
  font-size: 0.775rem;
  line-height: 1.45;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 22, 56, 0.1);
  gap: 0.75rem;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-card .zr-price {
  margin: 0;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-card .zr-price__amount {
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
}

.zr-listing-shell[data-view="list"] .zr-home-offer-card .zr-price__suffix {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a51689e;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-meta {
  margin-top: 0;
  gap: 1.15rem;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 600;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-body__head,
.zr-listing-shell[data-view="grid"] .zr-home-offer-body__head {
  position: relative;
}

.zr-listing-shell[data-view="list"] .zr-home-offer-media .zr-home-offer-heart,
.zr-listing-shell[data-view="grid"] .zr-home-offer-media .zr-home-offer-heart {
  z-index: 4;
}

.zr-listing-results.is-map-layout {
  overflow-x: clip;
}

.zr-listing-results.is-map-layout .zr-listing-results__head {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.zr-listing-shell-stage {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  box-sizing: border-box;
}

.zr-listing-results.is-map-layout .zr-listing-shell-stage {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: clamp(0.75rem, 1.5vw, 1.25rem);
  padding-right: clamp(0.75rem, 1.5vw, 1.25rem);
}

.zr-listing-results.is-map-layout .zr-listing-map-panel {
  border-radius: 0 12px 12px 0;
}

.zr-listing-results.is-map-layout .zr-listing-list {
  padding-left: 0.15rem;
}

.zr-listing-sidebar-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  position: sticky;
  top: 0;
  z-index: 6;
  padding: 0.15rem 0 0.65rem;
  background: linear-gradient(180deg, #fff 72%, rgba(255, 255, 255, 0));
}

.zr-listing-sidebar-head__count {
  color: #3f4270;
  font-size: 0.95rem;
  font-weight: 600;
}

.zr-listing-sidebar-head__count strong {
  font-weight: 800;
  color: #141638;
}

.zr-listing-shell[data-view="map"] {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 2.88fr);
  align-items: start;
  gap: 1.25rem;
}

.zr-listing-shell[data-view="map"] .zr-listing-list .zr-home-offers-grid {
  max-height: 45.6rem;
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-gutter: stable;
}

.zr-listing-shell[data-view="map"] .zr-listing-map-panel {
  position: sticky;
  top: calc(var(--zr-header-h, 88px) + 1rem);
  min-height: 46rem;
}

.zr-listing-shell[data-view="map"] .zr-listing-map-panel #map {
  height: 46rem;
  min-height: 46rem;
}

.zr-listing-shell[data-view="map"] .zr-listing-list .row {
  --bs-gutter-y: 0.65rem;
}

.zr-listing-shell[data-view="map"] .zr-listing-card-col {
  width: 100%;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-card {
  display: grid !important;
  grid-template-columns: 9.75rem minmax(0, 1fr);
  min-height: 0;
  height: auto;
  border-radius: 12px;
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 8px 22px rgba(17, 17, 42, 0.06);
}

.zr-listing-shell[data-view="map"] .zr-home-offer-card:hover,
.zr-listing-shell[data-view="map"] .zr-home-offer-card.is-active {
  transform: none;
  /* border-color: rgba(124, 58, 237, 0.55); */
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.2), 0 14px 30px rgba(88, 95, 231, 0.14);
  outline: 2px solid rgba(124, 58, 237, 0.55);
  outline-offset: 2px;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-media {
  position: relative;
  aspect-ratio: auto;
  min-height: 10.5rem;
  height: 100%;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-body {
  position: relative;
  min-height: 10.5rem;
  margin: 0;
  padding: 0.85rem 0.95rem 0.8rem;
  box-sizing: border-box;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-text {
  min-width: 0;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-media .zr-home-offer-heart {
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  z-index: 4;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-title {
  font-size: 0.98rem;
  line-height: 1.35;
  padding-right: 0;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-location {
  font-size: 0.78rem;
  margin-bottom: 0.45rem !important;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.55rem;
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.45;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-footer {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  gap: 0.45rem;
  position: static;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-card .zr-price__amount {
  font-size: 1.15rem;
}

.zr-listing-shell[data-view="map"] .zr-home-offer-card .zr-price__suffix {
  /* display: none; */
}

.zr-listing-shell[data-view="map"] .zr-home-offer-meta {
  gap: 0.65rem 0.85rem;
  font-size: 0.76rem;
}

.zr-listing-shell[data-view="map"] .btn-load-next {
  width: 100%;
  justify-content: center;
  border-radius: 999px !important;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(124, 58, 237, 0.22) !important;
  background: #fff !important;
  color: #4c1d95 !important;
  box-shadow: 0 10px 24px rgba(17, 17, 42, 0.06);
}

.zr-listing-shell[data-view="map"] .btn-load-next .material-symbols-rounded {
  font-size: 1.1rem;
}

.zr-listing-map-panel {
  position: relative;
}

.zr-map-preview {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 450;
  width: min(22rem, calc(100% - 2rem));
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(17, 17, 42, 0.16);
  overflow: hidden;
}

.zr-map-preview[hidden] {
  display: none !important;
}

.zr-map-preview__link {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
}

.zr-map-preview__img {
  width: 100%;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 8px;
  background: #eef0fb;
}

.zr-map-preview__title {
  color: #141638;
  font-weight: 800;
  line-height: 1.3;
}

.zr-map-preview__location {
  color: #64748b;
  font-size: 0.78rem;
}

.zr-map-preview__price {
  color: #6d28d9;
  font-weight: 800;
  font-size: 0.95rem;
}

.zr-map-preview__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.08);
}

.zr-listing-map-panel .leaflet-popup.zr-map-popup {
  margin-bottom: 10px;
}

.zr-listing-map-panel .leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #fff;
  box-shadow: 0 14px 32px rgba(17, 17, 42, 0.16);
  overflow: hidden;
}

.zr-listing-map-panel .leaflet-popup-content {
  margin: 0;
  width: 14.5rem !important;
  line-height: 1.25;
}

.zr-listing-map-panel .leaflet-popup-tip-container {
  margin-top: -1px;
}

.zr-listing-map-panel .leaflet-popup-tip {
  width: 14px;
  height: 14px;
  margin: -7px auto 0;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 17, 42, 0.08);
}

.zr-listing-map-panel .leaflet-popup-close-button {
  top: 0.2rem;
  right: 0.2rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  color: #64748b !important;
  font-size: 1rem;
  line-height: 1.35rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(17, 17, 42, 0.1);
  transition: color 0.15s ease, background 0.15s ease;
}

.zr-listing-map-panel .leaflet-popup-close-button:hover {
  color: #4c1d95 !important;
  background: #fff;
}

.zr-listing-map-panel .leaflet-popup-content > .zr-map-popup-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.4rem;
  width: 100%;
  box-sizing: border-box;
}

.zr-map-popup-card {
  padding: 0.38rem 1.45rem 0.38rem 0.38rem;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease;
}

.zr-map-popup-card:hover {
  background: rgba(124, 58, 237, 0.04);
  color: inherit;
}

.zr-map-popup-card__img {
  flex: 0 0 3.5rem;
  width: 3.5rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 7px;
  background: #eef0fb;
}

.zr-map-popup-card__main {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.14rem;
  min-width: 0;
  height: auto !important;
  min-height: 0 !important;
}

.zr-map-popup-card__title,
.zr-map-popup-card__location,
.zr-map-popup-card__price-row {
  margin: 0;
  padding: 0;
}

.zr-map-popup-card__title {
  color: #141638;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zr-map-popup-card__location {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  color: #64748b;
  font-size: 0.65rem;
  line-height: 1.15;
}

.zr-map-popup-card__location span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zr-map-popup-card__location .material-symbols-rounded {
  font-size: 0.78rem;
  line-height: 1;
  color: #94a3b8;
  flex-shrink: 0;
}

.zr-map-popup-card__price-row {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  width: fit-content;
  max-width: 100%;
}

.zr-map-popup-card__price {
  color: #6d28d9;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.zr-map-popup-card__arrow {
  font-size: 0.95rem;
  line-height: 1;
  color: #6d28d9;
  flex-shrink: 0;
}

.zr-home-offer-body__head {
  display: block;
}

.zr-home-offer-footer {
  position: relative;
}

@media (max-width: 1199.98px) {
  .zr-listing-filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zr-listing-filter-col--type {
    grid-column: 1 / -1;
  }

  .zr-listing-secondary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .zr-listing-shell,
  .zr-listing-shell[data-view="map"] {
    grid-template-columns: 1fr;
  }

  .zr-listing-map-panel {
    position: relative;
    top: auto;
    min-height: 28rem;
    order: -1;
  }

  .zr-listing-map-panel #map {
    height: 28rem;
    min-height: 28rem;
  }
}

@media (max-width: 767.98px) {
  .zr-listing-hero {
    min-height: 620px;
  }

  .zr-listing-hero__bg {
    background-position: 64% center;
  }

  .zr-listing-hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 5, 24, 0.94), rgba(3, 5, 24, 0.6)),
      linear-gradient(180deg, rgba(3, 5, 24, 0.24), rgba(3, 5, 24, 0.88));
  }

  .zr-listing-hero__inner {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }

  .zr-listing-hero__actions,
  .zr-listing-hero__btn,
  .zr-listing-search .zr-search-submit,
  .zr-search-card .zr-search-footer.zr-search-footer--listing-compact .zr-search-footer__split-btn {
    width: 100%;
    min-width: 0;
  }

  .zr-search-card .zr-search-footer.zr-search-footer--listing-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .zr-listing-filter-grid,
  .zr-listing-secondary-grid {
    grid-template-columns: 1fr !important;
  }

  .zr-listing-filter-col--type {
    grid-column: auto;
  }

  .zr-listing-search-head {
    gap: 0.65rem;
  }

  .zr-listing-search-head__locality {
    flex-basis: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .zr-search-offers-badge--results-hint {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .zoo-kontakt-explorer__head.zr-listing-results__head,
  .zr-listing-results__head {
    align-items: stretch;
    flex-direction: column;
  }

  .zr-listing-tools {
    align-self: stretch;
    width: 100%;
  }

  .zr-listing-tools,
  .zr-listing-view {
    justify-content: stretch;
  }

  .zr-listing-sort-wrap,
  .zr-listing-sort {
    width: 100%;
  }

  .zr-listing-sort-menu {
    left: 0;
    right: 0;
    min-width: 0;
  }

  .zr-listing-view__btn {
    flex: 1 1 0;
  }

  .zr-listing-shell[data-view="list"] .zr-home-offer-card,
  .zr-listing-shell[data-view="map"] .zr-home-offer-card {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: none;
  }

  .zr-listing-shell[data-view="list"] .zr-home-offer-media,
  .zr-listing-shell[data-view="map"] .zr-home-offer-media {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1.52 / 1;
    min-height: 0;
    height: auto;
  }

  .zr-listing-shell[data-view="list"] .zr-home-offer-body,
  .zr-listing-shell[data-view="map"] .zr-home-offer-body {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    margin: 0;
    padding: 1rem 1rem 1.1rem;
  }

}

/* Saved offers: share / uložit */
[data-zoo-save].zr-home-offer-heart,
[data-zoo-save].zr-listing-card__heart,
[data-zoo-save-news].zr-news-card__heart {
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

[data-zoo-save].is-saved,
[data-zoo-save-news].is-saved {
  color: #d946b9;
}

[data-zoo-save].is-saved .material-symbols-rounded,
[data-zoo-save-news].is-saved .material-symbols-rounded,
.zoo-detail-share-actions [data-zoo-save].is-saved .material-symbols-rounded,
.zr-news-save-btn.is-saved .material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.zoo-detail-share-actions [data-zoo-save].is-saved,
.zr-news-save-btn.is-saved {
  color: #d946b9;
}

.zr-news-card__heart {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 16, 32, 0.45);
  box-shadow: 0 8px 22px rgba(15, 16, 32, 0.1);
  backdrop-filter: blur(10px);
}

.zr-news-save-btn .material-symbols-rounded {
  font-size: 1.1rem;
  vertical-align: -0.2em;
}

.zr-offer-action-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 1080;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(15, 16, 32, 0.92);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(0.75rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.zr-offer-action-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Saved offers drawer */
.zr-saved-offers-btn .material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.zr-saved-offers-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e44fbf 0%, #7c3aed 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.125rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(228, 79, 191, 0.45);
  pointer-events: none;
}

.zr-saved-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(15, 16, 32, 0.48);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.zr-saved-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.zr-saved-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1065;
  width: min(100vw, 24rem);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(228, 79, 191, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(88, 95, 231, 0.14) 0%, transparent 50%),
    #fff;
  color: var(--zr-navy);
  box-shadow: -12px 0 48px rgba(15, 16, 32, 0.18);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  outline: none;
}

.zr-saved-drawer.is-open {
  transform: translateX(0);
}

body.zr-saved-drawer-open {
  overflow: hidden;
}

.zr-saved-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(88, 95, 231, 0.12);
  flex-shrink: 0;
}

.zr-saved-drawer__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.zr-saved-drawer__head-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(228, 79, 191, 0.16) 0%, rgba(88, 95, 231, 0.2) 100%);
  color: #7c3aed;
  flex-shrink: 0;
}

.zr-saved-drawer__head-icon .material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

.zr-saved-drawer__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}

.zr-saved-drawer__subtitle {
  color: var(--zoo-muted);
}

.zr-saved-drawer__close {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 95, 231, 0.08);
  color: var(--zr-navy);
  flex-shrink: 0;
}

.zr-saved-drawer__close:hover,
.zr-saved-drawer__close:focus-visible {
  background: rgba(88, 95, 231, 0.16);
  color: #7c3aed;
}

.zr-saved-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem 1.25rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.zr-saved-drawer__empty {
  text-align: center;
  padding: 2rem 0.5rem 1rem;
}

.zr-saved-drawer__empty-icon {
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--zr-soft-bg);
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.zr-saved-drawer__empty-icon .material-symbols-rounded {
  font-size: 1.75rem;
}

.zr-saved-drawer__sections {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.zr-saved-drawer__section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zoo-muted);
  margin: 0 0 0.5rem;
}

.zr-saved-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.zr-saved-drawer-card__type {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #7c3aed;
}

.zr-saved-drawer-card {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  border-radius: var(--zr-radius-md);
  background: var(--zr-soft-bg);
  border: 1px solid rgba(88, 95, 231, 0.1);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.zr-saved-drawer-card:hover {
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 8px 24px rgba(88, 95, 231, 0.1);
}

.zr-saved-drawer-card__link {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.55rem 0 0.55rem 0.55rem;
  text-decoration: none;
  color: inherit;
}

.zr-saved-drawer-card__link:hover {
  color: inherit;
}

.zr-saved-drawer-card__thumb {
  width: 4.25rem;
  height: 3.25rem;
  border-radius: 0.55rem;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8eaf6;
}

.zr-saved-drawer-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zr-saved-drawer-card__thumb-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  background: linear-gradient(135deg, rgba(88, 95, 231, 0.12) 0%, rgba(228, 79, 191, 0.1) 100%);
}

.zr-saved-drawer-card__body {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 0.35rem;
}

.zr-saved-drawer-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--zr-navy);
}

.zr-saved-drawer-card__remove {
  flex-shrink: 0;
  width: 2.5rem;
  align-self: stretch;
  border: 0;
  border-left: 1px solid rgba(88, 95, 231, 0.1);
  background: transparent;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.zr-saved-drawer-card__remove:hover,
.zr-saved-drawer-card__remove:focus-visible {
  color: #d946b9;
  background: rgba(217, 70, 185, 0.08);
}

@media (max-width: 575.98px) {
  .zr-saved-drawer {
    width: 100vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zr-saved-drawer,
  .zr-saved-drawer-backdrop {
    transition: none;
  }
}
