/* PWA Install Banner */
#pwa-install-banner {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #548235 0%, #6fa841 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    transition: top 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 16px;
}

#pwa-install-banner.show {
    top: 0;
}

#pwa-install-banner.hide {
    top: -100px;
}

.pwa-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
}

.pwa-banner-content {
    flex: 1;
}

.pwa-banner-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.pwa-banner-text {
    font-size: 13px;
    opacity: 0.95;
    margin: 0;
}

.pwa-banner-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.pwa-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.pwa-btn-install {
    background: white;
    color: #548235;
}

.pwa-btn-install:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.pwa-btn-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.pwa-btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 576px) {
    #pwa-install-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .pwa-banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .pwa-btn {
        width: 100%;
    }

    .pwa-banner-icon {
        margin: 0 auto;
    }
}
