.shop-link {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: #fff !important;
  white-space: nowrap;
}

.shop-link::before {
  content: "";
  position: absolute;
  inset: -5px -10px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(230, 75, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(230, 75, 255, 0.24) inset,
    0 0 20px rgba(230, 75, 255, 0.22);
  animation: shop-aura 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shop-aura {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(230, 75, 255, 0.18) inset,
      0 0 16px rgba(230, 75, 255, 0.18),
      0 0 30px rgba(120, 92, 255, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(230, 75, 255, 0.34) inset,
      0 0 26px rgba(230, 75, 255, 0.30),
      0 0 48px rgba(120, 92, 255, 0.24);
  }
}
