/* 손님앱 첫 실행 — 설치·권한 (배민 스타일) */
html.hj-onboarding-lock,
html.hj-onboarding-lock body {
    overflow: hidden;
}

.hj-onboarding {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
}

.hj-onb-card {
    width: min(420px, 100%);
    border-radius: 24px 24px 20px 20px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: linear-gradient(180deg, #12100a 0%, #050505 100%);
    padding: 24px 20px 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.hj-onb-logo {
    display: block;
    margin: 0 auto 12px;
    border-radius: 22px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: #0a0a0a;
    object-fit: contain;
    padding: 8px;
}

.hj-onb-eyebrow {
    text-align: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: #d4af37;
    margin-bottom: 6px;
}

.hj-onb-title {
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    color: #fff8d9;
    margin: 0 0 8px;
}

.hj-onb-lead {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #a1a1aa;
    margin: 0 0 18px;
}

.hj-onb-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 15px 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.hj-onb-btn.gold {
    background: linear-gradient(90deg, #fff1a8, #d4af37, #8a6a14);
    color: #111;
}

.hj-onb-btn.line {
    background: transparent;
    color: #f0d98a;
    border: 1px solid rgba(212, 175, 55, 0.45);
}

.hj-onb-btn.ghost {
    background: transparent;
    color: #71717a;
}

.hj-onb-perms {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.hj-onb-perms li {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hj-onb-perms strong {
    display: block;
    color: #fff8d9;
    font-size: 15px;
    margin-bottom: 4px;
}

.hj-onb-perms span {
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 700;
}

.hj-onb-ios-tip {
    margin-top: 14px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 13px;
    color: #e4e4e7;
    line-height: 1.45;
}

.hj-onb-ios-tip ol {
    margin: 8px 0 0 18px;
    padding: 0;
}

.hj-onb-hint {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #71717a;
    min-height: 1.2em;
}
