/* === MrNeon: Footer === */
.mrneon-module .mrneon-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px 24px 24px;
  position: relative;
  z-index: 1;
}
.mrneon-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* Brand */
.mrneon-footer-brand .mrneon-logo {
  margin-bottom: 16px;
}
.mrneon-footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 320px;
  margin-bottom: 20px;
}

/* Socials */
.mrneon-socials {
  display: flex;
  gap: 10px;
}
.mrneon-module .mrneon-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--line) !important;
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
  color: #fff;
  text-decoration: none;
}
.mrneon-module .mrneon-socials a:hover {
  border-color: var(--pink) !important;
  box-shadow: var(--shadow-pink);
  transform: translateY(-2px);
}
.mrneon-module .mrneon-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Column headings */
.mrneon-module .mrneon-footer h5 {
  font-family: "Oswald", sans-serif !important;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}

/* Link lists */
.mrneon-module .mrneon-footer ul {
  list-style: none;
}
.mrneon-module .mrneon-footer ul li {
  margin-bottom: 10px;
}
.mrneon-module .mrneon-footer ul a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.2s;
  text-decoration: none;
}
.mrneon-module .mrneon-footer ul a:hover {
  color: var(--pink-2);
}

/* Newsletter column */
.mrneon-footer-nl p {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 12px;
}
.mrneon-footer-nl form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mrneon-module .mrneon-footer-nl input {
  width: 100%;
  padding: 14px;
  background: var(--bg-3);
  border: 1px solid var(--line) !important;
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.mrneon-module .mrneon-footer-nl input:focus {
  border-color: var(--pink) !important;
  box-shadow: var(--shadow-pink);
}
.mrneon-module .mrneon-footer-nl button {
  width: 100%;
  padding: 14px;
  background: var(--grad-hot);
  border: none !important;
  border-radius: 10px;
  font-family: "Oswald", sans-serif !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.mrneon-module .mrneon-footer-nl button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

/* Bottom bar */
.mrneon-footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--text-mute);
  font-size: 13px;
}

@media (max-width: 980px) {
  .mrneon-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .mrneon-footer-inner {
    grid-template-columns: 1fr;
  }
  .mrneon-module .mrneon-footer {
    padding: 40px 16px 24px;
  }
}

/* === WPForms Override — Footer Newsletter Only === */
.mrneon-footer-wpforms .wpforms-container {
  margin: 0;
}
.mrneon-footer-wpforms .wpforms-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mrneon-footer-wpforms .wpforms-field-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mrneon-footer-wpforms .wpforms-field {
  margin: 0 !important;
  padding: 0 !important;
}
/* Keep honeypot hidden */
.mrneon-footer-wpforms .wpforms-field-text[style*="position: absolute"] {
  position: absolute !important;
}
/* Hide all labels */
.mrneon-footer-wpforms .wpforms-field-label {
  display: none !important;
}
/* Input styling */
.mrneon-footer-wpforms .wpforms-field input[type="email"],
.mrneon-footer-wpforms
  .wpforms-field
  input[type="text"]:not([aria-hidden="true"]) {
  width: 100% !important;
  padding: 14px !important;
  background: var(--bg-3) !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  color: var(--text) !important;
  font-family: inherit !important;
  font-size: 14px !important;
  box-shadow: none !important;
  outline: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.mrneon-footer-wpforms .wpforms-field input:focus {
  border-color: var(--pink) !important;
  box-shadow: var(--shadow-pink) !important;
}
/* Submit container */
.mrneon-footer-wpforms .wpforms-submit-container {
  margin: 0 !important;
  padding: 0 !important;
}
.mrneon-footer-wpforms .wpforms-submit-container input[type="hidden"] {
  display: none;
}
/* Submit button */
.mrneon-footer-wpforms .wpforms-submit {
  width: 100% !important;
  padding: 14px !important;
  background: var(--grad-hot) !important;
  border: none !important;
  border-radius: 10px !important;
  font-family: "Oswald", sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: all 0.25s var(--ease) !important;
  box-shadow: none !important;
  line-height: normal !important;
  min-height: 47px !important;
}
.mrneon-footer-wpforms .wpforms-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-pink) !important;
}
/* Hide noscript */
.mrneon-footer-wpforms .wpforms-error-noscript,
.mrneon-footer-wpforms #wpforms-error-noscript {
  display: none !important;
}
/* Spinner */
.mrneon-footer-wpforms .wpforms-submit-spinner {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
/* Validation errors */
.mrneon-footer-wpforms .wpforms-error {
  color: #ff6b8a !important;
  font-size: 12px !important;
  margin-top: 4px !important;
}
.mrneon-footer-wpforms .wpforms-field input.wpforms-error {
  border-color: #ff6b8a !important;
}
/* Confirmation / success */
.mrneon-footer-wpforms .wpforms-confirmation-container-full {
  background: var(--bg-3) !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  color: var(--text) !important;
  padding: 14px !important;
}
