.badge.bg-danger {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
}
/* Pulse animation for badge */
.pulse {
  animation: pulseEffect 1.5s infinite;
}

@keyframes pulseEffect {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Position & style countdown text */
.offer-badge .countdown {
  font-size: 0.7rem;
  margin-top: 2px;
}

/* Pricing cards hover */
.pricing-card {
  background-color: #e6f7ff;
  border: 1px solid #06a3da;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Toggle pill */
.toggle-btn {
  position: relative;
  display: flex;
  width: 180px;
  background: #e6f7ff;
  border: 1px solid #06a3da;
  border-radius: 50px;
  overflow: hidden;
}

.toggle-option {
  flex: 1;
  padding: 6px 0;
  font-size: 14px;
  border: none;
  background: transparent;
  color: #06a3da;
  font-weight: 500;
  z-index: 2;
  transition: color 0.3s ease;
  cursor: pointer;
}

.toggle-option.active {
  color: #fff;
}

.toggle-slider {
  position: absolute;
  width: 50%;
  height: 100%;
  background: #06a3da;
  border-radius: 50px;
  top: 0;
  left: 0;
  transition: left 0.4s ease;
}

/* Fade transition */
.fade {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.fade.show {
  opacity: 1;
}