/** Shopify CDN: Minification failed

Line 48:1 Unexpected "/"

**/
.newsletter-section {
  position: relative;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.newsletter-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.newsletter-background {
  position: absolute;
  inset: 0;
  /* shorthand for top/left/right/bottom: 0 */
  z-index: 1;
}

.newsletter-bg-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.newsletter-bg-picture>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  display: block;
}


*/ .newsletter-bg-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.newsletter-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 150px 394px;
  text-align: center;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}

.newsletter-subtitle {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 35px;
}

.newsletter-form {
  width: 100%;
}

.newsletter-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 524px;
  margin: 0 auto;
}

.newsletter-input-container {
  width: 100%;
}

.newsletter-input {
  width: 100%;
  padding: 10px 24px;
  border: 0px solid transparent;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #000000;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  min-height: 48px;
}

.newsletter-input::placeholder {
  color: #000000;
  opacity: 0.5;
}

/* .newsletter-input:focus {
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
} */

.newsletter-input::placeholder {
  color: #999999;
  opacity: 1;
}

.newsletter-button {
  width: 100%;
  padding: 10px 10px;
  background-color: #e30613;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.newsletter-button:hover {
  background-color: #ff0818!important;
}

.newsletter-button:active {
  transform: translateY(0);
}

.newsletter-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.button-text {
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: lowercase;
}

.button-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  animation: spin 1s linear infinite;
  color: currentColor;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.newsletter-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.newsletter-success {
  background-color: rgba(46, 125, 50, 0.9);
  color: #ffffff;
  border: 1px solid rgba(46, 125, 50, 1);
}

.newsletter-error {
  background-color: rgba(244, 67, 54, 0.9);
  color: #ffffff;
  border: 1px solid rgba(244, 67, 54, 1);
}

/* Responsive Design */
@media screen and (min-width: 768px) {
  .newsletter-input-container {
    flex: 1;
  }

  .newsletter-button {
    flex-shrink: 0;
    width: auto;
    min-width: 200px;
  }
}

@media screen and (min-width: 1800px) {
  .newsletter-content {
    padding: 266px 200px;
  }
}

/* @media (min-width: 1440px) and (max-width: 1445px) {
  .newsletter-bg-picture>img {
    object-fit: fill;
  }

} */

@media screen and (max-width: 1139px) {
  .newsletter-content {
    padding: 105px 20px;
  }

  .newsletter-title {
    font-size: 36px;
    margin-bottom: 5px;
  }

  .newsletter-subtitle {
    margin-bottom: 40px;
  }

  .newsletter-input,
  .newsletter-button {
    padding: 10px 18px;
    font-size: 14px;
  }

  .button-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .container.newsletter-section {
    padding: 0px;
  }

  .newsletter-inline-message {
    font-size: 13px !important;
  }
}