.hero-orange-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: fit-content;
  min-height: 56px;
  height: 56px;
  padding: 0 9px 0 25px;
  overflow: hidden;
  border: 0;
  border-radius: 50px;
  color: #fff;
  background: linear-gradient(to right, #fa5350, #f6ab60);
  box-shadow: none;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-orange-button::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(to right, #f6ab60, #fa5350);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-orange-button:hover,
.hero-orange-button:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(250, 83, 80, 0.4);
}

.hero-orange-button:hover::after,
.hero-orange-button:focus-visible::after {
  opacity: 1;
}

.hero-orange-button__icon {
  position: relative;
  z-index: 1;
}

.hero-orange-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #f6ab60;
  background: #fff;
  transition: transform 0.3s ease;
}

.hero-orange-button__icon svg {
  width: 22px;
  height: 22px;
}

.hero-orange-button:hover .hero-orange-button__icon,
.hero-orange-button:focus-visible .hero-orange-button__icon {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .hero-orange-button {
    width: 100%;
  }
}
