/** Shopify CDN: Minification failed

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

**/

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Elemente links ausrichten */
    width: 100%;
    position: relative;
}

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

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

.newsletter-form__field-wrapper .field__input {
    padding-right: 5rem;
    flex-grow: 1;
  padding-bottom: 10px;
}

@media screen and (max-width: 766px) {
.newsletter-form__field-wrapper .field__input {

font-size: 14px;
  
}
}

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

.newsletter-form__message {
    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;
    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;
}




.newsletter__button-mobile {
  display: none;
}

@media screen and (max-width: 749px) {
  .newsletter-form__button { display: none !important; }
  .newsletter__button-mobile {
    display: block;
    width: 100%;
    background-color: black; 
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    height: 50px;
    margin-top: 5px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
  transition: transform 0.3s ease; /* für sanfte Animation */
  }
}

.newsletter__button-mobile:hover {
  transform: scale(1.03);
}


@media screen and (max-width: 749px) {
  .newsletter__logo {
    display: none;
  }
