/* WhatsApp Canlı Destek Stilleri */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: "Arial", sans-serif;
}

.whatsapp-button {
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
}

.chat-box {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 300px;
  max-width: 90vw;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.chat-header {
  background: #326789;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-logo {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: white;
  padding: 2px;
}

.chat-header small {
  font-size: 11px;
  opacity: 0.9;
}

.chat-header span {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

.chat-body {
  padding: 15px;
  text-align: center;
}

.chat-body p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.chat-body textarea {
  width: 100%;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px;
  resize: none;
  font-size: 13px;
  box-sizing: border-box;
}

.chat-body button {
  margin-top: 10px;
  background: #E65C4F;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.chat-body button:hover {
  background: #d44a3e;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}
