/* Google Review Footer Button */
footer .review-link {
  text-decoration: none;
}

footer button {
  font-size: 17px;
  font-family: inherit;
  font-weight: 700;
  padding: 4px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  color: rgb(20, 23, 39);
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  background: linear-gradient(
    0deg,
    rgb(255, 0, 0) 0%,
    rgb(255, 0, 0) 47%,
    rgb(255, 0, 0) 47%,
    rgb(255, 0, 0) 100%
  );
  transition: all 0.1s ease-in-out;
}

footer button:active {
  transform: translateY(3px);
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 14px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

footer button .button-content {
  display: flex;
  align-items: center;
  background: white;
  padding: 0.7em 1.5em;
  padding-left: 1.2em;
  border-radius: 16px;
}

footer button svg {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  color: #ff0000;
  transition: transform 0.3s;
}

footer button:hover svg {
  transform: scale(1.2);
}
