/* Mobile-specific overrides for Footer */

/* Place after footer.css */

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 20px 0;
  }

  .footer .footer-container {
    flex-direction: column;
    gap: 18px;
    padding: 0 24px;
  }

  .footer-col {
    width: 100%;
    min-width: 0;
    margin-bottom: 8px;
  }

  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .footer-newsletter-form {
    flex-direction: row;
    gap: 6px;
    width: 100%;
  }

  .footer-newsletter-form input[type="email"] {
    width: 100%;
    border-radius: 4px;
  }

  .footer-newsletter-form button {
    width: 100%;
    border-radius: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 14px;
  }

  .footer-links a {
    margin-left: 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* Stack newsletter form */
  .footer-newsletter-form {
    flex-direction: column;
    gap: 6px;
  }
  .footer-newsletter-form input[type="email"] {
    width: 100% !important;
    border-radius: 6px;
    box-sizing: border-box;
  }
  .footer-newsletter-form button {
    width: 100%;
    margin-top: 4px;
    border-radius: 6px;
  }
  .footer {
    padding: 24px 0 12px 0;
  }

  .footer .footer-container {
    gap: 18px;
    padding: 0 16px;
    max-width: none;
  }

  .footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .footer-col ul li {
    margin-bottom: 6px;
  }

  .footer-col ul li a {
    font-size: 0.9rem;
  }

  .footer-newsletter-form input[type="email"] {
    font-size: 0.9rem;
    flex: 1;
    width: auto;
    border-radius: 6px 0 0 6px;
  }

  .footer-newsletter-form button {
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 0 6px 6px 0;
    flex-shrink: 0;
  }

  .footer-links a {
    margin-left: 10px;
  }
}
