/* Вспливаюче вікно PWA */
.pwa-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    padding: 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pwa-banner.show {
    transform: translateY(0);
}

.pwa-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pwa-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 12px;
}

.pwa-text {
    flex: 1;
}

.pwa-text h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    color: #000000;
}

.pwa-text p {
    margin: 0;
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

.pwa-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: flex-end;
    margin-top: 15px;
}

.pwa-actions button {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.pwa-btn-close {
    background-color: #f0f0f0;
    color: #333333;
}

.pwa-btn-install {
    background-color: #000000;
    color: #ffffff;
}

@media (max-width: 400px) {
    .pwa-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .pwa-actions {
        justify-content: space-between;
    }
}