.bcp-wrapper{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    background:#f5f5f7;
    padding:24px;
    border-radius:16px;
    max-width:1100px;
    margin:20px auto;
    box-shadow:0 8px 30px rgba(0,0,0,0.04);
}
.bcp-steps-nav{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:16px;
}
.bcp-step-pill{
    padding:8px 14px;
    border-radius:999px;
    background:#e5e5ea;
    color:#1c1c1e;
    font-size:14px;
    cursor:pointer;
    transition:all .2s;
}
.bcp-step-pill.active{
    background:#0a84ff;
    color:#fff;
    box-shadow:0 4px 10px rgba(10,132,255,0.4);
}
.bcp-step{
    display:none;
    background:#fff;
    border-radius:16px;
    padding:22px;
    margin-top:8px;
    box-shadow:0 4px 20px rgba(0,0,0,0.04);
}
.bcp-step.active{
    display:block;
}

/* Card grid */
.bcp-card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:14px;
    margin-top:12px;
}
.bcp-card{
    background:#f9f9fb;
    border-radius:14px;
    padding:14px;
    cursor:pointer;
    border:1px solid #e5e5ea;
    transition:all .2s;
    display:flex;
    flex-direction:column;
    gap:8px;
}
.bcp-card:hover{
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    transform:translateY(-1px);
}
.bcp-card.selected{
    border-color:#0a84ff;
    box-shadow:0 0 0 2px rgba(10,132,255,0.3);
}

/* NEW: card image */
.bcp-card-image img{
    width:100%;
    border-radius:12px;
    display:block;
}

/* Card text */
.bcp-card-title{
    font-weight:600;
    font-size:15px;
    color:#1c1c1e;
}
.bcp-card-price{
    font-weight:600;
    color:#34c759;
}

/* Variants */
.bcp-variants{
    margin-top:6px;
    display:flex;
    flex-direction:column;
    gap:4px;
}
.bcp-variant{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    background:#fff;
    border-radius:10px;
    padding:6px 8px;
    border:1px solid #e5e5ea;
}
.bcp-variant-left{
    display:flex;
    align-items:center;
    gap:6px;
}
.bcp-variant-input{
    margin-right:4px;
}
.bcp-variant-image{
    width:36px;
    height:36px;
    border-radius:8px;
    object-fit:cover;
}
.bcp-variant-label{
    flex:1;
}
.bcp-variant-price{
    white-space:nowrap;
    color:#34c759;
    font-weight:500;
}

/* Nav buttons */
.bcp-nav-buttons{
    margin-top:18px;
    display:flex;
    justify-content:space-between;
    gap:10px;
}
.bcp-nav-buttons button{
    border:none;
    border-radius:999px;
    padding:10px 22px;
    background:#e5e5ea;
    color:#1c1c1e;
    font-weight:500;
    font-size:14px;
    cursor:pointer;
    transition:all .2s;
}
.bcp-nav-buttons button:hover{
    background:#d1d1d6;
}
.bcp-nav-buttons button.bcp-next{
    background:#0a84ff;
    color:#fff;
}
.bcp-nav-buttons button.bcp-next:hover{
    background:#0067d8;
}

/* Total step */
.bcp-total-box{
    margin-top:12px;
    padding:16px;
    border-radius:14px;
    background:#f2f2f7;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:16px;
}
#bcp-total-display{
    font-size:20px;
    font-weight:700;
    color:#1c1c1e;
}

/* Form */
.bcp-form-row{
    margin-bottom:10px;
}
.bcp-form-row input{
    width:100%;
    padding:10px 12px;
    border-radius:10px;
    border:1px solid #d1d1d6;
    background:#f9f9fb;
}
.bcp-form-row input:focus{
    outline:none;
    border-color:#0a84ff;
    box-shadow:0 0 0 2px rgba(10,132,255,0.2);
}
.bcp-message{
    margin-top:10px;
    font-size:14px;
}
@media(max-width:600px){
    .bcp-wrapper{padding:16px;}
}
