/* v230: performance + app review hardening */
.customer-perf-v230 * {
  -webkit-tap-highlight-color: rgba(0,0,0,0.08);
}
.touch-optimized-v230 .menu-card,
.touch-optimized-v230 .item-card,
.touch-optimized-v230 .premium-card {
  transition-duration: .12s !important;
}
.customer-perf-ready-v230 .is-idle-v230 {
  opacity: 0;
  pointer-events: none;
}
.is-offline-v230 body::before {
  content: "You are offline. Saved pages may still be available.";
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 99999;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--customer-card-bg, #fff);
  color: var(--customer-text, #111827);
  box-shadow: 0 14px 35px rgba(15,23,42,.18);
  text-align: center;
  font-weight: 700;
}
.just-recovered-v230 body::before {
  content: "Back online";
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 99999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--customer-theme-color, var(--brand, #f97316));
  color: #fff;
  box-shadow: 0 14px 35px rgba(15,23,42,.18);
  font-weight: 800;
}
@media (prefers-reduced-motion: reduce) {
  .customer-perf-v230 *, .customer-perf-v230 *::before, .customer-perf-v230 *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
