
.bk-payment-container{
margin:30px 0 40px 0;
padding:24px;
border:1px solid #e5e5e5;
border-radius:16px;
background:#fafafa;
width:100%;
box-sizing:border-box;
}

.bk-payment-title{
font-size:20px;
font-weight:600;
margin-bottom:18px;
}

.bk-payment-options{
display:flex;
gap:20px;
width:100%;
}

.bk-option{
flex:1;
width:100%;
cursor:pointer;
}

.bk-option input{
display:none;
}

.bk-card{
border:2px solid #ddd;
border-radius:16px;
padding:26px;
background:#fff;
display:flex;
flex-direction:column;
justify-content:center;
transition:all .2s ease;
width:100%;
box-sizing:border-box;
}

.bk-card:hover{
transform:translateY(-2px);
}

.bk-option input:checked + .bk-card{
border-color:#f26c21;
box-shadow:0 0 0 3px rgba(242,108,33,0.25);
}

.bk-card-title{
font-weight:600;
margin-bottom:6px;
font-size:16px;
}

.bk-card-desc{
font-size:13px;
color:#666;
}

/* Stripe style */
.bk-card.stripe:hover{
border-color:#635bff;
}

/* Tikkie style */
.bk-card.tikkie:hover{
border-color:#00c853;
}

/* Mobile layout fix */
@media (max-width:768px){

.bk-payment-container{
padding:20px;
}

.bk-payment-options{
flex-direction:column;
gap:16px;
width:100%;
}

.bk-option{
width:100%;
}

.bk-card{
width:100%;
box-sizing:border-box;
}

}
