/* Plovoucí CTA tlačítko „Přidejte se k nám“ – zobrazuje se na celém webu kromě vybraných stránek */
@keyframes remax-floating-cta-in {
  from {
    transform: translateX(calc(100% + 24px));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.remax-floating-cta {
  position: fixed;
  top: 80px;
  right: 50px;
  z-index: 99998;
  opacity: 0;
  transform: translateX(calc(100% + 24px));
  animation: remax-floating-cta-in 0.55s ease-out 3s forwards;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
.remax-floating-cta.remax-floating-cta--map-visible {
  transform: translateX(calc(100% + 24px)) !important;
  opacity: 0 !important;
  pointer-events: none;
}
.remax-floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  box-sizing: border-box;
  font-family: "Montserrat", Sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: #ff1200;
  border: none;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.remax-floating-cta a:hover {
  background: #cf2e2e;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.remax-floating-cta a:focus-visible {
  outline: 2px solid #ff1200;
  outline-offset: 4px;
}

@media screen and (max-width: 880px) {
  .remax-floating-cta {
    display: none !important;
  }
}
