.purchase-sec {
  --purchase-fourth: #ffffff;
  --purchase-primary: #2cc1d6;
  --purchase-font-cirlight: "Circular Std", sans-serif;
  --purchase-font-cirbook: "Circular Std", sans-serif;
  --purchase-font-semibold: "Neutrif Pro", sans-serif;
  --purchase-email-icon: url("https://cdn.shopify.com/s/files/1/0588/0188/1171/files/email.svg?v=1712940881");

  position: relative;
}

.purchase--wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 87px;
  padding: 100px 40px;
  border-radius: 20px;
  background-image: var(--purchase-bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.purchase--wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 138.12%);
}

.purchase-content {
  position: relative;
  z-index: 1;
}

.purchase--wrapper .purchase-content__heading {
  margin: 0;
  color: var(--purchase-fourth);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.04;
  text-transform: capitalize;
}

.purchase--wrapper .purchase-content__heading p {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.purchase--wrapper .purchase-content__desc p {
  max-width: 626px;
  margin: 20px 0;
  color: #e4f4f8;
  font-family: var(--purchase-font-cirlight);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.411;
}

.purchase--wrapper form {
  max-width: 557px;
}

.purchase--wrapper form .field::after,
.purchase--wrapper form .field::before {
  display: none;
}

.purchase--wrapper form .field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.purchase--wrapper form .purchase-section__email-input {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding: 15px 10px 15px 45px;
  border: none;
  border-radius: 60px;
  background-color: #ffffff26;
  background-image: var(--purchase-email-icon);
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 15px;
  color: #fff;
  font-family: var(--purchase-font-cirbook);
  font-size: 16px;
  font-weight: 500;
  line-height: 20.24px;
  text-align: left;
}

.purchase--wrapper form .purchase-section__email-input::placeholder {
  color: #faf9f7cc;
  font-family: var(--purchase-font-cirbook);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.24px;
  text-align: left;
}

.purchase--wrapper form .newsletter-form__button {
  padding: 20px 42px;
  border: none;
  border-radius: 60px;
  background: var(--purchase-primary);
  color: var(--purchase-fourth);
  font-family: var(--purchase-font-semibold);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.4s;
}

.purchase--wrapper form .newsletter-form__button:hover {
  background: #2cc1d6bf;
}

.purchase-section__newsletter-form {
  margin-top: 0;
  max-width: 557px;
}

.newsletter-form__message {
  display: block;
  margin-top: 12px;
  color: var(--purchase-fourth);
  font-size: 14px;
}

.newsletter-form__message--success {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .purchase--wrapper {
    margin-bottom: 60px;
    padding: 60px 20px;
    background-image: var(--purchase-bg-mobile, var(--purchase-bg-desktop));
  }

  .purchase--wrapper .purchase-content__heading br {
    display: none;
  }

  .purchase-content {
    text-align: center;
  }

  .purchase--wrapper form {
    margin: 0 auto;
  }

  .purchase--wrapper .purchase-content__heading {
    font-size: 28px;
    line-height: 1.29;
  }

  .purchase--wrapper .purchase-content__desc p {
    margin: 20px auto 40px;
    font-size: 16px;
    line-height: 1.26;
  }

  .purchase--wrapper form .field {
    flex-direction: column;
  }

  .purchase--wrapper form .newsletter-form__button {
    max-width: 310px;
    width: 100%;
    padding: 15.5px 42px;
    font-size: 16px;
    line-height: 1.25;
  }

  .purchase--wrapper form .purchase-section__email-input {
    max-width: 310px;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .purchase--wrapper {
    margin-bottom: 67px;
    padding: 60px 30px;
  }

  .purchase--wrapper .purchase-content__heading {
    font-size: 34px;
  }

  .purchase--wrapper .purchase-content__desc p {
    max-width: 446px;
    margin: 20px 0;
    font-size: 17px;
  }

  .purchase--wrapper form .newsletter-form__button {
    padding: 15px 40px;
    font-size: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .purchase--wrapper {
    margin-bottom: 75px;
    padding: 80px 40px;
  }

  .purchase--wrapper .purchase-content__heading {
    font-size: 40px;
  }

  .purchase--wrapper .purchase-content__desc p {
    max-width: 556px;
    font-size: 20px;
  }
}

body[data-page-type="product"] .purchase-sec {
  padding-bottom: 87px;
}

body[data-page-type="product"] .purchase--wrapper {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  body[data-page-type="product"] .purchase-sec {
    padding-bottom: 60px;
  }
}
