/** Shopify CDN: Minification failed

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

**/
/* Newsletter form container */
.newsletter {
  max-width: 600px;
  margin: 100px auto;
  padding: 0px;
  background-color: #f9f9f9;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading */
.newsletter h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

/* Subheading */
.newsletter__subheading {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

/* Form field wrapper */
.newsletter-form__field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Input fields */
.field__input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Button */
.newsletter-form__button {
  background-color: #ff69b4;
  color: #ff69b4;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%; 

.newsletter-form__button:hover {
    color: black;
}

/* Center button wrapper */
.newsletter-form__button-wrapper {
  margin-top: 20px;
  text-align: center;
}

.rich-text__buttons {
  display: inline-flex;
  justify-content: center;
    text-align: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 50%;
  max-width: 50%;
  word-break: break-word;
  background-color: #ff69b4;
}



