/* Convite para instalar o app da loja (store-app.js): cartão discreto acima da barra de abas do celular,
   com a área segura do iPhone; nunca cobre a navegação (sobe acima de .sp-tabbar). */
.loja-app { position: fixed; left: 12px; right: 12px; bottom: calc(76px + env(safe-area-inset-bottom, 0px)); z-index: 2147482000;
  display: flex; align-items: center; gap: 12px; padding: 12px 12px 12px 14px; border-radius: 16px; background: #fff; color: #1f2a44;
  box-shadow: 0 16px 40px rgba(11, 19, 48, .22); border: 1px solid #e5eaf3; font: 14px/1.35 inherit;
  opacity: 0; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease; }
.loja-app.is-in { opacity: 1; transform: none; }
.loja-app__ic { width: 44px; height: 44px; border-radius: 11px; flex: 0 0 auto; box-shadow: 0 4px 10px rgba(11, 19, 48, .15); }
.loja-app__txt { flex: 1; min-width: 0; display: grid; gap: 2px; }
.loja-app__txt strong { font-size: 14.5px; }
.loja-app__txt span { color: #55617a; font-size: 13px; }
.loja-app__txt svg { vertical-align: -2px; color: #1f5eff; }
.loja-app__go { margin-left: 6px; border: 0; border-radius: 999px; padding: 6px 14px; background: var(--storefront-primary, #1f5eff); color: #fff; font-weight: 700; font-size: 13px; cursor: pointer; }
.loja-app__x { width: 36px; height: 36px; flex: 0 0 auto; border: 0; border-radius: 50%; background: #f1f4fa; color: #55617a; font-size: 20px; line-height: 1; cursor: pointer; }
@media (min-width: 821px) { .loja-app { display: none; } }
@media (prefers-reduced-motion: reduce) { .loja-app { transition: none; } }
