/** Shopify CDN: Minification failed

Line 186:0 Expected "}" to go with "{"

**/
.newsletter__wrapper {
  padding-right: calc(4rem / var(--font-body-scale));
  padding-left: calc(4rem / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .newsletter__wrapper {
    padding-right: 9rem;
    padding-left: 9rem;
    background-color: #F7F8FC;
    /* background-image: url(/cdn/shop/files/Frame_91.png?v=1767619462) */
    /* background-size: cover; */
    /* background-position: center;
    background-repeat: no-repeat;
  } */
}

/*custom css */
.newsletter__wrapper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Common styles for both vectors */
.newsletter__wrapper::before,
.newsletter__wrapper::after {
  content: "";
  position: absolute;
  width: 400px; /* Slightly larger to ensure enough coverage after rotation */
  height: 350px;
  background-image: url("/cdn/shop/files/round_design.png?v=1767891412");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6; /* Matches the subtle look in reference 2 */
}

/* POSITION: BOTTOM-LEFT (Originating from the corner) */
.newsletter__wrapper::before {
  left: -20px;   
  bottom: -180px;
  right: auto;
  top: auto;
  /* Rotate so the arcs sweep upward and to the right */
  transform: rotate(-15deg); 
}

/* POSITION: TOP-RIGHT (Originating from the corner) */
.newsletter__wrapper::after {
  right: -20px;  
  top: -180px;    
  left: auto;
  bottom: auto;
  /* Rotate 180 degrees so it is a perfect mirror of the bottom-left */
  transform: rotate(165deg); 
}

/* Ensure content stays readable */
.newsletter__wrapper > * {
  position: relative;
  z-index: 2;
}

/* Newsletter heading */
.newsletter-heading {
  font-size: 36px;
  font-weight: 600;
  line-height:44px;
  color: #0E1647;
  font-family:DM Sans;
  margin-top:16px;
}

/* Newsletter subheading / text */
.newsletter-subheading {
  font-size: 16px;
  line-height: 24px;
  color: #374151;
  margin: 0 auto;
  font-weight: 400;
}

/* Newsletter css start of the placeholder css */
.newsletter-input-custom::placeholder {
  color: #6B7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: Roboto;
  opacity: 1; /* important for Firefox */
}

/* Safari */
.newsletter-input-custom::-webkit-input-placeholder {
  color: #6B7280;
}

/* Firefox */
.newsletter-input-custom::-moz-placeholder {
  color: #6B7280;
}

/* Edge / IE (safe fallback) */
.newsletter-input-custom:-ms-input-placeholder {
  color: #6B7280;
}
/* Hide floating label but keep it accessible */
.newsletter-input-custom + .field__label {
  display: none;
}

/* Disable Dawn floating-label animations */
.newsletter-input-custom {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
    border: 1px solid #E3E3E3;
  box-shadow: none !important;
  transition: none !important;
}


/* Prevent focus shifting */
.newsletter-input-custom:focus {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  border: 1px solid #E3E3E3;
  box-shadow: none !important;
  transition: none !important
}
.newsletter-input-custom:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* end of the placeholder css */

.newsletter__wrapper > * {
  margin-top: 0;
  margin-bottom: 0;
}

.newsletter__wrapper > * + * {
  margin-top: 2rem;
}

.newsletter__wrapper > * + .newsletter-form {
  margin-top: 3rem;
  
}

.newsletter__subheading {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  
}

.newsletter__wrapper .newsletter-form__field-wrapper {
  
  max-width: 36rem;
}

.newsletter-form__field-wrapper .newsletter-form__message {
  margin-top: 1.5rem;
}

.newsletter__button {
  margin-top: 3rem;
  width: fit-content;
}


@media screen and (min-width: 750px) {
  .newsletter__button {
    flex-shrink: 0;
    margin: 0 0 0 1rem;
  }
}
