@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

h1, h2 , h3{
  background: linear-gradient(90deg, #40A4C8, #006B8F, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: textclip 3s linear infinite;
  display: inline-block;
  font-weight: 600 !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(64, 164, 200, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(64, 164, 200, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(64, 164, 200, 0);
  }
}

.add-to-cart-button {
  background-color: #40A4C8;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  animation: pulse 2s infinite;
}
--------------------------------