/* Store App Patch 462: PWA footer actions */
body.site-masterpalm .mpb2b-pwa-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  width:100%;
  max-width:360px;
  margin:8px 0 0;
}
body.site-masterpalm .mpb2b-pwa-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:42px;
  padding:9px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(135deg,rgba(184,0,31,.96),rgba(99,11,25,.96));
  color:#fff;
  font:800 12px/1.1 Manrope,Arial,sans-serif;
  letter-spacing:.02em;
  text-transform:uppercase;
  box-shadow:0 12px 28px rgba(0,0,0,.28);
  cursor:pointer;
  transition:transform .16s ease,border-color .16s ease,background .16s ease,opacity .16s ease;
}
body.site-masterpalm .mpb2b-pwa-action:hover,
body.site-masterpalm .mpb2b-pwa-action:focus-visible{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.42);
  outline:0;
}
body.site-masterpalm .mpb2b-pwa-action[disabled]{
  opacity:.58;
  cursor:not-allowed;
  transform:none;
}
body.site-masterpalm .mpb2b-pwa-action.is-installed,
body.site-masterpalm .mpb2b-pwa-action.is-enabled{
  background:linear-gradient(135deg,rgba(25,118,71,.96),rgba(12,86,53,.96));
}
body.site-masterpalm .mpb2b-pwa-action i{font-size:16px;line-height:1;}
@media (max-width:575.98px){
  body.site-masterpalm .mpb2b-pwa-actions{grid-template-columns:1fr;max-width:100%;}
}
