a.buy-now-button {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 14px;
  color: #000;
  padding: 12px 50px;
  margin-top: 35px;
  background: #ffcc00;
  border: 1px solid #ffcc00;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

a.buy-now-button:hover {
  color: #ffcc00;
  background: #171717;
  border: 1px solid #ffcc00;
  text-decoration: none;
}