
.animate-pulse {
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 1;
        }

        50% {
            opacity: 0.5;
        }
    }
    
@media (max-width:767px) {
    
    .next-fomo-wrapper {
        bottom: inherit;
        top: 20px;
        left: inherit;
        right: 20px;
        -webkit-transform: translateY(-120%);
        transform: translateY(-120%);
    }
    .next-fomo-show {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== Carbon Core checkout CTA (v2a) ===== */
.cc-cta {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  cursor: pointer;
  border-radius: 15px;
  padding: 22px 18px;
  text-align: center;
  overflow: hidden;
  font-family: inherit;
  background: linear-gradient(180deg, #3BE07A 0%, #22C55E 52%, #12A24A 100%);
  color: #fff;
  box-shadow: 0 8px 0 #0B7C38, 0 16px 26px -8px rgba(11, 124, 56, .55);
  transition: transform .12s ease, box-shadow .12s ease;
  animation: cc-breathe 1.9s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
  margin-top: 15px;
}

.cc-cta:hover {
  background: linear-gradient(180deg, #3BE07A 0%, #22C55E 52%, #12A24A 100%);
  color: #fff;
  box-shadow: 0 8px 0 #0B7C38, 0 16px 26px -8px rgba(11, 124, 56, .55);
}

.cc-cta:active {
  transform: translateY(6px);
  box-shadow: 0 2px 0 #0B7C38, 0 6px 12px -6px rgba(11, 124, 56, .5)
}

.cc-cta__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, .4), transparent);
  border-radius: 15px 15px 40px 40px
}

.cc-cta__shine {
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-18deg);
  animation: cc-sweep 3.4s ease-in-out infinite;
  pointer-events: none
}

.cc-cta__lab {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 900;
  letter-spacing: .2px;
  white-space: nowrap
}

.cc-cta__arw {
  display: inline-block;
  font-size: 22px;
  line-height: 0;
  font-weight: 700;
  animation: cc-nudge 1.4s ease-in-out infinite
}

.cc-reassure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #4b8b5e;
  text-transform: uppercase;
  white-space: nowrap
}

.cc-reassure svg {
  width: 15px;
  height: 15px;
  color: #22a35a
}

@keyframes cc-breathe {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.028)
  }
}

@keyframes cc-nudge {

  0%,
  100% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(5px)
  }
}

@keyframes cc-sweep {
  0% {
    left: -40%
  }

  45%,
  100% {
    left: 135%
  }
}

/* respect users who disable motion */
@media(prefers-reduced-motion:reduce) {

  .cc-cta,
  .cc-cta__arw,
  .cc-cta__shine {
    animation: none
  }
}