#pwa-install-banner {
    position: fixed !important;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(150%) !important;
    width: 90% !important;
    max-width: 400px !important;
    background: #ffffff !important;
    color: #333 !important;
    padding: 16px 20px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 2147483647 !important; /* Maximum possible z-index */
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
    font-family: 'Poppins', sans-serif !important;
    border: 3px solid #ff385c !important; /* Bright red debug outline */
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#pwa-install-banner.show {
    transform: translateX(-50%) translateY(0) !important;
}

.pwa-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwa-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    background: #ffffff !important; /* White background for the logo */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}

.pwa-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Subtle shimmer to draw attention */
.pwa-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: pwa-shimmer 2s infinite;
}

@keyframes pwa-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.pwa-text h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.pwa-text p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #666;
}

.pwa-actions {
    display: flex;
    gap: 8px;
}

.pwa-install-btn {
    background: #ff385c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.pwa-install-btn:hover {
    background: #e31b5f;
}

.pwa-close-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
}

/* Enabled for all devices to allow desktop testing */
@media (min-width: 992px) {
    #pwa-install-banner {
        display: flex;
    }
}
