/* AR-Factory PWA iOS A2HS toast */
#pwa-a2hs-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #790909;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  max-width: 340px;
  z-index: 99999;
  font: 14px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  /* B10 fix: respect safe-area on iOS notch devices */
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  bottom: max(24px, env(safe-area-inset-bottom));
}

#pwa-a2hs-toast > span {
  flex: 1;
}

#pwa-a2hs-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  min-height: 32px;
  min-width: 32px;
  line-height: 1;
}