
.bcb-wrap,
.bcb-wrap *{box-sizing:border-box}

.bcb-wrap{
    width:100%;
    font-family:Montserrat,Arial,sans-serif;
}

.bcb-options{
    width:100%;
}

.bcb-options label{
    display:block;
    margin:0 0 7px;
    font-size:15px;
    line-height:1.3;
    font-weight:600;
    color:#222;
}

.bcb-options select{
    width:100%;
    height:48px;
    margin:0 0 15px;
    padding:0 14px;
    border:1px solid #333;
    border-radius:0;
    background:#fff;
    color:#111;
    font-size:14px;
}

.bcb-open{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:52px;
    margin:4px 0 0;
    padding:0 20px;
    border:0;
    border-radius:3px;
    background:#086e9f;
    color:#fff;
    font-size:17px;
    line-height:1;
    font-weight:700;
    text-transform:uppercase;
    cursor:pointer;
}

.bcb-open:hover{background:#055b86;color:#fff}

.bcb-modal{
    position:fixed;
    inset:0;
    z-index:999999;
    display:none;
    overflow:auto;
    padding-bottom:90px;
    background:#fff;
}

.bcb-modal.is-open{display:block}
body.bcb-lock{overflow:hidden}

.bcb-modal-top{
    position:sticky;
    top:0;
    z-index:20;
    display:flex;
    align-items:center;
    justify-content:center;
    height:64px;
    background:#fff;
}

.bcb-modal-title{font-size:13px}

.bcb-close{
    position:absolute;
    right:24px;
    top:15px;
    width:34px;
    height:34px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#f5f5f5;
    color:#111;
    font-size:25px;
    line-height:34px;
    cursor:pointer;
}

.bcb-steps{
    position:relative;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    max-width:520px;
    margin:32px auto 55px;
    text-align:center;
    font-size:12px;
}

.bcb-steps:before{
    content:"";
    position:absolute;
    z-index:-1;
    top:13px;
    left:17%;
    right:17%;
    height:1px;
    background:#dce1e5;
}

.bcb-steps div{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
}

.bcb-steps span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    border-radius:50%;
    background:#e9ecef;
    color:#777;
}

.bcb-steps .done span,
.bcb-steps .active span{
    background:#43c894;
    color:#fff;
}

.bcb-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:55px 70px;
    max-width:1120px;
    margin:0 auto;
    padding:0 30px 80px;
}

.bcb-card{
    min-height:300px;
    padding:14px;
    text-align:center;
    border:1px solid transparent;
    border-radius:12px;
}

.bcb-card.selected{
    border-color:#43c894;
    box-shadow:0 0 0 1px #43c894 inset;
}

.bcb-card img{
    display:block;
    width:100%;
    height:170px;
    margin:0 auto 18px;
    object-fit:contain;
}

.bcb-card-title{
    max-width:235px;
    margin:0 auto 12px;
    color:#333;
    font-size:14px;
    line-height:1.3;
    font-weight:500;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.bcb-qty{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    margin-top:8px;
    border:1px solid #cfd5da;
    border-radius:24px;
    background:#fff;
}

.bcb-qty button{
    width:42px;
    height:38px;
    padding:0;
    border:0;
    background:#fff;
    color:#8c2447;
    font-size:20px;
    cursor:pointer;
}

.bcb-num{
    min-width:42px;
    color:#222;
    font-size:14px;
}

.bcb-sold{
    padding:10px 28px;
    border:1px solid #cfd5da;
    border-radius:22px;
    background:#f8f9fa;
    color:#777;
}

.bcb-sticky{
    position:fixed;
    z-index:1000000;
    left:0;
    right:0;
    bottom:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:72px;
    padding:10px 22px;
    border-top:1px solid #ddd;
    background:#fff;
}

.bcb-sticky-right{
    display:flex;
    align-items:center;
    gap:22px;
}

.bcb-total{font-weight:700}

.bcb-add{
    min-width:145px;
    height:44px;
    padding:0 18px;
    border:0;
    border-radius:3px;
    background:#0b6f9f;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.bcb-add:disabled{
    background:#e9ecef;
    color:#89939c;
    cursor:not-allowed;
}

@media(max-width:900px){
    .bcb-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:40px 25px;
    }
}

@media(max-width:600px){
    .bcb-grid{
        grid-template-columns:1fr;
        padding-left:16px;
        padding-right:16px;
    }
    .bcb-card{min-height:275px}
    .bcb-sticky{padding:8px 10px}
    .bcb-sticky-right{gap:9px}
    .bcb-add{min-width:110px}
}
