/* Bouton d'aide flottant -> /aide */
.ei-help-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  background-color: #b49a6c;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(67, 72, 78, 0.25);
  transition: background-color 0.3s ease-out, transform 0.2s ease-out, box-shadow 0.3s ease-out;
}

.ei-help-button:hover,
.ei-help-button:focus {
  background-color: #84704c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(67, 72, 78, 0.32);
}

.ei-help-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ei-help-button__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.ei-help-button__label {
  display: block;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .ei-help-button {
    right: 16px;
    bottom: 16px;
    padding: 12px;
  }

  .ei-help-button__label {
    display: none;
  }
}
