.kgp-box{
    box-sizing:border-box;
    width:100%;
    margin:14px 0;
    padding:14px;
    border:1px solid #ececec;
    border-radius:12px;
    background:#fff;
    font-family:inherit;
}
.kgp-title{
    display:flex;
    align-items:center;
    gap:7px;
    margin:0 0 7px;
    font-size:15px;
    font-weight:700;
    line-height:1.4;
}
.kgp-main{
    margin:0;
    font-size:15px;
    line-height:1.55;
}
.kgp-main strong{font-weight:800;}
.kgp-current{
    margin:6px 0 0;
    font-size:12px;
    line-height:1.45;
    color:#666;
}
.kgp-upgrade{
    margin:7px 0 0;
    font-size:14px;
    line-height:1.55;
}
.kgp-progress{
    position:relative;
    height:8px;
    margin:13px 0 9px;
    overflow:hidden;
    border-radius:999px;
    background:#ececec;
}
.kgp-progress-fill{
    height:100%;
    width:0;
    border-radius:999px;
    background:#111;
    transition:width .25s ease;
}
.kgp-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:3px;
}
.kgp-step{
    min-width:0;
    text-align:center;
    font-size:10px;
    line-height:1.25;
    color:#777;
}
.kgp-step.is-reached{
    color:#111;
    font-weight:700;
}
.kgp-step-amount{
    display:block;
    font-size:10px;
    white-space:nowrap;
}
.kgp-step-label{
    display:block;
    margin-top:2px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.kgp-actions{
    display:flex;
    justify-content:flex-end;
    margin-top:10px;
}
.kgp-shop-link{
    display:inline-block;
    padding:8px 11px;
    border:1px solid #111;
    border-radius:8px;
    color:#111 !important;
    text-decoration:none !important;
    font-size:13px;
    font-weight:600;
}
.kgp-product{
    margin-top:10px;
    padding:11px 12px;
}
.kgp-product .kgp-title,
.kgp-product .kgp-steps,
.kgp-product .kgp-actions{
    display:none;
}
.kgp-product .kgp-progress{
    margin:9px 0 0;
    height:6px;
}
.kgp-product .kgp-current{
    display:none;
}

/* 모바일이 실제 고객 화면이므로 모바일 가독성 우선 */
@media (max-width:782px){
    .kgp-box{
        border-radius:10px;
        padding:13px;
        margin:12px 0;
    }
    .kgp-main{
        font-size:15px;
    }
    .kgp-upgrade{
        font-size:14px;
    }
    .kgp-step-label{
        font-size:9px;
    }
}

.kgp-segment-labels-wrap{
    margin-top:-2px;
}
.kgp-segment-labels{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    margin:0 1px 10px;
    font-size:11px;
    line-height:1.3;
    color:#777;
}
.kgp-segment-labels strong{
    color:#111;
    font-weight:700;
}
.kgp-segment-complete strong{
    color:#111;
}
.kgp-product .kgp-segment-labels{
    margin-bottom:0;
}
