body,
html {
  overflow-x: hidden;
  /* Empêche le scroll horizontal */
}

#whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: auto;
  max-width: 100vw;
  /* overflow: hidden; */
}

.whatsapp-icon {
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  animation: bounce 2s infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#whatsapp-chat img {
  width: 100%;
  height: auto;
  display: block;
}

#whatsapp-box {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #fff !important;
  border-radius: 10px;
  padding: 15px;
  width: 350px;
  height: 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#whatsapp-box textarea {

  background-color: #fff !important;

}

#whatsapp-box p {
  margin-bottom: 5px;
  color: #333;
  font-weight: bold;
  font-size: 14px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-15px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-8px);
  }
}

@media screen and (max-width: 768px) {
  #whatsapp-chat {
    right: 10px;
    bottom: 10px;
    width: auto;
  }

  #whatsapp-box {
    width: 90vw;
  }
}

/* * {
  outline: 1px solid red;
} */

#close-chat {
  position: absolute;
  top: 10px;
  right: 10px;
  /* background: red; */
  color: gray;
  width: 30px;
  height: 30px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
}


#whatsapp-chat p,
button {
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
}