#kontakt_floating_group {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10000;
}

.kontakt-floating-button {
  display: block;
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.kontakt-floating-button img {
  display: block;
  width: 100%;
  height: auto;
}

#kontakt_phone_panel {
  position: fixed;
  top: 50%;
  right: 80px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  padding: 10px 14px;
  font-size: 16px;
  line-height: 1.4;
  color: #0e8a82;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 9999;
}

#kontakt_phone_panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#kontakt_phone_panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#kontakt_phone_panel li {
  margin: 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

#kontakt_phone_panel .standort-name {
  flex: 1 1 auto;
}

#kontakt_phone_panel .standort-name a {
  color: #0e8a82;
  text-decoration: none;
}

#kontakt_phone_panel .standort-name a:hover,
#kontakt_phone_panel .standort-name a:focus {
  text-decoration: underline;
}

#kontakt_phone_panel .standort-tel {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

#kontakt_phone_panel .standort-tel a {
  color: #0e8a82;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #5fb993;
}

#kontakt_phone_panel .standort-tel a.is-copied {
  font-weight: 600;
  text-decoration: none;
}

.kontakt_hint_panel {
  position: fixed;
  max-width: 260px;
  background: #ffffff;
  color: #0e8a82;
  padding: 8px 10px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 9998;
}

.kontakt_hint_panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#kontakt_phone_panel .kfp-fallback {
  min-width: 220px;
}

@media (max-width: 640px) {
  #kontakt_floating_group {
    right: 12px;
  }

  #kontakt_phone_panel {
    max-width: 280px;
    padding: 8px 10px;
  }

  .kontakt-floating-button {
    width: 34px;
    height: 34px;
  }
}