/* Золото: мягкий перелив без перескока */
.gold-btn{
  display:inline-block;
  padding:18px 36px;
  border-radius:7px; /* скругление 7px */
  border:none;
  cursor:pointer;

  color:#000 !important;
  font-weight:600;
  text-decoration:none;
  text-align:center;

  background-image: linear-gradient(
    120deg,
    #BB8D37 0%,
    #BB8D37 4%,
    #d4a94a 18%,
    #ffd700 34%,
    #fff4b0 50%,
    #ffd700 66%,
    #d4a94a 82%,
    #BB8D37 96%,
    #BB8D37 100%
  );

  background-size: 600% 100%;
  background-repeat: no-repeat;
  background-position: 0% 50%;
  background-clip: padding-box;

  animation: goldShine 10s ease-in-out infinite alternate;

  transition: transform .3s ease;
}

@keyframes goldShine{
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

/* Убрали тень, оставили лёгкий подъём */
.gold-btn:hover{
  transform: translateY(-2px);
}