.wp-support {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  font-family: Montserrat, sans-serif;
}

/* Açma butonu */
.wp-toggle {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wp-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* Kutunun kendisi */
.wp-box {
  width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  position: absolute;
  bottom: 70px;
  right: 0;
  overflow: hidden;
  display: none;
  animation: wpFadeIn 0.3s ease;
}

/* Üst bar */
.wp-header {
  background: #25D366;
  color: white;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Kapatma */
.wp-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

/* İçerik */
.wp-body {
  padding: 12px;
  display: flex;
  gap: 6px;
}

.wp-body input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.85rem;
}

.wp-body button {
  background: #25D366;
  border: none;
  color: white;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wp-body button:hover {
  background: #1ebd5a;
}

/* Animasyon */
@keyframes wpFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobil */
@media (max-width: 768px) {
  .wp-box {
    width: 240px;
  }

  .wp-toggle {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
@media (max-width: 768px) {

  .wp-body {
    flex-direction: column;   /* Alt alta diz */
    gap: 8px;
  }

  .wp-body input {
    width: 100%;
    font-size: 0.9rem;
    padding: 8px;
  }

  .wp-body button {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
}
