/** Shopify CDN: Minification failed

Line 30:21 Unexpected "{"
Line 30:30 Expected ":"
Line 30:37 Unexpected "{"

**/
.newsletter--root{display:flex;flex-direction:column;gap:var(--spacing--item)}.newsletter--root .stacked-text--root,.newsletter--root .stacked-text--wrapper{padding:0}












/* General Styles */
body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

/* Ensure high specificity for the newsletter root */
#newsletter-section-{{ section.id }} {
  font-family: 'Fjalla One', sans-serif;
  background-color: #000 !important; /* Black background */
  color: #fff !important; /* White text */
  text-align: left;
  padding: 20px;
  box-sizing: border-box;
  margin: 0; /* Remove default margin */
  border: none; /* Ensure no border */
}

/* Newsletter Root */
.newsletter--root {
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
  background: #000 !important; /* Black background */
  border-radius: 0; /* Remove border radius if any */
  box-shadow: none; /* Remove box shadow if any */
  color: #fff !important; /* White text */
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing--item);
}



/* Ensure the newsletter body section inherits styles */
.newsletter--body {
  background-color: #000 !important; /* Black background */
  color: #fff !important; /* White text */
}

/* Stacked Text Wrapper */
.newsletter--root .stacked-text--wrapper {
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.newsletter--root .stacked-text--title {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: #fff !important; /* White text color */
}

.newsletter--root .stacked-text--overline h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #fff !important; /* White text color */
}

.newsletter--root .stacked-text--description {
  font-size: 1em;
  color: #fff !important; /* White text color */
}

/* Subscribe Form */
.newsletter--root .subscribe-form--root {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.5s;
}

.newsletter--root .subscribe-form--input {
  padding: 15px;
  width: 80%;
  max-width: 400px;
  margin-bottom: 20px;
  border: 2px solid #fff; /* White border */
  border-radius: 5px;
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter--root .subscribe-form--input:focus {
  border-color: #fda085;
  box-shadow: 0 0 10px rgba(253, 160, 133, 0.5);
  outline: none;
}

.newsletter--root .subscribe-form--submit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #537CB6; /* Original blue background */
  color: #fff; /* White text */
  border: none;
  padding: 6px 20px; /* Adjust padding as needed */
  max-width: 200px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter--root .subscribe-form--submit:hover {
  background: #0474d3; /* Slightly darker blue on hover */
  transform: translateY(-2px);
}

.newsletter--root .subscribe-form--submit span {
  font-family: 'Fjalla One', sans-serif;
  margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter--root .stacked-text--title {
    font-size: 2em;
  }

  .newsletter--root .stacked-text--overline h3 {
    font-size: 1em;
  }

  .newsletter--root .stacked-text--description {
    font-size: 0.9em;
  }

  .newsletter--root .subscribe-form--input {
    width: 100%;
  }

  .newsletter--root .subscribe-form--submit {
    width: 100%;
    padding: 8px; /* Adjust padding for smaller screens */
  }
}







