#chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: sans-serif;
  z-index: 9999;
  animation: fadeIn 1s ease-in-out;
}

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

#chat-button {
  background-color: #c99875;
  color: #fff;
  padding: 10px 15px 10px 12px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

#chat-button:hover {
  background-color: #bababa;
}

.chat-icon {
  width: 24px;
  height: 24px;
}

#chat-options {
  display: none;
  margin-top: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

#chat-options a {
  margin: 0 5px;
  display: inline-block;
}

#chat-options img {
  width: 40px;
  height: 40px;
}

.chat-label {
  font-size: 12px;
  color: #333;
}

.contact-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-icons a {
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.contact-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.contact-icons a:hover img {
  transform: scale(1.1);
}