
.footer__links a {
text-decoration: none;
}
.footer__links a:hover {
text-decoration: underline;
}


/* Glow for the Buy buttons at the product overview page*/
.shadow-glow {
  /* Vorbereitung: kein Schatten im Ruhezustand */
  box-shadow: none;
  /* sanfte Übergangs-Animation */
  transition: box-shadow .75s ease-in-out;
}
.shadow-glow:hover {
  /* dein Gold-Glow beim Hover */
  box-shadow: 0 -7rem 10rem rgba(255, 215, 0, 0.5),
  0 0 7rem rgba(255, 215, 0, 0.5);
}