.animated-button {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  color: #54506B; /* Цвет текста до наведения */
  font-family: 'Proximanova', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  background-color: #E0B73F; /* Цвет фона до наведения */
  border-radius: 40px;
  border: none;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.4s ease;
}

.animated-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFDA6C; /* Цвет фона после наведения */
  z-index: 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.animated-button:hover::before {
  transform: translateX(0);
}

.animated-button span,
.animated-button {
  position: relative;
  z-index: 1;
}

.animated-button:hover {
  color: #000000; /* Цвет текста после наведения */
}
