/* Попап затемнение */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(30, 30, 30, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 10000;
}

.popup-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Попап */
.popup {
  background-color: #2a2a2a;
  color: #fff;
  padding: 30px 25px;
  max-width: 420px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  text-align: center;
  font-family: "Roboto", sans-serif;
  position: relative;
  user-select: none;
}

.popup h2 {
  margin-top: 0;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.popup p {
  font-size: 1rem;
  margin: 10px 0 25px;
}

.popup-buttons {
  display: flex;
  flex-direction: column !important;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  user-select: none;
  height: 48px;
  width: 100%;
  box-sizing: border-box;
}

.btn .icon-whatsapp,
.btn .icon-telegram {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  fill: currentColor;
}

/* Кнопка WhatsApp */
.btn-whatsapp {
  background-color: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: #25D366;
  color: #fff;
}

/* Кнопка Telegram */
.btn-telegram {
  background-color: #0088cc;
  border-color: #0088cc;
  box-shadow: 0 4px 10px rgba(0, 136, 204, 0.6);
  color: #fff;
}

.btn-telegram:hover {
  background-color: #0088cc;
  color: #fff;
}

/* Кнопка перехода на Telegram-каналы */
.btn-tg-channels {
  background-color: #cc3333;
  border-color: #cc3333;
  box-shadow: 0 4px 10px rgba(204, 51, 51, 0.6);
  color: #fff;
}

.btn-tg-channels:hover {
  background-color: #cc3333;
  color: #fff;
}

/* Закрыть */
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #b22222;
  color: white;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 34px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}

.popup-close:hover,
.popup-close:focus {
  background: #8b1a1a;
  outline: none;
}

/* Текст под кнопками */
.popup-telegram-text {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ddd;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
