/* WP PWA Master - Public Styles */
#pwa-install-banner {
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}
#pwa-install-banner.pwa-show {
    display: flex !important;
    animation: pwaSlideUp 0.4s ease;
}
@keyframes pwaSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
#pwa-instructions-modal.pwa-show {
    display: flex !important;
    animation: pwaFadeIn 0.3s ease;
}
@keyframes pwaFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
#pwa-install-btn:hover { background: rgba(255,255,255,0.35) !important; }
#pwa-dismiss-btn:hover { opacity: 1 !important; }
#pwa-modal-close:hover { color: #333; }
