#special-popup {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9999;
  animation: slideUp 1.3s ease-out;
}

.popup-content:hover{
  transform: scale(1.15);
  transition: 0.4s ease;
}

.popup-content {
  background: #fff;
  border: 2px solid #1607eb;
  box-shadow: 0 0 20px rgba(3, 102, 233, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  width: 250px;
  position: relative;
  animation: glow 2s infinite alternate;
}

.popup-content h3 {
  color: #03c9cf;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.popup-content p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.discount {
  color: rgb(0, 195, 255);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.popup-cta {
  display: block;
  background-color: #198ae7;
  color: white;
  text-align: center;
  padding: 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.popup-cta:hover {
  background-color: #0509ec;
}

.close-btn {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #888888;
  cursor: pointer;
}

.close-btn:hover{
  color:rgb(0, 68, 255);
  font-size: 1.6rem;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(7, 124, 235, 0.4);
  }
  100% {
    box-shadow: 0 0 25px rgb(4, 40, 241);
  }
}
