/* ==========================================================================
   Desparclean Footer Plugin — Subscribe form (column-fit)
   ========================================================================== */

.dcf-newsletter-col {
  width: 100%;
}

.dcf-newsletter-heading {
  color: #F2C94C;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
  text-transform: uppercase;
}

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

.dcf-newsletter-form input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #0E6E2C;
  border-radius: 8px;
  padding: 16px 18px;
  color: #1A2B20;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.dcf-newsletter-form input::placeholder {
  color: #6B7B70;
}

.dcf-newsletter-form input:focus {
  border-color: #F2C94C;
  box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.35);
}

.dcf-newsletter-form input.dcf-error {
  border-color: #C0392B;
}

.dcf-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.dcf-submit {
  width: 100%;
  background: #C0392B;
  border: none;
  border-radius: 8px;
  padding: 17px 18px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.dcf-submit:hover {
  background: #a5301f;
  transform: translateY(-1px);
}

.dcf-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.dcf-status {
  font-size: 13.5px;
  margin-top: 4px;
  min-height: 18px;
}

.dcf-status.dcf-success { color: #FFFFFF; font-weight: 600; }
.dcf-status.dcf-fail { color: #2A1210; background: #FFD1CB; padding: 4px 8px; border-radius: 4px; display: inline-block; }

/* Mobile */
@media (max-width: 480px) {
  .dcf-newsletter-heading { text-align: center; }
  .dcf-newsletter-form input { padding: 14px 16px; font-size: 14px; }
  .dcf-submit { padding: 15px 16px; font-size: 15px; }
}
