/* Основен стил за поп-ъпа */
#fwdp-popup {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  background: rgba(0,0,0,0.5);
}

.fwdp-hidden {
  display: none !important;
}

.fwdp-modal {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  color: #333;
}

.fwdp-close {
    position: absolute;
    right: 0px;
    top: 0px;
    background: transparent;
    border: none;
    font-size: 27px;
    cursor: pointer;
    color: #666 !important;
}

.fwdp-content h2 {
  color: #005f99; /* синьо */
  margin-bottom: 10px;
}

.fwdp-content p {
  color: #666;
  margin-bottom: 20px;
}

#fwdp-form {
  display: flex;
  flex-direction: column;
}

#fwdp-email {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 16px;
}

#fwdp-form button {
  background: #005f99!important; /* синьо */
  border: none;
  padding: 10px;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.fwdp-privacy-text {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

#fwdp-thankyou p {
  font-weight: bold;
  margin-bottom: 10px;
}

.fwdp-discount-code {
  background: #f4f0e6; /* бежово */
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
  user-select: all;
}

#fwdp-copy-btn {
  background: #005f99!important;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 10px;
}

.fwdp-shop-btn {
  background: #f4f0e6;
  color: #005f99;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .fwdp-modal {
    width: 95%;
    padding: 20px;
  }
}
