/* Animation for "Shop🔥" heading */
@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }
  
  nav ul li:nth-child(2) a {
    animation: flicker 1.4s infinite;
    font-weight: bold;
    text-shadow: 0 0 10px #ff9900, 0 0 20px #ff9900, 0 0 30px #ff9900, 0 0 40px #ff9900;
  }
  
  nav ul li:nth-child(2) a.shop-link {
    animation: flicker 1.4s infinite;
    font-weight: bold;
    text-shadow: 0 0 10px #ff9900, 0 0 20px #ff9900, 0 0 30px #ff9900, 0 0 40px #ff9900;
  }