/* .new-menu{
    background-color: #4e4e4e;
    font-family: "ActaDisplay"!important;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 8px 0px;
    border-radius: 4px;
    margin-right: 2px;
    display: inline-block;
    line-height: 1.2;
    font-weight: 500;
    animation: gradientFlow 4s ease-in-out infinite;
    animation: pulse 2.5s infinite;
} 
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}*/



  .new-menu {
    font-family: "ActaDisplay"!important;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 8px 2px;
    border-radius: 4px;
    
    background: linear-gradient(45deg, #d4af37, #f5e4b8, #b8860b);
    background-size: 200% 200%;
    
    transition: transform 0.2s ease;
    animation: goldPulse 2s ease infinite;
    position: relative;
    top: -2px;
  }

  .readmore-why{
      color: #000;
      font-size: 16px;
      font-weight: bold;
      padding: 15px 28px 12px;
      border-radius: 4px;
      
      background: linear-gradient(45deg, #d4af37, #f5e4b8, #b8860b);
      background-size: 200% 200%;
      
      transition: transform 0.2s ease;
      animation: goldPulse 3s ease infinite;
  }
  
  .gold-button:hover {
    transform: scale(1.05);
  }
  
  @keyframes goldPulse {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  