/* PWA install */
.pwa-install-wrap {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1500;
    display: none;
}
.pwa-install-wrap.show { display: block; }
.pwa-install-button {
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #1a6b3c, #0fbf61);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(0, 80, 36, .28);
    cursor: pointer;
}
.pwa-install-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1600;
    padding: 18px;
    background: rgba(0, 0, 0, .58);
}
.pwa-install-modal.open { display: flex; }
.pwa-install-card {
    position: relative;
    width: min(92vw, 380px);
    border-radius: 24px;
    background: #fff;
    color: #1f2a24;
    text-align: center;
    padding: 28px 24px 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.pwa-install-card img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    margin-bottom: 10px;
}
.pwa-install-card h2 {
    margin: 0 0 10px;
    color: #0f4025;
}
.pwa-install-card p {
    color: #5f6b63;
    line-height: 1.45;
    margin: 0 0 18px;
}
.pwa-install-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 1.2rem;
    font-weight: 900;
    color: #5f6b63;
    cursor: pointer;
}
.pwa-install-ok {
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    background: #1a6b3c;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 640px) {
    .pwa-install-wrap {
        right: 12px;
        bottom: 12px;
    }
    .pwa-install-button {
        padding: 11px 16px;
        font-size: .92rem;
    }
}
