#sticky-wrapper {
  position: fixed;
  z-index: 9999;
  right: 24px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Bild & Button immer zentriert */
  gap: 8px;
}

/* PC & Tablet */
@media (min-width: 768px) {
  #sticky-wrapper {
    right: 24px;
    bottom: 40px;
  }

  #sticky-wrapper img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 0 6px 0; /* Abstand unter Bild */
  }

  #sticky-wrapper a {
    background-color: #FC4B29;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    text-align: center;
    width: 140px;
  }
}

/* Smartphone */
@media (max-width: 767px) {
  #sticky-wrapper {
    right: 16px;
    bottom: 24px;
    align-items: center; /* Bild & Button zentriert */
  }

  #sticky-wrapper img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 0 6px 0;
  }

  #sticky-wrapper a {
    background-color: #FC4B29;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    text-align: center;
    width: 120px;
  }
}