/* bKash PGW – Checkout Styles */

/* Payment method label */
#payment .payment_method_bkash_pgw label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #e2136e;
}

/* bKash brand badge next to method title */
#payment .payment_method_bkash_pgw label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #e2136e;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Description text */
#payment .payment_method_bkash_pgw .payment_box {
    background: #fff5f9;
    border-left: 4px solid #e2136e;
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    color: #444;
}

/* Place Order button — bKash pink when gateway selected */
body.bkash-selected #place_order {
    background-color: #e2136e;
    border-color: #c4105d;
    color: #fff;
}

body.bkash-selected #place_order:hover {
    background-color: #c4105d;
}
