/* Footer alignment overrides (loaded after main styles). */

/* Bottom bar: copyright left, powered+admin right */
footer .footer-bottom {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

footer .footer-copy { text-align: left; }
footer .footer-powered { text-align: left; }

/* Apply the WhatsApp safe-area to the whole footer so the top buttons
   and the bottom text share the same visual center. */
@media (min-width: 641px) {
  footer .footer-inner {
    padding-left: var(--wa-safe-x);
    padding-right: var(--wa-safe-x);
  }

  footer .footer-bottom {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  footer .footer-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
