/* sh-newsletter.css — Seamless Integrated Footer Newsletter */

.sh-newsletter-section {
  padding: 40px 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin: 30px 0;
}

.sh-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sh-newsletter-text {
  flex: 1;
  max-width: 540px;
}

.sh-newsletter-eyebrow {
  font-family: var(--primary-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #dba55d;
  margin-bottom: 10px;
}

.sh-newsletter-heading {
  font-family: var(--secondary-font);
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin: 0;
}

.sh-newsletter-form {
  flex: 1;
  max-width: 460px;
}

.sh-newsletter-field {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(219, 165, 93, 0.4);
  border-radius: 50px;
  padding: 4px 6px 4px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease;
}

.sh-newsletter-field:focus-within {
  border-color: #dba55d;
  box-shadow: 0 0 15px rgba(219, 165, 93, 0.25);
}

.sh-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 14px;
  outline: none;
}

.sh-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sh-newsletter-btn {
  background: linear-gradient(103deg, #dba55d -7.22%, #ffbe6e 113.23%);
  color: #000000;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.sh-newsletter-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(219, 165, 93, 0.4);
}

.sh-newsletter-note {
  font-family: var(--primary-font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .sh-newsletter-inner { flex-direction: column; gap: 20px; text-align: center; }
  .sh-newsletter-heading { font-size: 20px; }
  .sh-newsletter-form { max-width: 100%; width: 100%; }
  .sh-newsletter-field { padding: 4px 4px 4px 16px; }
  .sh-newsletter-input { font-size: 13px; }
  .sh-newsletter-btn { padding: 10px 20px; font-size: 13px; }
  .sh-newsletter-note { margin-left: 0; margin-top: 8px; }
}
