.order-help-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 2px;
    border: 0;
    background: transparent;
    color: #1971c9;
    font: inherit;
    cursor: pointer;
}

.order-help-trigger:hover,
.order-help-trigger:focus-visible {
    color: #0c4f91;
    text-decoration: underline;
}

.order-help-trigger__icon {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #1f73c9;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.order-help-dialog[hidden] {
    display: none !important;
}

.order-help-dialog {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: grid;
    place-items: center;
    padding: 24px;
}

.order-help-dialog__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 35, 60, .62);
    backdrop-filter: blur(5px);
}

.order-help-dialog__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(230px, .72fr) minmax(340px, 1.28fr);
    width: min(940px, calc(100vw - 48px));
    max-height: min(760px, calc(100vh - 48px));
    overflow: hidden;
    border: 1px solid #dce7f2;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(13, 40, 72, .28);
}

.order-help-dialog__copy {
    display: flex;
    flex-direction: column;
    padding: 44px 36px 34px;
    background: linear-gradient(155deg, #f5faff 0%, #edf6ff 100%);
}

.order-help-dialog__kicker {
    margin: 0 0 12px;
    color: #f45f66;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
}

.order-help-dialog__title {
    margin: 0;
    color: #0b315e;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
}

.order-help-dialog__description {
    margin: 18px 0 0;
    color: #607b99;
    font-size: 17px;
    line-height: 1.85;
}

.order-help-dialog__tip {
    margin: auto 0 0;
    padding: 16px 18px;
    border: 1px solid #d7e7f6;
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    color: #335a80;
    font-size: 14px;
    line-height: 1.7;
}

.order-help-dialog__visual {
    min-height: 520px;
    overflow: auto;
    padding: 52px 58px 38px;
    background: #fff;
    text-align: center;
}

.order-help-dialog__visual-label {
    margin: 0 0 18px;
    color: #6e86a1;
    font-size: 14px;
}

.order-help-dialog__image {
    display: block;
    width: min(100%, 350px);
    height: auto;
    margin: 0 auto;
    border: 1px solid #dce7f2;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(22, 69, 111, .14);
}

.order-help-dialog__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #dbe6f0;
    border-radius: 50%;
    background: #f6f9fc;
    color: #5e7690;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.order-help-dialog__close:hover,
.order-help-dialog__close:focus-visible {
    background: #eaf3fc;
    color: #123f70;
}

body.order-help-dialog-open {
    overflow: hidden !important;
}

@media (max-width: 720px) {
    .order-help-dialog {
        align-items: end;
        padding: 12px;
    }

    .order-help-dialog__panel {
        grid-template-columns: 1fr;
        width: 100%;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        border-radius: 22px;
    }

    .order-help-dialog__copy {
        padding: 32px 24px 22px;
    }

    .order-help-dialog__title {
        padding-right: 42px;
        font-size: 27px;
    }

    .order-help-dialog__description {
        font-size: 15px;
    }

    .order-help-dialog__tip {
        margin-top: 18px;
    }

    .order-help-dialog__visual {
        min-height: 0;
        padding: 24px 20px 32px;
    }

    .order-help-dialog__image {
        width: min(100%, 330px);
    }

    .order-help-dialog__close {
        top: 14px;
        right: 14px;
    }
}
