/* Newsletter Signup Form Styles */
.newsletter-signup-form {
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
  padding: 16px;
}

.newsletter-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.4;
}

.newsletter-promo {
  padding: 12px;
  border-radius: 4px;
}

.newsletter-promo-title {
  font-size: 14px;
  font-weight: 700;
  color: #DA001B;
  margin-bottom: 4px;
}

.newsletter-promo-desc {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.newsletter-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.newsletter-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  color: #000;
  background-color: #fff;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-input.has-error {
  border-color: #ff6b6b;
}

.newsletter-error {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: -4px;
}

.newsletter-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
}

.newsletter-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #DA001B;
}

.newsletter-checkbox-label {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
  cursor: pointer;
  flex: 1;
}

.newsletter-submit-btn {
  width: 100%;
  padding: 12px 16px;
  background-color: #DA001B;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s, opacity 0.2s;
  margin-top: 8px;
}

.newsletter-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-loading-icon {
  animation: newsletter-spin 1s linear infinite;
}

@keyframes newsletter-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.newsletter-success {
  font-size: 12px;
  color: #28a745;
  text-align: center;
  padding: 8px;
  background-color: #d4edda;
  border-radius: 4px;
  margin-top: 8px;
}

