.pwa-install-sheet {
    position: fixed;
    z-index: 1085;
    right: 24px;
    bottom: 24px;
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    width: min(620px, calc(100vw - 48px));
    overflow: hidden;
    border: 1px solid rgba(2, 99, 84, .16);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(8, 39, 34, .24);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .22s ease, transform .22s ease;
}

.pwa-install-sheet.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pwa-install-sheet__close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    color: #14161c;
    font-size: 30px;
    line-height: 36px;
}

.pwa-install-sheet__visual {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(145deg, #dff2ec, #bfded5);
    color: #026354;
    font-weight: 700;
}

.pwa-install-sheet__visual img {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(2, 99, 84, .2);
}

.pwa-install-sheet__content {
    padding: 38px 44px 34px 34px;
}

.pwa-install-sheet__eyebrow {
    margin-bottom: 8px;
    color: #026354;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pwa-install-sheet h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.08;
}

.pwa-install-sheet p {
    margin: 0 0 24px;
    color: #5a625f;
    line-height: 1.45;
}

.pwa-install-sheet__button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 14px;
    background: #026354;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.pwa-install-sheet__button:hover {
    background: #014e43;
    color: #fff;
}

@media (max-width: 767px) {
    .pwa-install-sheet {
        right: 0;
        bottom: 0;
        left: 0;
        grid-template-columns: 112px minmax(0, 1fr);
        width: 100%;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 28px 28px 0 0;
    }

    .pwa-install-sheet__visual {
        min-height: 224px;
    }

    .pwa-install-sheet__visual img {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .pwa-install-sheet__visual span {
        font-size: 13px;
    }

    .pwa-install-sheet__content {
        padding: 32px 22px 24px;
    }

    .pwa-install-sheet h2 {
        padding-right: 22px;
        font-size: 23px;
    }

    .pwa-install-sheet p {
        font-size: 14px;
    }

    .pwa-install-sheet__button {
        width: 100%;
        padding: 0 12px;
        font-size: 14px;
    }
}
