.pwa-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    background: rgba(20, 83, 45, .45);
    backdrop-filter: blur(4px);
}
.pwa-modal.is-open {
    display: flex;
}
.pwa-modal__sheet {
    width: 100%;
    max-width: 400px;
    max-height: 88vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px 20px 16px 16px;
    padding: 20px 18px 18px;
    box-shadow: 0 24px 60px rgba(20, 83, 45, .25);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.pwa-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.pwa-modal__head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #14532D;
}
.pwa-modal-sub {
    margin: 4px 0 0;
    font-size: 12px;
    color: #4D7C0F;
    font-weight: 500;
    line-height: 1.45;
}
.pwa-modal__close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    background: #ECFCCB;
    color: #14532D;
    cursor: pointer;
    flex-shrink: 0;
}
.pwa-guide {
    margin-bottom: 14px;
}
.pwa-guide-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4D7C0F, #84CC16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
}
.pwa-guide p {
    margin: 0 0 8px;
    font-size: 13px;
    color: #14532D;
    font-weight: 600;
}
.pwa-guide-steps {
    margin: 0;
    padding: 12px 14px 12px 28px;
    border-radius: 12px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    font-size: 12px;
    color: #14532D;
    line-height: 1.55;
}
.pwa-guide-steps li {
    margin-bottom: 6px;
}
.pwa-guide-steps li:last-child {
    margin-bottom: 0;
}
.pwa-install-lead {
    margin: 0 0 14px;
    font-size: 13px;
    color: #4D7C0F;
    line-height: 1.45;
    text-align: center;
}
.pwa-install-lead strong {
    color: #14532D;
}
.pwa-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #4D7C0F, #65A30D, #84CC16);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 10px 28px rgba(20, 83, 45, .28);
    transition: transform .2s, box-shadow .2s;
}
.pwa-download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(20, 83, 45, .34);
}
.pwa-download-btn i {
    font-size: 16px;
}
.pwa-fallback {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed #BBF7D0;
}
.pwa-fallback-title {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #4D7C0F;
}
.pwa-modal__ok {
    width: 100%;
    margin-top: 14px;
    padding: 12px 16px;
    border: none;
    border-radius: 999px;
    background: #ECFCCB;
    color: #14532D;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
}
