/* Pop up баннер*/

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

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  position: relative;
}

.popup-content h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.popup-content ul {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.popup-content ul li {
  margin: 10px 0;
}

.popup-button {
  background-color: #ec7550;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
}

.popup-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}
