.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: linear-gradient(135deg, #61784c, #b88b52);
  color: white;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  width: 380px;
  position: relative;
  animation: fadeIn 0.4s ease;
}

.close-a {
  position: absolute;
  top: 2px;
  left: 8px;
  font-size: 19px;
  cursor: pointer;
  width: 30px;
  height: 31px;
  background: #212529;
  border-radius: 20px;
}

.discount-box {
  background: white;
  color: red;
  padding: 12px;
  border-radius: 12px;
  margin: 15px 0;
  font-weight: bold;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.timer div {
  background: rgba(0,0,0,0.3);
  padding: 10px;
  border-radius: 10px;
}

.trust-txt {
  margin: 10px 0;
  font-size: 14px;
  opacity: 0.9;
}

/* КНОПКА */
.pulse-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 15px 25px;
  background: black;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  animation: puls 1.4s infinite;
}

/* Анимации */
@keyframes puls {
  0% {transform: scale(1);}
  50% {transform: scale(1.08);}
  100% {transform: scale(1);}
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}

.whatsapp {
  background: #25D366;
  color: white;
  font-size: 16px;
}

.whatsapp:hover {
  background: #1ebe5d;
}
/* МОБИЛКА */
@media (max-width: 500px) {
  .popup-content {
    width: 90%;
    padding: 20px;
  }
}