/** Shopify CDN: Minification failed

Line 207:1 Expected "}" to go with "{"

**/
.newsletter-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 750px) {
  .newsletter-form {
    align-items: flex-start;
    margin: 0 auto;
    max-width: 36rem;
  }
}

.newsletter-form__field-wrapper {
  width: 100%;
}

.newsletter-form__field-wrapper .field__input {
  padding-right: 5rem;
}

.newsletter-form__field-wrapper .field {
  z-index: 0;
}

.newsletter-form__message {
  justify-content: center;
  margin-bottom: 0;
}

.newsletter-form__message--success {
  margin-top: 2rem;
}

@media screen and (min-width: 750px) {
  .newsletter-form__message {
    justify-content: flex-start;
  }
}

.newsletter-form__button {
  width: 4.4rem;
  margin: 0;
  right: var(--inputs-border-width);
  top: 0;
  height: 100%;
  z-index: 2;
}

.newsletter-form__button:focus-visible {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.4rem rgba(var(--color-foreground));
  background-color: rgb(var(--color-background));
}

.newsletter-form__button:focus {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.4rem rgba(var(--color-foreground));
  background-color: rgb(var(--color-background));
}

.newsletter-form__button:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}

.newsletter-form__button .icon {
  width: 1.5rem;
}

/* --- Email signup section (nl-* layout) — scoped so footer / banner forms stay unchanged --- */
.section-newsletter-spacing {
  padding-top: var(--newsletter-pt-sm, 0);
  padding-bottom: var(--newsletter-pb-sm, 0);
}

@media screen and (min-width: 750px) {
  .section-newsletter-spacing {
    padding-top: var(--newsletter-pt-lg, 0);
    padding-bottom: var(--newsletter-pb-lg, 0);
  }
}

.newsletter .newsletter__wrapper:has(.nl-wrap) {
  padding-right: 0;
  padding-left: 0;
}

.newsletter .newsletter__wrapper:has(.nl-wrap)>*+* {
  margin-top: 2rem;
}

.nl-app-slot {
  padding: 0 2rem;
}

@media screen and (min-width: 750px) {
  .nl-app-slot {
    padding: 0 4.5rem;
  }
}

.nl-wrap {
  background-color: #eef0fc;
  padding: 60px 20px;
  text-align: center;
}

.nl-inner {
  max-width: 680px;
  margin: 0 auto;
}

.nl-heading {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.nl-sub {
  font-size: 15px;
  color: #444;
  margin: 0 0 28px;
}

.nl-form-row {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  /* border: 1.5px solid #ccc; */
  border-radius: 16px;
  overflow: hidden;
  /* background: #fff; */
  align-items: stretch;
  gap:10px;
}

.nl-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 14px;
  border-radius: 16px;
          border: 1px solid #8E8E8E;
  text-transform: uppercase;
}

.nl-btn {
  flex-shrink: 0;
  background: #1a6fdb;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 16px;
  cursor: pointer;
  
  transition: background 0.2s;
}

.nl-btn:hover {
  background: #3f9aed;
}

.nl-btn:focus-visible {
  outline: 2px solid #3f9aed;
  outline-offset: 2px;
}

.nl-success {
  margin-top: 14px;
  color: #2a7a2a;
  font-size: 14px;
}

.nl-error {
  margin-top: 14px;
  color: #c00;
  font-size: 14px;
}

.nl-heading.inline-richtext {
  text-transform: uppercase;
}

@media (max-width: 749px) {
.nl-form-row {
    flex-direction: column;
}
.nl-input {
    border: 1px solid #8E8E8E;
}
.nl-heading {
    font-size: 24px !important;
}