body.discount-popup-open {
  overflow: hidden;
}

.discount-popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
}

.discount-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.discount-popup {
  position: relative;
  width: min(1040px, 100%);
  min-height: 540px;
  color: #ffffff;
  border: unset;
  padding: 0px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.discount-popup__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discount-popup__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 45%, rgba(0, 0, 0, 0.35) 72%, rgba(0, 0, 0, 0.2) 100%);
}

.discount-popup__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(860px, 100%);
  padding: 42px 48px 30px;
}

.discount-popup__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border: 0;
  background-color: #fff;
  cursor: pointer;
  z-index: 20;
}

.discount-popup__close span {
  position: absolute;
  top: 15px;
  left: 6px;
  width: 20px;
  height: 1px;
  background: #c3945f;
}

.discount-popup__close span:first-child {
  transform: rotate(45deg);
}

.discount-popup__close span:last-child {
  transform: rotate(-45deg);
}

.discount-popup__eyebrow {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.15;
  font-weight: 400;
}

.discount-popup__title {
  margin: 0;
  font-size: clamp(44px, 4.2vw, 63px);
  line-height: 0.95;
  font-weight: 700;
}

.discount-popup__title .is-accent {
  color: #c3945f;
}

.discount-popup__description {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}

.discount-popup__form-wrap {
  margin-top: 30px;
}

.discount-popup__form-title {
  margin: 0;
  font-size: clamp(32px, 2.8vw, 28px);
  line-height: 1;
  color: #C3945F;
}

.discount-popup__form-description {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  margin-top: 8px;
}

.discount-popup__form {
  margin-top: 14px;
}

.discount-popup .wpcf7 form > p:first-of-type {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 56px;
  gap: 8px;
  align-items: stretch;
  position: relative;
}

.discount-popup .wpcf7 form > p:first-of-type br {
  display: none;
}

.discount-popup .wpcf7-form br {
  display: none;
}

.discount-popup .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.discount-popup .wpcf7 input[type="text"],
.discount-popup .wpcf7 input[type="email"],
.discount-popup .wpcf7 input[type="tel"] {
  width: 100% !important;
  min-height: 56px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 17px;
  padding: 0 14px;
}

.discount-popup .wpcf7 input::placeholder {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.discount-popup .wpcf7 input:focus {
  border-color: #c3945f;
  box-shadow: none;
}

.discount-popup .wpcf7-submit {
  width: 56px;
  min-height: 56px;
  height: 56px;
  margin: 0 !important;
  border: 1px solid rgba(195, 148, 95, 0.85);
  background-color: rgba(255, 255, 255, 0.08);
  background-color: rgb(255, 255, 255);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 21px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='21' viewBox='0 0 26 21' fill='none'%3E%3Cpath d='M24.7432%200.806152L1.74316%202.00921L18.862%2018.8062L24.7432%200.806152ZM24.7432%200.806152L8.42411%208.56458L7.9682%2017.2792L12.637%2012.6982' stroke='%23C3945F' stroke-width='1.5' stroke-miterlimit='10'/%3E%3C/svg%3E");
  font-size: 0;
  color: transparent;
  cursor: pointer;
  position: relative;
}

.discount-popup .wpcf7-list-item {
  margin: 12px 0 0;
  line-height: 1.3;
}

.discount-popup .wpcf7-list-item label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

.discount-popup .wpcf7-list-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  left: 0;
}

.discount-popup .wpcf7-list-item input[type="checkbox"] + span::before,
.discount-popup .wpcf7-list-item input[type="checkbox"] + span::after {
  left: 0;
  top: 2px;
}

.discount-popup .wpcf7-list-item input[type="checkbox"] + span::before {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
}

.discount-popup .wpcf7-list-item input[type="checkbox"] + span::after {
  width: 6px;
  height: 12px;
  left: 9px;
  top: 6px;
  border-right: 2px solid #c3945f;
  border-bottom: 2px solid #c3945f;
  background: transparent;
  transform: rotate(45deg);
}

.discount-popup .wpcf7-list-item input[type="checkbox"]:checked + span::after {
  box-shadow: none;
}

.discount-popup .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.discount-popup .wpcf7-response-output,
.discount-popup .wpcf7-not-valid-tip {
  color: #ffffff;
}

.discount-popup .wpcf7-not-valid-tip {
  left: 15px;
}

.discount-popup .wpcf7-spinner {
  position: absolute;
  right: 0px;
}

.discount-popup__missing-form {
  margin: 0;
  color: #ffc8c8;
  font-size: 14px;
}

.discount-popup__contact {
  margin: 14px 0 0;
  display: flex;
  gap: 10px 18px;
  align-items: center;
  font-size: 31px;
  line-height: 1.15;
}

.discount-popup__contact-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.discount-popup__contact-link {
  color: #c3945f;
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
}

.discount-popup .wpcf7-list-item-label a {
  color: #fff;
  text-decoration: underline;
}

.discount-popup__addictional-info {
  font-size: 16px;
  opacity: 0.7;
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .discount-popup-overlay {
    padding: 0;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .discount-popup {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    margin: 8px 0;
  }

  .discount-popup__close {
    top: 8px;
    right: 8px;
  }

  .discount-popup__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.68) 52%, rgba(0, 0, 0, 0.62) 100%);
  }

  .discount-popup__content {
    width: 100%;
    max-width: 100%;
    padding: 24px 18px 22px;
  }

  .discount-popup__eyebrow {
    font-size: clamp(18px, 2.3vw, 30px);
  }

  .discount-popup__title {
    font-size: clamp(27px, 4.2vw, 73px);
  }

  .discount-popup__description {
    font-size: clamp(18px, 2vw, 30px);
  }

  .discount-popup__form-wrap {
    margin-top: 10px;
    width: 100%;
  }

  .discount-popup__form-title {
    font-size: clamp(22px, 2.8vw, 32px);
  }

  .discount-popup__form-description {
    font-size: 14px;
  }

  .discount-popup .wpcf7 form > p:first-of-type {
    grid-template-columns: 1fr;
  }

  .discount-popup .wpcf7 input[type="text"],
  .discount-popup .wpcf7 input[type="email"],
  .discount-popup .wpcf7 input[type="tel"] {
    min-height: 50px;
  }

  .discount-popup .wpcf7-submit {
    width: 100%;
    min-height: 50px;
    height: 50px;
  }

  .discount-popup__contact {
    font-size: 21px;
    gap: 8px 14px;
    align-items: flex-start;
    flex-flow: column;
  }

  .discount-popup__contact-label {
    font-size: 17px;
    flex-basis: 100%;
  }

  .discount-popup__contact-link {
    font-size: 16px;
  }

  .discount-popup__addictional-info {
    font-size: 14px;
  }
}
