/* =========================
   Kontaktblase Ferienwohnungen
   ========================= */

#contact-circle {
  position: fixed;
  right: 22px;
  bottom: 105px;

  width: 180px;
  padding: 15px 18px;

  background: rgba(241, 194, 50, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 32px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  z-index: 99999;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Telefon und WhatsApp */
#contact-circle .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
}

#contact-circle .contact-icon {
  color: #ffffff !important;
  font-size: 17px;
  line-height: 1;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact-circle .contact-label {
  color: #ffffff !important;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Hover */
#contact-circle .contact-item:hover {
  opacity: 0.85;
}

#contact-circle .contact-item:hover .contact-icon,
#contact-circle .contact-item:hover .contact-label {
  color: #ffffff !important;
}

/* Schließen */
#contact-close {
  position: absolute;
  top: -10px;
  right: -10px;

  width: 26px;
  height: 26px;
  padding: 0;

  border-radius: 50%;
  border: 1px solid #ffffff;
  background: rgba(241, 194, 50, 0.92);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}
#contact-close:hover {
  background: #f1c232;
  color: #ffffff;
}

/* =========================
   Mobile: nur Icons
   ========================= */
@media (max-width: 576px) {
  #contact-circle {
    right: 14px;
    bottom: 92px;

    width: auto;
    min-width: 58px;
    padding: 12px 14px;
    gap: 11px;

    border-radius: 28px;
    align-items: center;
  }

  #contact-circle .contact-label {
    display: none !important;
  }

  #contact-circle .contact-icon {
    display: inline-flex !important;
    color: #ffffff !important;
    font-size: 23px;
    min-width: 28px;
    min-height: 28px;
  }

  #contact-circle .contact-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  #contact-close {
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    font-size: 17px;
  }
}
