/* ─────────────────────────────────────────────────────────────────────────
   SBAdeals bridge — maps the Next.js font variables onto Google-hosted
   Manrope + Plus Jakarta Sans (the app self-hosts them via next/font, whose
   hashed families don't exist on WordPress), and re-applies the <html>/<body>
   classes the app sets in its root layout. Loads AFTER sbadeals-app.css.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --font-manrope: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-jakarta: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

/* app/layout.tsx: <body class="min-h-full flex flex-col bg-white text-ink"> */
html { height: 100%; }
body {
  min-height: 100%;
  background: #ffffff;
  color: var(--color-ink, #1a2e24);
  font-family: var(--font-jakarta);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Elementor wrappers must never constrain or pad the full-bleed sections. */
.sbadeals-section-host,
.sbadeals-section-host .elementor-widget-container {
  width: 100%;
}

/* WP admin bar (logged-in preview) sits above the app's sticky header. */
#wpadminbar { z-index: 99999; }
body.admin-bar header.sticky { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar header.sticky { top: 46px; }
}
