/* PWA Install Button Floating Action Button */
.pwa-install-fab {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9998;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    animation: pulse-button 2s infinite;
}

.pwa-install-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.pwa-install-fab i {
    font-size: 18px;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.7);
    }
}

/* Hide text on smaller screens */
@media (max-width: 360px) {
    .pwa-install-fab {
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .pwa-install-text {
        display: none;
    }
}

/* Desktop version */
@media (min-width: 992px) {
    .pwa-install-fab {
        bottom: 30px;
    }
}
